|
1 | 1 | import os
|
| 2 | +import stat # for chmod |
2 | 3 | import unittest
|
3 | 4 | from .helpers.ptrack_helpers import dir_files, ProbackupTest, ProbackupException
|
4 | 5 | import shutil
|
5 | 6 |
|
| 7 | +if os.name == 'nt': |
| 8 | + import win32security |
| 9 | + import ntsecuritycon as con |
6 | 10 |
|
7 | 11 | module_name = 'init'
|
8 | 12 |
|
@@ -86,6 +90,40 @@ def test_already_exist(self):
|
86 | 90 |
|
87 | 91 | # Clean after yourself
|
88 | 92 | self.del_test_dir(module_name, fname)
|
| 93 | + |
| 94 | + # @unittest.skip("skip") |
| 95 | + def test_no_rights_for_directory(self): |
| 96 | + """Failure with backup catalog existed and empty but user has no writing permissions""" |
| 97 | + fname = self.id().split(".")[3] |
| 98 | + backup_dir = os.path.join(self.tmp_path, module_name, fname, 'backup') |
| 99 | + node = self.make_simple_node(base_dir=os.path.join(module_name, fname, 'node')) |
| 100 | + os.mkdir(backup_dir) |
| 101 | + # changing directory rights |
| 102 | + if os.name == 'nt': # windows block |
| 103 | + user, domain, type = win32security.LookupAccountName("", os.getlogin()) |
| 104 | + sd = win32securityGetFileSecurity(backup_dir, win32security.DACL_SECURIRY_INFORMATION) |
| 105 | + dacl = sd.GetSecurityDescriptorDacl() |
| 106 | + |
| 107 | + dacl.AddAccessDeniedAce(win32security.ACL_REVISION, con.FILE_WRITE_DATA, user) # deny writing permission |
| 108 | + sd.SetSecurityDescriptorDacl(1, dacl, 0) |
| 109 | + win32security.SetFileSecurity(backup_dir, win32security.DACL_SECURIRY_INFORMATION, sd) |
| 110 | + else: |
| 111 | + os.chmod(backup_dir, stat.S_IREAD) # set read-only flag for current user |
| 112 | + assert os.access(backup_dir, os.R_OK) and not os.access(backup_dir, os.W_OK) |
| 113 | + |
| 114 | + self.init_pb(backup_dir) |
| 115 | + try: |
| 116 | + self.show_pb(backup_dir, 'node') |
| 117 | + self.assertEqual(1, 0, 'Expecting Error due to initialization in empty directory with no rithts for writing. Output: {0} \n CMD: {1}'.format( |
| 118 | + repr(self.output), self.cmd)) |
| 119 | + except ProbackupException as e: |
| 120 | + self.assertIn( |
| 121 | + "ERROR: Instance 'node' does not exist in this backup catalog", |
| 122 | + e.message, |
| 123 | + '\n Unexpected Error Message: {0}\n CMD: {1}'.format(repr(e.message), self.cmd)) |
| 124 | + |
| 125 | + # Clean after yourself |
| 126 | + self.del_test_dir(module_name, fname) |
89 | 127 |
|
90 | 128 | # @unittest.skip("skip")
|
91 | 129 | def test_abs_path(self):
|
|
0 commit comments