summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/git/tasks/ambiguous-ref.yml
blob: f06112e50c38d1989fbf55da28e95cb71a0b2baf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# 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 }}"