Testing Ansible

    • how Ansible is tested
    • how to test Ansible locally
    • how to extend the testing capabilities

    At a high level we have the following classifications of tests:

    If you’re a developer, one of the most valuable things you can do is look at the GitHubissues list and help fix bugs. We almost always prioritize bug fixing over featuredevelopment.

    Even for non developers, helping to test pull requests for bug fixes and features is stillimmensely valuable. Ansible users who understand writing playbooks and roles should beable to add integration tests and so Github pull requests with integration tests that showbugs in action will also be a great way to help.

    When Pull Requests (PRs) are created they are tested using Shippable, a Continuous Integration (CI) tool. Results are shown at the end of every PR.

    When Shippable detects an error and it can be linked back to a file that has been modified in the PR then the relevant lines will be added as a GitHub comment. For example:

    From the above example we can see that and —test validate-modules have identified issues. The commands given allow you to run the same tests locally to ensure you’ve fixed the issues without having to push your changed to GitHub and wait for Shippable, for example:

    If you haven’t already got Ansible available, use the local checkout by running:

    1. source hacking/env-setup

    Then run the tests detailed in the GitHub comment:

    If there isn’t a GitHub comment stating what’s failed you can inspect the results by clicking on the “Details” button under the “checks have failed” message at the end of the PR.

    Occasionally you may find your PR fails due to a reason unrelated to your change. This could happen for several reasons, including:

    • a temporary issue accessing an external resource, such as a yum or git repo
    • a timeout creating a virtual machine to run the tests on

    If either of these issues appear to be the case, you can rerun the Shippable test by:

    • closing and re-opening the PR
    • making another change to the PR and pushing to GitHub

    If the issue persists, please contact us in #ansible-devel on Freenode IRC.

    Thankfully, helping to test Ansible is pretty straightforward, assuming you are familiar with how Ansible works.

    You can do this by:

    • checking out Ansible
    • merging a GitHub issue
    • testing
    • commenting on that particular issue on GitHub

    Here’s how:

    Warning

    Testing source code from GitHub pull requests sent to us does have some inherent risk, as the source codesent may have mistakes or malicious code that could have a negative impact on your system. We recommenddoing all testing on a virtual machine, whether a cloud instance, or locally. Some users like Vagrantor Docker for this, but they are optional. It is also useful to have virtual machines of different Linux orother flavors, since some features (apt vs. yum, for example) are specific to those OS versions.

    Create a fresh area to work:

    1. git clone https://github.com/ansible/ansible.git ansible-pr-testing
    2. cd ansible-pr-testing

    Next, find the pull request you’d like to test and make note of the line at the top which describes the sourceand destination repositories. It will look something like this:

    Note

    Only test ansible:devel

    It is important that the PR request target be , as we do not accept pull requests into any other branch. Dot releases are cherry-picked manually by Ansible staff.

    The username and branch at the end are the important parts, which will be turned into git commands as follows:

    1. git checkout -b testing_PRXXXX devel
    2. git pull https://github.com/someuser/ansible.git feature_branch_name

    The first command creates and switches to a new branch named testing_PRXXXX, where the XXXX is the actual issue number associated with the pull request (for example, 1234). This branch is based on the devel branch. The second command pulls the new code from the users feature branch into the newly created branch.

    If the GitHub user interface shows that the pull request will not merge cleanly, we do not recommend proceeding if you are not somewhat familiar with git and coding, as you will have to resolve a merge conflict. This is the responsibility of the original pull request contributor.

    Note

    Some users do not create feature branches, which can cause problems when they have multiple, unrelated commits in their version of devel. If the source looks like , make sure there is only one commit listed on the pull request.

    The Ansible source includes a script that allows you to use Ansible directly from source without requiring afull installation that is frequently used by developers on Ansible.

    Simply source it (to use the Linux/Unix terminology) to begin using it immediately:

    This script modifies the PYTHONPATH environment variables (along with a few other things), which will be temporarilyset as long as your shell session is open.

    At this point, you should be ready to begin testing!

    Some ideas of what to test are:

    • Create a test Playbook with the examples in and check if they function correctly
    • Test to see if any Python backtraces returned (that’s a bug)

    Any potential issues should be added as comments on the pull request (and it’s acceptable to comment if the feature works as well), remembering to include the output of ansible —version

    Example:

    1. Works for me! Tested on `Ansible 2.3.0`. I verified this on CentOS 6.5 and also Ubuntu 14.04.

    If the PR does not resolve the issue, or if you see any failures from the unit/integration tests, just include that output instead:

    Code Coverage Online

    are a good wayto identify areas for testing improvement in Ansible. By following red colors you candrill down through the reports to find files which have no tests at all. Adding bothintegration and unit tests which show clearly how code should work, verify importantAnsible functions and increase testing coverage in areas where there is none is a valuableway to help improve Ansible.

    If you’d like to know more about the plans for improving testing Ansible then why not join theTesting Working Group.