summaryrefslogtreecommitdiffstats
path: root/docs/docsite/rst/dev_guide/testing.rst
diff options
context:
space:
mode:
Diffstat (limited to 'docs/docsite/rst/dev_guide/testing.rst')
-rw-r--r--docs/docsite/rst/dev_guide/testing.rst245
1 files changed, 245 insertions, 0 deletions
diff --git a/docs/docsite/rst/dev_guide/testing.rst b/docs/docsite/rst/dev_guide/testing.rst
new file mode 100644
index 0000000..6b4716d
--- /dev/null
+++ b/docs/docsite/rst/dev_guide/testing.rst
@@ -0,0 +1,245 @@
+.. _developing_testing:
+
+***************
+Testing Ansible
+***************
+
+.. contents::
+ :local:
+
+
+Why test your Ansible contributions?
+====================================
+
+If you're a developer, one of the most valuable things you can do is to look at GitHub issues and help fix bugs, since bug-fixing is almost always prioritized over feature development. Even for non-developers, helping to test pull requests for bug fixes and features is still immensely valuable.
+
+Ansible users who understand how to write playbooks and roles should be able to test their work. GitHub pull requests will automatically run a variety of tests (for example, Azure Pipelines) that show bugs in action. However, contributors must also test their work outside of the automated GitHub checks and show evidence of these tests in the PR to ensure that their work will be more likely to be reviewed and merged.
+
+Read on to learn how Ansible is tested, how to test your contributions locally, and how to extend testing capabilities.
+
+If you want to learn about testing collections, read :ref:`testing_collections`
+
+
+
+Types of tests
+==============
+
+At a high level we have the following classifications of tests:
+
+:sanity:
+ * :ref:`testing_sanity`
+ * Sanity tests are made up of scripts and tools used to perform static code analysis.
+ * The primary purpose of these tests is to enforce Ansible coding standards and requirements.
+:integration:
+ * :ref:`testing_integration`
+ * Functional tests of modules and Ansible core functionality.
+:units:
+ * :ref:`testing_units`
+ * Tests directly against individual parts of the code base.
+
+
+Testing within GitHub & Azure Pipelines
+=======================================
+
+
+Organization
+------------
+
+When Pull Requests (PRs) are created they are tested using Azure Pipelines, a Continuous Integration (CI) tool. Results are shown at the end of every PR.
+
+When Azure Pipelines 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:
+
+.. code-block:: text
+
+ The test `ansible-test sanity --test pep8` failed with the following errors:
+
+ lib/ansible/modules/network/foo/bar.py:509:17: E265 block comment should start with '# '
+
+ The test `ansible-test sanity --test validate-modules` failed with the following error:
+ lib/ansible/modules/network/foo/bar.py:0:0: E307 version_added should be 2.4. Currently 2.3
+
+From the above example we can see that ``--test pep8`` and ``--test validate-modules`` have identified an issue. The commands given allow you to run the same tests locally to ensure you've fixed all issues without having to push your changes to GitHub and wait for Azure Pipelines, for example:
+
+If you haven't already got Ansible available, use the local checkout by running:
+
+.. code-block:: shell-session
+
+ source hacking/env-setup
+
+Then run the tests detailed in the GitHub comment:
+
+.. code-block:: shell-session
+
+ ansible-test sanity --test pep8
+ ansible-test sanity --test validate-modules
+
+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.
+
+Rerunning a failing CI job
+--------------------------
+
+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 Azure Pipelines test by:
+
+* adding a comment with ``/rebuild`` (full rebuild) or ``/rebuild_failed`` (rebuild only failed CI nodes) to the PR
+* closing and re-opening the PR (full rebuild)
+* making another change to the PR and pushing to GitHub
+
+If the issue persists, please contact us in the ``#ansible-devel`` chat channel (using Matrix at ansible.im or using IRC at `irc.libera.chat <https://libera.chat/>`_).
+
+
+How to test a PR
+================
+
+Ideally, code should add tests that prove that the code works. That's not always possible and tests are not always comprehensive, especially when a user doesn't have access to a wide variety of platforms, or is using an API or web service. In these cases, live testing against real equipment can be more valuable than automation that runs against simulated interfaces. In any case, things should always be tested manually the first time as well.
+
+Thankfully, helping to test Ansible is pretty straightforward, assuming you are familiar with how Ansible works.
+
+Setup: Checking out a Pull Request
+----------------------------------
+
+You can do this by:
+
+* checking out Ansible
+* fetching the proposed changes into a test branch
+* 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 code
+ sent may have mistakes or malicious code that could have a negative impact on your system. We recommend
+ doing all testing on a virtual machine, whether a cloud instance, or locally. Some users like Vagrant
+ or Docker for this, but they are optional. It is also useful to have virtual machines of different Linux or
+ other flavors, since some features (for example, package managers such as apt or yum) are specific to those OS versions.
+
+
+Create a fresh area to work:
+
+.. code-block:: shell-session
+
+ git clone https://github.com/ansible/ansible.git ansible-pr-testing
+ cd ansible-pr-testing
+
+Next, find the pull request you'd like to test and make note of its number. It will look something like this:
+
+.. code-block:: text
+
+ Use os.path.sep instead of hardcoding / #65381
+
+.. note:: Only test ``ansible:devel``
+
+ It is important that the PR request target be ``ansible:devel``, as we do not accept pull requests into any other branch. Dot releases are cherry-picked manually by Ansible staff.
+
+Use the pull request number when you fetch the proposed changes and create your branch for testing:
+
+.. code-block:: shell-session
+
+ git fetch origin refs/pull/XXXX/head:testing_PRXXXX
+ git checkout testing_PRXXXX
+
+The first command fetches the proposed changes from the pull request and creates a new branch named ``testing_PRXXXX``, where the XXXX is the actual number associated with the pull request (for example, 65381). The second command checks out the newly created branch.
+
+.. note::
+ 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 ``someuser:devel``, 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 a
+full installation that is frequently used by developers on Ansible.
+
+Simply source it (to use the Linux/Unix terminology) to begin using it immediately:
+
+.. code-block:: shell-session
+
+ source ./hacking/env-setup
+
+This script modifies the ``PYTHONPATH`` environment variables (along with a few other things), which will be temporarily
+set as long as your shell session is open.
+
+Testing the Pull Request
+------------------------
+
+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)
+* Test on different operating systems, or against different library versions
+
+Run sanity tests
+^^^^^^^^^^^^^^^^
+
+.. code:: shell
+
+ ansible-test sanity
+
+More information: :ref:`testing_sanity`
+
+Run unit tests
+^^^^^^^^^^^^^^
+
+.. code:: shell
+
+ ansible-test units
+
+More information: :ref:`testing_units`
+
+Run integration tests
+^^^^^^^^^^^^^^^^^^^^^
+
+.. code:: shell
+
+ ansible-test integration -v ping
+
+More information: :ref:`testing_integration`
+
+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:
+
+.. code-block:: text
+
+ 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:
+
+ | This change causes errors for me.
+ |
+ | When I ran this Ubuntu 16.04 it failed with the following:
+ |
+ | \```
+ | some output
+ | StackTrace
+ | some other output
+ | \```
+
+Code Coverage Online
+^^^^^^^^^^^^^^^^^^^^
+
+`The online code coverage reports <https://codecov.io/gh/ansible/ansible>`_ are a good way
+to identify areas for testing improvement in Ansible. By following red colors you can
+drill down through the reports to find files which have no tests at all. Adding both
+integration and unit tests which show clearly how code should work, verify important
+Ansible functions and increase testing coverage in areas where there is none is a valuable
+way to help improve Ansible.
+
+The code coverage reports only cover the ``devel`` branch of Ansible where new feature
+development takes place. Pull requests and new code will be missing from the codecov.io
+coverage reports so local reporting is needed. Most ``ansible-test`` commands allow you
+to collect code coverage, this is particularly useful to indicate where to extend
+testing. See :ref:`testing_running_locally` for more information.
+
+
+Want to know more about testing?
+================================
+
+If you'd like to know more about the plans for improving testing Ansible then why not join the
+`Testing Working Group <https://github.com/ansible/community/blob/main/meetings/README.md>`_.