Pytest adapter for Test Gear
Project description
Test Gear TMS adapter for Pytest
Getting Started
Installation
pip install testgear-adapter-pytest
Usage
Configuration
File
-
Create connection_config.ini file in the root directory of the project:
[testgear] URL = <url> privateToken = <token> projectId = <id> configurationId = <id> testRunId = <optional id> testRunName = <optional name> adapterMode = <optional> # This section are optional. It enables debug mode. [debug] tmsProxy = {"http": "http://localhost:8888", "https": "http://localhost:8888"}
-
Fill parameters with your configuration, where:
-
URL
- location of the TMS instance -
privateToken
- API secret key- go to the https://{DOMAIN}/user-profile profile
- copy the API secret key
-
projectId
- ID of project in TMS instance.- create a project
- open DevTools -> network
- go to the project https://{DOMAIN}/projects/20/tests
- GET-request project, Preview tab, copy id field
-
configurationId
- ID of configuration in TMS instance.- create a project
- open DevTools -> network
- go to the project https://{DOMAIN}/projects/20/tests
- GET-request configurations, Preview tab, copy id field
-
testRunId
- id of the created test run in TMS instance.testRunId
is optional. If it is not provided, it is created automatically. -
testRunName
- parameter for specifying the name of test run in TMS instance.testRunName
is optional. If it is not provided, it is created automatically. -
adapterMode
- adapter mode. Default value - 0. The adapter supports following modes:- 0 - in this mode, the adapter filters tests by test run ID and configuration ID, and sends the results to the test run.
- 1 - in this mode, the adapter sends all results to the test run without filtering.
- 2 - in this mode, the adapter creates a new test run and sends results to the new test run.
-
tmsProxy
- it enables debug mode.tmsProxy
is optional.
-
ENV
You can use environment variables (environment variables take precedence over file variables):
-
TMS_URL
- location of the TMS instance. -
TMS_PRIVATE_TOKEN
- API secret key. -
TMS_PROJECT_ID
- ID of a project in TMS instance. -
TMS_CONFIGURATION_ID
- ID of a configuration in TMS instance. -
TMS_ADAPTER_MODE
- adapter mode. Default value - 0. -
TMS_TEST_RUN_ID
- ID of the created test-run in TMS instance.TMS_TEST_RUN_ID
is optional. If it is not provided, it is created automatically. -
TMS_TEST_RUN_NAME
- name of the new test-run.TMS_TEST_RUN_NAME
is optional. If it is not provided, it is created automatically. -
TMS_CONFIG_FILE
- name of the configuration file.TMS_CONFIG_FILE
is optional. If it is not provided, it is used default file name. -
TMS_PROXY
- it enables debug mode.TMS_PROXY
is optional.
Command line
You also can CLI variables (CLI variables take precedence over environment variables):
-
tmsUrl
- location of the TMS instance. -
tmsPrivateToken
- API secret key. -
tmsProjectId
- ID of a project in TMS instance. -
tmsConfigurationId
- ID of a configuration in TMS instance. -
tmsAdapterMode
- adapter mode. Default value - 0. -
tmsTestRunId
- ID of the created test-run in TMS instance.tmsTestRunId
is optional. If it is not provided, it is created automatically. -
tmsTestRunName
- name of the new test-run.tmsTestRunName
is optional. If it is not provided, it is created automatically. -
tmsConfigFile
- name of the configuration file.tmsConfigFile
is optional. If it is not provided, it is used default file name. -
tmsProxy
- it enables debug mode.tmsProxy
is optional.
Examples
Launch with a connection_config.ini file in the root directory of the project:
$ pytest --testgear
Launch with command-line parameters:
$ pytest --testgear --tmsUrl=<url> --tmsPrivateToken=<token> --tmsProjectId=<id> --tmsConfigurationId=<id> --tmsTestRunId=<optional id> --tmsTestRunName=<optional name> --tmsProxy='{"http":"http://localhost:8888","https":"http://localhost:8888"}'
Decorators
Decorators can be used to specify information about autotest.
Description of decorators:
testgear.workItemIds
- linking an autotest to a test casetestgear.displayName
- name of the autotest in the Test Gear system (can be replaced with documentation strings)testgear.externalId
- ID of the autotest within the project in the Test Gear Systemtestgear.title
- title in the autotest cardtestgear.description
- description in the autotest cardtestgear.labels
- tags in the work itemtestgear.link
- links in the autotest cardtestgear.step
- the designation of the step called in the body of the test or other step
All decorators support the use of parameterization attributes
Description of methods:
testgear.addLinks
- links in the autotest resulttestgear.addAttachments
- uploading files in the autotest resulttestgear.addMessage
- information about autotest in the autotest resulttestgear.step
- usage in the "with" construct to designation a step in the body of the test
Examples
Simple test
import pytest
import testgear
# Test with a minimal set of decorators
@testgear.externalId('Simple_autotest2')
def test_2():
"""Simple autotest 2"""
assert oneStep()
assert twoStep()
@testgear.step
def oneStep():
assert oneOneStep()
assert oneTwoStep()
return True
@testgear.step
def twoStep():
return True
@testgear.step('step 1.1', 'description')
def oneOneStep():
return True
@testgear.step('step 2')
def oneTwoStep():
return True
@testgear.externalId('Simple_test_skip')
@testgear.displayName('Simple test skip')
@testgear.links(url='https://dumps.example.com/module/JCP-777')
@testgear.links(
url='https://dumps.example.com/module/JCP-777',
type=testgear.LinkType.RELATED,
title='JCP-777',
description='Description of JCP-777')
@pytest.mark.skipif(True, reason='Because i can')
def test_skip():
assert True
Parameterized test
# Parameterized test with a full set of decorators
from os.path import join, dirname
import pytest
import testgear
@testgear.workItemIds(627)
@testgear.displayName('Simple autotest 1 - {name}')
@testgear.externalId('Simple_autotest1_{name}')
@testgear.title('Authorization')
@testgear.description('E2E_autotest')
@testgear.labels('{labels}')
@testgear.links(links=[
{'url': '{url}', 'type': '{link_type}', 'title': '{link_title}', 'description': '{link_desc}'},
{'url': '{url}', 'type': '{link_type}', 'title': '{link_title}', 'description': '{link_desc}'}
])
@pytest.mark.parametrize('name, labels, url, link_type, link_title, link_desc', [
('param 1', ['E2E', 'test'], 'https://dumps.example.com/module/JCP-777', testgear.LinkType.DEFECT, 'JCP-777', 'Desc of JCP-777'),
('param 2', (), 'https://dumps.example.com/module/docs', testgear.LinkType.RELATED, 'Documentation', 'Desc of JCP-777'),
('param 3', ('E2E', 'test'), 'https://dumps.example.com/module/projects', testgear.LinkType.REQUIREMENT, 'Projects', 'Desc of Projects'),
('param 4', {'E2E', 'test'}, 'https://dumps.example.com/module/', testgear.LinkType.BLOCKED_BY, '', ''),
('param 5', 'test', 'https://dumps.example.com/module/repository', testgear.LinkType.REPOSITORY, 'Repository', 'Desc of Repository')
])
def test_1(name, labels, url, link_type, link_title, link_desc):
testgear.addLinks(
title='component_dump.dmp',
type=testgear.LinkType.RELATED,
url='https://dumps.example.com/module/some_module_dump',
description='Description'
)
testgear.addLinks(url='https://dumps.example.com/module/some_module_dump')
testgear.addLinks(links=[
{'url': 'https://dumps.example.com/module/some_module_dump', 'type': testgear.LinkType.BLOCKED_BY, 'title': 'component_dump.dmp', 'description': 'Description'},
{'url': 'https://dumps.example.com/module/some_module_dump', 'type': testgear.LinkType.DEFECT},
{'url': 'https://dumps.example.com/module/some_module_dump', 'type': testgear.LinkType.ISSUE, 'title': 'component_dump.dmp'},
{'url': 'https://dumps.example.com/module/some_module_dump', 'type': testgear.LinkType.REQUIREMENT, 'title': 'component_dump.dmp', 'description': 'Description'},
{'url': 'https://dumps.example.com/module/some_module_dump', 'type': testgear.LinkType.REPOSITORY, 'description': 'Description'},
{'url': 'https://dumps.example.com/module/some_module_dump'}
])
with testgear.step('Log in the system', 'system authentication'):
with testgear.step('Enter the login', 'login was entered'):
with testgear.step('Enter the password', 'password was entered'):
assert True
with testgear.step('Create a project', 'the project was created'):
with testgear.step('Enter the project', 'the contents of the project are displayed'):
assert True
with testgear.step('Create a test case', 'test case was created'):
assert True
with testgear.step('Attachments'):
testgear.addAttachments(
join(dirname(__file__), 'docs/text_file.txt'),
join(dirname(__file__), 'pictures/picture.jpg'),
join(dirname(__file__), 'docs/document.docx')
)
testgear.addAttachments(
join(dirname(__file__), 'docs/document.doc'),
join(dirname(__file__), 'docs/logs.log')
)
assert True
Contributing
You can help to develop the project. Any contributions are greatly appreciated.
- If you have suggestions for adding or removing projects, feel free to open an issue to discuss it, or directly create a pull request after you edit the README.md file with necessary changes.
- Please make sure you check your spelling and grammar.
- Create individual PR for each suggestion.
- Please also read through the Code Of Conduct before posting your first idea as well.
License
Distributed under the Apache-2.0 License. See LICENSE for more information.
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
File details
Details for the file testgear-adapter-pytest-2.0.6.tar.gz
.
File metadata
- Download URL: testgear-adapter-pytest-2.0.6.tar.gz
- Upload date:
- Size: 9.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | aa23b1421d239d9dbed3c868c78a6711b5ad64c43caf3618ab188d9b0fa51653 |
|
MD5 | d123d22d048f419d762e6254d5002527 |
|
BLAKE2b-256 | 4e0245146f86ad43361f37dbae87de22189d9ca3d2d75b0a902d19f7dd7c454e |