Пример #1
0
 def test_process_ace_file(self):
     """The ACL applied to files should just show inherited, since you can't
     inherit from files"""
     ACE = deepcopy(qacls_config.ACE_EVERYONE_RW)
     result = qacls_push.process_ace(ACE, is_file=True)
     self.assertEqual(result['flags'], qacls_config.INHERITED)
Пример #2
0
 def test_process_ace_directory(self):
     """The ACL applied to all non-root dirs should appear inherited"""
     ACE = deepcopy(qacls_config.ACE_EVERYONE_RW)
     result = qacls_push.process_ace(ACE, is_directory=True, is_root=False)
     self.assertEqual(result['flags'], qacls_config.INHERIT_ALL_INHERITED)