|
| 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 |
0 commit comments