1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Enable more Windows tests in CI. (#30443)

* Enable more Windows tests in CI.
* Fix win_psexec tests.
* Fix host-specific output_dir in win_fetch test.
This commit is contained in:
Matt Clay 2017-09-16 00:27:18 -07:00 committed by GitHub
parent 0e70057f56
commit ff4276b65d
4 changed files with 21 additions and 16 deletions

View file

@ -1 +1,3 @@
windows/ci/group1
windows/ci/smoketest
windows windows

View file

@ -0,0 +1 @@
windows/ci/group3

View file

@ -16,20 +16,20 @@
# 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: define host-specific output_dir - name: define host-specific host_output_dir
set_fact: set_fact:
output_dir: "{{ output_dir }}/{{ inventory_hostname }}" host_output_dir: "{{ output_dir }}/{{ inventory_hostname }}"
- name: clean out the test directory - name: clean out the test directory
local_action: file name={{ output_dir|mandatory }} state=absent local_action: file name={{ host_output_dir|mandatory }} state=absent
run_once: true run_once: true
- name: create the test directory - name: create the test directory
local_action: file name={{ output_dir }} state=directory local_action: file name={{ host_output_dir }} state=directory
run_once: true run_once: true
- name: fetch a small file - name: fetch a small file
fetch: src="C:/Windows/win.ini" dest={{ output_dir }} fetch: src="C:/Windows/win.ini" dest={{ host_output_dir }}
register: fetch_small register: fetch_small
- name: check fetch small result - name: check fetch small result
@ -49,7 +49,7 @@
- "fetch_small_stat.stat.md5 == fetch_small.md5sum" - "fetch_small_stat.stat.md5 == fetch_small.md5sum"
- name: fetch the same small file - name: fetch the same small file
fetch: src="C:/Windows/win.ini" dest={{ output_dir }} fetch: src="C:/Windows/win.ini" dest={{ host_output_dir }}
register: fetch_small_again register: fetch_small_again
- name: check fetch small result again - name: check fetch small result again
@ -58,7 +58,7 @@
- "not fetch_small_again.changed" - "not fetch_small_again.changed"
- name: fetch a small file to flat namespace - name: fetch a small file to flat namespace
fetch: src="C:/Windows/win.ini" dest="{{ output_dir }}/" flat=yes fetch: src="C:/Windows/win.ini" dest="{{ host_output_dir }}/" flat=yes
register: fetch_flat register: fetch_flat
- name: check fetch flat result - name: check fetch flat result
@ -67,10 +67,10 @@
- "fetch_flat.changed" - "fetch_flat.changed"
- name: check file created by fetch flat - name: check file created by fetch flat
local_action: stat path="{{ output_dir }}/win.ini" local_action: stat path="{{ host_output_dir }}/win.ini"
register: fetch_flat_stat register: fetch_flat_stat
- name: verify fetched file exists locally in output_dir - name: verify fetched file exists locally in host_output_dir
assert: assert:
that: that:
- "fetch_flat_stat.stat.exists" - "fetch_flat_stat.stat.exists"
@ -78,7 +78,7 @@
- "fetch_flat_stat.stat.md5 == fetch_flat.md5sum" - "fetch_flat_stat.stat.md5 == fetch_flat.md5sum"
#- name: fetch a small file to flat directory (without trailing slash) #- name: fetch a small file to flat directory (without trailing slash)
# fetch: src="C:/Windows/win.ini" dest="{{ output_dir }}" flat=yes # fetch: src="C:/Windows/win.ini" dest="{{ host_output_dir }}" flat=yes
# register: fetch_flat_dir # register: fetch_flat_dir
#- name: check fetch flat to directory result #- name: check fetch flat to directory result
@ -87,7 +87,7 @@
# - "not fetch_flat_dir|changed" # - "not fetch_flat_dir|changed"
- name: fetch a large binary file - name: fetch a large binary file
fetch: src="C:/Windows/explorer.exe" dest={{ output_dir }} fetch: src="C:/Windows/explorer.exe" dest={{ host_output_dir }}
register: fetch_large register: fetch_large
- name: check fetch large binary file result - name: check fetch large binary file result
@ -107,7 +107,7 @@
- "fetch_large_stat.stat.md5 == fetch_large.md5sum" - "fetch_large_stat.stat.md5 == fetch_large.md5sum"
- name: fetch a large binary file again - name: fetch a large binary file again
fetch: src="C:/Windows/explorer.exe" dest={{ output_dir }} fetch: src="C:/Windows/explorer.exe" dest={{ host_output_dir }}
register: fetch_large_again register: fetch_large_again
- name: check fetch large binary file result again - name: check fetch large binary file result again
@ -116,7 +116,7 @@
- "not fetch_large_again.changed" - "not fetch_large_again.changed"
- name: fetch a small file using backslashes in src path - name: fetch a small file using backslashes in src path
fetch: src="C:\\Windows\\system.ini" dest={{ output_dir }} fetch: src="C:\\Windows\\system.ini" dest={{ host_output_dir }}
register: fetch_small_bs register: fetch_small_bs
- name: check fetch small result with backslashes - name: check fetch small result with backslashes
@ -136,7 +136,7 @@
- "fetch_small_bs_stat.stat.md5 == fetch_small_bs.md5sum" - "fetch_small_bs_stat.stat.md5 == fetch_small_bs.md5sum"
- name: attempt to fetch a non-existent file - do not fail on missing - name: attempt to fetch a non-existent file - do not fail on missing
fetch: src="C:/this_file_should_not_exist.txt" dest={{ output_dir }} fetch: src="C:/this_file_should_not_exist.txt" dest={{ host_output_dir }}
register: fetch_missing_nofail register: fetch_missing_nofail
- name: check fetch missing no fail result - name: check fetch missing no fail result
@ -147,7 +147,7 @@
- "not fetch_missing_nofail|changed" - "not fetch_missing_nofail|changed"
- name: attempt to fetch a non-existent file - fail on missing - name: attempt to fetch a non-existent file - fail on missing
fetch: src="~/this_file_should_not_exist.txt" dest={{ output_dir }} fail_on_missing=yes fetch: src="~/this_file_should_not_exist.txt" dest={{ host_output_dir }} fail_on_missing=yes
register: fetch_missing register: fetch_missing
ignore_errors: true ignore_errors: true
@ -159,7 +159,7 @@
- "not fetch_missing|changed" - "not fetch_missing|changed"
- name: attempt to fetch a directory - name: attempt to fetch a directory
fetch: src="C:\\Windows" dest={{ output_dir }} fetch: src="C:\\Windows" dest={{ host_output_dir }}
register: fetch_dir register: fetch_dir
ignore_errors: true ignore_errors: true

View file

@ -24,6 +24,7 @@
- name: Run whoami - name: Run whoami
win_psexec: win_psexec:
command: whoami.exe command: whoami.exe
nobanner: true
register: whoami register: whoami
- name: Test whoami - name: Test whoami
@ -38,6 +39,7 @@
win_psexec: win_psexec:
command: whoami.exe command: whoami.exe
system: yes system: yes
nobanner: true
register: whoami_as_system register: whoami_as_system
- name: Test whoami as SYSTEM - name: Test whoami as SYSTEM