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