Exemple #1
0
 def test_remove_lock_unlocked(self):
     """`remove_lock` should raise exception when lock not in use.
     """
     try:
         dweepy.remove_lock(test_lock, test_key)
     except dweepy.DweepyError as e:
         self.assertEqual(e.args[0], 'this lock is not in use')
Exemple #2
0
 def setUp(self):
     try:
         dweepy.remove_lock(test_lock, test_key)
     except dweepy.DweepyError:
         pass
     self.my_thing_id = str(uuid.uuid4())
     dweepy.lock(self.my_thing_id, test_lock, test_key)
Exemple #3
0
 def tearDown(self):
     self.process.terminate()
     dweepy.unlock(self.my_thing_id, test_key)
     try:
         dweepy.remove_lock(test_lock, test_key)
     except dweepy.DweepyError:
         pass
Exemple #4
0
 def setUp(self):
     try:
         dweepy.remove_lock(test_lock, test_key)
     except dweepy.DweepyError:
         pass
     self.my_thing_id = str(uuid.uuid4())
     dweepy.lock(self.my_thing_id, test_lock, test_key)
     self.process = subprocess.Popen('./tests/streamer.sh {0} {1}'.format(self.my_thing_id, test_key), shell=True, stderr=subprocess.STDOUT)
Exemple #5
0
 def test_remove_lock_locked(self):
     """`remove_lock` should return a valid response when in use.
     """
     my_thing_id = str(uuid.uuid4())
     dweepy.lock(my_thing_id, test_lock, test_key)
     self.assertEqual(dweepy.remove_lock(test_lock, test_key), test_lock)
Exemple #6
0
 def tearDown(self):
     try:
         dweepy.remove_lock(test_lock, test_key)
     except dweepy.DweepyError:
         pass
Exemple #7
0
 def setUp(self):
     try:
         dweepy.remove_lock(test_lock, test_key)
     except dweepy.DweepyError:
         pass
Exemple #8
0
 def tearDown(self):
     dweepy.unlock(self.my_thing_id, test_key)
     try:
         dweepy.remove_lock(test_lock, test_key)
     except dweepy.DweepyError:
         pass