ansible/test/integration/targets/git/tasks/formats.yml
Abhijeet Kasurde a047fe0e4c Correct usage for shutil.rmtree (#31541)
* Correct usage for shutil.rmtree

Fix adds correct usage of shutil.rmtree in git module

Fixes: #31225

Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>

* Include archive tests so they get run

* Use new include syntax

* Cleanup syntax on git tests

- use multi-line YAML
- remove unneeded {{ }} around vars in conditionals
- remove unneeded quotes
- add task file name to task names for easier troubleshooting when things fail

* Make archive tests work for RHEL/CentOS 6

The older versions of Jinja2 in RHEL/CentOS 6 required assertion tasks using the map filter to be skipped.

The older version of git required gzip compression to be skipped on RHEL/CentOS 6.

* Account for ansible_distribution_major_version missing
2017-10-13 10:30:15 -04:00

40 lines
937 B
YAML

- name: FORMATS | initial checkout
git:
repo: "{{ repo_format1 }}"
dest: "{{ repo_dir }}/format1"
register: git_result
- name: FORMATS | verify information about the initial clone
assert:
that:
- "'before' in git_result"
- "'after' in git_result"
- "not git_result.before"
- "git_result.changed"
- name: FORMATS | repeated checkout
git:
repo: "{{ repo_format1 }}"
dest: "{{ repo_dir }}/format1"
register: git_result2
- name: FORMATS | check for tags
stat:
path: "{{ repo_dir }}/format1/.git/refs/tags"
register: tags
- name: FORMATS | check for HEAD
stat:
path: "{{ repo_dir }}/format1/.git/HEAD"
register: head
- name: FORMATS | assert presence of tags/trunk/branches
assert:
that:
- "tags.stat.isdir"
- "head.stat.isreg"
- name: FORMATS | verify on a reclone things are marked unchanged
assert:
that:
- "not git_result2.changed"