def setUp(self): require_empty_dir('sandbox') self.fs = Mock() self.fs.isdir.return_value = True self.fs.islink.return_value = False self.fs.has_sticky_bit.return_value = True self.checker = TopTrashDirWriteRules(self.fs) self.out = Mock()
def setUp(self): require_empty_dir("sandbox") self.fs = Mock() self.fs.isdir.return_value = True self.fs.islink.return_value = False self.fs.has_sticky_bit.return_value = True self.checker = TopTrashDirWriteRules(self.fs) self.out = Mock()
class TestMethod1VolumeTrashDirectory: def setUp(self): require_empty_dir('sandbox') self.fs = Mock() self.fs.isdir.return_value = True self.fs.islink.return_value = False self.fs.has_sticky_bit.return_value = True self.checker = TopTrashDirWriteRules(self.fs) self.out = Mock() def test_check_when_no_sticky_bit(self): self.fs.has_sticky_bit.return_value = False self.valid_to_be_written() self.out.not_valid_parent_should_be_sticky.assert_called_with() def test_check_when_no_dir(self): self.fs.isdir.return_value = False self.valid_to_be_written() self.out.not_valid_should_be_a_dir.assert_called_with() def test_check_when_is_symlink(self): self.fs.islink.return_value = True self.valid_to_be_written() self.out.not_valid_parent_should_not_be_a_symlink.assert_called_with() def test_check_pass(self): self.valid_to_be_written() self.out.is_valid() def valid_to_be_written(self): self.checker.valid_to_be_written('sandbox/trash-dir/123', self.out)
class TestMethod1VolumeTrashDirectory: def setUp(self): require_empty_dir("sandbox") self.fs = Mock() self.fs.isdir.return_value = True self.fs.islink.return_value = False self.fs.has_sticky_bit.return_value = True self.checker = TopTrashDirWriteRules(self.fs) self.out = Mock() def test_check_when_no_sticky_bit(self): self.fs.has_sticky_bit.return_value = False self.valid_to_be_written() self.out.not_valid_parent_should_be_sticky.assert_called_with() def test_check_when_no_dir(self): self.fs.isdir.return_value = False self.valid_to_be_written() self.out.not_valid_should_be_a_dir.assert_called_with() def test_check_when_is_symlink(self): self.fs.islink.return_value = True self.valid_to_be_written() self.out.not_valid_parent_should_not_be_a_symlink.assert_called_with() def test_check_pass(self): self.valid_to_be_written() self.out.is_valid() def valid_to_be_written(self): self.checker.valid_to_be_written("sandbox/trash-dir/123", self.out)