mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-19 10:53:11 +09:00
20 lines
527 B
Python
20 lines
527 B
Python
#!/usr/bin/env python
|
|
import mozdevice
|
|
import logging
|
|
import unittest
|
|
from sut import MockAgent
|
|
|
|
|
|
class TestApp(unittest.TestCase):
|
|
|
|
def test_getAppRoot(self):
|
|
command = [("getapproot org.mozilla.firefox",
|
|
"/data/data/org.mozilla.firefox")]
|
|
|
|
m = MockAgent(self, commands=command)
|
|
d = mozdevice.DroidSUT("127.0.0.1", port=m.port, logLevel=logging.DEBUG)
|
|
|
|
self.assertEqual(command[0][1], d.getAppRoot('org.mozilla.firefox'))
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|