Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
ansible
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
ansible
Commits
b44e0214
Commit
b44e0214
authored
Sep 16, 2015
by
Chris Church
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #12050 from cchurch/test_win_msi_creates
Add tests for creates parameter to win_msi module.
parents
da9fc9cf
904b8ca2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
35 additions
and
6 deletions
+35
-6
test/integration/roles/test_win_msi/defaults/main.yml
+6
-0
test/integration/roles/test_win_msi/tasks/main.yml
+29
-6
No files found.
test/integration/roles/test_win_msi/defaults/main.yml
0 → 100644
View file @
b44e0214
---
msi_url
:
http://downloads.sourceforge.net/project/sevenzip/7-Zip/9.22/7z922-x64.msi
msi_download_path
:
"
C:
\\
Program
Files
\\
7z922-x64.msi"
msi_install_path
:
"
C:
\\
Program
Files
\\
7-Zip"
msi_product_code
:
"
{23170F69-40C1-2702-0922-000001000000}"
test/integration/roles/test_win_msi/tasks/main.yml
View file @
b44e0214
...
...
@@ -17,21 +17,44 @@
# 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'
win_get_url
:
url
:
"
{{msi_url}}"
dest
:
"
{{msi_download_path}}"
register
:
win_get_url_result
-
name
:
install 7zip msi
win_msi
:
path="{{ win_get_url_result.win_get_url.dest }}"
-
name
:
make sure msi is uninstalled
win_msi
:
path
:
"
{{msi_product_code|default(msi_download_path,true)}}"
state
:
absent
ignore_errors
:
true
-
name
:
install msi
win_msi
:
path
:
"
{{msi_download_path}}"
register
:
win_msi_install_result
-
name
:
check win_msi install result
assert
:
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
-
name
:
install msi again with creates argument
win_msi
:
path
:
"
{{msi_download_path}}"
creates
:
"
{{msi_install_path}}"
register
:
win_msi_install_again_result
-
name
:
check win_msi install again result
assert
:
that
:
-
"
not
win_msi_install_again_result|failed"
-
"
not
win_msi_install_again_result|changed"
-
name
:
uninstall msi
win_msi
:
path
:
"
{{msi_download_path}}"
state
:
absent
register
:
win_msi_uninstall_result
-
name
:
check win_msi uninstall result
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment