• Stars
    star
    127
  • Rank 282,790 (Top 6 %)
  • Language
    HTML
  • License
    Apache License 2.0
  • Created over 7 years ago
  • Updated 3 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Home of test infrastructure for Adoptium builds

Logo


License contributors commit-activity closed-issues closed-pr release-date
slack Twitter

Adoptium Testing

Guide to the Test Jobs at Adoptium

For nightly and release builds, there are test jobs running as part of the Adoptium continuous delivery pipelines. There is a blog post and brief presentation that explains what testing we run and how they fit into the overall delivery pipeline. As the world of testing at Adoptium is evolving and improving quickly, some documentation may fall behind the march of progress. Please let us know and help us keep it up-to-date, and ask questions at the Adoptium testing Slack channel!

CI pipeline view

Test 'Inventory'

The directory structure in this aqa-tests repository is meant to reflect the different types of test we run (and pull from lots of other locations). The diagrams below show the test make target for each of the types, along with in-plan, upcoming additions (denoted by dotted line grey boxes). The provided links jump to test jobs in Jenkins (ci.adoptium.net).

graph TD
    A[openjdk-tests] -->B[make _perf]
    A[openjdk-tests] -->C[make _openjdk]
    A[openjdk-tests] -->D[make _system]
    A[openjdk-tests] -->E[make _functional]
    A[openjdk-tests] -->F[make _jck]
    A[openjdk-tests] -->G[make _external]
    B[make _perf] -->|perf|H[performance]
    H[performance] -->|_sanity.perf|I[.....]
    H[performance] -->|_extended.perf|J[..]
    C[make _openjdk] -->|openjdk|K[openjdk]
    D[make _system] -->|system|L[system]
    E[make _functional] -->|functional|M[functional]
    F[make _jck] -->|jck|N[jck]
    G[make _external] -->|external|O[external]
    O[external] -->|_sanity.external|P[...]
    O[external] -->|_extended.external|Q[....] 
    

openjdk tests - OpenJDK regression tests

Tests from OpenJDK


system tests - System and load tests

Tests from the adoptium/aqa-systemtest repo


external tests - 3rd party application tests

Test suites from a variety of applications, along with microprofile TCKs, run in Docker containers

graph TD
 A[openjdk-tests] -->|make _external| B[external]
    B --> C[derby]
    B --> D[elasticsearch]
    B --> E[example]
    B --> F[jenkins]
    B --> G[kafka]
    B --> H[lucene-solr]
    B -->|_sanity.external|I[scala]
    B --> J[tomcat]
    B --> K[wildfly]
    B --> L[openliberty]
    B --> M[geode]
    B --> N[hbase]
    B --> O[akka]
    B --> P[logstash]
    B --> Q[openliberty-mp-tck]
    B -->|_extended.external|R[payara-mp-tck]
    B --> S[thorntail-mp-tck]
   

perf tests - Performance benchmark suites

Performance benchmark tests (both full suites and microbenches) from different open-source projects such as Acme-Air and adoptium/bumblebench

graph TD
 A[openjdk-tests] -->|make _perf| B[performance]
    B -->|_sanity.perf| C[bbench]
    B --> D[idle_micro]
    B --> E[odm]
    B -->|_extended.perf| F[liberty_dt]
    B --> G[acme_air]

functional tests - Unit and functional tests

Functional tests not originating from the openjdk regression suite, that include locale/language tests and a subset of implementation agnostic tests from the openj9 project.


jck tests - Compliance tests

TCK tests (under the OpenJDK Community TCK License Agreement), in compliance with the license agreement. While this test material is currently not run at the Adoptium project (see the support statement for details), those with their own OCTLA agreements may use the Adoptium test automation infrastructure to execute their TCK test material in their own private Jenkins servers.


Guide to Running the Tests Yourself

For more details on how to run the same tests that we run at Adoptium on your laptop or in your build farm, please consult our User Guide (work in progress).

What is our motivation?

We want:

  • better, more flexible tests, with the ability to apply certain types of testing to different builds
  • a common way to easily add, edit, group, include, exclude and execute tests on adoptium builds
  • the latitude to use a variety of tests that use many different test frameworks
  • test results to have a common look & feel for easier viewing and comparison

There are a great number of tests available to test a JVM, starting with the OpenJDK regression tests. In addition to running the OpenJDK regression tests, we will increase the amount of testing and coverage by pulling in other open tests. These new tests are not necessarily written using the jtreg format.

Why the need for other testing? The OpenJDK regression tests are a great start, but eventually you may want to be able to test how performant is your code, and whether some 3rd party applications still work. We will begin to incorporate more types of testing, including:

  • additional API and functional tests
  • stress/load tests
  • system level tests such as 3rd party application tests
  • performance tests
  • TCK tests

