Setup • Documentation • Support • Contribute • Contributors • Licensing
This module provides additional features to Testerra Framework for automated tests.
This module provides a simple notification service for Jetbrains TeamCity. It uses the build script interaction of TeamCity to update build progress messages on test method updates and update general build status on report generation. It will register automatically by using the Testerra ModuleHook.
TeamCity connector | Testerra |
---|---|
1.0 |
1.0.0..1.8 |
1.1 |
1.9 |
2.0-RC-2 |
>= 2.0-RC-19 |
2.0 |
>= 2.0 |
2.1 |
>= 2.11 |
Include the following dependency in your project.
Gradle:
implementation 'io.testerra:teamcity-connector:2.1'
Maven:
<dependency>
<groupId>io.testerra</groupId>
<artifactId>teamcity-connector</artifactId>
<version>2.1</version>
</dependency>
Please ensure that you have Failure Conditions > Common Failure Conditions > at least one test failed
deactivated on your TeamCity
build configuration,
because TeamCity Connector will announce the build status on report generation based on test execution statistics.
When using TeamCity Connector you have to ensure that Gradle/Maven will ignore test failures.
Gradle:
test {
ignoreFailures = true
}
Maven:
<build>
<plugins>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skip>true</skip>
<testFailureIgnore>true</testFailureIgnore>
</configuration>
</plugin>
</plugins>
</build>
Changes in TeamCity
TeamCity default | With TeamCity connector | Description |
---|---|---|
![]() |
![]() |
TeamCity connector set the current test result at runtime. |
![]() |
![]() |
TeamCity connector set the correct test result and build status. |
The TeamCity connector not only set the correct test results but also add useful information. Based on the screenshots in the table above the following information are added.
Meaning o shown information
Part | Description |
---|---|
TT-Skeleton |
The value of the property tt.report.name |
regression |
The value of the property tt.runcfg . This could be the test set (regression, smoketest, etc.) |
3 Passed, 1 Failed |
The result of all test cases of the complete run. At runtime it shows the current result up to that point. |
-NOT OK- |
The status of the complete test run. If all tests passed or the Failure Corridor was matched, the status would be -OK- |
The following tables shows some more examples how the result could be.
TeamCity connector can load the testrun history information of the latest build to get the report history in TeamCity-based Testerra executions. See more details in https://docs.testerra.io/.
To get the latest testrun history, the selected TeamCity build job:
- is not running
- was not canceled
- should be of the same build configuration ;-)
- must match the branch specification
Specify the following properties in test.properties
to control the history file download for Testerra Report:
Property | Description |
---|---|
tt.teamcity.history.download.active |
Activate the history file download, default: false |
tt.teamcity.url |
URL of your TeamCity server |
tt.teamcity.rest.token |
TeamCity Access token needed for REST API |
tt.teamcity.buildTypeId |
BuildType ID for the current Build configuration |
tt.teamcity.build.branch |
Specify the branch of the build job from which the history file has to be downloaded, default: all . See below for more details. |
tt.teamcity.build.count |
Number of last build jobs for getting the latest history file, default: 3 |
It is recommended that the REST token is stored in a Configuration Parameter in your Build Configuration.
All the other properties can be setup as 'Additional Maven command line parameters':
You can specify the Git branch of the build job which is used to download the latest history file.
Add the property tt.teamcity.build.branch
to your setup:
Value | Description |
---|---|
all |
TeamCity connector takes the last build job independent of the used branch. This is default. |
default |
Only build jobs of the default branch are used for download. The default branch is configured in your VCS setting. |
<any other> |
Any other value is used as a branch name, eg. development , fix/a-bug |
With tt.teamcity.build.count
you can set the number of latest builds, where TeamCity connector will search of the latest history file.
This could help to prevent interrupted history reports in case of broken jobs or incomplete report artifacts.
This module is deployed and published to Maven Central. All JAR files are signed via Gradle signing plugin.
For the signing and publishing the following environment variables have to be set:
Property | Description |
---|---|
ORG_GRADLE_PROJECT_signingKeyId |
GPG private key ID (short form) |
ORG_GRADLE_PROJECT_signingPassword |
GPG private key password |
ORG_GRADLE_PROJECT_signingKey |
GPG private key in ASCII-armored format |
MAVEN_CENTRAL_PORTAL_USERNAME |
Maven Central publishing user |
MAVEN_CENTRAL_PORTAL_PASSWORD |
Maven Central publishing token |
Publishing snapshots the default maven-publish
plugin is used:
gradle publish
Publishing releases the org.danilopianini.publish-on-central
plugin is used:
gradle publishMavenJavaPublicationToProjectLocalRepository zipMavenCentralPortalPublication releaseMavenCentralPortalPublication -DmoduleVersion=2.1
This project has adopted the Contributor Covenant in version 2.0 as our code of conduct. Please see the details in our CODE_OF_CONDUCT.md. All contributors must abide by the code of conduct.
We decided to apply English as the primary project language.
Consequently, all content will be made available primarily in English. We also ask all interested people to use English as language to create issues, in their code (comments, documentation etc.) and when you send requests to us. The application itself and all end-user faing content will be made available in other languages as needed.
The following channels are available for discussions, feedback, and support requests:
Type | Channel |
---|---|
Issues | |
Other Requests |
Contribution and feedback is encouraged and always welcome. For more information about how to contribute, the project structure, as well as additional contribution information, see our Contribution Guidelines. By participating in this project, you agree to abide by its Code of Conduct at all times.
At the same time our commitment to open source means that we are enabling -in fact encouraging- all interested parties to contribute and become part of its developer community.
Copyright (c) 2021 Deutsche Telekom AG.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License.
You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0.
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the LICENSE for the specific language governing permissions and limitations under the License.