mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
win_chocolatey: refactor module to fix bugs and add new features (#43013)
* win_chocolatey: refactor module to fix bugs and add new features * Fix some typos and only emit install warning not in check mode * Fixes when testing out installing chocolatey from a server * Added changelog fragment
This commit is contained in:
parent
460f858640
commit
93c05074ee
11 changed files with 1267 additions and 600 deletions
9
changelogs/fragments/win_chocolatey-bugfixes.yaml
Normal file
9
changelogs/fragments/win_chocolatey-bugfixes.yaml
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
bugfixes:
|
||||||
|
- win_chocolatey - fix issue where state=downgrade would upgrade a package if no version was set
|
||||||
|
|
||||||
|
minor_changes:
|
||||||
|
- win_chocolatey - Add support for username and password on source feeds
|
||||||
|
- win_chocolatey - Add support for installing Chocolatey itself from a source feed
|
||||||
|
- win_chocolatey - Removed the need to manually escape double quotes in the proxy username and password
|
||||||
|
- win_chocolatey - Will no longer upgrade Chocolatey in check mode
|
||||||
|
- win_chocolatey - Added ability to specify multiple packages as a list in 1 module invocation
|
|
@ -100,9 +100,13 @@ The following modules will be removed in Ansible 2.10. Please update your playbo
|
||||||
Noteworthy module changes
|
Noteworthy module changes
|
||||||
-------------------------
|
-------------------------
|
||||||
|
|
||||||
Check mode is now supported in the ``command`` and ``shell`` modules. However, only when ``creates`` or ``removes`` is
|
* Check mode is now supported in the ``command`` and ``shell`` modules. However, only when ``creates`` or ``removes`` is
|
||||||
specified. If either of these are specified, the module will check for existence of the file and report the correct
|
specified. If either of these are specified, the module will check for existence of the file and report the correct
|
||||||
changed status, if they are not included the module will skip like it had done previously.
|
changed status, if they are not included the module will skip like it had done previously.
|
||||||
|
|
||||||
|
* The ``win_chocolatey`` module originally required the ``proxy_username`` and ``proxy_password`` to
|
||||||
|
escape any double quotes in the value. This is no longer required and the escaping may cause further
|
||||||
|
issues.
|
||||||
|
|
||||||
Plugins
|
Plugins
|
||||||
=======
|
=======
|
||||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -2,6 +2,7 @@
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
# Copyright: (c) 2014, Trond Hindenes <trond@hindenes.com>
|
# Copyright: (c) 2014, Trond Hindenes <trond@hindenes.com>
|
||||||
|
# Copyright: (c) 2018, Ansible Project
|
||||||
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||||
|
|
||||||
# this is a windows documentation stub. actual code lives in the .ps1
|
# this is a windows documentation stub. actual code lives in the .ps1
|
||||||
|
@ -17,66 +18,59 @@ module: win_chocolatey
|
||||||
version_added: "1.9"
|
version_added: "1.9"
|
||||||
short_description: Manage packages using chocolatey
|
short_description: Manage packages using chocolatey
|
||||||
description:
|
description:
|
||||||
- Manage packages using Chocolatey (U(http://chocolatey.org/)).
|
- Manage packages using Chocolatey (U(http://chocolatey.org/)).
|
||||||
- If Chocolatey is missing from the system, the module will install it.
|
- If Chocolatey is missing from the system, the module will install it.
|
||||||
- List of packages can be found at U(http://chocolatey.org/packages).
|
- List of packages can be found at U(http://chocolatey.org/packages).
|
||||||
requirements:
|
requirements:
|
||||||
- chocolatey >= 0.10.5 (will be upgraded if older)
|
- chocolatey >= 0.10.5 (will be upgraded if older)
|
||||||
options:
|
options:
|
||||||
name:
|
allow_empty_checksums:
|
||||||
description:
|
description:
|
||||||
- Name of the package to be installed.
|
- Allow empty checksums to be used for downloaded resource from non-secure
|
||||||
- This must be a single package name.
|
locations.
|
||||||
required: yes
|
- Use M(win_chocolatey_feature) with the name C(allowEmptyChecksums) to
|
||||||
state:
|
control this option globally.
|
||||||
description:
|
|
||||||
- State of the package on the system.
|
|
||||||
choices:
|
|
||||||
- absent
|
|
||||||
- downgrade
|
|
||||||
- latest
|
|
||||||
- present
|
|
||||||
- reinstalled
|
|
||||||
default: present
|
|
||||||
force:
|
|
||||||
description:
|
|
||||||
- Forces install of the package (even if it already exists).
|
|
||||||
- Using C(force) will cause ansible to always report that a change was made.
|
|
||||||
type: bool
|
type: bool
|
||||||
default: 'no'
|
default: 'no'
|
||||||
version:
|
version_added: '2.2'
|
||||||
|
allow_prerelease:
|
||||||
description:
|
description:
|
||||||
- Specific version of the package to be installed.
|
- Allow the installation of pre-release packages.
|
||||||
- Ignored when C(state) is set to C(absent).
|
- If I(state) is C(latest), the latest pre-release package will be
|
||||||
source:
|
installed.
|
||||||
description:
|
type: bool
|
||||||
- Specify source rather than using default chocolatey repository.
|
default: 'no'
|
||||||
|
version_added: '2.6'
|
||||||
architecture:
|
architecture:
|
||||||
description:
|
description:
|
||||||
- Allows installation of alternative architecture packages, for example,
|
- Force Chocolatey to install the package of a specific process
|
||||||
32bit on 64bit windows.
|
architecture.
|
||||||
version_added: '2.7'
|
- When setting C(x86), will ensure Chocolatey installs the x86 package
|
||||||
|
even when on an x64 bit OS.
|
||||||
choices:
|
choices:
|
||||||
- default
|
- default
|
||||||
- x86
|
- x86
|
||||||
default: default
|
default: default
|
||||||
|
version_added: '2.7'
|
||||||
|
force:
|
||||||
|
description:
|
||||||
|
- Forces the install of a package, even if it already is installed.
|
||||||
|
- Using I(force) will cause Ansible to always report that a change was
|
||||||
|
made.
|
||||||
|
type: bool
|
||||||
|
default: 'no'
|
||||||
install_args:
|
install_args:
|
||||||
description:
|
description:
|
||||||
- Arguments to pass to the native installer.
|
- Arguments to pass to the native installer.
|
||||||
|
- These are arguments that are passed directly to the installer the
|
||||||
|
Chocolatey package runs, this is generally an advanced option.
|
||||||
|
type: str
|
||||||
version_added: '2.1'
|
version_added: '2.1'
|
||||||
params:
|
|
||||||
description:
|
|
||||||
- Parameters to pass to the package
|
|
||||||
version_added: '2.1'
|
|
||||||
allow_empty_checksums:
|
|
||||||
description:
|
|
||||||
- Allow empty checksums to be used.
|
|
||||||
type: bool
|
|
||||||
default: 'no'
|
|
||||||
version_added: '2.2'
|
|
||||||
ignore_checksums:
|
ignore_checksums:
|
||||||
description:
|
description:
|
||||||
- Ignore checksums altogether.
|
- Ignore the checksums provided by the package.
|
||||||
|
- Use M(win_chocolatey_feature) with the name C(checksumFiles) to control
|
||||||
|
this option globally.
|
||||||
type: bool
|
type: bool
|
||||||
default: 'no'
|
default: 'no'
|
||||||
version_added: '2.2'
|
version_added: '2.2'
|
||||||
|
@ -86,42 +80,122 @@ options:
|
||||||
type: bool
|
type: bool
|
||||||
default: 'no'
|
default: 'no'
|
||||||
version_added: '2.1'
|
version_added: '2.1'
|
||||||
|
name:
|
||||||
|
description:
|
||||||
|
- Name of the package(s) to be installed.
|
||||||
|
- Set to C(all) to run the action on all the installed packages.
|
||||||
|
required: yes
|
||||||
|
type: list
|
||||||
|
package_params:
|
||||||
|
description:
|
||||||
|
- Parameters to pass to the package.
|
||||||
|
- These are parameters specific to the Chocolatey package and are generally
|
||||||
|
documented by the package itself.
|
||||||
|
- Before Ansible 2.7, this option was just I(params).
|
||||||
|
type: str
|
||||||
|
version_added: '2.1'
|
||||||
|
aliases:
|
||||||
|
- params
|
||||||
|
proxy_url:
|
||||||
|
description:
|
||||||
|
- Proxy URL used to install chocolatey and the package.
|
||||||
|
- Use M(win_chocolatey_config) with the name C(proxy) to control this
|
||||||
|
option globally.
|
||||||
|
type: str
|
||||||
|
version_added: '2.4'
|
||||||
|
proxy_username:
|
||||||
|
description:
|
||||||
|
- Proxy username used to install Chocolatey and the package.
|
||||||
|
- Before Ansible 2.7, users with double quote characters C(") would need to
|
||||||
|
be escaped with C(\) beforehand. This is no longer necessary.
|
||||||
|
- Use M(win_chocolatey_config) with the name C(proxyUser) to control this
|
||||||
|
option globally.
|
||||||
|
type: str
|
||||||
|
version_added: '2.4'
|
||||||
|
proxy_password:
|
||||||
|
description:
|
||||||
|
- Proxy password used to install Chocolatey and the package.
|
||||||
|
- This value is exposed as a command argument and any privileged account
|
||||||
|
can see this value when the module is running Chocolatey, define the
|
||||||
|
password on the global config level with M(win_chocolatey_config) with
|
||||||
|
name C(proxyPassword) to avoid this.
|
||||||
|
type: str
|
||||||
|
version_added: '2.4'
|
||||||
|
skip_scripts:
|
||||||
|
description:
|
||||||
|
- Do not run I(chocolateyInstall.ps1) or I(chocolateyUninstall.ps1) scripts
|
||||||
|
when installing a package.
|
||||||
|
type: bool
|
||||||
|
default: 'no'
|
||||||
|
version_added: '2.4'
|
||||||
|
source:
|
||||||
|
description:
|
||||||
|
- Specify the source to retrieve the package from.
|
||||||
|
- Use M(win_chocolatey_source) to manage global sources.
|
||||||
|
- This value can either be the URL to a Chocolatey feed, a path to a folder
|
||||||
|
containing C(.nupkg) packages or the name of a source defined by
|
||||||
|
M(win_chocolatey_source).
|
||||||
|
- This value is also used when Chocolatey is not installed as the location
|
||||||
|
of the install.ps1 script and only supports URLs for this case.
|
||||||
|
type: str
|
||||||
|
source_username:
|
||||||
|
description:
|
||||||
|
- A username to use with I(source) when accessing a feed that requires
|
||||||
|
authentication.
|
||||||
|
- It is recommended you define the credentials on a source with
|
||||||
|
M(win_chocolatey_source) instead of passing it per task.
|
||||||
|
type: str
|
||||||
|
version_added: '2.7'
|
||||||
|
source_password:
|
||||||
|
description:
|
||||||
|
- The password for I(source_username).
|
||||||
|
- This value is exposed as a command argument and any privileged account
|
||||||
|
can see this value when the module is running Chocolatey, define the
|
||||||
|
credentials with a source with M(win_chocolatey_source) to avoid this.
|
||||||
|
type: str
|
||||||
|
version_added: '2.7'
|
||||||
|
state:
|
||||||
|
description:
|
||||||
|
- State of the package on the system.
|
||||||
|
- When C(absent), will ensure the package is not installed.
|
||||||
|
- When C(present), will ensure the package is installed.
|
||||||
|
- When C(downgrade), will allow Chocolatey to downgrade a package if
|
||||||
|
I(version) is older than the installed version.
|
||||||
|
- When C(latest), will ensure the package is installed to the latest
|
||||||
|
available version.
|
||||||
|
- When C(reinstalled), will uninstall and reinstall the package.
|
||||||
|
choices:
|
||||||
|
- absent
|
||||||
|
- downgrade
|
||||||
|
- latest
|
||||||
|
- present
|
||||||
|
- reinstalled
|
||||||
|
default: present
|
||||||
|
type: str
|
||||||
timeout:
|
timeout:
|
||||||
description:
|
description:
|
||||||
- The time to allow chocolatey to finish before timing out.
|
- The time to allow chocolatey to finish before timing out.
|
||||||
type: int
|
type: int
|
||||||
default: 2700
|
default: 2700
|
||||||
version_added: '2.3'
|
version_added: '2.3'
|
||||||
aliases: [ execution_timeout ]
|
aliases:
|
||||||
skip_scripts:
|
- execution_timeout
|
||||||
|
validate_certs:
|
||||||
description:
|
description:
|
||||||
- Do not run I(chocolateyInstall.ps1) or I(chocolateyUninstall.ps1) scripts.
|
- Used when downloading the Chocolatey install script if Chocolatey is not
|
||||||
|
already installed, this does not affect the Chocolatey package install
|
||||||
|
process.
|
||||||
|
- When C(no), no SSL certificates will be validated.
|
||||||
|
- This should only be used on personally controlled sites using self-signed
|
||||||
|
certificate.
|
||||||
type: bool
|
type: bool
|
||||||
default: 'no'
|
default: 'yes'
|
||||||
version_added: '2.4'
|
version_added: '2.7'
|
||||||
proxy_url:
|
version:
|
||||||
description:
|
description:
|
||||||
- Proxy url used to install chocolatey and the package.
|
- Specific version of the package to be installed.
|
||||||
version_added: '2.4'
|
- Ignored when I(state) is set to C(absent).
|
||||||
proxy_username:
|
type: str
|
||||||
description:
|
|
||||||
- Proxy username used to install chocolatey and the package.
|
|
||||||
- When dealing with a username with double quote characters C("), they
|
|
||||||
need to be escaped with C(\) beforehand. See examples for more details.
|
|
||||||
version_added: '2.4'
|
|
||||||
proxy_password:
|
|
||||||
description:
|
|
||||||
- Proxy password used to install chocolatey and the package.
|
|
||||||
- See notes in C(proxy_username) when dealing with double quotes in a
|
|
||||||
password.
|
|
||||||
version_added: '2.4'
|
|
||||||
allow_prerelease:
|
|
||||||
description:
|
|
||||||
- Allow install of prerelease packages.
|
|
||||||
- If state C(state) is C(latest) the highest prerelease package will be installed.
|
|
||||||
type: bool
|
|
||||||
default: 'no'
|
|
||||||
version_added: '2.6'
|
|
||||||
notes:
|
notes:
|
||||||
- Provide the C(version) parameter value as a string (e.g. C('6.1')), otherwise it
|
- Provide the C(version) parameter value as a string (e.g. C('6.1')), otherwise it
|
||||||
is considered to be a floating-point number and depending on the locale could
|
is considered to be a floating-point number and depending on the locale could
|
||||||
|
@ -130,15 +204,22 @@ notes:
|
||||||
- When using verbosity 4 (C(-vvvv)) the C(stdout) output will be more verbose.
|
- When using verbosity 4 (C(-vvvv)) the C(stdout) output will be more verbose.
|
||||||
- When using verbosity 5 (C(-vvvvv)) the C(stdout) output will include debug output.
|
- When using verbosity 5 (C(-vvvvv)) the C(stdout) output will include debug output.
|
||||||
- This module will install or upgrade Chocolatey when needed.
|
- This module will install or upgrade Chocolatey when needed.
|
||||||
- Some packages need an interactive user logon in order to install. You can use (C(become)) to achieve this.
|
- Some packages, like hotfixes or updates need an interactive user logon in
|
||||||
- Even if you are connecting as local Administrator, using (C(become)) to become Administrator will give you an interactive user logon, see examples below.
|
order to install. You can use (C(become)) to achieve this, see
|
||||||
- Use (M(win_hotfix) to install hotfixes instead of (M(win_chocolatey)) as (M(win_hotfix)) avoids using wusa.exe which cannot be run remotely.
|
:doc:`/user_guide/become`.
|
||||||
|
- Even if you are connecting as local Administrator, using (C(become)) to
|
||||||
|
become Administrator will give you an interactive user logon, see examples
|
||||||
|
below.
|
||||||
|
- If (C(become)) is unavailable, use (M(win_hotfix) to install hotfixes instead
|
||||||
|
of (M(win_chocolatey)) as (M(win_hotfix)) avoids using wusa.exe which cannot
|
||||||
|
be run without (C(become)).
|
||||||
author:
|
author:
|
||||||
- Trond Hindenes (@trondhindenes)
|
- Trond Hindenes (@trondhindenes)
|
||||||
- Peter Mounce (@petemounce)
|
- Peter Mounce (@petemounce)
|
||||||
- Pepe Barbe (@elventear)
|
- Pepe Barbe (@elventear)
|
||||||
- Adam Keech (@smadam813)
|
- Adam Keech (@smadam813)
|
||||||
- Pierre Templier (@ptemplier)
|
- Pierre Templier (@ptemplier)
|
||||||
|
- Jordan Borean (@jborean93)
|
||||||
'''
|
'''
|
||||||
|
|
||||||
# TODO:
|
# TODO:
|
||||||
|
@ -166,19 +247,37 @@ EXAMPLES = r'''
|
||||||
- name: Install notepadplusplus 32 bit version
|
- name: Install notepadplusplus 32 bit version
|
||||||
win_chocolatey:
|
win_chocolatey:
|
||||||
name: notepadplusplus
|
name: notepadplusplus
|
||||||
architecture: 'x86'
|
architecture: x86
|
||||||
|
|
||||||
- name: Install git from specified repository
|
- name: Install git from specified repository
|
||||||
win_chocolatey:
|
win_chocolatey:
|
||||||
name: git
|
name: git
|
||||||
source: https://someserver/api/v2/
|
source: https://someserver/api/v2/
|
||||||
|
|
||||||
|
- name: Install git from a pre configured source (win_chocolatey_source)
|
||||||
|
win_chocolatey:
|
||||||
|
name: git
|
||||||
|
source: internal_repo
|
||||||
|
|
||||||
|
- name: ensure Chocolatey itself is installed and use internal repo as source
|
||||||
|
win_chocolatey:
|
||||||
|
name: chocolatey
|
||||||
|
source: http://someserver/chocolatey
|
||||||
|
|
||||||
- name: Uninstall git
|
- name: Uninstall git
|
||||||
win_chocolatey:
|
win_chocolatey:
|
||||||
name: git
|
name: git
|
||||||
state: absent
|
state: absent
|
||||||
|
|
||||||
- name: Install multiple packages
|
- name: Install multiple packages
|
||||||
|
win_chocolatey:
|
||||||
|
name:
|
||||||
|
- procexp
|
||||||
|
- putty
|
||||||
|
- windirstat
|
||||||
|
state: present
|
||||||
|
|
||||||
|
- name: Install multiple packages sequentially
|
||||||
win_chocolatey:
|
win_chocolatey:
|
||||||
name: '{{ item }}'
|
name: '{{ item }}'
|
||||||
state: present
|
state: present
|
||||||
|
@ -189,12 +288,11 @@ EXAMPLES = r'''
|
||||||
|
|
||||||
- name: uninstall multiple packages
|
- name: uninstall multiple packages
|
||||||
win_chocolatey:
|
win_chocolatey:
|
||||||
name: '{{ item }}'
|
name:
|
||||||
state: absent
|
|
||||||
with_items:
|
|
||||||
- procexp
|
- procexp
|
||||||
- putty
|
- putty
|
||||||
- windirstat
|
- windirstat
|
||||||
|
state: absent
|
||||||
|
|
||||||
- name: Install curl using proxy
|
- name: Install curl using proxy
|
||||||
win_chocolatey:
|
win_chocolatey:
|
||||||
|
@ -203,13 +301,6 @@ EXAMPLES = r'''
|
||||||
proxy_username: joe
|
proxy_username: joe
|
||||||
proxy_password: p@ssw0rd
|
proxy_password: p@ssw0rd
|
||||||
|
|
||||||
- name: Install curl with proxy credentials that contain quotes
|
|
||||||
win_chocolatey:
|
|
||||||
name: curl
|
|
||||||
proxy_url: http://proxy-server:8080/
|
|
||||||
proxy_username: user with \"escaped\" double quotes
|
|
||||||
proxy_password: pass with \"escaped\" double quotes
|
|
||||||
|
|
||||||
- name: Install a package that requires 'become'
|
- name: Install a package that requires 'become'
|
||||||
win_chocolatey:
|
win_chocolatey:
|
||||||
name: officepro2013
|
name: officepro2013
|
||||||
|
|
|
@ -0,0 +1,9 @@
|
||||||
|
---
|
||||||
|
test_choco_path: '{{ win_output_dir }}\win_chocolatey'
|
||||||
|
test_choco_source: '{{ test_choco_path }}\packages'
|
||||||
|
test_choco_source2: '{{ test_choco_path }}\packages2' # used to verify source works with the source name and not just the path
|
||||||
|
test_choco_package1: ansible
|
||||||
|
test_choco_package2: ansible-test
|
||||||
|
test_choco_packages:
|
||||||
|
- '{{ test_choco_package1 }}'
|
||||||
|
- '{{ test_choco_package2 }}'
|
13
test/integration/targets/win_chocolatey/files/package.nuspec
Normal file
13
test/integration/targets/win_chocolatey/files/package.nuspec
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
|
||||||
|
<metadata>
|
||||||
|
<id>--- NAME ---</id>
|
||||||
|
<version>--- VERSION ---</version>
|
||||||
|
<title>--- NAME ---</title>
|
||||||
|
<authors>Jordan Borean</authors>
|
||||||
|
<description>Test for win_chocolatey module</description>
|
||||||
|
</metadata>
|
||||||
|
<files>
|
||||||
|
<file src="tools\**" target="tools" />
|
||||||
|
</files>
|
||||||
|
</package>
|
|
@ -0,0 +1,9 @@
|
||||||
|
$ErrorActionPreference = 'Stop'
|
||||||
|
|
||||||
|
$package_name = $env:ChocolateyPackageName
|
||||||
|
$package_version = $env:ChocolateyPackageVersion
|
||||||
|
$install_path = "--- PATH ---\$package_name-$package_version.txt"
|
||||||
|
|
||||||
|
if (Test-Path -Path $install_path) {
|
||||||
|
Remove-Item -Path $install_path -Force > $null
|
||||||
|
}
|
|
@ -0,0 +1,49 @@
|
||||||
|
$ErrorActionPreference = 'Stop'
|
||||||
|
|
||||||
|
$package_name = $env:ChocolateyPackageName
|
||||||
|
$package_version = $env:ChocolateyPackageVersion
|
||||||
|
$install_path = "--- PATH ---\$package_name-$package_version.txt"
|
||||||
|
$source = "--- SOURCE ---" # used by the test to determine which source it was installed from
|
||||||
|
|
||||||
|
if ($env:ChocolateyAllowEmptyChecksums) {
|
||||||
|
$allow_empty_checksums = $true
|
||||||
|
} else {
|
||||||
|
$allow_empty_checksums = $false
|
||||||
|
}
|
||||||
|
if ($env:ChocolateyIgnoreChecksums) {
|
||||||
|
$ignore_checksums = $true
|
||||||
|
} else {
|
||||||
|
$ignore_checksums = $false
|
||||||
|
}
|
||||||
|
if ($env:ChocolateyForce) {
|
||||||
|
$force = $true
|
||||||
|
} else {
|
||||||
|
$force = $false
|
||||||
|
}
|
||||||
|
if ($env:ChocolateyForceX86) {
|
||||||
|
$force_x86 = $true
|
||||||
|
} else {
|
||||||
|
$force_x86 = $false
|
||||||
|
}
|
||||||
|
#$process_env = Get-EnvironmentVariableNames -Scope Process
|
||||||
|
#$env_vars = @{}
|
||||||
|
#foreach ($name in $process_env) {
|
||||||
|
# $env_vars.$name = Get-EnvironmentVariable -Name $name -Scope Process
|
||||||
|
#}
|
||||||
|
$timeout = $env:chocolateyResponseTimeout
|
||||||
|
|
||||||
|
$package_info = @{
|
||||||
|
allow_empty_checksums = $allow_empty_checksums
|
||||||
|
#env_vars = $env_vars
|
||||||
|
force = $force
|
||||||
|
force_x86 = $force_x86
|
||||||
|
ignore_checksums = $ignore_checksums
|
||||||
|
install_args = $env:ChocolateyInstallArguments
|
||||||
|
package_params = Get-PackageParameters
|
||||||
|
proxy_url = $env:ChocolateyProxyLocation
|
||||||
|
source = $source
|
||||||
|
timeout = $timeout
|
||||||
|
}
|
||||||
|
$package_json = ConvertTo-Json -InputObject $package_info
|
||||||
|
|
||||||
|
[System.IO.File]::WriteAllText($install_path, $package_json)
|
|
@ -1,65 +1,105 @@
|
||||||
# test code for the win_chocolatey module
|
---
|
||||||
# (c) 2017, Dag Wieers <dag@wieers.com>
|
- name: ensure test package is uninstalled
|
||||||
|
|
||||||
# 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: install chocolatey-core.extension
|
|
||||||
win_chocolatey:
|
win_chocolatey:
|
||||||
name: chocolatey-core.extension
|
name: '{{ test_choco_packages }}'
|
||||||
state: present
|
|
||||||
register: install
|
|
||||||
|
|
||||||
- name: verify install chocolatey-core.extension
|
|
||||||
assert:
|
|
||||||
that:
|
|
||||||
- 'install.changed == true'
|
|
||||||
- install.rc == 0
|
|
||||||
|
|
||||||
- name: install chocolatey-core.extension again
|
|
||||||
win_chocolatey:
|
|
||||||
name: chocolatey-core.extension
|
|
||||||
state: present
|
|
||||||
register: install_again
|
|
||||||
|
|
||||||
- name: verify install chocolatey-core.extension again
|
|
||||||
assert:
|
|
||||||
that:
|
|
||||||
- 'install_again.changed == false'
|
|
||||||
- install.rc == 0
|
|
||||||
|
|
||||||
- name: remove chocolatey-core.extension
|
|
||||||
win_chocolatey:
|
|
||||||
name: chocolatey-core.extension
|
|
||||||
state: absent
|
state: absent
|
||||||
register: remove
|
|
||||||
|
|
||||||
- name: verify remove chocolatey-core.extension
|
- name: ensure testing dir is cleaned
|
||||||
assert:
|
win_file:
|
||||||
that:
|
path: '{{ test_choco_path }}'
|
||||||
- 'remove.changed == true'
|
state: '{{ item }}'
|
||||||
- install.rc == 0
|
with_items:
|
||||||
|
- absent
|
||||||
|
- directory
|
||||||
|
|
||||||
- name: remove chocolatey-core.extension again
|
- name: copy template package files
|
||||||
win_chocolatey:
|
win_copy:
|
||||||
name: chocolatey-core.extension
|
src: files/
|
||||||
|
dest: '{{ test_choco_path }}'
|
||||||
|
|
||||||
|
# run the setup in 1 shell script to save on test time
|
||||||
|
- name: set up packages
|
||||||
|
win_shell: |
|
||||||
|
$ErrorActionPreference = "Stop"
|
||||||
|
$root_path = '{{ test_choco_path }}'
|
||||||
|
$packages_path = '{{ test_choco_source }}'
|
||||||
|
$packages_path_override = '{{ test_choco_source2 }}'
|
||||||
|
$packages = @(
|
||||||
|
@{ name = "ansible"; version = "0.0.1"; override = $false },
|
||||||
|
@{ name = "ansible"; version = "0.1.0"; override = $false },
|
||||||
|
@{ name = "ansible"; version = "0.1.0"; override = $true },
|
||||||
|
@{ name = "ansible-test"; version = "1.0.0"; override = $false },
|
||||||
|
@{ name = "ansible-test"; version = "1.0.1-beta1"; override = $false }
|
||||||
|
)
|
||||||
|
$nuspec_src = "$root_path\package.nuspec"
|
||||||
|
$install_src = "$root_path\tools\chocolateyinstall.ps1"
|
||||||
|
$uninstall_src = "$root_path\tools\chocolateyUninstall.ps1"
|
||||||
|
|
||||||
|
New-Item -Path $packages_path -ItemType Directory > $null
|
||||||
|
New-Item -Path $packages_path_override -ItemType Directory > $null
|
||||||
|
|
||||||
|
foreach ($package in $packages) {
|
||||||
|
$package_dir = "$root_path\$($package.name)-$($package.version)"
|
||||||
|
New-Item -Path $package_dir -ItemType Directory > $null
|
||||||
|
New-Item -Path "$package_dir\tools" -ItemType Directory > $null
|
||||||
|
|
||||||
|
if ($package.override) {
|
||||||
|
$out_path = $packages_path_override
|
||||||
|
$source_value = "override"
|
||||||
|
} else {
|
||||||
|
$out_path = $packages_path
|
||||||
|
$source_value = "normal"
|
||||||
|
}
|
||||||
|
|
||||||
|
$nuspec_text = ([System.IO.File]::ReadAllLines($nuspec_src) -join "`r`n")
|
||||||
|
$nuspec_text = $nuspec_text.Replace('--- NAME ---', $package.name).Replace('--- VERSION ---', $package.version)
|
||||||
|
|
||||||
|
$install_text = ([System.IO.File]::ReadAllLines($install_src) -join "`r`n")
|
||||||
|
$install_text = $install_text.Replace('--- PATH ---', $root_path).Replace('--- SOURCE ---', $source_value)
|
||||||
|
|
||||||
|
$uninstall_text = ([System.IO.File]::ReadAllLines($uninstall_src) -join "`r`n")
|
||||||
|
$uninstall_text = $uninstall_text.Replace('--- PATH ---', $root_path)
|
||||||
|
|
||||||
|
$utf8 = New-Object -TypeName System.Text.UTF8Encoding -ArgumentList $false
|
||||||
|
$utf8_bom = New-Object -TypeName System.Text.UTF8Encoding -ArgumentList $true
|
||||||
|
[System.IO.File]::WriteAllText("$package_dir\$($package.name).nuspec", $nuspec_text, $utf8)
|
||||||
|
[System.IO.File]::WriteAllText("$package_dir\tools\chocolateyinstall.ps1", $install_text, $utf8_bom)
|
||||||
|
[System.IO.File]::WriteAllText("$package_dir\tools\chocolateyUninstall.ps1", $uninstall_text, $utf8_bom)
|
||||||
|
|
||||||
|
&choco.exe pack --out $out_path --no-progress --limit-output "$package_dir\$($package.name).nuspec"
|
||||||
|
Remove-Item -Path $package_dir -Force -Recurse > $null
|
||||||
|
}
|
||||||
|
Remove-Item -Path "$root_path\tools" -Force -Recurse > $null
|
||||||
|
Remove-Item -Path $nuspec_src > $null
|
||||||
|
|
||||||
|
- name: set up Chocolatey sources
|
||||||
|
win_chocolatey_source:
|
||||||
|
name: '{{ item.name }}'
|
||||||
|
priority: '{{ item.priority }}'
|
||||||
|
source: '{{ item.src }}'
|
||||||
|
state: present
|
||||||
|
with_items:
|
||||||
|
- name: ansible-test
|
||||||
|
priority: 1
|
||||||
|
src: '{{ test_choco_source }}'
|
||||||
|
- name: ansible-test-override
|
||||||
|
priority: 2
|
||||||
|
src: '{{ test_choco_source2 }}'
|
||||||
|
|
||||||
|
- block:
|
||||||
|
- name: run tests
|
||||||
|
include_tasks: tests.yml
|
||||||
|
|
||||||
|
always:
|
||||||
|
- name: remove test sources
|
||||||
|
win_chocolatey_source:
|
||||||
|
name: '{{ item }}'
|
||||||
state: absent
|
state: absent
|
||||||
register: remove_again
|
with_items:
|
||||||
|
- ansible-test
|
||||||
|
- ansible-test-override
|
||||||
|
|
||||||
- name: verify remove chocolatey-core.extension again
|
- name: remove testing dir
|
||||||
assert:
|
win_file:
|
||||||
that:
|
path: '{{ test_choco_path }}'
|
||||||
- 'remove_again.changed == false'
|
state: absent
|
||||||
- install.rc == 0
|
|
||||||
|
|
416
test/integration/targets/win_chocolatey/tasks/tests.yml
Normal file
416
test/integration/targets/win_chocolatey/tasks/tests.yml
Normal file
|
@ -0,0 +1,416 @@
|
||||||
|
---
|
||||||
|
- name: install package (check mode)
|
||||||
|
win_chocolatey:
|
||||||
|
name: '{{ test_choco_package1 }}'
|
||||||
|
state: present
|
||||||
|
check_mode: yes
|
||||||
|
register: install_check
|
||||||
|
|
||||||
|
- name: get result of install package (check mode)
|
||||||
|
win_command: choco.exe list --local-only --exact --limit-output {{ test_choco_package1|quote }}
|
||||||
|
register: install_actual_check
|
||||||
|
|
||||||
|
- name: assert install package (check mode)
|
||||||
|
assert:
|
||||||
|
that:
|
||||||
|
- install_check is changed
|
||||||
|
- install_actual_check.stdout_lines == []
|
||||||
|
|
||||||
|
- name: install package
|
||||||
|
win_chocolatey:
|
||||||
|
name: '{{ test_choco_package1 }}'
|
||||||
|
state: present
|
||||||
|
register: install
|
||||||
|
|
||||||
|
- name: get result of install package
|
||||||
|
win_command: choco.exe list --local-only --exact --limit-output {{ test_choco_package1|quote }}
|
||||||
|
register: install_actual
|
||||||
|
|
||||||
|
- name: get package info of install package
|
||||||
|
win_shell: Get-Content -Path '{{ test_choco_path }}\{{ test_choco_package1 }}-0.1.0.txt' -Raw
|
||||||
|
register: install_actual_info
|
||||||
|
|
||||||
|
- name: assert install package
|
||||||
|
assert:
|
||||||
|
that:
|
||||||
|
- install is changed
|
||||||
|
- install_actual.stdout_lines == [test_choco_package1 + "|0.1.0"]
|
||||||
|
- (install_actual_info.stdout|from_json).allow_empty_checksums == False
|
||||||
|
- (install_actual_info.stdout|from_json).force == False
|
||||||
|
- (install_actual_info.stdout|from_json).force_x86 == False
|
||||||
|
- (install_actual_info.stdout|from_json).ignore_checksums == False
|
||||||
|
- (install_actual_info.stdout|from_json).install_args == None
|
||||||
|
- (install_actual_info.stdout|from_json).package_params == {}
|
||||||
|
- (install_actual_info.stdout|from_json).proxy_url == None
|
||||||
|
- (install_actual_info.stdout|from_json).source == "normal"
|
||||||
|
- (install_actual_info.stdout|from_json).timeout == "2700000"
|
||||||
|
|
||||||
|
- name: install package (idempotent)
|
||||||
|
win_chocolatey:
|
||||||
|
name: '{{ test_choco_package1 }}'
|
||||||
|
state: present
|
||||||
|
register: install_again
|
||||||
|
|
||||||
|
- name: assert install package (idempotent)
|
||||||
|
assert:
|
||||||
|
that:
|
||||||
|
- not install_again is changed
|
||||||
|
|
||||||
|
- name: remove package (check mode)
|
||||||
|
win_chocolatey:
|
||||||
|
name: '{{ test_choco_package1 }}'
|
||||||
|
state: absent
|
||||||
|
check_mode: yes
|
||||||
|
register: remove_check
|
||||||
|
|
||||||
|
- name: get result of remove package (check mode)
|
||||||
|
win_command: choco.exe list --local-only --exact --limit-output {{ test_choco_package1|quote }}
|
||||||
|
register: remove_actual_check
|
||||||
|
|
||||||
|
- name: assert remove package (check mode)
|
||||||
|
assert:
|
||||||
|
that:
|
||||||
|
- remove_check is changed
|
||||||
|
- remove_actual_check.stdout_lines == [test_choco_package1 + "|0.1.0"]
|
||||||
|
|
||||||
|
- name: remove package
|
||||||
|
win_chocolatey:
|
||||||
|
name: '{{ test_choco_package1 }}'
|
||||||
|
state: absent
|
||||||
|
register: remove
|
||||||
|
|
||||||
|
- name: get result of remove package
|
||||||
|
win_command: choco.exe list --local-only --exact --limit-output {{ test_choco_package1|quote }}
|
||||||
|
register: remove_actual
|
||||||
|
|
||||||
|
- name: check if removed package file still exists
|
||||||
|
win_stat:
|
||||||
|
path: '{{ test_choco_path }}\{{ test_choco_package1 }}-0.1.0.txt'
|
||||||
|
register: remove_actual_info
|
||||||
|
|
||||||
|
- name: assert remove package
|
||||||
|
assert:
|
||||||
|
that:
|
||||||
|
- remove is changed
|
||||||
|
- remove_actual.stdout_lines == []
|
||||||
|
- remove_actual_info.stat.exists == False
|
||||||
|
|
||||||
|
- name: remove package (idempotent)
|
||||||
|
win_chocolatey:
|
||||||
|
name: '{{ test_choco_package1 }}'
|
||||||
|
state: absent
|
||||||
|
register: remove_again
|
||||||
|
|
||||||
|
- name: assert remove_package (idempotent)
|
||||||
|
assert:
|
||||||
|
that:
|
||||||
|
- not remove_again is changed
|
||||||
|
|
||||||
|
- name: install multiple packages with timeout
|
||||||
|
win_chocolatey:
|
||||||
|
name: '{{ test_choco_packages }}'
|
||||||
|
state: present
|
||||||
|
timeout: 1000
|
||||||
|
register: install_multiple
|
||||||
|
|
||||||
|
- name: get list of installed packages with timeout
|
||||||
|
win_command: choco.exe list --local-only --limit-output ansible
|
||||||
|
register: install_multiple_actual
|
||||||
|
|
||||||
|
- name: get info on package 1
|
||||||
|
win_shell: Get-Content -Path '{{ test_choco_path }}\{{ test_choco_package1 }}-0.1.0.txt' -Raw
|
||||||
|
register: install_multiple_package1
|
||||||
|
|
||||||
|
- name: get info on package 2
|
||||||
|
win_shell: Get-Content -Path '{{ test_choco_path }}\{{ test_choco_package2 }}-1.0.0.txt' -Raw
|
||||||
|
register: install_multiple_package2
|
||||||
|
|
||||||
|
- name: assert install multiple packages with timeout
|
||||||
|
assert:
|
||||||
|
that:
|
||||||
|
- install_multiple is changed
|
||||||
|
- install_multiple_actual.stdout_lines == [test_choco_package1 + "|0.1.0", test_choco_package2 + "|1.0.0"]
|
||||||
|
- (install_multiple_package1.stdout|from_json).allow_empty_checksums == False
|
||||||
|
- (install_multiple_package1.stdout|from_json).force == False
|
||||||
|
- (install_multiple_package1.stdout|from_json).force_x86 == False
|
||||||
|
- (install_multiple_package1.stdout|from_json).ignore_checksums == False
|
||||||
|
- (install_multiple_package1.stdout|from_json).install_args == None
|
||||||
|
- (install_multiple_package1.stdout|from_json).package_params == {}
|
||||||
|
- (install_multiple_package1.stdout|from_json).proxy_url == None
|
||||||
|
- (install_multiple_package1.stdout|from_json).source == "normal"
|
||||||
|
- (install_multiple_package1.stdout|from_json).timeout == "1000000"
|
||||||
|
- (install_multiple_package2.stdout|from_json).allow_empty_checksums == False
|
||||||
|
- (install_multiple_package2.stdout|from_json).force == False
|
||||||
|
- (install_multiple_package2.stdout|from_json).force_x86 == False
|
||||||
|
- (install_multiple_package2.stdout|from_json).ignore_checksums == False
|
||||||
|
- (install_multiple_package2.stdout|from_json).install_args == None
|
||||||
|
- (install_multiple_package2.stdout|from_json).package_params == {}
|
||||||
|
- (install_multiple_package2.stdout|from_json).proxy_url == None
|
||||||
|
- (install_multiple_package2.stdout|from_json).source == "normal"
|
||||||
|
- (install_multiple_package2.stdout|from_json).timeout == "1000000"
|
||||||
|
|
||||||
|
- name: install multiple packages (idempotent)
|
||||||
|
win_chocolatey:
|
||||||
|
name: '{{ test_choco_packages }}'
|
||||||
|
state: present
|
||||||
|
register: install_multiple_again
|
||||||
|
|
||||||
|
- name: assert install multiple packages (idempotent)
|
||||||
|
assert:
|
||||||
|
that:
|
||||||
|
- not install_multiple_again is changed
|
||||||
|
|
||||||
|
- name: remove multiple packages
|
||||||
|
win_chocolatey:
|
||||||
|
name: '{{ test_choco_packages }}'
|
||||||
|
state: absent
|
||||||
|
register: remove_multiple
|
||||||
|
|
||||||
|
- name: get list of installed packages after removal
|
||||||
|
win_command: choco.exe list --local-only --limit-output ansible
|
||||||
|
register: remove_multiple_actual
|
||||||
|
|
||||||
|
- name: get info on package 1
|
||||||
|
win_stat:
|
||||||
|
path: '{{ test_choco_path }}\{{ test_choco_package1 }}-0.1.0.txt'
|
||||||
|
register: remove_multiple_package1
|
||||||
|
|
||||||
|
- name: get info on package 2
|
||||||
|
win_stat:
|
||||||
|
path: '{{ test_choco_path }}\{{ test_choco_package2 }}-1.0.0.txt'
|
||||||
|
register: remove_multiple_package2
|
||||||
|
|
||||||
|
- name: assert remove multiple packages
|
||||||
|
assert:
|
||||||
|
that:
|
||||||
|
- remove_multiple is changed
|
||||||
|
- remove_multiple_actual.stdout_lines == []
|
||||||
|
- remove_multiple_package1.stat.exists == False
|
||||||
|
- remove_multiple_package2.stat.exists == False
|
||||||
|
|
||||||
|
- name: remove multiple packages (idempotent)
|
||||||
|
win_chocolatey:
|
||||||
|
name: '{{ test_choco_packages }}'
|
||||||
|
state: absent
|
||||||
|
register: remove_multiple_again
|
||||||
|
|
||||||
|
- name: assert remove multiple packages (idempotent)
|
||||||
|
assert:
|
||||||
|
that:
|
||||||
|
- not remove_multiple_again is changed
|
||||||
|
|
||||||
|
- name: install package with params
|
||||||
|
win_chocolatey:
|
||||||
|
name: '{{ test_choco_package1 }}'
|
||||||
|
state: present
|
||||||
|
install_args: /install_arg 1 /install_arg 2
|
||||||
|
package_params: /param1 /param2:value
|
||||||
|
allow_empty_checksums: yes
|
||||||
|
architecture: x86
|
||||||
|
force: yes
|
||||||
|
ignore_checksums: yes
|
||||||
|
proxy_url: http://proxyhost
|
||||||
|
version: 0.0.1
|
||||||
|
register: install_params
|
||||||
|
|
||||||
|
- name: get result of install package with params
|
||||||
|
win_command: choco.exe list --local-only --limit-output --exact {{ test_choco_package1|quote }}
|
||||||
|
register: install_params_actual
|
||||||
|
|
||||||
|
- name: get info of install package with params
|
||||||
|
win_shell: Get-Content -Path '{{ test_choco_path }}\{{ test_choco_package1 }}-0.0.1.txt'
|
||||||
|
register: install_params_info
|
||||||
|
|
||||||
|
- name: assert install package with params
|
||||||
|
assert:
|
||||||
|
that:
|
||||||
|
- install_params is changed
|
||||||
|
- install_params_actual.stdout_lines == [test_choco_package1 + "|0.0.1"]
|
||||||
|
- (install_params_info.stdout|from_json).allow_empty_checksums == True
|
||||||
|
- (install_params_info.stdout|from_json).force == True
|
||||||
|
- (install_params_info.stdout|from_json).force_x86 == True
|
||||||
|
- (install_params_info.stdout|from_json).ignore_checksums == True
|
||||||
|
- (install_params_info.stdout|from_json).install_args == "/install_arg 1 /install_arg 2"
|
||||||
|
- (install_params_info.stdout|from_json).package_params.keys()|count == 2
|
||||||
|
- (install_params_info.stdout|from_json).package_params.param1 == True
|
||||||
|
- (install_params_info.stdout|from_json).package_params.param2 == "value"
|
||||||
|
- (install_params_info.stdout|from_json).proxy_url == "http://proxyhost"
|
||||||
|
- (install_params_info.stdout|from_json).source == "normal"
|
||||||
|
- (install_params_info.stdout|from_json).timeout == "2700000"
|
||||||
|
|
||||||
|
- name: install package with version (idempotent)
|
||||||
|
win_chocolatey:
|
||||||
|
name: '{{ test_choco_package1 }}'
|
||||||
|
state: present
|
||||||
|
version: 0.0.1
|
||||||
|
register: install_with_version
|
||||||
|
|
||||||
|
- name: assert install package with version (idempotent)
|
||||||
|
assert:
|
||||||
|
that:
|
||||||
|
- not install_with_version is changed
|
||||||
|
|
||||||
|
- name: fail to install side by side package
|
||||||
|
win_chocolatey:
|
||||||
|
name: '{{ test_choco_package1 }}'
|
||||||
|
state: present
|
||||||
|
version: 0.1.0
|
||||||
|
register: fail_multiple_versions
|
||||||
|
failed_when: fail_multiple_versions.msg != "Chocolatey package '" + test_choco_package1 + "' is already installed at version '0.0.1' but was expecting '0.1.0'. Either change the expected version, set state=latest, set allow_multiple_versions=yes, or set force=yes to continue"
|
||||||
|
|
||||||
|
- name: force the upgrade of an existing version
|
||||||
|
win_chocolatey:
|
||||||
|
name: '{{ test_choco_package1 }}'
|
||||||
|
state: present
|
||||||
|
version: 0.1.0
|
||||||
|
force: yes
|
||||||
|
register: force_different_version
|
||||||
|
|
||||||
|
- name: get result of force the upgrade of an existing version
|
||||||
|
win_command: choco.exe list --local-only --limit-output --exact {{ test_choco_package1|quote }}
|
||||||
|
register: force_different_version_actual
|
||||||
|
|
||||||
|
- name: get result of forced package install file
|
||||||
|
win_stat:
|
||||||
|
path: '{{ test_choco_path }}\{{ test_choco_package1 }}-0.1.0.txt'
|
||||||
|
register: force_different_version_info
|
||||||
|
|
||||||
|
- name: assert force the upgrade of an existing version
|
||||||
|
assert:
|
||||||
|
that:
|
||||||
|
- force_different_version is changed
|
||||||
|
- force_different_version_actual.stdout_lines == [test_choco_package1 + "|0.1.0"]
|
||||||
|
- force_different_version_info.stat.exists
|
||||||
|
|
||||||
|
- name: remove package after force clobbered everything
|
||||||
|
win_chocolatey:
|
||||||
|
name: '{{ test_choco_package1 }}'
|
||||||
|
state: absent
|
||||||
|
ignore_errors: yes # the mock package created doesn't really handle force well
|
||||||
|
|
||||||
|
- name: install package with reference to source name
|
||||||
|
win_chocolatey:
|
||||||
|
name: '{{ test_choco_package1 }}'
|
||||||
|
state: present
|
||||||
|
source: ansible-test-override
|
||||||
|
register: install_source_name
|
||||||
|
|
||||||
|
- name: get result of install package with reference to source name
|
||||||
|
win_command: choco.exe list --local-only --limit-output --exact {{ test_choco_package1|quote }}
|
||||||
|
register: install_source_name_actual
|
||||||
|
|
||||||
|
- name: get result fo installed package with reference to source name info
|
||||||
|
win_shell: Get-Content -Path '{{ test_choco_path }}\{{ test_choco_package1 }}-0.1.0.txt' -Raw
|
||||||
|
register: install_source_name_info
|
||||||
|
|
||||||
|
- name: assert install package with reference to source name
|
||||||
|
assert:
|
||||||
|
that:
|
||||||
|
- install_source_name is changed
|
||||||
|
- install_source_name_actual.stdout_lines == [test_choco_package1 + "|0.1.0"]
|
||||||
|
- (install_source_name_info.stdout|from_json).source == "override"
|
||||||
|
|
||||||
|
- name: reinstall package without source override
|
||||||
|
win_chocolatey:
|
||||||
|
name: '{{ test_choco_package1 }}'
|
||||||
|
state: reinstalled
|
||||||
|
register: reinstalled_package
|
||||||
|
|
||||||
|
- name: get result of reinstalled package without source override
|
||||||
|
win_shell: Get-Content -Path '{{ test_choco_path }}\{{ test_choco_package1 }}-0.1.0.txt' -Raw
|
||||||
|
register: reinstalled_package_info
|
||||||
|
|
||||||
|
- name: assert reinstall package without source override
|
||||||
|
assert:
|
||||||
|
that:
|
||||||
|
- reinstalled_package is changed
|
||||||
|
- (reinstalled_package_info.stdout|from_json).source == "normal"
|
||||||
|
|
||||||
|
- name: downgrade package
|
||||||
|
win_chocolatey:
|
||||||
|
name: '{{ test_choco_package1 }}'
|
||||||
|
state: downgrade
|
||||||
|
version: 0.0.1
|
||||||
|
register: downgraded_package
|
||||||
|
|
||||||
|
- name: get result of downgrade package
|
||||||
|
win_command: choco.exe list --local-only --limit-output --exact {{ test_choco_package1|quote }}
|
||||||
|
register: downgraded_package_actual
|
||||||
|
|
||||||
|
- name: assert downgrade package
|
||||||
|
assert:
|
||||||
|
that:
|
||||||
|
- downgraded_package is changed
|
||||||
|
- downgraded_package_actual.stdout_lines == [test_choco_package1 + "|0.0.1"]
|
||||||
|
|
||||||
|
- name: downgrade package (idempotent)
|
||||||
|
win_chocolatey:
|
||||||
|
name: '{{ test_choco_package1 }}'
|
||||||
|
state: downgrade
|
||||||
|
version: 0.0.1
|
||||||
|
register: downgraded_package_again
|
||||||
|
|
||||||
|
- name: assert downgrade package (idempotent)
|
||||||
|
assert:
|
||||||
|
that:
|
||||||
|
- not downgraded_package_again is changed
|
||||||
|
|
||||||
|
- name: downgrade package without version specified
|
||||||
|
win_chocolatey:
|
||||||
|
name: '{{ test_choco_package1 }}'
|
||||||
|
state: downgrade
|
||||||
|
register: downgrade_without_version
|
||||||
|
|
||||||
|
- name: get result of downgrade without version
|
||||||
|
win_command: choco.exe list --local-only --limit-output --exact {{ test_choco_package1|quote }}
|
||||||
|
register: downgrade_without_version_actual
|
||||||
|
|
||||||
|
- name: assert downgrade package without version specified
|
||||||
|
assert:
|
||||||
|
that:
|
||||||
|
- not downgrade_without_version is changed
|
||||||
|
- downgrade_without_version_actual.stdout_lines == [test_choco_package1 + "|0.0.1"]
|
||||||
|
|
||||||
|
- name: upgrade package
|
||||||
|
win_chocolatey:
|
||||||
|
name: '{{ test_choco_package1 }}'
|
||||||
|
state: latest
|
||||||
|
register: upgrade_package
|
||||||
|
|
||||||
|
- name: get result of upgrade package
|
||||||
|
win_command: choco.exe list --local-only --limit-output --exact {{ test_choco_package1|quote }}
|
||||||
|
register: upgrade_package_actual
|
||||||
|
|
||||||
|
- name: assert upgrade package
|
||||||
|
assert:
|
||||||
|
that:
|
||||||
|
- upgrade_package is changed
|
||||||
|
- upgrade_package_actual.stdout_lines == [test_choco_package1 + "|0.1.0"]
|
||||||
|
|
||||||
|
- name: upgrade package (idempotent)
|
||||||
|
win_chocolatey:
|
||||||
|
name: '{{ test_choco_package1 }}'
|
||||||
|
state: latest
|
||||||
|
register: upgrade_package_again
|
||||||
|
|
||||||
|
- name: assert upgrade package (idempotent)
|
||||||
|
assert:
|
||||||
|
that:
|
||||||
|
- not upgrade_package_again is changed
|
||||||
|
|
||||||
|
- name: install prerelease package
|
||||||
|
win_chocolatey:
|
||||||
|
name: '{{ test_choco_package2 }}'
|
||||||
|
state: present
|
||||||
|
allow_prerelease: yes
|
||||||
|
register: install_prerelease
|
||||||
|
|
||||||
|
- name: get result of install prerelease package
|
||||||
|
win_command: choco.exe list --local-only --limit-output --exact {{ test_choco_package2|quote }}
|
||||||
|
register: install_prerelease_actual
|
||||||
|
|
||||||
|
- name: assert install prerelease package
|
||||||
|
assert:
|
||||||
|
that:
|
||||||
|
- install_prerelease is changed
|
||||||
|
- install_prerelease_actual.stdout_lines == [test_choco_package2 + "|1.0.1-beta1"]
|
|
@ -13,12 +13,6 @@ lib/ansible/modules/windows/setup.ps1 PSAvoidUsingCmdletAliases
|
||||||
lib/ansible/modules/windows/setup.ps1 PSAvoidUsingEmptyCatchBlock
|
lib/ansible/modules/windows/setup.ps1 PSAvoidUsingEmptyCatchBlock
|
||||||
lib/ansible/modules/windows/setup.ps1 PSUseDeclaredVarsMoreThanAssignments
|
lib/ansible/modules/windows/setup.ps1 PSUseDeclaredVarsMoreThanAssignments
|
||||||
lib/ansible/modules/windows/win_certificate_store.ps1 PSAvoidUsingPlainTextForPassword
|
lib/ansible/modules/windows/win_certificate_store.ps1 PSAvoidUsingPlainTextForPassword
|
||||||
lib/ansible/modules/windows/win_chocolatey.ps1 PSAvoidUsingConvertToSecureStringWithPlainText
|
|
||||||
lib/ansible/modules/windows/win_chocolatey.ps1 PSAvoidUsingPlainTextForPassword
|
|
||||||
lib/ansible/modules/windows/win_chocolatey.ps1 PSAvoidUsingUserNameAndPassWordParams
|
|
||||||
lib/ansible/modules/windows/win_chocolatey.ps1 PSUseApprovedVerbs
|
|
||||||
lib/ansible/modules/windows/win_chocolatey.ps1 PSUseDeclaredVarsMoreThanAssignments
|
|
||||||
lib/ansible/modules/windows/win_chocolatey.ps1 PSUseOutputTypeCorrectly
|
|
||||||
lib/ansible/modules/windows/win_copy.ps1 PSUseApprovedVerbs
|
lib/ansible/modules/windows/win_copy.ps1 PSUseApprovedVerbs
|
||||||
lib/ansible/modules/windows/win_copy.ps1 PSUseDeclaredVarsMoreThanAssignments
|
lib/ansible/modules/windows/win_copy.ps1 PSUseDeclaredVarsMoreThanAssignments
|
||||||
lib/ansible/modules/windows/win_dns_client.ps1 PSAvoidGlobalVars
|
lib/ansible/modules/windows/win_dns_client.ps1 PSAvoidGlobalVars
|
||||||
|
|
Loading…
Reference in a new issue