Stream | Version/Status | Log File |
---|---|---|
Centos Atomic Host Continuous | log | |
Fedora Atomic Host Continuous | log | |
Fedora 26 Atomic Host | log | |
Fedora 26 Atomic Testing | log | |
Fedora 26 Atomic Updates | log | |
Fedora 27 Atomic Host | log | |
Fedora 27 Atomic Testing | log | |
Fedora Rawhide Atomic Host | log |
This repo contains a number of Ansible playbooks that can be used to run tests against an Atomic Host.
The intent is to have a collection of tests that can be used to test the CentOS, Fedora, and RHEL versions of Atomic Host.
Currently, these tests fall into the category of single host, integration tests.
NOTE: This repo only provides playbooks/tests and does not currently provide any way for provisioning test resources/infrastructure.
The following test suites are available and supported. Any other playbooks found in the repo are currently unmaintained and may not work correctly.
- ostree admin unlock
- Verifies the ability to install packages using
ostree admin unlock
- Verifies the ability to install packages using
- Docker Build httpd
- Attempts to build a
httpd
container using various base images
- Attempts to build a
- Docker Swarm
- Covers the basic functionality of the
docker swarm
commands
- Covers the basic functionality of the
- Docker/Docker Latest
- Validates basic
docker
operations using eitherdocker
ordocker-latest
- Validates basic
- Improved Sanity Test
- A test suite aimed at providing smoketest-like coverage of an entire Atomic Host
- Kubernetes
- Validates standing up a single-node Kubernetes cluster and deploying a simple web+DB application
- Package Layering
- Validates the package layering functionality of
rpm-ostree
- Validates the package layering functionality of
- System Containers
- Verifies the basic usage of system containers on Atomic Host
- Runc
- Verifies basic runc functions
The reasons for choosing Ansible playbooks are mainly 1) ease of use, 2) portability, and 3) simplicity.
-
Ansible is a well-known tool and there is plenty of documentation available for users to rely on.
-
Ansible requires only a small amount of functionality on the system under test (basically Python and SSH), so playbooks can be used across multiple platforms with little changes necessary.
-
Fail fast and early. When a task in Ansible fails, the whole playbook fails (for the most part). Thus, if something fails during the execution, that is a good indication that something broke.
The preferred environment to run the playbooks is using a virtual environment. This will ensure the correct version of Ansible is installed and will not interfere with your current workspace.
To setup a virtualenv, follow the steps below after cloning atomic-host-tests:
pip install virtualenv
virtualenv my_env
source my_env/bin/activate
pip install -r requirements.txt
All the playbooks should be able to be run without any extra options on the command line. Like so:
# ansible-playbook -i inventory tests/improved-sanity-test/main.yml
However, some tests do accept extra arguments that can change how the test is run; please see the README for each test for details.
Additionally, certain variables are required to be configured for each test and the required variables can vary between tests. There are sensible defaults provided, but it is up to the user to configure them as they see fit.
NOTE: Playbooks are developed and tested using Ansible 2.2. Older versions will not work.
By default Ansible logs to stdout. Atomic host tests has a custom callback plugin that makes the output more human readable. In addition there are a few custom log options described below.
If the environment variable AHT_RESULT_FILE is set, Ansible will save the details of the failed task into file named after the value of the environment variable in the current working directory.
export AHT_RESULT_FILE=my_failure_file
In this example the failure details will be saved to ./my_failure_file
Ansible handlers are used to capture the journal on failure. This feature can be enabled using a role or an include which must be called in every block of pre_tasks, post_tasks, tasks, roles, or plays. Force_handlers must be set to true regardless of which method is used.
force_handlers: true
- role: handler_notify_on_failure
handler_name: h_get_journal
- include: 'atomic-host-tests/roles/handler_notify_on_failure/task/main.yml'
handler_name: h_get_journal
In addition, the handler must be included since using include doesn't automatically pull in the handler. This is typically done at the end of the block.
handlers:
- include: 'atomic-host-tests/roles/handler_notify_on_failure/handlers/main.yml'
NOTE The path should be relative to the path of the playbook
You can see how the playbooks would run by using the supplied Vagrantfile which defines multiple boxes to test with. The Vagrantfile requires a 'vagrant-reload' plugin available from the following GitHub repo:
https://github.com/aidanns/vagrant-reload
With the plugin installed, you should be able to choose a CentOS AH box, a Fedora 24/25 AH box, or a CentOS AH Continuous (CAHC) box.
$ vagrant up centos
or
$ vagrant up {fedora24|fedora25}
or
$ vagrant up cahc
By default, the Vagrantfile will run the tests/improved-sanity-test/main.yml
playbook after Vagrant completes the provisioning of the box. The playbook
which is run can be changed by setting the environment variable PLAYBOOK_FILE
to point to a playbook in the repo.
$ PLAYBOOK_FILE=tests/docker-swarm/main.yml vagrant up cahc
NOTE: By default, the Vagrant boxes will provision HEAD-1 of the flavor of Atomic Host you want to bring up.