From 664c40cc0890374b7110fb477edd7d2be87edd67 Mon Sep 17 00:00:00 2001 From: Bin Sun Date: Thu, 12 Apr 2018 10:08:14 +0800 Subject: Add fake get project test Change-Id: Ib2ce8dd7694b7984485846329a278404664d493c Issue-ID: MULTICLOUD-199 Signed-off-by: Bin Sun --- vio/vio/tests/test_fake_identity_view.py | 40 ++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 vio/vio/tests/test_fake_identity_view.py 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) -- cgit 1.2.3-korg