Skip to content

touchbit/testrail4j

Repository files navigation

TestRail4J CI/CD MavenCentral ReadTheDocs AlertStatus Coverage

Java HTTP-client for the TestRail API.

TestRail4J represented by two client modules with gson and Jackson2 models respectively. This is done for the convenience of the end user, so as not to use unnecessary dependencies in the project if one of the presented models is already used in the project.

Full documentation is available on the testrail4j.readthedocs.io.

Briefly

  • Add repository and necessary feign client
<dependency>
   <groupId>org.touchbit.testrail4j</groupId>
   <artifactId>jackson2-feign-client</artifactId>
   <version>${testrail4j.version}</version>
</dependency>

or

<dependency>
   <groupId>org.touchbit.testrail4j</groupId>
   <artifactId>gson-feign-client</artifactId>
   <version>${testrail4j.version}</version>
</dependency>
  • Build client using TestRailClientBuilder and call the necessary method
public class Example {
    public static void main(String[] a) {
        TestRailClient client = TestRailClientBuilder
                                    .build("user", "pass", "http://localhost");

        Project project = client.addProject("name", "announcement", true, 3);

        Section section = new Section()
                .withName(UUID.randomUUID().toString())
                .withDescription(UUID.randomUUID().toString());

        Section section = client.addSection(section, project.getId());

        Case caze = new Case()
                .withTitle("test_20190101201312")
                .withPriorityId(CRITICAL.getId())
                .withSuiteId(section.getSuiteId())
                .withRefs("JIRA-123")
                .withTypeId(ACCEPTANCE.getId())
                .withTemplateId(TEST_CASE_TEXT.getId())
                .withEstimate("1m 45s")
                .withCustomPreconds("withCustomPreconds")
                .withCustomSteps("withCustomSteps")
                .withCustomExpected("withCustomExpected")
                .withCustomStepsSeparated(null);

        Case caze = client.addCase(caze, section);
        System.out.println(caze.getId());
    }
}
  • You can build the Feign client yourself and customize it to fit your needs.
TestRailClient client = new Feign.Builder()
    .client(new Client.Proxied(sslContextFactory, hostnameVerifier, proxy))
    .encoder(new GsonEncoder())
    .decoder(new GsonDecoder())
    .logger(new CustomLogger())
    .logLevel(FULL)
    .requestInterceptors(Arrays.asList(interceptors))
    .options(new Request.Options(10, TimeUnit.SECONDS, 60, TimeUnit.SECONDS, true))
    .errorDecoder(new CustomTestRailErrorDecoder())
    .target(TestRailClient.class, "https://testrail.custom");

Modules (org.touchbit.testrail4j)

  • jackson2-feign-client - Feign client with jackson2 models.
  • gson-feign-client - Feign client with gson models.
  • gson-api-model - Gson annotated models (DTO).
  • jackson2-api-model - Jackson2 annotated models (DTO).
  • testrail4j-core - Base implementation of common classes for the Feign client (without depend of models).
  • testrail4j-schema - Json schemas for TestRail API.

Restrictions

TestRailClient#addCaseField(TRCaseField)

The returned object for the method of creating a new test case custom field is not available until the correction of the defect