blob: 396584e005ba8790fa49acbd5564f7abf6eb6deb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
#!/usr/bin/env python
from time import sleep
import mozrunnertest
class MozrunnerStartTestCase(mozrunnertest.MozrunnerTestCase):
def test_start_process(self):
"""Start the process and test properties"""
self.assertIsNone(self.runner.process_handler)
self.runner.start()
self.assertTrue(self.runner.is_running())
self.assertIsNotNone(self.runner.process_handler)
def test_start_process_called_twice(self):
"""Start the process twice and test that first process is gone"""
self.runner.start()
# Bug 925480
# Make a copy until mozprocess can kill a specific process
process_handler = self.runner.process_handler
self.runner.start()
try:
self.assertNotIn(process_handler.wait(1), [None, 0])
finally:
process_handler.kill()
def test_start_with_timeout(self):
"""Start the process and set a timeout"""
self.runner.start(timeout=2)
sleep(5)
self.assertFalse(self.runner.is_running())
def test_start_with_outputTimeout(self):
"""Start the process and set a timeout"""
self.runner.start(outputTimeout=2)
sleep(15)
self.assertFalse(self.runner.is_running())
|