Files
rally-openstack/tests/unit/task/scenarios/designate/test_utils.py
Sergey Galkin d576ac96dd Designate plugin fixes
1. Switch to v2 quatas schema
2. Remove v1 support

Closes-Bug: 1884021
Closes-Bug: 1884022

Change-Id: If04f9ecef94d40e3e18180ca1c098a56aab7f5f6
2020-08-06 12:19:52 +00:00

167 lines
5.7 KiB
Python

# Copyright 2014 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.
from unittest import mock
import ddt
from rally_openstack.task.scenarios.designate import utils
from tests.unit import test
DESIGNATE_UTILS = "rally_openstack.task.scenarios.designate.utils."
@ddt.ddt
class DesignateScenarioTestCase(test.ScenarioTestCase):
def setUp(self):
super(DesignateScenarioTestCase, self).setUp()
self.domain = mock.Mock()
self.zone = mock.Mock()
self.server = mock.Mock()
self.client = self.clients("designate", version="2")
@ddt.data(
{},
{"email": "root@zone.name"})
@ddt.data(
{},
{"data": "127.0.0.1"})
# NOTE: API V2
@ddt.data(
{},
{"email": "root@zone.name"},
{"name": "example.name."},
{
"email": "root@zone.name",
"name": "example.name."
})
def test_create_zone(self, zone_data):
scenario = utils.DesignateScenario()
random_name = "foo"
scenario = utils.DesignateScenario(context=self.context)
scenario.generate_random_name = mock.Mock(return_value=random_name)
self.client.zones.create.return_value = self.zone
expected = {
"email": "root@random.name",
"name": "%s.name." % random_name,
"type_": "PRIMARY"
}
expected.update(zone_data)
# Check that the defaults / randoms are used if nothing is specified
zone = scenario._create_zone(**zone_data)
self.client.zones.create.assert_called_once_with(
description=None,
ttl=None,
**expected)
self.assertEqual(self.zone, zone)
self._test_atomic_action_timer(scenario.atomic_actions(),
"designate.create_zone")
def test_list_zones(self):
scenario = utils.DesignateScenario(context=self.context)
return_zones_list = scenario._list_zones()
self.assertEqual(self.client.zones.list.return_value,
return_zones_list)
self._test_atomic_action_timer(scenario.atomic_actions(),
"designate.list_zones")
def test_delete_zone(self):
scenario = utils.DesignateScenario(context=self.context)
zone = scenario._create_zone()
scenario._delete_zone(zone["id"])
self._test_atomic_action_timer(scenario.atomic_actions(),
"designate.delete_zone")
def test_list_recordsets(self):
scenario = utils.DesignateScenario(context=self.context)
return_recordsets_list = scenario._list_recordsets("123")
self.assertEqual(
self.client.recordsets.list.return_value,
return_recordsets_list)
self._test_atomic_action_timer(scenario.atomic_actions(),
"designate.list_recordsets")
@ddt.data(
{},
{"data": "127.0.0.1"})
def test_create_recordset(self, recordset_data):
scenario = utils.DesignateScenario()
random_name = "foo"
zone_name = "zone.name."
random_recordset_name = "%s.%s" % (random_name, zone_name)
scenario = utils.DesignateScenario(context=self.context)
scenario.generate_random_name = mock.Mock(return_value=random_name)
zone = {"name": zone_name, "id": "123"}
# Create with randoms (name and type)
scenario._create_recordset(zone)
self.client.recordsets.create.assert_called_once_with(
zone["id"],
name=random_recordset_name,
type_="A",
records=["10.0.0.1"])
self._test_atomic_action_timer(scenario.atomic_actions(),
"designate.create_recordset")
self.client.recordsets.create.reset_mock()
# Specify name
recordset = {"name": "www.zone.name.", "type_": "ASD"}
scenario._create_recordset(zone, recordset)
self.client.recordsets.create.assert_called_once_with(
zone["id"],
name="www.zone.name.",
type_="ASD",
records=["10.0.0.1"])
self.client.recordsets.create.reset_mock()
# Specify type without underscore
scenario._create_recordset(zone, {"type": "A"})
self.client.recordsets.create.assert_called_once_with(
zone["id"],
name="foo.zone.name.",
type_="A",
records=["10.0.0.1"])
def test_delete_recordset(self):
scenario = utils.DesignateScenario(context=self.context)
zone_id = mock.Mock()
recordset_id = mock.Mock()
scenario._delete_recordset(zone_id, recordset_id)
self.client.recordsets.delete.assert_called_once_with(
zone_id, recordset_id)
self._test_atomic_action_timer(scenario.atomic_actions(),
"designate.delete_recordset")
self.client.recordsets.delete.reset_mock()
scenario._delete_recordset(zone_id, recordset_id)
self.client.recordsets.delete.assert_called_once_with(
zone_id, recordset_id)