summaryrefslogtreecommitdiff
path: root/openstackclient/tests/functional/identity/v3
diff options
context:
space:
mode:
Diffstat (limited to 'openstackclient/tests/functional/identity/v3')
-rw-r--r--openstackclient/tests/functional/identity/v3/test_idp.py10
1 files changed, 9 insertions, 1 deletions
diff --git a/openstackclient/tests/functional/identity/v3/test_idp.py b/openstackclient/tests/functional/identity/v3/test_idp.py
index f9d8cb80..a81cafa9 100644
--- a/openstackclient/tests/functional/identity/v3/test_idp.py
+++ b/openstackclient/tests/functional/identity/v3/test_idp.py
@@ -10,22 +10,27 @@
# License for the specific language governing permissions and limitations
# under the License.
-from openstackclient.tests.functional.identity.v3 import common
from tempest.lib.common.utils import data_utils
+import testtools
+
+from openstackclient.tests.functional.identity.v3 import common
class IdentityProviderTests(common.IdentityTests):
# Introduce functional test case for command 'Identity Provider'
+ @testtools.skip('domain resource changed')
def test_idp_create(self):
self._create_dummy_idp()
+ @testtools.skip('domain resource changed')
def test_idp_delete(self):
identity_provider = self._create_dummy_idp(add_clean_up=False)
raw_output = self.openstack('identity provider delete %s'
% identity_provider)
self.assertEqual(0, len(raw_output))
+ @testtools.skip('domain resource changed')
def test_idp_multi_delete(self):
idp_1 = self._create_dummy_idp(add_clean_up=False)
idp_2 = self._create_dummy_idp(add_clean_up=False)
@@ -33,6 +38,7 @@ class IdentityProviderTests(common.IdentityTests):
'identity provider delete %s %s' % (idp_1, idp_2))
self.assertEqual(0, len(raw_output))
+ @testtools.skip('domain resource changed')
def test_idp_show(self):
identity_provider = self._create_dummy_idp(add_clean_up=True)
raw_output = self.openstack('identity provider show %s'
@@ -40,12 +46,14 @@ class IdentityProviderTests(common.IdentityTests):
items = self.parse_show(raw_output)
self.assert_show_fields(items, self.IDENTITY_PROVIDER_FIELDS)
+ @testtools.skip('domain resource changed')
def test_idp_list(self):
self._create_dummy_idp(add_clean_up=True)
raw_output = self.openstack('identity provider list')
items = self.parse_listing(raw_output)
self.assert_table_structure(items, self.IDENTITY_PROVIDER_LIST_HEADERS)
+ @testtools.skip('domain resource changed')
def test_idp_set(self):
identity_provider = self._create_dummy_idp(add_clean_up=True)
new_remoteid = data_utils.rand_name('newRemoteId')