mirror of
https://git.yoctoproject.org/poky
synced 2026-02-12 19:53:03 +01:00
(From OE-Core rev: 1a3a37cc2b16a8d5cd2258b0b35be43baa363f67) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
23 lines
992 B
Python
23 lines
992 B
Python
from oeqa.runtime.case import OERuntimeTestCase
|
|
from oeqa.core.decorator.depends import OETestDepends
|
|
from oeqa.core.decorator.data import skipIfQemu
|
|
from oeqa.runtime.decorator.package import OEHasPackage
|
|
|
|
class USB_HID_Test(OERuntimeTestCase):
|
|
|
|
def keyboard_mouse_simulation(self):
|
|
(status, output) = self.target.run('export DISPLAY=:0 && xdotool key F2 && xdotool mousemove 100 100')
|
|
return self.assertEqual(status, 0, msg = 'Failed to simulate keyboard/mouse input event, output : %s' % output)
|
|
|
|
def set_suspend(self):
|
|
(status, output) = self.target.run('sudo rtcwake -m mem -s 10')
|
|
return self.assertEqual(status, 0, msg = 'Failed to suspends your system to RAM, output : %s' % output)
|
|
|
|
@OEHasPackage(['xdotool'])
|
|
@skipIfQemu()
|
|
@OETestDepends(['ssh.SSHTest.test_ssh'])
|
|
def test_USB_Hid_input(self):
|
|
self.keyboard_mouse_simulation()
|
|
self.set_suspend()
|
|
self.keyboard_mouse_simulation()
|