You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ansible/test/integration
John R Barker 59306e2aef Add files via upload (#21062) 7 years ago
..
group_vars Add group_vars/ops.yaml (#19288) 8 years ago
host_vars breaks testing in non virtual envs, since env var can be used in those 9 years ago
roles Adding support for Amazon ECR (#19306) 8 years ago
targets Added win_reg_stat module (#19145) 7 years ago
vars Split integration tests out from Makefile. (#17976) 8 years ago
Makefile Add jinja2 groupby filter override to cast namedtuple to tuple. Fixes #20098 (#20362) 8 years ago
README.md Use ansible-test in integration test README. 8 years ago
amazon.yml Adding support for Amazon ECR (#19306) 8 years ago
asa.yaml Migrate Network Tests into ansible/ansible (#18233) 8 years ago
azure.yml add azure integration tests 9 years ago
cleanup_azure.py add azure integration tests 9 years ago
cleanup_ec2.py PEP 8 E111 & E114 cleanup. (#20838) 8 years ago
cleanup_gce.py PEP 8 E111 & E114 cleanup. (#20838) 8 years ago
cleanup_rax.py Fix assert statement syntax 9 years ago
cloudflare.yml Fix cosmetic problems in YAML source 8 years ago
cloudscale.yml new module cloudscale_server (#20175) 8 years ago
cloudstack.yml cloudstack: new integration tests test_cs_resourcelimit 8 years ago
consul.yml Initial commit of Ansible support for the Consul clustering framework (http://consul.io). 10 years ago
consul_inventory.yml Initial commit of Ansible support for the Consul clustering framework (http://consul.io). 10 years ago
consul_running.py Support print() function in test/ 9 years ago
credentials.template Changes to enable make gce to run. Added sys import so libcloud error is displayed; renamed credentials keys in template file so they work properly with gce_credentials.py. (#16607) 8 years ago
dellos6.yaml Migrate Network Tests into ansible/ansible (#18233) 8 years ago
dellos9.yaml Migrate Network Tests into ansible/ansible (#18233) 8 years ago
dellos10.yaml Migrate Network Tests into ansible/ansible (#18233) 8 years ago
destructive.yml Fix locale_gen to compare native strings rather than mixing byte and text strings 8 years ago
eos.yaml Migrate Network Tests into ansible/ansible (#18233) 8 years ago
exoscale.yml exo_dns: new module utils and integration tests for exoscale DNS (#17230) 8 years ago
galaxy_playbook.yml Allow installation of roles from yaml roles file 10 years ago
galaxy_playbook_git.yml [hotfix] add missed playbook file 9 years ago
galaxy_roles.yml Fix cosmetic problems in YAML source 8 years ago
galaxy_rolesfile Add tests for #10620 9 years ago
gce.yml Basic integration test for gce_tag. (#17928) 8 years ago
gce_credentials.py Integration Playbook for Google Cloud DNS module. (#17698) 8 years ago
integration_config.yml Fix cosmetic problems in YAML source 8 years ago
inventory Configurable fact path (#18147) 8 years ago
inventory.network veos-dut-01 is down, so use veos01 (#19299) 8 years ago
inventory.remote.template Add support for OS X CI on Shippable. (#17160) 8 years ago
inventory.winrm.template Add binary module tests to Windows CI. (#16914) 8 years ago
ios.yaml integration/targets/ios_* work to support IOS (#20414) 8 years ago
iosxr.yaml iosxr tests: Initial work for 2.3 (#20883) 8 years ago
jenkins.yml jenkins_job: add integration tests (#17499) 8 years ago
junos.yaml Migrate Network Tests into ansible/ansible (#18233) 8 years ago
net_command.yml Add files via upload (#21062) 7 years ago
network-all.yaml Ops (#18652) 8 years ago
non_destructive.yml known_hosts: support --diff (#20349) 7 years ago
nxos.yaml Migrate Network Tests into ansible/ansible (#18233) 8 years ago
ops.yaml Ops (#18652) 8 years ago
rackspace.yml Add tests for rax_scaling_group 9 years ago
setup_gce.py PEP 8 E111 & E114 cleanup. (#20838) 8 years ago
target-prefixes.network ops not openswitch (#18256) 8 years ago
test_win_group1.yml Migrate Windows CI roles to test targets. (#18005) 8 years ago
test_win_group2.yml Added win_find module (#19144) 7 years ago
test_win_group3.yml Added win_reg_stat module (#19145) 7 years ago
vyos.yaml Migrate Network Tests into ansible/ansible (#18233) 8 years ago

README.md

Integration tests

The ansible integration system.

Tests for playbooks, by playbooks.

Some tests may require credentials. Credentials may be specified with credentials.yml.

Some tests may require root.

Quick Start

It is highly recommended that you install and activate the argcomplete python package. It provides tab completion in bash for the ansible-test test runner.

To get started quickly using Docker containers for testing, see Tests in Docker containers.

Configuration

Making your own version of integration_config.yml can allow for setting some tunable parameters to help run the tests better in your environment. Some tests (e.g. cloud) will only run when access credentials are provided. For more information about supported credentials, refer to credentials.template.

Prerequisites

The tests will assume things like hg, svn, and git are installed and in path.

(Complete list pending)

Non-destructive Tests

These tests will modify files in subdirectories, but will not do things that install or remove packages or things outside of those test subdirectories. They will also not reconfigure or bounce system services.

Run as follows for all POSIX platform tests executed by our CI system:

test/runner/ansible-test integration -v posix/ci/

You can select specific tests as well, such as for individual modules:

test/runner/ansible-test integration -v ping

Destructive Tests

These tests are allowed to install and remove some trivial packages. You will likely want to devote these to a virtual environment. They won't reformat your filesystem, however :)

test/runner/ansible-test integration -v destructive/

Cloud Tests

Cloud tests exercise capabilities of cloud modules (e.g. ec2_key). These are not 'tests run in the cloud' so much as tests that leverage the cloud modules and are organized by cloud provider.

In order to run cloud tests, you must provide access credentials in a file named credentials.yml. A sample credentials file named credentials.template is available for syntax help.

Provide cloud credentials:

cp credentials.template credentials.yml
${EDITOR:-vi} credentials.yml

Run the tests: make cloud

WARNING running cloud integration tests will create and destroy cloud resources. Running these tests may result in additional fees associated with your cloud account. Care is taken to ensure that created resources are removed. However, it is advisable to inspect your AWS console to ensure no unexpected resources are running.

Windows Tests

These tests exercise the winrm connection plugin and Windows modules. You'll need to define an inventory with a remote Windows 2008 or 2012 Server to use for testing, and enable PowerShell Remoting to continue.

Running these tests may result in changes to your Windows host, so don't run them against a production/critical Windows environment.

Enable PowerShell Remoting (run on the Windows host via Remote Desktop): Enable-PSRemoting -Force

Define Windows inventory:

cp inventory.winrm.template inventory.winrm
${EDITOR:-vi} inventory.winrm

Run the Windows tests executed by our CI system:

test/runner/ansible-test windows-integration -v windows/ci/

Tests in Docker containers

If you have a Linux system with Docker installed, running integration tests using the same Docker containers used by the Ansible continuous integration (CI) system is recommended.

Using Docker Engine to run Docker on a non-Linux host is not recommended. Some tests may fail, depending on the image used for testing. Using the --docker-privileged option may resolve the issue.

Running Integration Tests

To run all CI integration test targets for POSIX platforms in a Ubuntu 16.04 container:

test/runner/ansible-test integration -v posix/ci/ --docker

You can also run specific tests or select a different Linux distribution. For example, to run tests for the ping module on a Ubuntu 14.04 container:

test/runner/ansible-test integration -v ping --docker ubuntu1404

Container Images

Python 2

Most container images are for testing with Python 2:

  • centos6
  • centos7
  • fedora24
  • fedora25
  • opensuse42.1
  • opensuse42.2
  • ubuntu1204
  • ubuntu1404
  • ubuntu1604

Python 3

To test with Python 3 use the following images:

  • ubuntu1604py3

Network Tests

Note: From Ansible 2.3, for any new Network Module to be accepted it must be accompanied by a corresponding test.

For further help with this please contact gundalow in #ansible-devel on FreeNode IRC.

$ ANSIBLE_ROLES_PATH=targets ansible-playbook network-all.yaml

NOTE To run the network tests you will need a number of test machines and sutabily configured inventory file, a sample is included in test/integration/inventory.network

NOTE As with the rest of the integration tests, they can be found grouped by module in test/integration/targets/MODULENAME/

To filter a set of test cases set limit_to to the name of the group, generally this is the name of the module:

$ ANSIBLE_ROLES_PATH=targets ansible-playbook -i inventory.network network-all.yaml -e "limit_to=eos_command"

To filter a singular test case set the tags options to eapi or cli, set limit_to to the test group, and test_cases to the name of the test:

$ ANSIBLE_ROLES_PATH=targets ansible-playbook -i inventory.network network-all.yaml --tags="cli" -e "limit_to=eos_command test_case=notequal"

Contributing Test Cases

Test cases are added to roles based on the module being testing. Test cases should include both cli and eapi test cases. Cli test cases should be added to test/integration/targets/modulename/tests/cli and eapi tests should be added to test/integration/targets/modulename/tests/eapi.

In addition to positive testing, negative tests are required to ensure user friendly warnings & errors are generated, rather than backtraces, for example:

- name: test invalid subset (foobar)
  eos_facts:
    provider: "{{ cli }}"
    gather_subset:
      - "foobar"
  register: result
  ignore_errors: true

- assert:
    that:
      # Failures shouldn't return changes
      - "result.changed == false"
      # It's a failure
      - "result.failed == true"
      # Sensible Failure message
      - "'Subset must be one of' in result.msg"

Conventions

  • Each test case should generally follow the pattern:

    setup —> test —> assert —> test again (idempotent) —> assert —> -teardown (if needed) -> done

    This keeps test playbooks from becoming monolithic and difficult to troubleshoot.

  • Include a name for each task that is not an assertion. (It's OK to add names to assertions too. But to make it easy to identify the broken task within a failed test, at least provide a helpful name for each task.)

  • Files containing test cases must end in .yaml

Adding a new Network Platform

A top level playbook is required such as ansible/test/integration/eos.yaml which needs to be references by ansible/test/integration/network-all.yaml