############################################################################## # Copyright (c) 2017 Huawei Technologies Co.,Ltd and others. # # All rights reserved. This program and the accompanying materials # are made available under the terms of the Apache License, Version 2.0 # which accompanies this distribution, and is available at # http://www.apache.org/licenses/LICENSE-2.0 ############################################################################## from __future__ import print_function from __future__ import absolute_import import logging from yardstick.benchmark.scenarios import base from yardstick.common import exceptions as y_exc LOG = logging.getLogger(__name__) class CheckValue(base.Scenario): """Check values between value1 and value2 options: operator: equal(eq) and not equal(ne) value1: value2: output: check_result """ __scenario_type__ = "CheckValue" def __init__(self, scenario_cfg, context_cfg): self.scenario_cfg = scenario_cfg self.context_cfg = context_cfg self.options = self.scenario_cfg['options'] def run(self, _): """execute the test""" op = self.options.get("operator") LOG.debug("options=%s", self.options) value1 = str(self.options.get("value1")) value2 = str(self.options.get("value2")) if (op == "eq" and value1 != value2) or (op == "ne" and value1 == value2): raise y_exc.ValueCheckError( value1=value1, operator=op, value2=value2) check_result = "PASS" LOG.info("Check result is %s", check_result) keys = self.scenario_cfg.get('output', '').split() values = [check_result] return self._push_to_outputs(keys, values)