polarion_rest_api_client.clients package¶
Submodules¶
polarion_rest_api_client.clients.base_classes module¶
Base classes for client implementations on project Level.
- class polarion_rest_api_client.clients.base_classes.BaseClient(project_id: str, client: polarion_client.PolarionClient)¶
Bases:
ABC
The overall base client for all project related clients.
- class polarion_rest_api_client.clients.base_classes.ItemsClient(project_id: str, client: polarion_client.PolarionClient)¶
Bases:
BaseClient
,Generic
[T
],ABC
A client for items of a project, which can be created or requested.
- class polarion_rest_api_client.clients.base_classes.SingleUpdatableItemsMixin¶
Bases:
Generic
[T
]Mixin to split batches into single items.
- class polarion_rest_api_client.clients.base_classes.StatusItemClient(project_id: str, client: polarion_client.PolarionClient, delete_status: str | None = None)¶
Bases:
UpdatableItemsClient
,Generic
[ST
],ABC
A client for items, which have a status.
We support to set a specific status for these instead of deleting them. This status has to be provided on initialization.
polarion_rest_api_client.clients.documents module¶
Implementation of the documents client.
- class polarion_rest_api_client.clients.documents.Documents(project_id: str, client: polarion_client.PolarionClient)¶
Bases:
SingleUpdatableItemsMixin
[Document
],UpdatableItemsClient
[Document
]A client to work with documents in Polarion.
polarion_rest_api_client.clients.projects module¶
A client for a specific project, using the session of PolarionClient.
polarion_rest_api_client.clients.test_records module¶
- class polarion_rest_api_client.clients.test_records.TestRecords(project_id: str, client: polarion_client.PolarionClient)¶
Bases:
SingleUpdatableItemsMixin
[TestRecord
],UpdatableItemsClient
[TestRecord
]- get(*args, **kwargs) TestRecord ¶
Get a specific single item.
polarion_rest_api_client.clients.test_runs module¶
- class polarion_rest_api_client.clients.test_runs.TestRuns(project_id: str, client: polarion_client.PolarionClient)¶
Bases:
SingleUpdatableItemsMixin
[TestRun
],UpdatableItemsClient
[TestRun
]- get_multi(query: str = '', *, page_size: int = 100, page_number: int = 1, fields: dict[str, str] | None = None) tuple[list[TestRun], bool] ¶
Return the test runs on a defined page matching the given query.
In addition, a flag whether a next page is available is returned. Define a fields dictionary as described in the Polarion API documentation to get certain fields.
polarion_rest_api_client.clients.test_steps module¶
- class polarion_rest_api_client.clients.test_steps.TestSteps(project_id: str, client: polarion_client.PolarionClient)¶
Bases:
UpdatableItemsClient
[TestStep
]
polarion_rest_api_client.clients.work_item_attachments module¶
Implementations of WorkItemAttachment relates functions.
- class polarion_rest_api_client.clients.work_item_attachments.WorkItemAttachments(project_id: str, client: polarion_client.PolarionClient)¶
Bases:
SingleUpdatableItemsMixin
[WorkItemAttachment
],UpdatableItemsClient
[WorkItemAttachment
]A class to handle WorkItemAttachments.
- get(*args, **kwargs) WorkItemAttachment ¶
Return a specific attachment - not Implemented yet.
- get_multi(work_item_id: str, *, page_size: int = 100, page_number: int = 1, fields: dict[str, str] | None = None) tuple[list[WorkItemAttachment], bool] ¶
Return the attachments for a given work item on a defined page.
In addition, a flag whether a next page is available is returned. Define a fields dictionary as described in the Polarion API documentation to get certain fields.
polarion_rest_api_client.clients.work_item_links module¶
Implementation of LinkedWorkItems operations.
- class polarion_rest_api_client.clients.work_item_links.WorkItemLinks(project_id: str, client: polarion_client.PolarionClient)¶
Bases:
ItemsClient
[WorkItemLink
]A client providing LinkedWorkItems functions.
- get(*args, **kwargs) WorkItemLink ¶
Return a specific link - not implemented yet.
- get_multi(work_item_id: str, *, page_size: int = 100, page_number: int = 1, fields: dict[str, str] | None = None, include: str | None | Unset = None) tuple[list[WorkItemLink], bool] ¶
Get the work item links for the given work item on a page.
In addition, a flag whether a next page is available is returned. Define a fields dictionary as described in the Polarion API documentation to get certain fields.
polarion_rest_api_client.clients.work_items module¶
Implementation of a client providing work item specific functions.
- class polarion_rest_api_client.clients.work_items.WorkItems(project_id: str, client: polarion_client.PolarionClient, delete_status: str | None = None)¶
Bases:
SingleUpdatableItemsMixin
,StatusItemClient
A project specific client for work item operations.
- create(items: WorkItem | list[WorkItem])¶
Create WorkItems and respect the max body size of the server.
- get(work_item_id: str, work_item_cls: type[WT], revision: str | None = None) WT | None ¶
- get(work_item_id: str, *, revision: str | None = None) WorkItem | None
Return one specific work item with all fields.
This also includes all linked work items and attachments. If there are to many of these to get them in one request, the truncated flags for linked_work_items and attachments will be set to True.
- get_multi(query: str = '', *, page_size: int = 100, page_number: int = 1, fields: dict[str, str] | None = None, work_item_cls: type[WT]) tuple[list[WT], bool] ¶
- get_multi(query: str = '', *, page_size: int = 100, page_number: int = 1, fields: dict[str, str] | None = None) tuple[list[WorkItem], bool]
Return the work items on a defined page matching the given query.
In addition, a flag whether a next page is available is returned. Define a fields dictionary as described in the Polarion API documentation to get certain fields.
Module contents¶
Implementations for all project specific clients.