diff options
author | MohamedAssem <rfawzy.ext@orange.com> | 2017-12-27 11:45:11 +0200 |
---|---|---|
committer | MohamedAssem <rfawzy.ext@orange.com> | 2017-12-27 11:45:11 +0200 |
commit | a7d5b9a4b29e3b3d18b3a63bd32b28c1008ec48e (patch) | |
tree | 4c3042eac6b11ae78998ef5b65159dccaaf30d12 /python_moondb/tests/unit_python/mock_keystone.py | |
parent | 6ca8af03c997444eaeda788b1e5a341a4cd8e8e5 (diff) |
Add keystone tests
Change-Id: I0d98547d201e5b7b2b9a240e9e70bc1a9cd29a38
Signed-off-by: MohamedAssem <rfawzy.ext@orange.com>
Diffstat (limited to 'python_moondb/tests/unit_python/mock_keystone.py')
-rw-r--r-- | python_moondb/tests/unit_python/mock_keystone.py | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/python_moondb/tests/unit_python/mock_keystone.py b/python_moondb/tests/unit_python/mock_keystone.py index c0b26b88..3f262538 100644 --- a/python_moondb/tests/unit_python/mock_keystone.py +++ b/python_moondb/tests/unit_python/mock_keystone.py @@ -20,4 +20,14 @@ def register_keystone(m): json={"users": [{ "id": "1111111111111" }]} - )
\ No newline at end of file + ) + m.register_uri( + 'POST', 'http://keystone:5000/v3/projects/', + json={ + "description": "test_project", + "domain_id": ['domain_id_1'], + "enabled": True, + "is_domain": False, + "name": 'project_1' + } + ) |