mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
77 lines
3.1 KiB
Python
77 lines
3.1 KiB
Python
from sut import MockAgent
|
|
import mozdevice
|
|
import unittest
|
|
|
|
class BasicTest(unittest.TestCase):
|
|
|
|
def test_init(self):
|
|
"""Tests DeviceManager initialization."""
|
|
a = MockAgent(self)
|
|
|
|
mozdevice.DroidSUT.debug = 4
|
|
d = mozdevice.DroidSUT("127.0.0.1", port=a.port)
|
|
# all testing done in device's constructor
|
|
a.wait()
|
|
|
|
def test_init_err(self):
|
|
"""Tests error handling during initialization."""
|
|
cmds = [("testroot", "/mnt/sdcard"),
|
|
("isdir /mnt/sdcard/tests", "/mnt/sdcard/tests: No such file or directory\n"),
|
|
("isdir /mnt/sdcard/tests", "/mnt/sdcard/tests: No such file or directory\n"),
|
|
("mkdr /mnt/sdcard/tests", "/mnt/sdcard/tests successfully created"),
|
|
("ver", "SUTAgentAndroid Version 1.14")]
|
|
a = MockAgent(self, start_commands = cmds)
|
|
mozdevice.DroidSUT.debug = 4
|
|
dm = mozdevice.DroidSUT("127.0.0.1", port=a.port)
|
|
a.wait()
|
|
|
|
def test_timeout_normal(self):
|
|
"""Tests DeviceManager timeout, normal case."""
|
|
a = MockAgent(self, commands = [("isdir /mnt/sdcard/tests", "TRUE"),
|
|
("cd /mnt/sdcard/tests", ""),
|
|
("ls", "test.txt"),
|
|
("rm /mnt/sdcard/tests/test.txt",
|
|
"Removed the file")])
|
|
mozdevice.DroidSUT.debug = 4
|
|
d = mozdevice.DroidSUT("127.0.0.1", port=a.port)
|
|
ret = d.removeFile('/mnt/sdcard/tests/test.txt')
|
|
self.assertEqual(ret, None) # if we didn't throw an exception, we're ok
|
|
a.wait()
|
|
|
|
def test_timeout_timeout(self):
|
|
"""Tests DeviceManager timeout, timeout case."""
|
|
a = MockAgent(self, commands = [("isdir /mnt/sdcard/tests", "TRUE"),
|
|
("cd /mnt/sdcard/tests", ""),
|
|
("ls", "test.txt"),
|
|
("rm /mnt/sdcard/tests/test.txt", 0)])
|
|
mozdevice.DroidSUT.debug = 4
|
|
d = mozdevice.DroidSUT("127.0.0.1", port=a.port)
|
|
d.default_timeout = 1
|
|
exceptionThrown = False
|
|
try:
|
|
d.removeFile('/mnt/sdcard/tests/test.txt')
|
|
except mozdevice.DMError:
|
|
exceptionThrown = True
|
|
self.assertEqual(exceptionThrown, True)
|
|
a.wait()
|
|
|
|
def test_shell(self):
|
|
"""Tests shell command"""
|
|
for cmd in [ ("exec foobar", False), ("execsu foobar", True) ]:
|
|
for retcode in [ 1, 2 ]:
|
|
a = MockAgent(self, commands=[(cmd[0],
|
|
"\nreturn code [%s]" % retcode)])
|
|
d = mozdevice.DroidSUT("127.0.0.1", port=a.port)
|
|
exceptionThrown = False
|
|
try:
|
|
d.shellCheckOutput(["foobar"], root=cmd[1])
|
|
except mozdevice.DMError:
|
|
exceptionThrown = True
|
|
expectedException = (retcode != 0)
|
|
self.assertEqual(exceptionThrown, expectedException)
|
|
|
|
a.wait()
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|