Example #1
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)
Example #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)
     self.process = subprocess.Popen('./tests/streamer.sh {0} {1}'.format(self.my_thing_id, test_key), shell=True, stderr=subprocess.STDOUT)
Example #3
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)
Example #4
0
 def test_lock_unlock(self):
     """Test that locking/unlocking doesn't raise an error.
     """
     my_thing_id = str(uuid.uuid4())
     dweepy.lock(my_thing_id, test_lock, test_key)
     dweepy.unlock(my_thing_id, test_key)