summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBin Sun <bins@vmware.com>2018-04-12 10:08:14 +0800
committerBin Sun <bins@vmware.com>2018-04-12 10:08:36 +0800
commit664c40cc0890374b7110fb477edd7d2be87edd67 (patch)
treedbff3b3c78e993062926ce7273b7f3d9182c3393
parente2dfaa9d05f2b4dfb8b54704b754648022826bee (diff)
Add fake get project test
Change-Id: Ib2ce8dd7694b7984485846329a278404664d493c Issue-ID: MULTICLOUD-199 Signed-off-by: Bin Sun <bins@vmware.com>
-rw-r--r--vio/vio/tests/test_fake_identity_view.py40
1 files changed, 40 insertions, 0 deletions
diff --git a/vio/vio/tests/test_fake_identity_view.py b/vio/vio/tests/test_fake_identity_view.py
new file mode 100644
index 0000000..58f5b61
--- /dev/null
+++ b/vio/vio/tests/test_fake_identity_view.py
@@ -0,0 +1,40 @@
+# Copyright (c) 2018 VMware, Inc.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at:
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+
+import mock
+import unittest
+
+from vio.swagger.views.fakeplugin.identity import views
+from vio.swagger.views.fakeplugin.fakeData import fakeResponse
+
+Token = "gAAAAABZmlkS3H24i7446u41QoDMMEFi49sUbYiB2fqrZq00" \
+ "TR92RDLxt4AWzHsBa36IeWeY_eVEnDWAjIuV" \
+ "vK2osp6mPTEKGCvywrksCorunJqPCf46nBhGt-P4" \
+ "bqXMUWRMgowfIS2_kv1pQwvoP00_Rs6KlDaWt-miEu7s24m3En9Qsbg8Ecw"
+
+
+class TestFakeProjects(unittest.TestCase):
+
+ def setUp(self):
+ self.view = views.FakeProjects()
+
+ @mock.patch.object(fakeResponse, "show_project")
+ def test_get_project(self, mock_show_project):
+ req = mock.Mock()
+ req.META = {
+ "HTTP_X_AUTH_TOKEN": Token
+ }
+ mock_show_project.return_value = {
+ "stack": "1234abcd"
+ }
+ resp = self.view.get(req, "1234abcd")
+ self.assertEqual(200, resp.status_code)