mirror of
https://git.yoctoproject.org/poky
synced 2026-04-14 08:02:30 +02:00
oeqa/usb_hid.py : add test to check the usb/human interface device status after suspend state
This test mimic the Test_if_usb_hid_device_works_well_after_resume_from_suspend_state manual test case from oeqa/manual/bsp-hw.json. (From OE-Core rev: 00074636b81484dedef4c1769b018f6b980be423) Signed-off-by: Teoh Jay Shen <jay.shen.teoh@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 23a3dc370a52907ee3261746405fb9b2af9e9a11) Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
587ea95477
commit
6d7754c80e
22
meta/lib/oeqa/runtime/cases/usb_hid.py
Normal file
22
meta/lib/oeqa/runtime/cases/usb_hid.py
Normal file
@@ -0,0 +1,22 @@
|
||||
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('qemuall', 'Test only runs on real hardware')
|
||||
@OETestDepends(['ssh.SSHTest.test_ssh'])
|
||||
def test_USB_Hid_input(self):
|
||||
self.keyboard_mouse_simulation()
|
||||
self.set_suspend()
|
||||
self.keyboard_mouse_simulation()
|
||||
Reference in New Issue
Block a user