mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
a047fe0e4c
* 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
102 lines
2.6 KiB
YAML
102 lines
2.6 KiB
YAML
# test for https://github.com/ansible/ansible-modules-core/pull/5505
|
|
- name: LOCALMODS | prepare old git repo
|
|
shell: rm -rf localmods; mkdir localmods; cd localmods; git init; echo "1" > a; git add a; git commit -m "1"
|
|
args:
|
|
chdir: "{{repo_dir}}"
|
|
|
|
- name: LOCALMODS | checkout old repo
|
|
git:
|
|
repo: '{{ repo_dir }}/localmods'
|
|
dest: '{{ checkout_dir }}'
|
|
|
|
- name: LOCALMODS | "update repo"
|
|
shell: echo "2" > a; git commit -a -m "2"
|
|
args:
|
|
chdir: "{{repo_dir}}/localmods"
|
|
|
|
- name: LOCALMODS | "add local mods"
|
|
shell: echo "3" > a
|
|
args:
|
|
chdir: "{{ checkout_dir }}"
|
|
|
|
- name: LOCALMODS | fetch with local mods without force (should fail)
|
|
git:
|
|
repo: '{{ repo_dir }}/localmods'
|
|
dest: '{{ checkout_dir }}'
|
|
register: git_fetch
|
|
ignore_errors: yes
|
|
|
|
- name: LOCALMODS | check fetch with localmods failed
|
|
assert:
|
|
that:
|
|
- git_fetch|failed
|
|
|
|
- name: LOCALMODS | fetch with local mods with force
|
|
git:
|
|
repo: '{{ repo_dir }}/localmods'
|
|
dest: '{{ checkout_dir }}'
|
|
force: True
|
|
register: git_fetch_force
|
|
ignore_errors: yes
|
|
|
|
- name: LOCALMODS | check update arrived
|
|
assert:
|
|
that:
|
|
- "{{ lookup('file', checkout_dir+'/a' )}} == 2"
|
|
- git_fetch_force|changed
|
|
|
|
- name: LOCALMODS | clear checkout_dir
|
|
file: state=absent path={{ checkout_dir }}
|
|
|
|
# localmods and shallow clone
|
|
- name: LOCALMODS | prepare old git repo
|
|
shell: rm -rf localmods; mkdir localmods; cd localmods; git init; echo "1" > a; git add a; git commit -m "1"
|
|
args:
|
|
chdir: "{{repo_dir}}"
|
|
|
|
- name: LOCALMODS | checkout old repo
|
|
git:
|
|
repo: '{{ repo_dir }}/localmods'
|
|
dest: '{{ checkout_dir }}'
|
|
depth: 1
|
|
|
|
- name: LOCALMODS | "update repo"
|
|
shell: echo "2" > a; git commit -a -m "2"
|
|
args:
|
|
chdir: "{{repo_dir}}/localmods"
|
|
|
|
- name: LOCALMODS | "add local mods"
|
|
shell: echo "3" > a
|
|
args:
|
|
chdir: "{{ checkout_dir }}"
|
|
|
|
- name: LOCALMODS | fetch with local mods without force (should fail)
|
|
git:
|
|
repo: '{{ repo_dir }}/localmods'
|
|
dest: '{{ checkout_dir }}'
|
|
depth: 1
|
|
register: git_fetch
|
|
ignore_errors: yes
|
|
|
|
- name: LOCALMODS | check fetch with localmods failed
|
|
assert:
|
|
that:
|
|
- git_fetch|failed
|
|
|
|
- name: LOCALMODS | fetch with local mods with force
|
|
git:
|
|
repo: '{{ repo_dir }}/localmods'
|
|
dest: '{{ checkout_dir }}'
|
|
depth: 1
|
|
force: True
|
|
register: git_fetch_force
|
|
ignore_errors: yes
|
|
|
|
- name: LOCALMODS | check update arrived
|
|
assert:
|
|
that:
|
|
- "{{ lookup('file', checkout_dir+'/a' )}} == 2"
|
|
- git_fetch_force|changed
|
|
|
|
- name: LOCALMODS | clear checkout_dir
|
|
file: state=absent path={{ checkout_dir }}
|