You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mitogen/tests/ansible
Alex Willmer f1503874de ansible_mitogen: Correct ansible_become_pass/ansible_become_password precendence
Until Ansible 2.9 it looks like ansible_become_password had higher priority.
From Ansible 2.10 ansible_become_pass has higher priority [1]. Mitogen was not
respecting this.

I may need to rework this further, instatiating the become plugin may have
slowed down execution.

[1] Based on testing with

```
[ubuntus]
become-pass-pass ansible_become_pass=1234
become-pass-password ansible_become_password=1234
become-pass-both ansible_become_password=wrong ansible_become_pass=1234

[ubuntus:vars]
ansible_host=ubuntu2004.local
ansible_user=ubuntu
```
```
- hosts: ubuntus
  gather_facts: false
  become: true
  tasks:
    - ping:
```
2 years ago
..
bench tests: Enable stricter error handling, fix resulting failures 2 years ago
hosts ansible_mitogen: Correct ansible_become_pass/ansible_become_password precendence 2 years ago
integration ansible_mitogen: Correct ansible_become_pass/ansible_become_password precendence 2 years ago
lib Remove unused module imports 2 years ago
regression tests: Regression test for #776 (package/yum/dnf module called twice) 2 years ago
setup tests: Enable stricter error handling, fix resulting failures 2 years ago
soak tests: Use meaningful play names 2 years ago
tests tests: Replace uses of assertTrue() with specific methods 2 years ago
.gitignore Merge devel/290 @ 79b979ec8544ef5d8620c64068d4a42fabf50415 5 years ago
Makefile tests: import custom binaries for tests 6 years ago
README.md tests/ansible/README: Replace reference with actual link 2 years ago
all.yml Revert "Revert "fixed tests for ansible 2.12"" 3 years ago
ansible.cfg tests: Enable stricter error handling, fix resulting failures 2 years ago
ara_env.py tests: import ara_env helper script. 6 years ago
compare_output_test.py tests: prevent compare_output_test running on import. 6 years ago
mitogen_ansible_playbook.py tests: Remove unused imports 2 years ago
requirements.txt tests: Update test coverage to Python 3.9 3 years ago
run_ansible_playbook.py try and get some visibility into test failures 4 years ago

README.md

tests/ansible Directory

This is an an organically growing collection of integration and regression tests used for development and end-user bug reports.

It will be tidied up over time, meanwhile, the playbooks here are a useful demonstrator for what does and doesn't work.

Preparation

See ../image_prep/README.md.

run_ansible_playbook.py

This is necessary to set some environment variables used by future tests, as there appears to be no better way to inject them into the top-level process environment before the Mitogen connection process forks.

Running Everything

ANSIBLE_STRATEGY=mitogen_linear ./run_ansible_playbook.py all.yml

hosts/ and common-hosts

To support running the tests against a dev machine that has the requisite user accounts, the the default inventory is a directory containing a 'localhost' file that defines 'localhost' to be named 'target' in Ansible inventory, and a symlink to 'common-hosts', which defines additional targets that all derive from 'target'.

This allows ansible_tests.sh to reuse the common-hosts definitions while replacing localhost as the test target by creating a new directory that similarly symlinks in common-hosts.

There may be a better solution for this, but it works fine for now.