예제 #1
0
 def test_infer_chronos_state_transferout(self):
     assert condor.infer_clues_job_state(6) == Request.ATTENDED
예제 #2
0
 def test_infer_chronos_state_suspended(self):
     assert condor.infer_clues_job_state(7) == Request.ATTENDED
예제 #3
0
 def test_infer_chronos_state_held(self):
     assert condor.infer_clues_job_state(5) == Request.ATTENDED
예제 #4
0
 def test_infer_chronos_state_completed(self):
     assert condor.infer_clues_job_state(4) == Request.ATTENDED
예제 #5
0
 def test_infer_chronos_state_removed(self):
     assert condor.infer_clues_job_state(3) == Request.ATTENDED
예제 #6
0
 def test_infer_chronos_state_running(self):
     assert condor.infer_clues_job_state(2) == Request.ATTENDED
예제 #7
0
 def test_infer_chronos_state_idle(self):
     assert condor.infer_clues_job_state(1) == Request.PENDING