add authentication test

Change-Id: I3cf1ed7ea9ee86fce062940e0cfb7967b6a8ea2c
This commit is contained in:
Eyal 2016-01-31 16:20:39 +02:00
parent 8947f55877
commit a5aa37a77b
5 changed files with 74 additions and 1 deletions

View File

@ -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()

View File

@ -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

View File

@ -1,3 +1,4 @@
# Copyright 2016 - Nokia Corporation
# Copyright 2014 OpenStack Foundation
#
# Licensed under the Apache License, Version 2.0 (the "License");

View File

@ -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'

View File

@ -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)