The test infrastructure in this repository allows us to lightly yoke a great variety of tests together to be applied to testing the adoptium binaries. By using an intentionally thin wrapper around a varied set of tests, we can more easily run all types of tests via make targets and as stages in our Jenkins CI pipeline builds.

How can you help?

You can:

More Repositories

1

temurin-build

Eclipse Temurinβ„’ build scripts - common across all releases/versions
Shell
1,009
star
2

emt4j

Eclipse Migration Toolkit for Java
Java
375
star
3

containers

Repo containing the dockerfiles and scripts to produce the official eclipse-temurin containers.
Dockerfile
209
star
4

temurin17-binaries

Temurin 17 binaries
186
star
5

temurin8-binaries

Temurin 8 binaries
182
star
6

adoptium

173
star
7

jdk

This repo is an unmodified mirror of source code obtained from OpenJDK. It has been and may still be used to create builds that are untested and incompatible with the Java SE specification. You should not deploy or write to this code, but instead use the tested and certified Java SE compatible version that is available at https://adoptium.net.
Java
147
star
8

installer

Installer scripts for Eclipse Temurin binaries
Java
146
star
9

temurin11-binaries

Temurin 11 binaries
112
star
10

infrastructure

This repo contains all information about machine maintenance.
Shell
85
star
11

temurin21-binaries

Temurin 21 binaries
50
star
12

adoptium-support

For end-user problems reported with our binary distributions
44
star
13

jdk8u

This repo is an unmodified mirror of source code obtained from OpenJDK. It has been and may still be used to create builds that are untested and incompatible with the Java SE specification. You should not deploy or write to this code, but instead use the tested and certified Java SE compatible version that is available at https://adoptium.net.
Java
39
star
14

api.adoptium.net

Adoptium API πŸš€
Kotlin
33
star
15

aqa-test-tools

Home of Test Results Summary Service (TRSS) and PerfNext. These tools are designed to improve our ability to monitor and triage tests at the Adoptium project. The code is generic enough that it is extensible for use by any project that needs to monitor multiple CI servers and aggregate their results.
Jupyter Notebook
28
star
16

bumblebench

A microbenchmarking test framework for Eclipse Adoptium
Java
22
star
17

jmc-build

Contains the Adoptium specific source code overrides and build pipeline script for the Java Mission Control project.
HTML
21
star
18

temurin18-binaries

Temurin 18 binaries
21
star
19

jdk11u

This repo is an unmodified mirror of source code obtained from OpenJDK. It has been and may still be used to create builds that are untested and incompatible with the Java SE specification. You should not deploy or write to this code, but instead use the tested and certified Java SE compatible version that is available at https://adoptium.net.
Java
21
star
20

aqa-systemtest

Java load testing and other full system application tests
Java
19
star
21

adoptium.net

Adoptium Website
TypeScript
19
star
22

ci-jenkins-pipelines

jenkins pipeline build scripts
Groovy
18
star
23

temurin

Eclipse Temurinβ„’ project assets
18
star
24

TKG

TestKitGen (TKG)
Java
16
star
25

jdk17u

This repo is an unmodified mirror of source code obtained from OpenJDK. It has been and may still be used to create builds that are untested and incompatible with the Java SE specification. You should not deploy or write to this code, but instead use the tested and certified Java SE compatible version that is available at https://adoptium.net.
Java
16
star
26

temurin20-binaries

Temurin 20 binaries
15
star
27

jdk8u_hg

JDK8u mirror from mercurial from
Java
12
star
28

temurin19-binaries

Temurin 19 binaries
12
star
29

jdk11u-fast-startup-incubator

This repo is an unmodified mirror of source code obtained from OpenJDK. It has been and may still be used to create builds that are untested and incompatible with the Java SE specification. You should not deploy or write to this code, but instead use the tested and certified Java SE compatible version that is available at https://adoptium.net.
Java
11
star
30

obsolete---adoptium.net

Development of the website has moved to https://github.com/adoptium/website-v2
Handlebars
10
star
31

jdk21

This repo is an unmodified mirror of source code obtained from OpenJDK. It has been and may still be used to create builds that are untested and incompatible with the Java SE specification. You should not deploy or write to this code, but instead use the tested and certified Java SE compatible version that is available at https://adoptium.net.
Java
10
star
32

temurin16-binaries

Temurin 16 binaries
9
star
33

temurin22-binaries

Temurin 22 binaries
9
star
34

dash.adoptium.net

Download tracking dashboard
TypeScript
8
star
35

build-jdk

Github action for building JDKs that utilizes the build scripts from the openjdk-build repo
TypeScript
8
star
36

jdk21u

