@@ -312,8 +312,7 @@ def onerror(*args):
312
312
313
313
@unittest .skipIf (sys .platform [:6 ] == 'cygwin' ,
314
314
"This test can't be run on Cygwin (issue #1071513)." )
315
- @unittest .skipIf (hasattr (os , 'geteuid' ) and os .geteuid () == 0 ,
316
- "This test can't be run reliably as root (issue #1076467)." )
315
+ @os_helper .skip_if_dac_override
317
316
@os_helper .skip_unless_working_chmod
318
317
def test_on_error (self ):
319
318
self .errorState = 0
@@ -1033,8 +1032,7 @@ def _raise_on_src(fname, *, follow_symlinks=True):
1033
1032
1034
1033
@os_helper .skip_unless_symlink
1035
1034
@os_helper .skip_unless_xattr
1036
- @unittest .skipUnless (hasattr (os , 'geteuid' ) and os .geteuid () == 0 ,
1037
- 'root privileges required' )
1035
+ @os_helper .skip_unless_dac_override
1038
1036
def test_copyxattr_symlinks (self ):
1039
1037
# On Linux, it's only possible to access non-user xattr for symlinks;
1040
1038
# which in turn require root privileges. This test should be expanded
@@ -1830,8 +1828,7 @@ def test_cwd(self):
1830
1828
# Other platforms: shouldn't match in the current directory.
1831
1829
self .assertIsNone (rv )
1832
1830
1833
- @unittest .skipIf (hasattr (os , 'geteuid' ) and os .geteuid () == 0 ,
1834
- 'non-root user required' )
1831
+ @os_helper .skip_if_dac_override
1835
1832
def test_non_matching_mode (self ):
1836
1833
# Set the file read-only and ask for writeable files.
1837
1834
os .chmod (self .temp_file .name , stat .S_IREAD )
@@ -2182,11 +2179,11 @@ def test_move_dir_caseinsensitive(self):
2182
2179
os .rmdir (dst_dir )
2183
2180
2184
2181
2185
- @unittest . skipUnless ( hasattr ( os , 'geteuid' ) and os . geteuid () == 0
2186
- and hasattr (os , 'lchflags' )
2182
+ @os_helper . skip_unless_dac_override
2183
+ @ unittest . skipUnless ( hasattr (os , 'lchflags' )
2187
2184
and hasattr (stat , 'SF_IMMUTABLE' )
2188
2185
and hasattr (stat , 'UF_OPAQUE' ),
2189
- 'root privileges required ' )
2186
+ 'requires lchflags ' )
2190
2187
def test_move_dir_permission_denied (self ):
2191
2188
# bpo-42782: shutil.move should not create destination directories
2192
2189
# if the source directory cannot be removed.
0 commit comments