aboutsummaryrefslogtreecommitdiffstats
path: root/moonv4/moon_utilities/tests/unit_python/mock_components.py
diff options
context:
space:
mode:
authorRHE <rebirthmonkey@gmail.com>2017-12-21 15:36:27 +0100
committerRHE <rebirthmonkey@gmail.com>2017-12-21 15:36:27 +0100
commitcb23b06b64af120e0c6775dd2d59f6d970418995 (patch)
tree475cd2ab4ed1e666e09615bc6c5bcdf37b79e7f0 /moonv4/moon_utilities/tests/unit_python/mock_components.py
parent0e25bfe9085d43f615dc3a69b1bfb6b091c3b4ee (diff)
python_moonutilities rename
Change-Id: I306268f5b95dee283313f76db2e1cac49fc9c0ff Signed-off-by: RHE <rebirthmonkey@gmail.com>
Diffstat (limited to 'moonv4/moon_utilities/tests/unit_python/mock_components.py')
-rw-r--r--moonv4/moon_utilities/tests/unit_python/mock_components.py27
1 files changed, 0 insertions, 27 deletions
diff --git a/moonv4/moon_utilities/tests/unit_python/mock_components.py b/moonv4/moon_utilities/tests/unit_python/mock_components.py
deleted file mode 100644
index a0319e1a..00000000
--- a/moonv4/moon_utilities/tests/unit_python/mock_components.py
+++ /dev/null
@@ -1,27 +0,0 @@
-import utilities
-
-COMPONENTS = (
- "logging",
- "openstack/keystone",
- "database",
- "slave",
- "components/manager",
- "components/orchestrator",
- "components/interface",
-)
-
-
-def register_components(m):
- for component in COMPONENTS:
- m.register_uri(
- 'GET', 'http://consul:8500/v1/kv/{}'.format(component),
- json=[{'Key': component, 'Value': utilities.get_b64_conf(component)}]
- )
-
- m.register_uri(
- 'GET', 'http://consul:8500/v1/kv/components?recurse=true',
- json=[
- {"Key": key, "Value": utilities.get_b64_conf(key)} for key in COMPONENTS
- ],
- # json={'Key': "components", 'Value': get_b64_conf("components")}
- ) \ No newline at end of file