mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 15:15:23 +00:00
25 lines
775 B
Python
25 lines
775 B
Python
#!/usr/bin/env python
|
|
|
|
import mozdevice
|
|
import mozlog
|
|
import unittest
|
|
from sut import MockAgent
|
|
|
|
|
|
class TestKill(unittest.TestCase):
|
|
|
|
def test_killprocess(self):
|
|
commands = [("ps", "1000 1486 com.android.settings\n"
|
|
"10016 420 com.android.location.fused\n"
|
|
"10023 335 com.android.systemui\n"),
|
|
("kill com.android.settings",
|
|
"Successfully killed com.android.settings\n")]
|
|
m = MockAgent(self, commands=commands)
|
|
d = mozdevice.DroidSUT("127.0.0.1", port=m.port, logLevel=mozlog.DEBUG)
|
|
# No error raised means success
|
|
self.assertEqual(None, d.killProcess("com.android.settings"))
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|