summaryrefslogtreecommitdiff
path: root/openstackclient/tests/unit/compute
diff options
context:
space:
mode:
authorDirk Mueller <dirk@dmllr.de>2021-05-03 22:07:39 +0200
committerJavier Peña <jpena@redhat.com>2021-08-24 09:21:45 +0000
commit53f1efa010f9319ef939109d2ed5c4a852271d74 (patch)
tree29867b117854109a2fb60a0d8289b54bdbd29933 /openstackclient/tests/unit/compute
parentd50045e484df8f9662712bf1c2af3ec9bd3b2a2a (diff)
downloadpython-openstackclient-wallaby-em.tar.gz
Replace assertItemsEqual with assertCountEqualwallaby-em5.5.1
assertItemsEqual was removed from Python's unittest.TestCase in Python 3.3 [1][2]. We have been able to use them since then, because testtools required unittest2, which still included it. With testtools removing Python 2.7 support [3][4], we will lose support for assertItemsEqual, so we should switch to use assertCountEqual. [1] - https://bugs.python.org/issue17866 [2] - https://hg.python.org/cpython/rev/d9921cb6e3cd [3] - testing-cabal/testtools#286 [4] - testing-cabal/testtools#277 Conflicts: openstackclient/tests/unit/volume/v2/test_volume_snapshot.py NOTE(jpena): This file is not present in stable/wallaby Change-Id: I0bbffbec8889b8b3067cfe17d258f5cb16624f38 (cherry picked from commit e82a05864f482acc485d1bd35a4db23452f8b2ac)
Diffstat (limited to 'openstackclient/tests/unit/compute')
-rw-r--r--openstackclient/tests/unit/compute/v2/test_aggregate.py16
-rw-r--r--openstackclient/tests/unit/compute/v2/test_flavor.py14
-rw-r--r--openstackclient/tests/unit/compute/v2/test_hypervisor.py6
-rw-r--r--openstackclient/tests/unit/compute/v2/test_server_backup.py6
-rw-r--r--openstackclient/tests/unit/compute/v2/test_server_image.py6
5 files changed, 24 insertions, 24 deletions
diff --git a/openstackclient/tests/unit/compute/v2/test_aggregate.py b/openstackclient/tests/unit/compute/v2/test_aggregate.py
index 8563f988..7c4fe5cb 100644
--- a/openstackclient/tests/unit/compute/v2/test_aggregate.py
+++ b/openstackclient/tests/unit/compute/v2/test_aggregate.py
@@ -88,7 +88,7 @@ class TestAggregateAddHost(TestAggregate):
self.sdk_client.add_host_to_aggregate.assert_called_once_with(
self.fake_ag.id, parsed_args.host)
self.assertEqual(self.columns, columns)
- self.assertItemsEqual(self.data, data)
+ self.assertCountEqual(self.data, data)
class TestAggregateCreate(TestAggregate):
@@ -112,7 +112,7 @@ class TestAggregateCreate(TestAggregate):
self.sdk_client.create_aggregate.assert_called_once_with(
name=parsed_args.name)
self.assertEqual(self.columns, columns)
- self.assertItemsEqual(self.data, data)
+ self.assertCountEqual(self.data, data)
def test_aggregate_create_with_zone(self):
arglist = [
@@ -129,7 +129,7 @@ class TestAggregateCreate(TestAggregate):
self.sdk_client.create_aggregate.assert_called_once_with(
name=parsed_args.name, availability_zone=parsed_args.zone)
self.assertEqual(self.columns, columns)
- self.assertItemsEqual(self.data, data)
+ self.assertCountEqual(self.data, data)
def test_aggregate_create_with_property(self):
arglist = [
@@ -148,7 +148,7 @@ class TestAggregateCreate(TestAggregate):
self.sdk_client.set_aggregate_metadata.assert_called_once_with(
self.fake_ag.id, parsed_args.properties)
self.assertEqual(self.columns, columns)
- self.assertItemsEqual(self.data, data)
+ self.assertCountEqual(self.data, data)
class TestAggregateDelete(TestAggregate):
@@ -265,7 +265,7 @@ class TestAggregateList(TestAggregate):
columns, data = self.cmd.take_action(parsed_args)
self.assertEqual(self.list_columns, columns)
- self.assertItemsEqual(self.list_data, tuple(data))
+ self.assertCountEqual(self.list_data, tuple(data))
def test_aggregate_list_with_long(self):
arglist = [
@@ -278,7 +278,7 @@ class TestAggregateList(TestAggregate):
columns, data = self.cmd.take_action(parsed_args)
self.assertEqual(self.list_columns_long, columns)
- self.assertItemsEqual(self.list_data_long, tuple(data))
+ self.assertCountEqual(self.list_data_long, tuple(data))
class TestAggregateRemoveHost(TestAggregate):
@@ -306,7 +306,7 @@ class TestAggregateRemoveHost(TestAggregate):
self.sdk_client.remove_host_from_aggregate.assert_called_once_with(
self.fake_ag.id, parsed_args.host)
self.assertEqual(self.columns, columns)
- self.assertItemsEqual(self.data, data)
+ self.assertCountEqual(self.data, data)
class TestAggregateSet(TestAggregate):
@@ -492,7 +492,7 @@ class TestAggregateShow(TestAggregate):
parsed_args.aggregate, ignore_missing=False)
self.assertEqual(self.columns, columns)
- self.assertItemsEqual(self.data, tuple(data))
+ self.assertCountEqual(self.data, tuple(data))
class TestAggregateUnset(TestAggregate):
diff --git a/openstackclient/tests/unit/compute/v2/test_flavor.py b/openstackclient/tests/unit/compute/v2/test_flavor.py
index ee4479b0..14dd3df2 100644
--- a/openstackclient/tests/unit/compute/v2/test_flavor.py
+++ b/openstackclient/tests/unit/compute/v2/test_flavor.py
@@ -133,7 +133,7 @@ class TestFlavorCreate(TestFlavor):
self.sdk_client.create_flavor.assert_called_once_with(**default_args)
self.assertEqual(self.columns, columns)
- self.assertItemsEqual(self.data, data)
+ self.assertCountEqual(self.data, data)
def test_flavor_create_all_options(self):
@@ -202,7 +202,7 @@ class TestFlavorCreate(TestFlavor):
self.sdk_client.get_flavor_access.assert_not_called()
self.assertEqual(self.columns, columns)
- self.assertItemsEqual(tuple(cmp_data), data)
+ self.assertCountEqual(tuple(cmp_data), data)
def test_flavor_create_other_options(self):
@@ -277,7 +277,7 @@ class TestFlavorCreate(TestFlavor):
self.sdk_client.create_flavor_extra_specs.assert_called_with(
create_flavor, props)
self.assertEqual(self.columns, columns)
- self.assertItemsEqual(cmp_data, data)
+ self.assertCountEqual(cmp_data, data)
def test_public_flavor_create_with_project(self):
arglist = [
@@ -350,7 +350,7 @@ class TestFlavorCreate(TestFlavor):
self.sdk_client.create_flavor.assert_called_once_with(**args)
self.assertEqual(self.columns, columns)
- self.assertItemsEqual(self.data_private, data)
+ self.assertCountEqual(self.data_private, data)
def test_flavor_create_with_description_api_older(self):
arglist = [
@@ -633,7 +633,7 @@ class TestFlavorList(TestFlavor):
)
self.assertEqual(self.columns_long, columns)
- self.assertItemsEqual(self.data_long, tuple(data))
+ self.assertCountEqual(self.data_long, tuple(data))
def test_flavor_list_min_disk_min_ram(self):
arglist = [
@@ -951,7 +951,7 @@ class TestFlavorShow(TestFlavor):
columns, data = self.cmd.take_action(parsed_args)
self.assertEqual(self.columns, columns)
- self.assertItemsEqual(self.data, data)
+ self.assertCountEqual(self.data, data)
def test_private_flavor_show(self):
private_flavor = compute_fakes.FakeFlavor.create_one_flavor(
@@ -991,7 +991,7 @@ class TestFlavorShow(TestFlavor):
self.sdk_client.get_flavor_access.assert_called_with(
flavor=private_flavor.id)
self.assertEqual(self.columns, columns)
- self.assertItemsEqual(data_with_project, data)
+ self.assertCountEqual(data_with_project, data)
class TestFlavorUnset(TestFlavor):
diff --git a/openstackclient/tests/unit/compute/v2/test_hypervisor.py b/openstackclient/tests/unit/compute/v2/test_hypervisor.py
index 3220a764..7dbd6e19 100644
--- a/openstackclient/tests/unit/compute/v2/test_hypervisor.py
+++ b/openstackclient/tests/unit/compute/v2/test_hypervisor.py
@@ -394,7 +394,7 @@ class TestHypervisorShow(TestHypervisor):
columns, data = self.cmd.take_action(parsed_args)
self.assertEqual(self.columns, columns)
- self.assertItemsEqual(self.data, data)
+ self.assertCountEqual(self.data, data)
def test_hypervisor_show_pre_v228(self):
self.app.client_manager.compute.api_version = \
@@ -420,7 +420,7 @@ class TestHypervisorShow(TestHypervisor):
columns, data = self.cmd.take_action(parsed_args)
self.assertEqual(self.columns, columns)
- self.assertItemsEqual(self.data, data)
+ self.assertCountEqual(self.data, data)
def test_hypervisor_show_uptime_not_implemented(self):
self.app.client_manager.compute.api_version = \
@@ -492,4 +492,4 @@ class TestHypervisorShow(TestHypervisor):
)
self.assertEqual(expected_columns, columns)
- self.assertItemsEqual(expected_data, data)
+ self.assertCountEqual(expected_data, data)
diff --git a/openstackclient/tests/unit/compute/v2/test_server_backup.py b/openstackclient/tests/unit/compute/v2/test_server_backup.py
index 753db9cd..0012d700 100644
--- a/openstackclient/tests/unit/compute/v2/test_server_backup.py
+++ b/openstackclient/tests/unit/compute/v2/test_server_backup.py
@@ -139,7 +139,7 @@ class TestServerBackupCreate(TestServerBackup):
)
self.assertEqual(self.image_columns(images[0]), columns)
- self.assertItemsEqual(self.image_data(images[0]), data)
+ self.assertCountEqual(self.image_data(images[0]), data)
def test_server_backup_create_options(self):
servers = self.setup_servers_mock(count=1)
@@ -173,7 +173,7 @@ class TestServerBackupCreate(TestServerBackup):
)
self.assertEqual(self.image_columns(images[0]), columns)
- self.assertItemsEqual(self.image_data(images[0]), data)
+ self.assertCountEqual(self.image_data(images[0]), data)
@mock.patch.object(common_utils, 'wait_for_status', return_value=False)
def test_server_backup_wait_fail(self, mock_wait_for_status):
@@ -269,4 +269,4 @@ class TestServerBackupCreate(TestServerBackup):
)
self.assertEqual(self.image_columns(images[0]), columns)
- self.assertItemsEqual(self.image_data(images[0]), data)
+ self.assertCountEqual(self.image_data(images[0]), data)
diff --git a/openstackclient/tests/unit/compute/v2/test_server_image.py b/openstackclient/tests/unit/compute/v2/test_server_image.py
index 66452a8b..9b14428a 100644
--- a/openstackclient/tests/unit/compute/v2/test_server_image.py
+++ b/openstackclient/tests/unit/compute/v2/test_server_image.py
@@ -134,7 +134,7 @@ class TestServerImageCreate(TestServerImage):
)
self.assertEqual(self.image_columns(images[0]), columns)
- self.assertItemsEqual(self.image_data(images[0]), data)
+ self.assertCountEqual(self.image_data(images[0]), data)
def test_server_image_create_options(self):
servers = self.setup_servers_mock(count=1)
@@ -165,7 +165,7 @@ class TestServerImageCreate(TestServerImage):
)
self.assertEqual(self.image_columns(images[0]), columns)
- self.assertItemsEqual(self.image_data(images[0]), data)
+ self.assertCountEqual(self.image_data(images[0]), data)
@mock.patch.object(common_utils, 'wait_for_status', return_value=False)
def test_server_create_image_wait_fail(self, mock_wait_for_status):
@@ -235,4 +235,4 @@ class TestServerImageCreate(TestServerImage):
)
self.assertEqual(self.image_columns(images[0]), columns)
- self.assertItemsEqual(self.image_data(images[0]), data)
+ self.assertCountEqual(self.image_data(images[0]), data)