Micoo client for python
Project description
Miccoc
The Python client library for Micoo. This library provide below functions:
- new_build
- build_stats
- latest_build_stats
Installation
pip install micooc
new_build
Upload screenshots to and trigger visual test build in Micoo. Return a dictionary of the new created build's bid and build_index.
usage example:
from micooc import new_build
def test_new_build():
service_host = "http://localhost:8123"
engine_host = service_host + "/engine"
api_key = "AK005fca5cbc9779755f"
pid = "PIDa8e3c0a4444a4f1a90a4dad8bd3467c2"
build_version = "5fafc0478af24af2da45fa19ddd06c17dd5d0d45"
screenshot_directory = "./screenshots"
return new_build(engine_host, api_key, pid, build_version, screenshot_directory)
# e.g. {'pid': 'PIDa8e3c0a4444a4f1a90a4dad8bd3467c2', 'bid': 'BID6fb9951c512c478aa891e1ce3e73ecca', 'build_index': 22}
test_new_build()
parameters
host- the Micoo's base URL plus/engine,api_key- the project's API Key, it could be found from the Micoo UI,pid- your Micoo project's PID, it can be found from the Micoo project page's URL,build_version- this build version is neither parts of Micoo, nor your UI automation test, it needs to be the version of you SUT application, most of the case, it's the git revision number.buildVersionis a useful setup of mappings between your visual tests and the SUT application. Anyway, technically, it's just a string which will be displayed in Micoo's project board, you can use anything which is meaningful to you.screenshot_directory- the directory where contains all screenshots to be uploaded, only.pngfile will be uploaded. All the uploaded screenshot filename becomes the test case name, so there are some restriction to the filename, it must shorter than 100 letters and match [a-zA-Z0-9-_&()#].
About build_version
build_version comes from the SUT application Version Control System, e.g. GIT, SVN, and they are probably differentiate from different test builds, especially when integrate the visual test in CI, so, a more valid usage is to pass its value from environment variable
build_stats
Get the stats of a specific build. Return a dictionary of the specific build's status and result.
usage example
from micooc import build_stats
def test_build_stats():
service_host = "http://localhost:8123"
api_key = "AK005fca5cbc9779755f"
bid = "BIDfb1c90b110124e10a280d5ac5fc9cd20"
build_stats(service_host, api_key, bid)
# e.g. {'status': 'completed', 'result': 'passed'}
test_build_stats()
parameters
host- the Micoo's base URL,api_key- the project's API Key, it could be found from the Micoo UI,bid- the Micoo build's bid, once you usenew_buildto create a new build, itsbidwill be returned in the response.
latest_build_status
Get the stats of a project's latest build. Return a dictionary of the latest build's bid, index, status and result.
usage example
from micooc import latest_build_stats
def test_latest_build_stats():
service_host = "http://localhost:8123"
api_key = "AK005fca5cbc9779755f"
pid = "PIDa8e3c0a4444a4f1a90a4dad8bd3467c2"
return latest_build_stats(service_host, api_key, pid)
# e.g. {'bid': 'BID6fb9951c512c478aa891e1ce3e73ecca', 'index': 22, 'status': 'processing', 'result': 'undetermined'}
test_latest_build_stats()
parameters
host- the Micoo's base URL,api_key- the project's API Key, it could be found from the Micoo UI,pid- the Micoo project's PID, it can be found from the Micoo project page's URL,
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file micooc-0.1.4.tar.gz.
File metadata
- Download URL: micooc-0.1.4.tar.gz
- Upload date:
- Size: 4.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2ad4d3800b0d4c55162c873b9eaa2a2c0eff0895a2f7208edf7769a330ab8d87
|
|
| MD5 |
27a69f8cab698134d518d922d05f7296
|
|
| BLAKE2b-256 |
43abfd1b08437868286de35fa6c4c932f9f264cc8cc962ad5970e5b428523747
|
File details
Details for the file micooc-0.1.4-py3-none-any.whl.
File metadata
- Download URL: micooc-0.1.4-py3-none-any.whl
- Upload date:
- Size: 5.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d9f37452b8d80a367cab22b20284d49d3d07d2d07ef62b2bfbfcf605c82bc172
|
|
| MD5 |
286dda108e3d6550bb3b472ce36d0e98
|
|
| BLAKE2b-256 |
710ffe21439de8d1422d107a785c8672210513f1c78aa7d71a93d9066de92ce6
|