Skip to content

Commit fe13d0c

Browse files
author
alfred
committed
Add dbus folder and README file
1 parent 5863b9f commit fe13d0c

File tree

4 files changed

+240
-0
lines changed

4 files changed

+240
-0
lines changed

README

+134
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,134 @@
1+
Dependency:
2+
=================
3+
1. python2.7
4+
5+
2. python-setuptools python-support python-pip
6+
7+
Ubuntu
8+
9+
sudo apt-get install python-setuptools python-support python-pip
10+
11+
Fedora(RHEL)
12+
13+
sudo yum install python-setuptools python-support python-pip
14+
15+
openSUSE(TIZEN)
16+
17+
sudo zypper install python-setuptools python-support python-pip
18+
19+
20+
21+
3. python-requests(>=1.1), use pip to install it
22+
23+
sudo pip install requests
24+
25+
How to build debian package:
26+
=================
27+
Host with Ubuntu OS recommended. Run the command below to build from source code and get debian package:
28+
29+
dpkg-buildpackage
30+
31+
32+
How to build RPM package:
33+
=================
34+
Host with Fedora OS recommended. Run the command below to build from source code and get rpm package:
35+
36+
make -C packaging/
37+
rpmbuild -tb packaging/testkit-lite_<version>.tar.gz --nodeps
38+
39+
Host with ubuntu OS, we need to add a workaround to support the rpm build
40+
41+
rpmbuild --define 'python_sitelib /usr/lib/python2.7/site-packages' -tb packaging/testkit-lite_<version>.tar.gz --nodeps
42+
43+
How to install:
44+
=================
45+
Install testkit lite from source code:
46+
47+
sudo python setup.py install --record /var/log/testkit-lite.files
48+
49+
Install testkit lite from debian build:
50+
51+
sudo dpkg -i ../testkit-lite_<version>_all.deb
52+
53+
How to uninstall:
54+
=================
55+
Uninstall testkit-lite installed with 'setup.py install':
56+
57+
cat /var/log/testkit-lite.files | sudo xargs rm -rf
58+
59+
Uninstall testkit-lite installed with 'debian':
60+
61+
sudo dpkg -r testkit-lite
62+
63+
How to use:
64+
=================
65+
1) You can run case on target:
66+
For web test cases:
67+
68+
testkit-lite -f device:"<somewhere>/<package_name>/tests.xml" -e 'WRTLauncher <package_name>'
69+
70+
For native test cases:
71+
72+
testkit-lite -f device:"<somewhere>/<package_name>/tests.xml"
73+
74+
2) You can run case in single mode :
75+
For web test cases:
76+
77+
testkit-lite -f "<somewhere>/<package_name>/tests.xml" -e 'WRTLauncher <package_name>' --comm localhost
78+
79+
For native test cases:
80+
81+
testkit-lite -f "<somewhere>/<package_name>/tests.xml" --comm localhost
82+
83+
3) You can select on parser engine to simply conduct one or more tests.xml on target:
84+
85+
testkit-lite -f device:"<somewhere>/<package_name1>/tests.xml ... <somewhere>/<package_namen>/tests.xml" -e 'WRTLauncher <package_name1> ... <package_namen>'
86+
87+
4) If you want to execute both auto and manual tests:
88+
89+
testkit-lite -f device:"<somewhere>/<package_name>/tests.xml"
90+
91+
5) If you just want to execute manual tests:
92+
93+
testkit-lite -f device:"<somewhere>/<package_name>/tests.xml" -M
94+
95+
6) If you just want to execute auto tests:
96+
97+
testkit-lite -f device:"<somewhere>/<package_name>/tests.xml" -A
98+
99+
7) If you want to save test result to another file, by default it'll be under /opt/testkit/lite/latest:
100+
101+
testkit-lite -f device:"<somewhere>/<package_name>/tests.xml" -o <somewhere>/xxx.xml
102+
103+
8) If you want to choose some filters:
104+
105+
testkit-lite -f device:"<somewhere>/<package_name>/tests.xml" --status level1 --type type1 ...
106+
107+
9) If you want to run test according capability:
108+
109+
testkit-lite -f device:"<somewhere>/<package_name>/tests.xml" --capability capability.xml
110+
111+
10) At last, you can freely compose the above parameters together:
112+
113+
testkit-lite -f <somewhere1>/tests.xml <somewhere2>/tests.xml -A --priority P1 --type type1 ...
114+
115+
Get Results:
116+
=================
117+
Test report will be generated as tests.result.xml.The result will be under /opt/testkit/lite/latest after execution, you can also check the history results in /opt/testkit/lite/yyyy-mm-dd-HH:MM:SS.NNNNNN.
118+
119+
View Results:
120+
=================
121+
122+
Test report can be viewed in HTML format, so the data in the xml result file looks more human friendly.
123+
124+
Please follow the following steps to view test report:
125+
126+
1) copy files: application.js back_top.png jquery.min.js testresult.xsl tests.css under directory /opt/testkit/lite/xsd/
127+
128+
2) put the files from step 1) under the same directory as the xml result file
129+
130+
3) open xml result file with a web browser(IE, Chrome or Firefox)
131+
132+
Known Issues:
133+
=================
134+
N/A