This repo is an unmodified mirror of source code obtained from OpenJDK. It has been and may still be used to create builds that are untested and incompatible with the Java SE specification. You should not deploy or write to this code, but instead use the tested and certified Java SE compatible version that is available at https://adoptium.net.
Java
8
star
37

jenkins-helper

Jenkins Node helper API and helper jobs
Groovy
7
star
38

STF

The System Test Framework for executing https://github.com/adoptium/aqa-systemtest
Java
7
star
39

documentation-services

Java
6
star
40

blog.adoptium.net

The official Adoptium Blog
JavaScript
6
star
41

github-release-scripts

Scripts for release artefacts to GitHub releases
Shell
6
star
42

jdk20u

This repo is an unmodified mirror of source code obtained from OpenJDK. It has been and may still be used to create builds that are untested and incompatible with the Java SE specification. You should not deploy or write to this code, but instead use the tested and certified Java SE compatible version that is available at https://adoptium.net.
Java
5
star
43

mirror-scripts

OpenJDK source mirroring scripts used by
Shell
4
star
44

marketplace-api.adoptium.net

Adoptium Marketplace API πŸš€
Kotlin
4
star
45

.github

4
star
46

marketplace-data

The official source of Marketplace data (JSON) for feeding Eclipse Temurin binaries to the Marketplace API πŸ’Ύ
4
star
47

alpine-jdk8u

This repo is an unmodified mirror of source code obtained from OpenJDK. It has been and may still be used to create builds that are untested and incompatible with the Java SE specification. You should not deploy or write to this code, but instead use the tested and certified Java SE compatible version that is available at https://adoptium.net.
Java
4
star
48

temurin23-binaries

Temurin 23 binaries
4
star
49

jdk20

Java
3
star
50

run-aqa

Repository for the Github Action that enables the running of the Adoptium Quality Assurance (AQA) tests
TypeScript
3
star
51

jdk17

JDK17 mirror. This source code is an unmodified mirror of source code obtained from OpenJDK https://github.com/openjdk/jdk17. It has been and may still be used to create builds that are untested and incompatible with the Java SE specification. You should not deploy or write to this code, but instead, use the tested and certified Java SE compatible version of the code that is available at https://www.adoptium.net.
Java
3
star
52

.eclipsefdn

Repository to host configurations related to the Eclipse Foundation.
Jsonnet
2
star
53

documentation

The new documentation for adoptium.net will be initially created in this repo
Shell
2
star
54

jdk19u

This repo is an unmodified mirror of source code obtained from OpenJDK. It has been and may still be used to create builds that are untested and incompatible with the Java SE specification. You should not deploy or write to this code, but instead use the tested and certified Java SE compatible version that is available at https://adoptium.net.
Java
2
star
55

adoptium.net-redesign

Adoptium Website
TypeScript
2
star
56

jdk19

jdk19 repository
Java
1
star
57

aarch32-jdk8u_hg

Mirror of the Mercurial Forest for the Linux Aarch32 port from
Java
1
star
58

Incubator

Adoptium Incubator project
1
star
59

jdk16u

This repo is an unmodified mirror of source code obtained from OpenJDK. It has been and may still be used to create builds that are untested and incompatible with the Java SE specification. You should not deploy or write to this code, but instead use the tested and certified Java SE compatible version that is available at https://adoptium.net.
Java
1
star
60

temurin-cpe-generator

A tool to generate NIST CPE directory entries for Eclipse Temurin using the Adoptium API.
JavaScript
1
star
61

jdk18u

This repo is an unmodified mirror of source code obtained from OpenJDK. It has been and may still be used to create builds that are untested and incompatible with the Java SE specification. You should not deploy or write to this code, but instead use the tested and certified Java SE compatible version that is available at https://adoptium.net.
Java
1
star
62

jdk18

JDK18 mirror. This source code is an unmodified mirror of source code obtained from OpenJDK https://github.com/openjdk/jdk18. It has been and may still be used to create builds that are untested and incompatible with the Java SE specification. You should not deploy or write to this code, but instead use the tested and certified Java SE compatible version of the code that is available at https://adoptium.net.
Java
1
star
63

aarch32-jdk8u

This repo is an unmodified mirror of source code obtained from OpenJDK. It has been and may still be used to create builds that are untested and incompatible with the Java SE specification. You should not deploy or write to this code, but instead use the tested and certified Java SE compatible version that is available at https://adoptium.net.
Java
1
star
64

jdk22

This repo is an unmodified mirror of source code obtained from OpenJDK. It has been and may still be used to create builds that are untested and incompatible with the Java SE specification. You should not deploy or write to this code, but instead use the tested and certified Java SE compatible version that is available at https://adoptium.net.
Java
1
star