From 157d93dfa3be79f90b5470df70189ebdba0f2f5f Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Mon, 15 Apr 2024 16:42:50 +0200 Subject: [PATCH] Add molecule testing --- slococo/playground/README.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/slococo/playground/README.md b/slococo/playground/README.md index a3680a6..0d0a45c 100644 --- a/slococo/playground/README.md +++ b/slococo/playground/README.md @@ -83,3 +83,21 @@ The role ensures the following SSH options are configured with the specified val - `PasswordAuthentication`: yes - `PermitEmptyPasswords`: no - `PermitRootLogin`: no + +## Molecule testing + +This collection includes Molecule tests to ensure the correctness of the roles. Molecule is a testing framework for Ansible roles. + +### Prerequisites + +Before running the Molecule tests, ensure that Molecule is installed. You can find installation instructions in the [official Molecule documentation](https://molecule.readthedocs.io/en/latest/installation.html). + +### Running tests + +Once Molecule is installed, you can run the tests by executing the following command in the root directory of the collection: + +```bash +molecule test +``` + +This command will run both roles (`local_accounts` and `ssh_config`) in a Docker container, simulating real-world scenarios.