dbus/Makefile.am

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Copyright (C) 2012 Intel Corporation
2+
#
3+
# This program is free software; you can redistribute it and/or
4+
# modify it under the terms of the GNU General Public License
5+
# as published by the Free Software Foundation; either version 2
6+
# of the License, or (at your option) any later version.
7+
#
8+
# This program is distributed in the hope that it will be useful,
9+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11+
# GNU General Public License for more details.
12+
#
13+
# Authors:
14+
# Zhang, Huihui <[email protected]>
15+
# Wendong,Sui <[email protected]>
16+
17+
testkitdbusdir = /etc/dbus-1/system.d/
18+
dist_testkitdbus_DATA = com.intel.testkit.conf

dbus/com.intel.testkit.conf

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<?xml version="1.0" encoding="UTF-8"?> <!-- -*- XML -*- -->
2+
3+
<!DOCTYPE busconfig PUBLIC
4+
"-//freedesktop//DTD D-BUS Bus Configuration 1.0//EN"
5+
"http://www.freedesktop.org/standards/dbus/1.0/busconfig.dtd">
6+
<busconfig>
7+
8+
<!-- Root can own the service -->
9+
<policy user="root">
10+
<allow own="com.intel.testkit"/>
11+
<allow send_destination="com.intel.testkit"/>
12+
<allow send_interface="com.intel.testkit"/>
13+
</policy>
14+
15+
<policy at_console="true">
16+
<allow own="com.intel.testkit"/>
17+
<allow send_destination="com.intel.testkit"/>
18+
<allow send_interface="com.intel.testkit"/>
19+
</policy>
20+
21+
<policy context="default">
22+
<allow own="com.intel.testkit"/>
23+
<allow send_destination="com.intel.testkit"/>
24+
<allow send_interface="com.intel.testkit"/>
25+
</policy>
26+
27+
</busconfig>

dbus/testkit-lite-dbus

+61
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
#!/usr/bin/python
2+
#
3+
# Copyright (C) 2012 Intel Corporation
4+
#
5+
# This program is free software; you can redistribute it and/or
6+
# modify it under the terms of the GNU General Public License
7+
# as published by the Free Software Foundation; either version 2
8+
# of the License, or (at your option) any later version.
9+
#
10+
# This program is distributed in the hope that it will be useful,
11+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
# GNU General Public License for more details.
14+
#
15+
# Authors:
16+
# ChengTao.Liu <[email protected]>
17+
# Yuanyuan,Zou <[email protected]>
18+
""" testkit dbus service"""
19+
20+
import sys
21+
import dbus
22+
import dbus.service
23+
from dbus.mainloop.glib import DBusGMainLoop
24+
import gobject
25+
26+
27+
class DeviceKeeper(dbus.service.Object):
28+
"""
29+
testkit dbus service implementation
30+
"""
31+
32+
def init(self):
33+
self._devices = []
34+
35+
@dbus.service.method(dbus_interface="com.intel.testkit", in_signature="s", out_signature="b")
36+
def addDevice(self, device_id):
37+
if device_id in self._devices:
38+
return False
39+
else:
40+
self._devices.append(device_id)
41+
return True
42+
43+
@dbus.service.method(dbus_interface="com.intel.testkit", in_signature="s", out_signature="")
44+
def removeDevice(self, device_id):
45+
if device_id in self._devices:
46+
self._devices.remove(device_id)
47+
return None
48+
49+
50+
if __name__ == '__main__':
51+
DBusGMainLoop(set_as_default=True)
52+
gobject.threads_init()
53+
bus = dbus.SessionBus()
54+
if bus.name_has_owner('com.intel.testkit'):
55+
print 'An instance of testkit service is running!'
56+
sys.exit()
57+
bus_name = dbus.service.BusName('com.intel.testkit', bus)
58+
t_object = DeviceKeeper(bus_name, "/com/intel/testkit/devices")
59+
t_object.init()
60+
loop = gobject.MainLoop()
61+
loop.run()

0 commit comments

Comments
 (0)