|
11 | 11 | # under the License. |
12 | 12 |
|
13 | 13 | from tempest.lib.common.utils import data_utils |
14 | | -import testtools |
15 | 14 |
|
16 | 15 | from openstackclient.tests.functional.identity.v3 import common |
17 | 16 |
|
18 | 17 |
|
19 | 18 | class IdentityProviderTests(common.IdentityTests): |
20 | 19 | # Introduce functional test case for command 'Identity Provider' |
21 | 20 |
|
22 | | - @testtools.skip('domain resource changed') |
23 | 21 | def test_idp_create(self): |
24 | 22 | self._create_dummy_idp() |
25 | 23 |
|
26 | | - @testtools.skip('domain resource changed') |
27 | 24 | def test_idp_delete(self): |
28 | 25 | identity_provider = self._create_dummy_idp(add_clean_up=False) |
29 | 26 | raw_output = self.openstack('identity provider delete %s' |
30 | 27 | % identity_provider) |
31 | 28 | self.assertEqual(0, len(raw_output)) |
32 | 29 |
|
33 | | - @testtools.skip('domain resource changed') |
34 | 30 | def test_idp_multi_delete(self): |
35 | 31 | idp_1 = self._create_dummy_idp(add_clean_up=False) |
36 | 32 | idp_2 = self._create_dummy_idp(add_clean_up=False) |
37 | 33 | raw_output = self.openstack( |
38 | 34 | 'identity provider delete %s %s' % (idp_1, idp_2)) |
39 | 35 | self.assertEqual(0, len(raw_output)) |
40 | 36 |
|
41 | | - @testtools.skip('domain resource changed') |
42 | 37 | def test_idp_show(self): |
43 | 38 | identity_provider = self._create_dummy_idp(add_clean_up=True) |
44 | 39 | raw_output = self.openstack('identity provider show %s' |
45 | 40 | % identity_provider) |
46 | 41 | items = self.parse_show(raw_output) |
47 | 42 | self.assert_show_fields(items, self.IDENTITY_PROVIDER_FIELDS) |
48 | 43 |
|
49 | | - @testtools.skip('domain resource changed') |
50 | 44 | def test_idp_list(self): |
51 | 45 | self._create_dummy_idp(add_clean_up=True) |
52 | 46 | raw_output = self.openstack('identity provider list') |
53 | 47 | items = self.parse_listing(raw_output) |
54 | 48 | self.assert_table_structure(items, self.IDENTITY_PROVIDER_LIST_HEADERS) |
55 | 49 |
|
56 | | - @testtools.skip('domain resource changed') |
57 | 50 | def test_idp_set(self): |
58 | 51 | identity_provider = self._create_dummy_idp(add_clean_up=True) |
59 | 52 | new_remoteid = data_utils.rand_name('newRemoteId') |
|
0 commit comments