Skip to content

Commit

Permalink
Merge pull request ceph#57496 from rishabh-d-dave/block-test_idem_una…
Browse files Browse the repository at this point in the history
…ffected_root_squash

qa/cephfs: block buggy tests in test_admin.py

Reviewed-by: Venky Shankar <[email protected]>
Reviewed-by: Patrick Donnelly <[email protected]>
  • Loading branch information
rishabh-d-dave authored May 17, 2024
2 parents 6859fe6 + b7d0770 commit 19ee59e
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions qa/tasks/cephfs/test_admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -839,6 +839,9 @@ def test_fs_rename_fails_for_non_existent_fs(self):
"""
That renaming a non-existent file system fails.
"""
self.skipTest('This test is broken ATM; see '
'https://tracker.ceph.com/issues/66088')

self.run_ceph_cmd(f'fs fail {self.fs.name}')
self.run_ceph_cmd(f'fs set {self.fs.name} refuse_client_session true')
sleep(5)
Expand Down Expand Up @@ -1444,6 +1447,9 @@ def test_multifs_single_path_rootsquash(self):
"""
Test root_squash with multi fs
"""
self.skipTest('this test is broken ATM, see: '
'https://tracker.ceph.com/issues/66076.')

self.fs1 = self.fs
self.fs2 = self.mds_cluster.newfs('testcephfs2')
self.mount_b.remount(cephfs_name=self.fs2.name)
Expand Down Expand Up @@ -1604,6 +1610,9 @@ def test_single_path_authorize_on_nonalphanumeric_fsname(self):
That fs authorize command works on filesystems with names having [_.-]
characters
"""
self.skipTest('this test is broken ATM, see: '
'https://tracker.ceph.com/issues/66077')

self.mount_a.umount_wait(require_clean=True)
self.mds_cluster.delete_all_filesystems()
fs_name = "cephfs-_."
Expand Down Expand Up @@ -1948,6 +1957,9 @@ def test_idem_unaffected_root_squash(self):
caps mon = "allow r fsname=a"
caps osd = "allow rw tag cephfs data=a"
"""
self.skipTest('this test is broken ATM, see '
'https://tracker.ceph.com/issues/65808')

PERM, PATH = 'rw', 'dir1'
self.mount_a.run_shell(f'mkdir {PATH}')
self.captester = CapTester(self.mount_a, PATH)
Expand Down

0 comments on commit 19ee59e

Please sign in to comment.