diff options
author | Krzysztof Kuzmicki <krzysztof.kuzmicki@nokia.com> | 2020-08-17 11:30:32 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2020-08-17 11:30:32 +0000 |
commit | 3a52015d20454d68dced8aef5a65a8377d2cac4a (patch) | |
tree | 40298f11cd030f29f0bc24540b16a04e5dbf5c81 /tests/dcaegen2/testcases/resources/robot_library/DcaeVariables.py | |
parent | 91b48eabca14c8f36dbe882600926325929f9c48 (diff) | |
parent | 131d4dda822b637e816ef225d8a4c9981ccf56a7 (diff) |
Merge "Refactor DMaaP simulator and add tests."
Diffstat (limited to 'tests/dcaegen2/testcases/resources/robot_library/DcaeVariables.py')
-rw-r--r-- | tests/dcaegen2/testcases/resources/robot_library/DcaeVariables.py | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/dcaegen2/testcases/resources/robot_library/DcaeVariables.py b/tests/dcaegen2/testcases/resources/robot_library/DcaeVariables.py new file mode 100644 index 00000000..47d169f1 --- /dev/null +++ b/tests/dcaegen2/testcases/resources/robot_library/DcaeVariables.py @@ -0,0 +1,13 @@ +import os + + +def get_environment_variable(env_varstr): + return os.environ.get(env_varstr) + + +DCAE_HEALTH_CHECK_URL = "http://135.205.228.129:8500" +DCAE_HEALTH_CHECK_URL1 = "http://135.205.228.170:8500" + +CommonEventSchema = get_environment_variable('WORKSPACE') + "/tests/dcaegen2/testcases/assets/json_events/CommonEventFormat_30.2_ONAP.json" + +IsRobotRun = False |