Getting Started Guide

The following guide will step through an example of developing and testing a new Ansible role. After reading this guide, you should be familiar with the basics of how to use Molecule and what it can offer.

Note

In order to complete this guide by hand, you will need to additionally install Docker. Molecule requires an external Python dependency for the Docker driver which is provided when installing Molecule using pip install 'molecule[docker]'.

Creating a new role

Molecule uses galaxy under the hood to generate conventional role layouts. If you’ve ever worked with Ansible roles before, you’ll be right at home. If not, please review the Roles guide to see what each folder is responsible for.

To generate a new role with Molecule, simply run:

$ molecule init role my-new-role

You should then see a my-new-role folder in your current directory.

Note

For future reference, if you want to initialize Molecule within an existing role, you would use the molecule init scenario -r my-role-name command from within the role’s directory (e.g. my-role-name/).

Molecule Scenarios

You will notice one new folder which is the molecule folder.

In this folder is a single Scenario called default.

Scenarios are the starting point for a lot of powerful functionality that Molecule offers. For now, we can think of a scenario as a test suite for your newly created role. You can have as many scenarios as you like and Molecule will run one after the other.

The Scenario Layout

Within the molecule/default folder, we find a number of files and directories:

$ ls
INSTALL.rst  molecule.yml  converge.yml  verify.yml
  • INSTALL.rst contains instructions on what additional software or setup steps you will need to take in order to allow Molecule to successfully interface with the driver.

  • molecule.yml is the central configuration entrypoint for Molecule. With this file, you can configure each tool that Molecule will employ when testing your role.

  • converge.yml is the playbook file that contains the call for your role. Molecule will invoke this playbook with ansible-playbook and run it against an instance created by the driver.

  • verify.yml is the Ansible file used for testing as Ansible is the default Verifier. This allows you to write specific tests against the state of the container after your role has finished executing. Other verifier tools are available (Note that TestInfra was the default verifier prior to molecule version 3).

Inspecting the molecule.yml

The molecule.yml is for configuring Molecule. It is a YAML file whose keys represent the high level components that Molecule provides. These are:

  • The Dependency manager. Molecule uses galaxy by default to resolve your role dependencies.

  • The Driver provider. Molecule uses Docker by default. Molecule uses the driver to delegate the task of creating instances.

  • The Lint command. Molecule can call external commands to ensure that best practices are encouraged.

  • The Platforms definitions. Molecule relies on this to know which instances to create, name and to which group each instance belongs. If you need to test your role against multiple popular distributions (CentOS, Fedora, Debian), you can specify that in this section.

  • The Provisioner. Molecule only provides an Ansible provisioner. Ansible manages the life cycle of the instance based on this configuration.

  • The Scenario definition. Molecule relies on this configuration to control the scenario sequence order.

  • The Verifier framework. Molecule uses Ansible by default to provide a way to write specific state checking tests (such as deployment smoke tests) on the target instance.

Run test sequence commands

Let’s create the first Molecule managed instance with the Docker driver.

First, ensure that Docker is running with the typical sanity check:

$ docker run hello-world

Now, we can tell Molecule to create an instance with:

$ molecule create

We can verify that Molecule has created the instance and they’re up and running with:

$ molecule list

Now, let’s add a task to our tasks/main.yml like so:

- name: Molecule Hello World!
  debug:
    msg: Hello, World!

We can then tell Molecule to test our role against our instance with:

$ molecule converge

If we want to manually inspect the instance afterwards, we can run:

$ molecule login

We now have a free hand to experiment with the instance state.

Finally, we can exit the instance and destroy it with:

$ molecule destroy

Note

If Molecule reports any errors, it can be useful to pass the --debug option to get more verbose output.

Run a full test sequence

Molecule provides commands for manually managing the lifecyle of the instance, scenario, development and testing tools. However, we can also tell Molecule to manage this automatically within a Scenario sequence.

The full lifecycle sequence can be invoked with:

$ molecule test

Note

It can be particularly useful to pass the --destroy=never flag when invoking molecule test so that you can tell Molecule to run the full sequence but not destroy the instance if one step fails.