Polarion client for Python
Project description
Python-polarion
This package allows the user to access many Polarion items like workitems, test run, plans and documents.
Feature overview
This package can, among others, read, modify and create:
- Workitems
- Test runs from templates
- Plans
- Documents
Work with attachments in workitems and test runs. Work with custom field in workitems and documents.
Installation
pip install polarion
Getting started
Creating the Polarion client and getting workitems, test runs or plans:
from polarion import polarion
client = polarion.Polarion('http://example.com/polarion', 'user', 'password')
project = client.getProject('Python')
workitem = project.getWorkitem('PYTH-510')
run = project.getTestRun('SWQ-0001')
plan = project.getPlan('00002')
Modifying workitems:
workitem.setDescription('Some description..')
workitem.addComment('test comment', 'sent from Python')
workitem.addHyperlink('google.com', workitem.HyperlinkRoles.EXTERNAL_REF)
Or test run results:
run = project.getTestRun('SWQ-0001')
run.records[0].setResult(record.Record.ResultType.PASSED, ' Comment with test result')
Adding workitems to a plan:
plan.addToPlan(workitem)
plan.removeFromPlan(workitem)
More examples to be found in the quick start section of the documentation. Go to the documentation
How does it work?
This project uses the SOAP API of Polarion. This API exposes most of the user interactions you can do with Polarion like creating or editing workitems, plans and test runs. The API is divided in seven different services which you can find from your Polarion instance at the url http://domain.com/polarion/ws/services. Each of the services provides a WSDL file detailing the available functions. (Also available form you local instance at http://domain.com/polarion/ws/services/TrackerWebService?wsdl) For this project the TrackerWebService, PlanningWebService and TestManagementWebService are the most used ones.
In general the project attempts for the objects (like workitems) to behave like Python objects which you can modify and are saved in the background. Where the API provide operation to preform an action that API call is used, and the object is reloaded from polarion to reflect the changes locally.
The API does not allow access to the project administration.
Dependencies
The package uses; requests, urllib3 and zeep.
It is tested for Python version 3.7 through 3.12. Python 3.6 support has been dropped in 1.3.0.
Known issues or missing features
- No way of knowing the test run possible statuses.
- Deleting work items used in documents does not remove the reference from the document.
Project details
Release history Release notifications | RSS feed
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
File details
Details for the file polarion-1.4.0.tar.gz
.
File metadata
- Download URL: polarion-1.4.0.tar.gz
- Upload date:
- Size: 40.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.12.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | df3f57b8f1441d5c84017e334fb0963e4edcef15e2fe3f289ddaae0108669a64 |
|
MD5 | c9130eff39ec71d1e25fb1f8f653b934 |
|
BLAKE2b-256 | e44def1091883cd5cf2e6f6bc6c195f0b744d3bf1c0e9fb5925ac306fedaacb6 |
File details
Details for the file polarion-1.4.0-py3-none-any.whl
.
File metadata
- Download URL: polarion-1.4.0-py3-none-any.whl
- Upload date:
- Size: 50.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.12.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b8edacd84a1b0a164b8c8d4763a9c3c5c4c874745db8ee9d89e26b3d46af89b1 |
|
MD5 | 6e020a62bf205e453185f8d02ac87586 |
|
BLAKE2b-256 | acb12c185c6306e9a3a7405297f9397c64a5ebd1bb8c4076bcd4e0c6c62e44d3 |