Kea2-python 0.1.0b0__py3-none-any.whl → 0.1.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of Kea2-python might be problematic. Click here for more details.
- kea2/assets/fastbot_libs/arm64-v8a/libfastbot_native.so +0 -0
- kea2/assets/fastbot_libs/armeabi-v7a/libfastbot_native.so +0 -0
- kea2/assets/monkeyq.jar +0 -0
- kea2/bug_report_generator.py +477 -0
- kea2/fastbotManager.py +145 -0
- kea2/keaUtils.py +40 -131
- kea2/logWatcher.py +11 -4
- kea2/templates/bug_report_template.html +937 -0
- kea2/utils.py +1 -5
- {kea2_python-0.1.0b0.dist-info → kea2_python-0.1.1.dist-info}/METADATA +12 -15
- {kea2_python-0.1.0b0.dist-info → kea2_python-0.1.1.dist-info}/RECORD +15 -12
- {kea2_python-0.1.0b0.dist-info → kea2_python-0.1.1.dist-info}/WHEEL +0 -0
- {kea2_python-0.1.0b0.dist-info → kea2_python-0.1.1.dist-info}/entry_points.txt +0 -0
- {kea2_python-0.1.0b0.dist-info → kea2_python-0.1.1.dist-info}/licenses/LICENSE +0 -0
- {kea2_python-0.1.0b0.dist-info → kea2_python-0.1.1.dist-info}/top_level.txt +0 -0
kea2/utils.py
CHANGED
|
@@ -47,14 +47,10 @@ d = Device
|
|
|
47
47
|
|
|
48
48
|
|
|
49
49
|
def getProjectRoot():
|
|
50
|
-
root = Path(
|
|
50
|
+
root = Path(Path.cwd().anchor)
|
|
51
51
|
cur_dir = Path.absolute(Path(os.curdir))
|
|
52
52
|
while not os.path.isdir(cur_dir / "configs"):
|
|
53
53
|
if cur_dir == root:
|
|
54
54
|
return None
|
|
55
55
|
cur_dir = cur_dir.parent
|
|
56
56
|
return cur_dir
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: Kea2-python
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.1
|
|
4
4
|
Summary: A python library for supporting and customizing automated UI testing for mobile apps
|
|
5
5
|
Author-email: Xixian Liang <xixian@stu.ecnu.edu.cn>
|
|
6
6
|
Requires-Python: >=3.8
|
|
@@ -8,6 +8,7 @@ Description-Content-Type: text/markdown
|
|
|
8
8
|
License-File: LICENSE
|
|
9
9
|
Requires-Dist: rtree>=1.3.0
|
|
10
10
|
Requires-Dist: uiautomator2>=3.2.9
|
|
11
|
+
Requires-Dist: jinja2>=3.0.0
|
|
11
12
|
Dynamic: license-file
|
|
12
13
|
|
|
13
14
|
|
|
@@ -17,7 +18,7 @@ Dynamic: license-file
|
|
|
17
18
|

|
|
18
19
|
|
|
19
20
|
<div>
|
|
20
|
-
<img src="https://github.com/user-attachments/assets/
|
|
21
|
+
<img src="https://github.com/user-attachments/assets/1a64635b-a8f2-40f1-8f16-55e47b1d74e7" style="border-radius: 14px; width: 20%; height: 20%;"/>
|
|
21
22
|
</div>
|
|
22
23
|
|
|
23
24
|
## About
|
|
@@ -203,28 +204,24 @@ For the preceding always-holding property, we can write the following script to
|
|
|
203
204
|
```
|
|
204
205
|
> We use [hypothesis](https://github.com/HypothesisWorks/hypothesis) to generate random texts.
|
|
205
206
|
|
|
206
|
-
You can run this example by using the similar command line in Feature 2.
|
|
207
|
-
|
|
208
|
-
> Notes: `--take-screenshots` will need more disk space on PC.
|
|
209
|
-
|
|
210
|
-
```bash
|
|
211
|
-
# Launch Kea2 and load one single script quicktest.py.
|
|
212
|
-
kea2 run -s "emulator-5554" -p it.feio.android.omninotes.alpha --agent u2 --running-minutes 10 --throttle 200 --driver-name d --take-screenshots unittest discover -p quicktest.py
|
|
213
|
-
```
|
|
207
|
+
You can run this example by using the similar command line in Feature 2.
|
|
214
208
|
|
|
215
209
|
## Documentations(更多文档)
|
|
216
210
|
|
|
217
|
-
[更多文档](docs/manual_en.md)
|
|
218
|
-
|
|
219
|
-
|
|
211
|
+
[更多文档](docs/manual_en.md),包括了:
|
|
212
|
+
- Kea2的案例教程(基于微信介绍)、
|
|
213
|
+
- Kea2脚本的定义方法,支持的脚本装饰器(如`@precondition`、`@prob`、`@max_tries`)、
|
|
214
|
+
- Kea2的启动方式、命令行选项
|
|
215
|
+
- 查看/理解Kea2的运行结果(如界面截图、测试覆盖率、脚本执行成功与否)。
|
|
216
|
+
- [如何黑白控件/区域](docs/blacklisting.md)
|
|
220
217
|
|
|
221
|
-
|
|
218
|
+
## Open-source projects used by Kea2
|
|
222
219
|
|
|
223
220
|
- [Fastbot](https://github.com/bytedance/Fastbot_Android)
|
|
224
221
|
- [uiautomator2](https://github.com/openatx/uiautomator2)
|
|
225
222
|
- [hypothesis](https://github.com/HypothesisWorks/hypothesis)
|
|
226
223
|
|
|
227
|
-
|
|
224
|
+
## Relevant papers of Kea2
|
|
228
225
|
|
|
229
226
|
> General and Practical Property-based Testing for Android Apps. ASE 2024. [pdf](https://dl.acm.org/doi/10.1145/3691620.3694986)
|
|
230
227
|
|
|
@@ -1,16 +1,18 @@
|
|
|
1
1
|
kea2/__init__.py,sha256=JFJjqgf5KB4bXUFQ3upkEug0cFMFIk9p3OHV9vzulHw,75
|
|
2
2
|
kea2/absDriver.py,sha256=X99d-OP77EIiDwTLvWVkgDUtqscoxmWeOb-EcaOPWGI,1294
|
|
3
3
|
kea2/adbUtils.py,sha256=j6goAAzV1Ikmv26DZEE0Oi8S1PrejcV1Io3u_Xw4ws4,9910
|
|
4
|
+
kea2/bug_report_generator.py,sha256=FFop6asItUvRmg23i85-cDutKwJGL6-WmVSNk-BQ2oQ,22712
|
|
4
5
|
kea2/cli.py,sha256=YgWOe5JB0_WBTKyBShBEymhLIqj6K5gNR4Aaj6Pbtn0,2796
|
|
5
|
-
kea2/
|
|
6
|
+
kea2/fastbotManager.py,sha256=6U-mWZHqwMXXNbHGNLNjjsolqDaqZUMpRhCBKjepcTQ,4524
|
|
7
|
+
kea2/keaUtils.py,sha256=fXE0vpFik2YN5Ze_wQ-XY8IjaoA3P2C0PFXLfAFvZIU,24533
|
|
6
8
|
kea2/kea_launcher.py,sha256=Kj49TBJ8aRRJQI24y3vwbBMyTenJpL1HAqgv4ETRT9E,4986
|
|
7
|
-
kea2/logWatcher.py,sha256=
|
|
9
|
+
kea2/logWatcher.py,sha256=qpIsflbP37eX5b4EaWnrqyPbGP9lzQhRr3ainGFfZeI,2211
|
|
8
10
|
kea2/resultSyncer.py,sha256=f3qfne8WQCo1AA3cwx9IZzLdenjjMWbEpAqPdvddAqk,1984
|
|
9
11
|
kea2/u2Driver.py,sha256=1uViwhQAkBFu69XFR5i8dSgG8SL3v7wZ68-t0E0Xlpw,14876
|
|
10
|
-
kea2/utils.py,sha256=
|
|
12
|
+
kea2/utils.py,sha256=8b4y-_B7knKRN_HqpWZM900IdRiZXwmzQnduVVN0GxQ,1384
|
|
11
13
|
kea2/assets/fastbot-thirdpart.jar,sha256=0SZ_OoZFWDGMnazgXKceHgKvXdUDoIa3Gb2bcifaikk,85664
|
|
12
14
|
kea2/assets/framework.jar,sha256=rTluOJJKj2DFwh7ascXso1udYdWv00BxBwSQ3Vmv-fw,1149240
|
|
13
|
-
kea2/assets/monkeyq.jar,sha256=
|
|
15
|
+
kea2/assets/monkeyq.jar,sha256=gE_0JmE7S3Mw5s0KNDMxc3eVKZP669aOFa7r3c3pzKM,463069
|
|
14
16
|
kea2/assets/quicktest.py,sha256=j-fIryvspXObaNm3kWzgM0LMFes4h7EXT5C9xUWGUVo,2887
|
|
15
17
|
kea2/assets/fastbot_configs/abl.strings,sha256=Rn8_YEbVGOJqndIY_-kWnR5NaoFI-cuB-ij10Ddhl90,75
|
|
16
18
|
kea2/assets/fastbot_configs/awl.strings,sha256=-j4980GoWQxGOM9ijAwXPQmziCwFBZJFmuiv2tOEaYI,101
|
|
@@ -20,13 +22,14 @@ kea2/assets/fastbot_configs/max.schema.strings,sha256=zYupzvmTtnbPYomI2UCPk0s6PE
|
|
|
20
22
|
kea2/assets/fastbot_configs/max.strings,sha256=k82GAAZZG7KbDI7bk7DUklp41WJJO7j-j8Ss1BcybUw,32
|
|
21
23
|
kea2/assets/fastbot_configs/max.tree.pruning,sha256=dm0oesN75FFbVSkV7STDUmrNMpQUBEuO7Uymt6nEkBc,629
|
|
22
24
|
kea2/assets/fastbot_configs/widget.block.py,sha256=r9Njm2xSBls3GMDIHTPMdmlFRiOjJWuVsq2KiieWFXA,1272
|
|
23
|
-
kea2/assets/fastbot_libs/arm64-v8a/libfastbot_native.so,sha256=
|
|
24
|
-
kea2/assets/fastbot_libs/armeabi-v7a/libfastbot_native.so,sha256=
|
|
25
|
+
kea2/assets/fastbot_libs/arm64-v8a/libfastbot_native.so,sha256=tAFrG73pJi7XakRxSp9CavPHbexKvhC9NOMdt48IEuM,2006872
|
|
26
|
+
kea2/assets/fastbot_libs/armeabi-v7a/libfastbot_native.so,sha256=UV8bhaiPoPKdd3q0vj3kSZqPR9anllai_tz_2QkMMbQ,1335372
|
|
25
27
|
kea2/assets/fastbot_libs/x86/libfastbot_native.so,sha256=k-aw1gEXRWMKZRNHIggKNuZy0wC1y2BnveJGEIO6rbo,2036856
|
|
26
28
|
kea2/assets/fastbot_libs/x86_64/libfastbot_native.so,sha256=tiofhlf4uMQcU5WAvrdLgTBME0lb83hVUoGtTwxmE8A,2121416
|
|
27
|
-
|
|
28
|
-
kea2_python-0.1.
|
|
29
|
-
kea2_python-0.1.
|
|
30
|
-
kea2_python-0.1.
|
|
31
|
-
kea2_python-0.1.
|
|
32
|
-
kea2_python-0.1.
|
|
29
|
+
kea2/templates/bug_report_template.html,sha256=sQ0Uu8SPeOIiyX5vPPTZPVKxh9-9raAZcCjSRS8YFe0,40624
|
|
30
|
+
kea2_python-0.1.1.dist-info/licenses/LICENSE,sha256=nM9PPjcsXVo5SzNsjRqWgA-gdJlwqZZcRDSC6Qf6bVE,2034
|
|
31
|
+
kea2_python-0.1.1.dist-info/METADATA,sha256=XFsmboCjYk4AwwBBeijCvT7iPAr-shBsx-COPqst1o0,13232
|
|
32
|
+
kea2_python-0.1.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
33
|
+
kea2_python-0.1.1.dist-info/entry_points.txt,sha256=mFX06TyxXiUAJQ6JZn8QHzfn8n5R8_KJ5W-pTm_fRCA,39
|
|
34
|
+
kea2_python-0.1.1.dist-info/top_level.txt,sha256=TsgNH4PQoNOVhegpO7AcjutMVWp6Z4KDL1pBH9FnMmk,5
|
|
35
|
+
kea2_python-0.1.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|