ansible-borgbackup/molecule/README.md

105 lines
2.8 KiB
Markdown
Raw Permalink Normal View History

2018-08-30 21:34:04 +00:00
# Borg backup role - Molecule testing
2019-03-12 13:00:30 +00:00
## Requirements
2018-08-30 21:34:04 +00:00
2019-03-12 13:00:30 +00:00
Ansible 2.4 or higher
2018-08-30 21:34:04 +00:00
Molecule 2.17.0 or higher
Docker host (local or remote through shell environment)
2019-03-12 13:00:30 +00:00
## Available tests run on all scenarios
2018-08-30 21:34:04 +00:00
2019-03-12 13:00:30 +00:00
All scenarios run the same tests by default defined in generic_tests. If a test applies to a certain group only, group filtering is done through testinfra with the ansible:// url.
Eg:
```
testinfra_hosts = ["ansible://borgbackup_servers"]
```
2018-08-30 21:34:04 +00:00
### all
2019-03-12 13:00:30 +00:00
[generic\_files/tests/test_all.py](generic_files/tests/test_all.py)
2018-08-30 21:34:04 +00:00
Verify the borg-binary is present
2019-03-12 13:00:30 +00:00
2018-08-30 21:34:04 +00:00
### client
2019-03-12 13:00:30 +00:00
Testinfra: [generic\_files/tests/test_client.py](generic_files/tests/test_client.py)
2018-08-30 21:34:04 +00:00
Verifies if all the required parameters are present on the client to perform a backup. It verifies an already existing backup has run and if it has succeeded.
2019-03-12 13:00:30 +00:00
Testinfra: [generic\_files/tests/test_client_restore.py](generic_files/tests/test_client_restore.py)
Verifies if the restore functionality works correctly.
2018-08-30 21:34:04 +00:00
### server
2019-03-12 13:00:30 +00:00
Testinfra: [generic\_files/tests/test_server.py](generic_files/tests/test_server.py)
2018-08-30 21:34:04 +00:00
Verifies if all server-related configurations are in place and if the backup is working from a server perspective.
## Available test-scenarios
### clients
2019-03-12 13:00:30 +00:00
This tests spins up supported platforms and verifies the basic functionality of both server and client with the generic_tests on a number of platforms and linux distributions.
2018-08-30 21:34:04 +00:00
```
borgbackup_appendonly:
borgbackup_servers:
borgbackup_include:
borgbackup_passphrase:
```
2019-03-12 13:00:30 +00:00
### multiple
Testing whether backing up to multiple targets works properly.
```
borgbackup_servers:
```
### extra_opts
Testinfra: [generic\_files/tests/test_server.py](generic_files/tests/test_server.py)
Verify if both pre and post commands are configured at backup time and are run.
2018-08-30 21:34:04 +00:00
```
borgbackup_pre_commands:
borgbackup_post_commands:
```
Verify if both inclusion and exclusion of folders is working as expected
```
borgbackup_include:
borgbackup_exclude:
```
### lamp
2019-03-12 13:00:30 +00:00
Testinfra: [generic\_files/tests/test_lamp.py](generic_files/tests/test_lamp.py)
Verify a basic lamp setup meaning making sure /var/www/ and automysqlbackup is configured properly and backed up.
2018-08-30 21:34:04 +00:00
As an extra preparation, apache2 and automysqlbackup are installed for verification.
```
backup_pre_commands: needs to be extended with automysqlbackup
borgbackup_include: need to contain both /var/www and /var/lib/automysqlbackup
```
### mgt
2019-03-12 13:00:30 +00:00
Testinfra: [generic\_files/tests/test_mgt.py](generic_files/tests/test_mgt.py)
Testing whether the management-station functionality works and all clients are listed.
2018-08-30 21:34:04 +00:00
```
borgbackup_management:
borgbackup_management_user:
borgbackup_management_sshkey:
```
2019-03-12 13:00:30 +00:00
## restore
2018-08-30 21:34:04 +00:00
2019-03-12 13:00:30 +00:00
A restore is tested by default in every scenario by the use of the side-effect playbook. [generic\_files/side_effect.yml](generic_files/side_effect.yml)