示例#1
0
 def test_lock_reentry(self, rw_dir):
     fpl = osp.join(rw_dir, 'l')
     gcp = GitConfigParser(fpl, read_only=False)
     with gcp as cw:
         cw.set_value('include', 'some_value', 'a')
     # entering again locks the file again...
     with gcp as cw:
         cw.set_value('include', 'some_other_value', 'b')
         # ...so creating an additional config writer must fail due to exclusive access
         with self.assertRaises(IOError):
             GitConfigParser(fpl, read_only=False)
     # but work when the lock is removed
     with GitConfigParser(fpl, read_only=False):
         assert osp.exists(fpl)
         # reentering with an existing lock must fail due to exclusive access
         with self.assertRaises(IOError):
             gcp.__enter__()
示例#2
0
 def test_lock_reentry(self, rw_dir):
     fpl = osp.join(rw_dir, 'l')
     gcp = GitConfigParser(fpl, read_only=False)
     with gcp as cw:
         cw.set_value('include', 'some_value', 'a')
     # entering again locks the file again...
     with gcp as cw:
         cw.set_value('include', 'some_other_value', 'b')
         # ...so creating an additional config writer must fail due to exclusive access
         with self.assertRaises(IOError):
             GitConfigParser(fpl, read_only=False)
     # but work when the lock is removed
     with GitConfigParser(fpl, read_only=False):
         assert osp.exists(fpl)
         # reentering with an existing lock must fail due to exclusive access
         with self.assertRaises(IOError):
             gcp.__enter__()