mirror of
https://git.yoctoproject.org/git/poky
synced 2026-01-04 16:10:04 +00:00
Where there isn't a copyright statement, add one to make it explicit. Also add license identifiers as MIT if there isn't one. (From OE-Core rev: bb731d1f3d2a1d50ec0aed864dbca54cf795b040) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
28 lines
1.0 KiB
Python
28 lines
1.0 KiB
Python
#
|
|
# Copyright OpenEmbedded Contributors
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
#
|
|
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()
|