+

Search Tips   |   Advanced Search

Developing network resource modules


Understanding network and security resource modules

Network and security devices separate configuration into sections (such as interfaces, VLANs, and so on) that apply to a network or security service. Ansible resource modules take advantage of this to allow users to configure subsections or resources within the device configuration. Resource modules provide a consistent experience across different network and security devices. For example, a network resource module may only update the configuration for a specific portion of the network interfaces, VLANs, ACLs, and so on for a network device. The resource module:

  1. Fetches a piece of the configuration (fact gathering), for example, the interfaces configuration.

  2. Converts the returned configuration into key-value pairs.

  3. Places those key-value pairs into an internal agnostic structured data format.

Now that the configuration data is normalized, the user can update and modify the data and then use the resource module to send the configuration data back to the device. This results in a full round-trip configuration update without the need for manual parsing, data manipulation, and data model management.

The resource module has two top-level keys - config and state:

The state for a new resource module should support the following values (as applicable for the devices that support them):

merged

Ansible merges the on-device configuration with the provided configuration in the task.

replaced

Ansible replaces the on-device configuration subsection with the provided configuration subsection in the task.

overridden

Ansible overrides the on-device configuration for the resource with the provided configuration in the task. Use caution with this state as you could remove your access to the device (for example, by overriding the management interface configuration).

deleted

Ansible deletes the on-device configuration subsection and restores any default settings.

gathered

Ansible displays the resource details gathered from the network device and accessed with the gathered key in the result.

rendered

Ansible renders the provided configuration in the task in the device-native format (for example, Cisco IOS CLI). Ansible returns this rendered configuration in the rendered key in the result. Note this state does not communicate with the network device and can be used offline.

parsed

Ansible parses the configuration from the running_configuration option into Ansible structured data in the parsed key in the result. Note this does not gather the configuration from the network device so this state can be used offline.

Modules in Ansible-maintained collections must support these state values. If you develop a module with only 'present' and 'absent' for state, you may submit it to a community collection.

The states rendered, gathered, and parsed do not perform any change on the device.


See also

Deep Dive on VLANs Resource Modules for Network Automation

Walkthrough of how state values are implemented for VLANs.


Developing network and security resource modules

The Ansible Engineering team ensures the module design and code pattern within Ansible-maintained collections is uniform across resources and across platforms to give a vendor-agnostic feel and deliver good quality code. We recommend you use the resource module builder to develop a resource module.

The highlevel process for developing a resource module is:

  1. Create and share a resource model design in the resource module models repository as a PR for review.

  2. Download the latest version of the resource module builder.

  3. Run the resource module builder to create a collection scaffold from your approved resource model.

  4. Write the code to implement your resource module.

  5. Develop integration and unit tests to verify your resource module.

  6. Create a PR to the appropriate collection that you want to add your new resource module to. See Contributing to Ansible-maintained Collections for details on determining the correct collection for your module.


Understanding the model and resource module builder

The resource module builder is an Ansible Playbook that helps developers scaffold and maintain an Ansible resource module. It uses a model as the single source of truth for the module. This model is a yaml file that is used for the module DOCUMENTATION section and the argument spec.

The resource module builder has the following capabilities:


Accessing the resource module builder

To access the resource module builder:

  1. clone the github repository:

    git clone https://github.com/ansible-network/resource_module_builder.git
    

  1. Install the requirements:

    pip install -r requirements.txt
    


Creating a model

You must create a model for your new resource. The model is the single source of truth for both the argspec and docstring, keeping them in sync. Once your model is approved, you can use the resource module builder to generate three items based on the model:

For any subsequent changes to the functionality, update the model first and use the resource module builder to update the module argspec and docstring.

For example, the resource model builder includes the myos_interfaces.yml sample in the models directory, as seen below:

Notice that you should include examples for each of the states that the resource supports. The resource module builder also includes these in the sample model.

Share this model as a PR for review at resource module models repository. You can also see more model examples at that location.


Creating a collection scaffold from a resource model

To use the resource module builder to create a collection scaffold from your approved resource model:

Where the parameters are as follows:

To use the resource module builder to create a role scaffold:


Examples


Collection directory layout

This example shows the directory layout for the following:


Role directory layout

This example displays the role directory layout for the following:


Using the collection

This example shows how to use the generated collection in a playbook:

    ----
    - hosts: myos101
      gather_facts: False
      tasks:
      - cidrblock.my_collection.myos_interfaces:
        register: result
      - debug:
          var: result
      - cidrblock.my_collection.myos_facts:
      - debug:
          var: ansible_network_resources
    


Using the role

This example shows how to use the generated role in a playbook:


Resource module structure and workflow

The resource module structure includes the following components:

Module

  • library/<ansible_network_os>_<resource>.py.

  • Imports the module_utils resource package and calls execute_module API:

    def main():
        result = <resource_package>(module).execute_module()
    

Module argspec

  • module_utils/<ansible_network_os>/argspec/<resource>/.

  • Argspec for the resource.

Facts

  • module_utils/<ansible_network_os>/facts/<resource>/.

  • Populate facts for the resource.

  • Entry in module_utils/<ansible_network_os>/facts/facts.py for get_facts API to keep <ansible_network_os>_facts module and facts gathered for the resource module in sync for every subset.

  • Entry of Resource subset in FACTS_RESOURCE_SUBSETS list in module_utils/<ansible_network_os>/facts/facts.py to make facts collection work.

