Exemplo n.º 1
0
 def test_get_actions_in_progess(self):
     now = datetime.date.today()
     type = Type(code='video')
     type.save()
     status = Status(code='rename')
     status.save()
     mf = MediaFile(type = type, \
                    status = status, \
                    filepath ='/fakefilepath/myfile.mkv')
     mf.save()
     command = "/bogus/command"
     completion = 5
     description = 'desc'
     action = Action(mediafile = mf, \
                     command = command, \
                     completion = completion, \
                     description = description)
     action.save()  # action saved but not started
     current_actions = Action.get_actions_in_progress()
     num_actions = len(current_actions)
     self.assertFalse(action in current_actions)
     action.start()
     current_actions = Action.get_actions_in_progress()
     self.assertEqual(len(current_actions), num_actions + 1)
     self.assertTrue(action in current_actions)
Exemplo n.º 2
0
 def test_get_actions_in_progess(self):
     now = datetime.date.today()
     type = Type(code='video')
     type.save()
     status = Status(code='rename')
     status.save()
     mf = MediaFile(type = type, \
                    status = status, \
                    filepath ='/fakefilepath/myfile.mkv')
     mf.save()
     command = "/bogus/command"
     completion = 5
     description = 'desc'
     action = Action(mediafile = mf, \
                     command = command, \
                     completion = completion, \
                     description = description)
     action.save() # action saved but not started
     current_actions = Action.get_actions_in_progress()
     num_actions = len(current_actions)
     self.assertFalse(action in current_actions)
     action.start()
     current_actions = Action.get_actions_in_progress()
     self.assertEqual(len(current_actions), num_actions + 1)
     self.assertTrue(action in current_actions)
Exemplo n.º 3
0
 def test_get_extension(self):
     mf = MediaFile(type = Type(code='video'), \
                    status = Status(code='rename'), \
                    filepath ='/fakefilepath/myfile.mkv')
     self.assertEqual(mf.get_extension(), 'mkv')
     mf.filepath = '/fakefilepath/myfile.test.mkv'
     self.assertEqual(mf.get_extension(), 'mkv')
Exemplo n.º 4
0
 def test_get_extension(self):
     mf = MediaFile(type = Type(code='video'), \
                    status = Status(code='rename'), \
                    filepath ='/fakefilepath/myfile.mkv')
     self.assertEqual(mf.get_extension(), 'mkv')
     mf.filepath ='/fakefilepath/myfile.test.mkv'
     self.assertEqual(mf.get_extension(), 'mkv')