Skip to content

Commit

Permalink
Add basic tests for win_get_url and win_msi modules.
Browse files Browse the repository at this point in the history
  • Loading branch information
cchurch authored and sivel committed Jun 19, 2014
1 parent 618b47c commit 43236ca
Show file tree
Hide file tree
Showing 4 changed files with 79 additions and 1 deletion.
2 changes: 1 addition & 1 deletion examples/scripts/upgrade_to_ps3.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -79,4 +79,4 @@ else
$FileName = $DownLoadUrl.Split('/')[-1]
download-file $downloadurl "$powershellpath\$filename"

Start-Process -FilePath $powershellpath\$filename -WindowStyle Hidden -Wait
Start-Process -FilePath $powershellpath\$filename -WindowStyle Hidden
35 changes: 35 additions & 0 deletions test/integration/roles/test_win_get_url/tasks/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# test code for the win_get_url module
# (c) 2014, Chris Church <[email protected]>

# This file is part of Ansible
#
# Ansible is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Ansible is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.

- name: remove test file if it exists
raw: PowerShell -Command {Remove-Item "C:\Users\Administrator\win_get_url.jpg" -Force}

- name: test win_get_url module
win_get_url: url=http://placehold.it/10x10.jpg dest='C:\Users\Administrator\win_get_url.jpg'
register: win_get_url_result

- name: check win_get_url result
assert:
that:
- "not win_get_url_result|failed"
- "win_get_url_result|changed"

# FIXME:
# - Test invalid url
# - Test invalid dest, when dest is directory
# - Test idempotence when downloading same url/dest (not yet implemented)
41 changes: 41 additions & 0 deletions test/integration/roles/test_win_msi/tasks/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
# test code for the win_msi module
# (c) 2014, Chris Church <[email protected]>

# This file is part of Ansible
#
# Ansible is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Ansible is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.

- name: use win_get_url module to download msi
win_get_url: url=http://downloads.sourceforge.net/project/sevenzip/7-Zip/9.22/7z922-x64.msi dest='C:\7z922-x64.msi'
register: win_get_url_result

- name: install 7zip msi
win_msi: path="{{ win_get_url_result.win_get_url.dest }}"
register: win_msi_install_result

- name: check win_msi install result
assert:
that:
- "not win_msi_install_result|failed"
- "win_msi_install_result|changed"

- name: uninstall 7zip msi
win_msi: path="{{ win_get_url_result.win_get_url.dest }}" state=absent
register: win_msi_uninstall_result

- name: check win_msi uninstall result
assert:
that:
- "not win_msi_uninstall_result|failed"
- "win_msi_uninstall_result|changed"
2 changes: 2 additions & 0 deletions test/integration/test_winrm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,5 @@
- { role: test_win_slurp, tags: test_win_slurp }
- { role: test_win_fetch, tags: test_win_fetch }
- { role: test_win_stat, tags: test_win_stat }
- { role: test_win_get_url, tags: test_win_get_url }
- { role: test_win_msi, tags: test_win_msi }

0 comments on commit 43236ca

Please sign in to comment.