Module package in module_utils

  • module_utils/<ansible_network_os>/<config>/<resource>/.

  • Implement execute_module API that loads the configuration to device and generates the result with changed, commands, before and after keys.

  • Call get_facts API that returns the <resource> configuration facts or return the difference if the device has onbox diff support.

  • Compare facts gathered and given key-values if diff is not supported.

  • Generate final configuration.

Utils

  • module_utils/<ansible_network_os>/utils.

  • Utilities for the <ansible_network_os> platform.


Running ansible-test sanity and tox on resource modules

You should run ansible-test sanity and tox -elinters from the collection root directory before pushing your PR to an Ansible-maintained collection. The CI runs both and will fail if these tests fail. See Testing Ansible for details on ansible-test sanity.

To install the necessary packages:

  1. Ensure you have a valid Ansible development environment configured. See Environment setup for details.

  2. Run pip install -r requirements.txt from the collection root directory.

Running tox -elinters:

  • Reads tox.ini from the collection root directory and installs required dependencies (such as black and flake8).

  • Runs these with preconfigured options (such as line-length and ignores.)

  • Runs black in check mode to show which files will be formatted without actually formatting them.


Testing resource modules

The tests rely on a role generated by the resource module builder. After changes to the resource module builder, the role should be regenerated and the tests modified and run as needed. To generate the role after changes:


Resource module integration tests

High-level integration test requirements for new resource modules are as follows:

  1. Write a test case for every state.

  2. Write additional test cases to test the behavior of the module when an empty config.yaml is given.

  3. Add a round trip test case. This involves a merge operation, followed by gather_facts, a merge update with additional configuration, and then reverting back to the base configuration using the previously gathered facts with the state set to overridden.

  4. Wherever applicable, assertions should check after and before dicts against a hard coded Source of Truth.

We use Zuul as the CI to run the integration test.

To view The Ansible run logs and debug test failures:

  1. Click the failed job to get the summary, and click Logs for the log.

  2. Click console and scroll down to find the failed test.

  3. Click > next to the failed test for complete details.

Integration test structure

Each test case should generally follow this pattern:

Implementation

For platforms that support connection: local and connection: network_cli use the following guidance:

The following example walks through the integration tests for the vyos.vyos.vyos_l3_interfaces module in the vyos.vyos collection:

test/integration/targets/vyos_l3_interfaces/tasks/main.yaml

test/integration/targets/vyos_l3_interfaces/tasks/cli.yaml

test/integration/targets/vyos_l3_interfaces/tests/cli/overridden.yaml

Detecting test resources at runtime

Your tests should detect resources (such as interfaces) at runtime rather than hard-coding them into the test. This allows the test to run on a variety of systems.

For example:

See the complete test example of this at https://github.com/ansible-collections/cisco.nxos/blob/master/tests/integration/targets/prepare_nxos_tests/tasks/main.yml.

Running network integration tests

Ansible uses Zuul to run an integration test suite on every PR, including new tests introduced by that PR. To find and fix problems in network modules, run the network integration test locally before you submit a PR.

First, create an inventory file that points to your test machines. The inventory group should match the platform name (for example, eos, ios):

To run these network integration tests, use ansible-test network-integration --inventory </path/to/inventory> <tests_to_run>:

To run all network tests for a particular platform:

This example will run against all vyos modules. Note that vyos_.* is a regex match, not a bash wildcard - include the . if you modify this example.

To run integration tests for a specific module:

To run a single test case on a specific module:

To run integration tests for a specific transport:

See test/integration/targets/nxos_bgp/tasks/main.yaml for how this is implemented in the tests.

For more options:

If you need additional help or feedback, reach out in #ansible-network on Freenode.


Unit test requirements

High-level unit test requirements that new resource modules should follow:

  1. Write test cases for all the states with all possible combinations of config values.

  2. Write test cases to test the error conditions ( negative scenarios).

  3. Check the value of changed and commands keys in every test case.

We run all unit test cases on our Zuul test suite, on the latest python version supported by our CI setup.

Use the same procedure as the integration tests to view Zuul unit tests reports and logs.

See unit module testing for general unit test details.


Example: Unit testing Ansible network resource modules

This section walks through an example of how to develop unit tests for Ansible resource modules.

See Unit Tests and Unit Testing Ansible Modules for general documentation on Ansible unit tests for modules. Please read those pages first to understand unit tests and why and when you should use them.


Using mock objects to unit test Ansible network resource modules

Mock objects can be very useful in building unit tests for special or difficult cases, but they can also lead to complex and confusing coding situations. One good use for mocks would be to simulate an API. The mock Python package is bundled with Ansible (use import units.compat.mock).

You can mock the device connection and output from the device as follows:

The facts file of the module now includes a new method, get_device_data. Call get_device_data here to emulate the device output.


Mocking device data

To mock fetching results from devices or provide other complex data structures that come from external libraries, you can use fixtures to read in pre-generated data. The text files for this pre-generated data live in test/units/modules/network/PLATFORM/fixtures/. See for example the eos_l2_interfaces.cfg file.

Load data using the load_fixture method and set this data as the return value of the get_device_data method in the facts file:

See the unit test file test_eos_l2_interfaces for a practical example.


See also

Unit Tests

Deep dive into developing unit tests for Ansible modules

Testing Ansible

Running tests locally including gathering and reporting coverage data

Ansible module development: getting started

Get started developing a module

Next Previous