Commit 5c9dc33e by James Laska

Additional test_git scenarios

Includes coverage for accept_hostkey and additional scm URL formats.
parent 60a7f573
...@@ -16,11 +16,15 @@ ...@@ -16,11 +16,15 @@
# You should have received a copy of the GNU General Public License # You should have received a copy of the GNU General Public License
# along with Ansible. If not, see <http://www.gnu.org/licenses/>. # along with Ansible. If not, see <http://www.gnu.org/licenses/>.
- name: set where to extract the repo - name: set role facts
set_fact: checkout_dir={{ output_dir }}/git set_fact:
checkout_dir: '{{ output_dir }}/git'
- name: set what repo to use repo_format1: 'https://github.com/jimi-c/test_role'
set_fact: repo=https://github.com/jimi-c/test_role repo_format2: 'git@github.com:jimi-c/test_role.git'
repo_format3: 'ssh://git@github.com/jimi-c/test_role.git'
known_host_files:
- "{{ lookup('env','HOME') }}/.ssh/known_hosts"
- '/etc/ssh/ssh_known_hosts'
- name: clean out the output_dir - name: clean out the output_dir
shell: rm -rf {{ output_dir }}/* shell: rm -rf {{ output_dir }}/*
...@@ -28,14 +32,14 @@ ...@@ -28,14 +32,14 @@
- name: verify that git is installed so this test can continue - name: verify that git is installed so this test can continue
shell: which git shell: which git
#
# Test repo=https://github.com/...
#
- name: initial checkout - name: initial checkout
git: repo={{ repo }} dest={{ checkout_dir }} git: repo={{ repo_format1 }} dest={{ checkout_dir }}
register: git_result register: git_result
- debug: var=git_result
- shell: ls ~/ansible_testing/git
- name: verify information about the initial clone - name: verify information about the initial clone
assert: assert:
that: that:
...@@ -45,11 +49,9 @@ ...@@ -45,11 +49,9 @@
- "git_result.changed" - "git_result.changed"
- name: repeated checkout - name: repeated checkout
git: repo={{ repo }} dest={{ checkout_dir }} git: repo={{ repo_format1 }} dest={{ checkout_dir }}
register: git_result2 register: git_result2
- debug: var=git_result2
- name: check for tags - name: check for tags
stat: path={{ checkout_dir }}/.git/refs/tags stat: path={{ checkout_dir }}/.git/refs/tags
register: tags register: tags
...@@ -74,6 +76,61 @@ ...@@ -74,6 +76,61 @@
that: that:
- "not git_result2.changed" - "not git_result2.changed"
#
# Test repo=git@github.com:/...
# Requires variable: github_ssh_private_key
#
- name: clear checkout_dir
file: state=absent path={{ checkout_dir }}
- name: remove known_host files
file: state=absent path={{ item }}
with_items: known_host_files
- name: checkout ssh://git@github.com repo without accept_hostkey (expected fail)
git: repo={{ repo_format2 }} dest={{ checkout_dir }}
register: git_result
ignore_errors: true
- assert:
that:
- 'git_result.failed'
- 'git_result.msg == "github.com has an unknown hostkey. Set accept_hostkey to True or manually add the hostkey prior to running the git module"'
- name: checkout git@github.com repo with accept_hostkey (expected pass)
git:
repo: '{{ repo_format2 }}'
dest: '{{ checkout_dir }}'
accept_hostkey: true
key_file: '{{ github_ssh_private_key }}'
register: git_result
when: github_ssh_private_key is defined
- assert:
that:
- 'git_result.changed'
when: not git_result|skipped
#
# Test repo=ssh://git@github.com/...
# Requires variable: github_ssh_private_key
#
- name: clear checkout_dir
file: state=absent path={{ checkout_dir }}
- name: checkout ssh://git@github.com repo with accept_hostkey (expected pass)
git:
repo: '{{ repo_format3 }}'
dest: '{{ checkout_dir }}'
version: 'master'
accept_hostkey: false # should already have been accepted
key_file: '{{ github_ssh_private_key }}'
register: git_result
when: github_ssh_private_key is defined
- assert:
that:
- 'git_result.changed'
when: not git_result|skipped
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment