def test_put_with_lease(self):
     blob = LocalFileBlob(os.path.join(TEST_FOLDER, "foobar.blob"))
     test_input = (1, 2, 3)
     blob.delete(silent=True)
     blob.put(test_input, lease_period=0.01)
     blob.lease(0.01)
     self.assertEqual(blob.get(), test_input)
 def test_lease_error(self):
     blob = LocalFileBlob(os.path.join(TEST_FOLDER, "foobar.blob"))
     blob.delete(silent=True)
     self.assertEqual(blob.lease(0.01), None)
 def test_put_error(self):
     blob = LocalFileBlob(os.path.join(TEST_FOLDER, "foobar"))
     with mock.patch("os.rename", side_effect=throw(Exception)):
         self.assertRaises(Exception, lambda: blob.put([1, 2, 3]))
 def test_get(self):
     blob = LocalFileBlob(os.path.join(TEST_FOLDER, "foobar"))
     self.assertIsNone(blob.get(silent=True))
     self.assertRaises(Exception, blob.get)
     self.assertRaises(Exception, lambda: blob.get(silent=False))
 def test_delete(self):
     blob = LocalFileBlob(os.path.join(TEST_FOLDER, "foobar"))
     blob.delete(silent=True)
     self.assertRaises(Exception, blob.delete)
     self.assertRaises(Exception, lambda: blob.delete(silent=False))
 def test_put_without_lease(self):
     blob = LocalFileBlob(os.path.join(TEST_FOLDER, "foobar.blob"))
     input = (1, 2, 3)
     blob.delete(silent=True)
     blob.put(input)
     self.assertEqual(blob.get(), input)
Example #7
0
 def test_get(self):
     blob = LocalFileBlob(os.path.join(TEST_FOLDER, "foobar"))
     self.assertIsNone(blob.get())
     blob.get()
Example #8
0
 def test_delete(self):
     blob = LocalFileBlob(os.path.join(TEST_FOLDER, "foobar"))
     blob.delete()
     blob.delete()