63d1b2a590
assertEqual expects that the arguments provided to it should be (expected, observed). If a particular order is kept as a convention, then it helps to provide a cleaner message to the developer if Unit Tests fail. There are several Unit Test files where the arguments for assertEqual have been swapped. Change-Id: I6fdedcde67f76883257d35d1b812ab8a0e3e0733 Related-Bug: #1259292
101 lines
3.6 KiB
Python
101 lines
3.6 KiB
Python
# Copyright 2015 Hewlett-Packard Development Company, L.P.
|
|
#
|
|
# Author: Endre Karlson <endre.karlson@hp.com>
|
|
#
|
|
# 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 uuid
|
|
|
|
from tempest_lib import exceptions
|
|
|
|
from functionaltests.common import datagen
|
|
from functionaltests.api.v2.base import DesignateV2Test
|
|
from functionaltests.api.v2.clients.blacklist_client import BlacklistClient
|
|
from functionaltests.api.v2.fixtures import BlacklistFixture
|
|
|
|
|
|
class BlacklistTest(DesignateV2Test):
|
|
|
|
def test_list_blacklists(self):
|
|
self.useFixture(BlacklistFixture())
|
|
resp, model = BlacklistClient.as_user('admin').list_blacklists()
|
|
self.assertEqual(200, resp.status)
|
|
self.assertGreater(len(model.blacklists), 0)
|
|
|
|
def test_create_blacklist(self):
|
|
fixture = self.useFixture(BlacklistFixture())
|
|
self.assertEqual(fixture.post_model.pattern,
|
|
fixture.created_blacklist.pattern)
|
|
|
|
def test_update_blacklist(self):
|
|
old_model = self.useFixture(BlacklistFixture()).created_blacklist
|
|
|
|
patch_model = datagen.random_blacklist_data()
|
|
resp, new_model = BlacklistClient.as_user('admin').patch_blacklist(
|
|
old_model.id, patch_model)
|
|
self.assertEqual(200, resp.status)
|
|
|
|
resp, model = BlacklistClient.as_user('admin').get_blacklist(
|
|
new_model.id)
|
|
self.assertEqual(200, resp.status)
|
|
self.assertEqual(old_model.id, new_model.id)
|
|
self.assertEqual(model.pattern, new_model.pattern)
|
|
|
|
def test_delete_blacklist(self):
|
|
fixture = self.useFixture(BlacklistFixture())
|
|
resp, model = BlacklistClient.as_user('admin').delete_blacklist(
|
|
fixture.created_blacklist.id)
|
|
self.assertEqual(204, resp.status)
|
|
|
|
def test_get_blacklist_404(self):
|
|
client = BlacklistClient.as_user('admin')
|
|
self._assert_exception(
|
|
exceptions.NotFound,
|
|
'blacklist_not_found',
|
|
404, client.get_blacklist,
|
|
str(uuid.uuid4()))
|
|
|
|
def test_update_blacklist_404(self):
|
|
model = datagen.random_blacklist_data()
|
|
|
|
client = BlacklistClient.as_user('admin')
|
|
self._assert_exception(
|
|
exceptions.NotFound,
|
|
'blacklist_not_found',
|
|
404,
|
|
client.patch_blacklist,
|
|
str(uuid.uuid4()), model)
|
|
|
|
def test_delete_blacklist_404(self):
|
|
client = BlacklistClient.as_user('admin')
|
|
self._assert_exception(
|
|
exceptions.NotFound,
|
|
'blacklist_not_found',
|
|
404,
|
|
client.delete_blacklist,
|
|
str(uuid.uuid4()))
|
|
|
|
def test_get_blacklist_invalid_uuid(self):
|
|
client = BlacklistClient.as_user('admin')
|
|
self._assert_invalid_uuid(client.get_blacklist, 'fooo')
|
|
|
|
def test_update_blacklist_invalid_uuid(self):
|
|
model = datagen.random_blacklist_data()
|
|
|
|
client = BlacklistClient.as_user('admin')
|
|
self._assert_invalid_uuid(client.patch_blacklist, 'fooo', model)
|
|
|
|
def test_delete_blacklist_invalid_uuid(self):
|
|
client = BlacklistClient.as_user('admin')
|
|
self._assert_invalid_uuid(client.get_blacklist, 'fooo')
|