Beispiel #1
0
 def test_missing_timer_stopped(self):
     worker = yield self.createWorker(attached=False, missing_timeout=1)
     yield worker.startService()
     self.assertNotEqual(worker.missing_timer, None)
     yield worker.stopService()
     self.assertEqual(worker.missing_timer, None)
     self.assertEqual(len(self.master.data.updates.missingWorkers), 0)
Beispiel #2
0
 def test_missing_timer_stopped(self):
     worker = yield self.createWorker(attached=False, missing_timeout=1)
     yield worker.startService()
     self.assertNotEqual(worker.missing_timer, None)
     yield worker.stopService()
     self.assertEqual(worker.missing_timer, None)
     self.assertEqual(len(self.master.data.updates.missingWorkers), 0)
Beispiel #3
0
    def test_stopService(self):
        worker = yield self.createWorker()
        yield worker.startService()

        reg = worker.registration

        yield worker.stopService()

        self.assertTrue(reg.unregistered)
        self.assertEqual(worker.registration, None)
Beispiel #4
0
    def test_stopService(self):
        worker = yield self.createWorker()
        yield worker.startService()

        reg = worker.registration

        yield worker.stopService()

        self.assertTrue(reg.unregistered)
        self.assertEqual(worker.registration, None)