Merge "Creating result checker classes"
[yardstick.git] / yardstick / benchmark / scenarios / availability / __init__.py
1 ##############################################################################
2 # Copyright (c) 2016 Juan Qiu and others
3 # juan_ qiu@tongji.edu.cn
4 # All rights reserved. This program and the accompanying materials
5 # are made available under the terms of the Apache License, Version 2.0
6 # which accompanies this distribution, and is available at
7 # http://www.apache.org/licenses/LICENSE-2.0
8 ##############################################################################
9
10
11 class ActionType:
12     ATTACKER = "attacker"
13     MONITOR = "monitor"
14     RESULTCHECKER = "resultchecker"
15     RESULTCOMPARER = "comparer"
16     OPERATION = "operation"
17
18
19 class Condition:
20     EQUAL = "eq"
21     GREATERTHAN = "gt"
22     GREATERTHANEQUAL = "gt_eq"
23     LESSTHAN = "lt"
24     LESSTHANEQUAL = "lt_eq"
25     IN = "in"