ansible/test/integration/targets/git/tasks/ambiguous-ref.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

37 lines
899 B
YAML

# test for https://github.com/ansible/ansible-modules-core/pull/3386
- name: AMBIGUOUS-REF | clone repo
git:
repo: '{{ repo_format1 }}'
dest: '{{ checkout_dir }}'
- name: AMBIGUOUS-REF | rename remote to be ambiguous
command: git remote rename origin v0.1
args:
chdir: "{{ checkout_dir }}"
- name: AMBIGUOUS-REF | switch to HEAD
git:
repo: '{{ repo_format1 }}'
dest: '{{ checkout_dir }}'
remote: v0.1
- name: AMBIGUOUS-REF | rev-parse remote HEAD
command: git rev-parse v0.1/HEAD
args:
chdir: "{{ checkout_dir }}"
register: git_remote_head
- name: AMBIGUOUS-REF | rev-parse local HEAD
command: git rev-parse HEAD
args:
chdir: "{{ checkout_dir }}"
register: git_local_head
- assert:
that: git_remote_head.stdout == git_local_head.stdout
- name: AMBIGUOUS-REF | clear checkout_dir
file:
state: absent
path: "{{ checkout_dir }}"