Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jenkinsci/acceptance-test-harness
Acceptance tests cases for Jenkins and its plugins based on selenium and docker.
https://github.com/jenkinsci/acceptance-test-harness
hacktoberfest
Last synced: 8 days ago
JSON representation
Acceptance tests cases for Jenkins and its plugins based on selenium and docker.
- Host: GitHub
- URL: https://github.com/jenkinsci/acceptance-test-harness
- Owner: jenkinsci
- Created: 2014-02-28T17:39:55.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2024-10-29T13:40:18.000Z (11 days ago)
- Last Synced: 2024-10-29T16:12:23.778Z (11 days ago)
- Language: Java
- Homepage:
- Size: 13.3 MB
- Stars: 128
- Watchers: 116
- Forks: 232
- Open Issues: 21
-
Metadata Files:
- Readme: README.md
- Contributing: docs/CONTRIBUTING.md
- Support: docs/SUPPORT-BUNDLE.md
Awesome Lists containing this project
README
# Acceptance tests for Jenkins
[![Jenkins](https://ci.jenkins.io/job/Core/job/acceptance-test-harness/job/master/badge/icon)](https://ci.jenkins.io/job/Core/job/acceptance-test-harness/job/master/)
[![Docker Pulls](https://img.shields.io/docker/pulls/jenkins/ath.svg)](https://hub.docker.com/r/jenkins/ath/)End to end test suite for Jenkins automation server and its plugins.
The scenarios are described in the form of tests controlling Jenkins under test (JUT) through UI / REST APIs. Clean instances
are started for individual tests to isolate the tests. The harness provides convenient docker support so integration tests
can be written easily.## Contributing to acceptance tests
Follow the [contributing guidelines](docs/CONTRIBUTING.md) if you want to propose new tests for this project.
## Getting Started
The simplest way to start the harness is calling `BROWSER=firefox JENKINS_VERSION=2.73 mvn test`. The complete test suite
takes hours to run due to the number of covered components/use-cases, the cost of Jenkins setup, and selenium interactions.
That can be avoided by selecting a subset of tests to be run - smoke tests for instance.Here is a [walkthrough](docs/WALKTHROUGH.md) for running ATH tests on changes made to a local version of Jenkins.
## Running tests
The harness provides a variety of ways to configure the execution including:
* [Selecting web browser](docs/BROWSER.md)
* [Specifying test(s) to run](docs/SINGLE-TEST.md)
* [Managing the versions of Jenkins and plugins](docs/SUT-VERSIONS.md)
* [Using a http proxy](docs/USING-A-HTTP-PROXY.md)
* [Prelaunching Jenkins](docs/PRELAUNCH.md)
* [Selecting how to launch Jenkins](docs/CONTROLLER.md)
* [Obtaining a report of plugins that were exercised](docs/EXERCISEDPLUGINSREPORTER.md)
* [Running tests in container](docs/DOCKER.md)
* [Debugging tests in container](docs/DOCKER.md#debugging-tests-in-a-docker-container)
* [Capture a support bundle](docs/SUPPORT-BUNDLE.md)
* Selecting tests based on plugins they cover (TODO)## Creating tests
Given how long it takes for the suite to run, test authors are advised to focus on the most popular plugins and
use-cases to maximize the value of the test suite. Tests that can or already are written as a part of core/plugin tests
should be avoided here as well as tests unlikely to catch future regressions (reproducers for individual bugs, boundary
condition testing, etc.). Individual maintainers are expected to update their tests reflecting core/plugin changes as
well as ensuring the tests does not produce false positives. Tests identified to violate this guideline might be removed
without author's notice for the sake of suite reliability.* [Selenium test in plugin repository](docs/EXTERNAL.md)
* [Docker fixtures](docs/FIXTURES.md)
* [Page objects](docs/PAGE-OBJECTS.md)
* [Mix-ins](docs/MIXIN.md)
* [Guice is our glue](docs/GUICE.md)
* Writing tests
* [Video tutorial](https://www.youtube.com/watch?v=ZHAiywgMG-M) by Kohsuke on how to write tests
* [Writing JUnit test](docs/JUNIT.md)
* [Testing agents](docs/AGENT.md)
* [Hamcrest matchers](docs/MATCHERS.md)
* [EC2 provider configuration](docs/EC2-CONFIG.md)
* [Investigation](docs/INVESTIGATION.md)Areas where acceptance-tests-harness is more suitable than jenkins-test-harness are:
- Installing plugins for cross-plugin integration
- Running tests in a realistic classloader environment
- Verifying UI behaviour in an actual web browser