zlicheng / jenkins-rest

Java client, built on top of jclouds, for working with Jenkins REST API

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Build Status codecov Download Stack Overflow

jenkins-rest

Java client is built on the top of jclouds for working with Jenkins REST API.

Setup

Client's can be built like so:

JenkinsClient client = JenkinsClient.builder()
.endPoint("http://127.0.0.1:8080") // Optional. Defaults to http://127.0.0.1:8080
.credentials("admin:password") // Optional.
.build();

SystemInfo systemInfo = client.api().systemApi().systemInfo();
assertTrue(systemInfo.jenkinsVersion().equals("1.642.4"));

Latest release

Can be found in jcenter like so:

<dependency>
  <groupId>com.cdancy</groupId>
  <artifactId>jenkins-rest</artifactId>
  <version>X.Y.Z</version>
  <classifier>sources|tests|javadoc|all</classifier> (Optional)
</dependency>

Documentation

Property based setup

Client instances do NOT need to supply the endPoint or credentials as a part of instantiating the JenkinsClient object. Instead one can supply them through system properties, environment variables, or a combination of the two. System properties will be searched first and if not found, will attempt to query the environment.

Setting the endpoint can be done with any of the following (searched in order):

  • jenkins.rest.endpoint
  • jenkinsRestEndpoint
  • JENKINS_REST_ENDPOINT

Setting the credentials can be done with any of the following (searched in order):

  • jenkins.rest.credentials
  • jenkinsRestCredentials
  • JENKINS_REST_CREDENTIALS

Credentials

jenkins-rest credentials can take 1 of 2 forms:

  • Colon delimited username and password: admin:password
  • Base64 encoded username and password: YWRtaW46cGFzc3dvcmQ=

Examples

The mock and live tests provide many examples that you can use in your own code.

Components

  • jclouds - used as the backend for communicating with Jenkins REST API
  • AutoValue - used to create immutable value types both to and from the jenkins program

Testing

Running mock tests can be done like so:

./gradlew clean build mockTest

Running integration tests can be done like so (requires existing jenkins instance):

./gradlew clean build integTest 

Integration tests settings

Jenkins instance requirements

This project provides instructions to setup a pre-configured Docker container

Integration tests configuration

  • jenkins url and authentication method used by the tests are defined in the gradle.properties file
  • by default, tests use the credentials authentication but this can be changed to use the token authentication

Running integration tests from within your IDE

  • the integTest gradle tasks set various System Properties
  • if you don't want to use gradle as tests runner in your IDE, configure the tests with the same kind of System Properties

Additional Resources

About

Java client, built on top of jclouds, for working with Jenkins REST API

License:Apache License 2.0


Languages

Language:Java 99.1%Language:Groovy 0.7%Language:Dockerfile 0.2%