From a5aa37a77b9cfdc56cff598c8b56e16b12aaba4f Mon Sep 17 00:00:00 2001 From: Eyal Date: Sun, 31 Jan 2016 16:20:39 +0200 Subject: [PATCH] add authentication test Change-Id: I3cf1ed7ea9ee86fce062940e0cfb7967b6a8ea2c --- vitrage/tests/base.py | 14 ++++++++ vitrage/tests/functional/api/__init__.py | 4 ++- vitrage/tests/functional/api/test_versions.py | 1 + vitrage/tests/functional/api/v1/__init__.py | 20 +++++++++++ .../functional/api/v1/test_authentication.py | 36 +++++++++++++++++++ 5 files changed, 74 insertions(+), 1 deletion(-) create mode 100644 vitrage/tests/functional/api/v1/__init__.py create mode 100644 vitrage/tests/functional/api/v1/test_authentication.py diff --git a/vitrage/tests/base.py b/vitrage/tests/base.py index 3514c0d2f..e5a09625d 100644 --- a/vitrage/tests/base.py +++ b/vitrage/tests/base.py @@ -11,6 +11,8 @@ # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. +import os + from oslo_utils import timeutils from oslotest import base import sys @@ -58,5 +60,17 @@ class BaseTest(base.BaseTestCase): except (TypeError, AttributeError): self.fail("%s doesn't have length" % type(obj)) + @staticmethod + def path_get(project_file=None): + root = os.path.abspath(os.path.join(os.path.dirname(__file__), + '..', + '..', + ) + ) + if project_file: + return os.path.join(root, project_file) + else: + return root + def setUp(self): super(BaseTest, self).setUp() diff --git a/vitrage/tests/functional/api/__init__.py b/vitrage/tests/functional/api/__init__.py index ee3718edd..0845d95ee 100644 --- a/vitrage/tests/functional/api/__init__.py +++ b/vitrage/tests/functional/api/__init__.py @@ -1,4 +1,5 @@ # +# Copyright 2016 - Nokia Corporation # Copyright 2012 New Dream Network, LLC (DreamHost) # Copyright 2015 Red Hat, Inc. # @@ -35,6 +36,7 @@ class FunctionalTest(base.BaseTest): PATH_PREFIX = '' + # noinspection PyAttributeOutsideInit def setUp(self): super(FunctionalTest, self).setUp() conf = service.prepare_service(args=[]) @@ -101,7 +103,7 @@ class FunctionalTest(base.BaseTest): params=params, headers=headers, status=status, - extra_aodhenviron=extra_environ, + extra_environ=extra_environ, expect_errors=expect_errors ) return response diff --git a/vitrage/tests/functional/api/test_versions.py b/vitrage/tests/functional/api/test_versions.py index cf5ea5139..bb95f05a7 100644 --- a/vitrage/tests/functional/api/test_versions.py +++ b/vitrage/tests/functional/api/test_versions.py @@ -1,3 +1,4 @@ +# Copyright 2016 - Nokia Corporation # Copyright 2014 OpenStack Foundation # # Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/vitrage/tests/functional/api/v1/__init__.py b/vitrage/tests/functional/api/v1/__init__.py new file mode 100644 index 000000000..67ac36ca6 --- /dev/null +++ b/vitrage/tests/functional/api/v1/__init__.py @@ -0,0 +1,20 @@ +# Copyright 2016 - Nokia Corporation +# Copyright 2012 New Dream Network, LLC (DreamHost) +# +# 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. See the +# License for the specific language governing permissions and limitations +# under the License. + +from vitrage.tests.functional import api + + +class FunctionalTest(api.FunctionalTest): + PATH_PREFIX = '/v1' diff --git a/vitrage/tests/functional/api/v1/test_authentication.py b/vitrage/tests/functional/api/v1/test_authentication.py new file mode 100644 index 000000000..c0ee9741e --- /dev/null +++ b/vitrage/tests/functional/api/v1/test_authentication.py @@ -0,0 +1,36 @@ +# Copyright 2016 - Nokia Corporation +# Copyright 2014 OpenStack Foundation +# +# 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. +# See the License for the specific language governing permissions and +# limitations under the License. + +import mock +import webtest + +from vitrage.api import app +from vitrage.tests.functional.api.v1 import FunctionalTest + + +class TestAuthentications(FunctionalTest): + def _make_app(self): + file_name = self.path_get('etc/vitrage/api-paste.ini') + self.conf.set_override("paste_config", file_name, "api") + # We need the other call to prepare_service in app.py to return the + # same tweaked conf object. + with mock.patch('vitrage.service.prepare_service') as ps: + ps.return_value = self.conf + return webtest.TestApp(app.load_app(conf=self.conf)) + + def test_not_authenticated(self): + resp = self.post_json('/topology/', params=None, expect_errors=True) + self.assertEqual(401, resp.status_int)