mirror of https://github.com/ansible/ansible.git
Merge pull request #15422 from jhawkesworth/win_regedit_binary_tests
Windows: add win_regedit integration tests (needs https://github.com/ansible/ansible-modules-extras/pull/2034)pull/15419/head
commit
6322ed833e
@ -0,0 +1,3 @@
|
||||
dependencies:
|
||||
- prepare_win_tests
|
||||
|
@ -0,0 +1,359 @@
|
||||
# test code for the win_regedit module
|
||||
# (c) 2014, Michael DeHaan <michael.dehaan@gmail.com>
|
||||
|
||||
# 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/>.
|
||||
|
||||
# clear the area of the registry we are using for tests
|
||||
|
||||
- name: remove setting
|
||||
win_regedit:
|
||||
key: 'HKCU:\SOFTWARE\Cow Corp'
|
||||
state: absent
|
||||
|
||||
- name: check basic set works
|
||||
win_regedit:
|
||||
key: HKCU:\Software\Cow Corp
|
||||
value: hello
|
||||
data: world
|
||||
register: check01_result
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- "check01_result.changed == true"
|
||||
|
||||
- name: check that setting the same again is not changed
|
||||
win_regedit:
|
||||
key: HKCU:\Software\Cow Corp
|
||||
value: hello
|
||||
data: world
|
||||
register: check02_result
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- "check02_result.changed == false"
|
||||
|
||||
# binary mode checks
|
||||
# tests with 'hex:' prefix (as intended)
|
||||
|
||||
- name: check binary with hex(colon) prefix
|
||||
win_regedit:
|
||||
key: HKCU:\Software\Cow Corp
|
||||
value: hellobinary
|
||||
data: hex:be,ef,be,ef,be,ef,be,ef,be,ef
|
||||
datatype: binary
|
||||
register: check03_result
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- "check03_result.changed == true"
|
||||
|
||||
- name: check binary with hex(colon) prefix not modified
|
||||
win_regedit:
|
||||
key: HKCU:\Software\Cow Corp
|
||||
value: hellobinary
|
||||
data: hex:be,ef,be,ef,be,ef,be,ef,be,ef
|
||||
datatype: binary
|
||||
register: check04_result
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- "check04_result.changed == false"
|
||||
|
||||
- name: check binary with hex(colon) prefix modified
|
||||
win_regedit:
|
||||
key: HKCU:\Software\Cow Corp
|
||||
value: hellobinary
|
||||
data: hex:de,ad,be,ef,de,ad,be,ef,de,ad,be,ef
|
||||
datatype: binary
|
||||
register: check05_result
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- "check05_result.changed == true"
|
||||
|
||||
# reset
|
||||
- name: reset test
|
||||
win_regedit:
|
||||
key: HKCU:\Software\Cow Corp
|
||||
value: hellobinary
|
||||
state: absent
|
||||
register: check06_result
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- "check06_result.changed == true"
|
||||
|
||||
# check without hex(colon) prefix
|
||||
|
||||
# tests without 'hex:' prefix (optional)
|
||||
- name: check binary with hex(colon) prefix
|
||||
win_regedit:
|
||||
key: HKCU:\Software\Cow Corp
|
||||
value: hellobinary
|
||||
data: be,ef,be,ef,be,ef,be,ef,be,ef
|
||||
datatype: binary
|
||||
register: check13_result
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- "check13_result.changed == true"
|
||||
|
||||
- name: check binary without hex(colon) prefix not modified
|
||||
win_regedit:
|
||||
key: HKCU:\Software\Cow Corp
|
||||
value: hellobinary
|
||||
data: be,ef,be,ef,be,ef,be,ef,be,ef
|
||||
datatype: binary
|
||||
register: check14_result
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- "check14_result.changed == false"
|
||||
|
||||
- name: check binary without hex(colon) prefix modified
|
||||
win_regedit:
|
||||
key: HKCU:\Software\Cow Corp
|
||||
value: hellobinary
|
||||
data: de,ad,be,ef,de,ad,be,ef,de,ad,be,ef
|
||||
datatype: binary
|
||||
register: check15_result
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- "check15_result.changed == true"
|
||||
|
||||
# reset
|
||||
- name: reset test
|
||||
win_regedit:
|
||||
key: HKCU:\Software\Cow Corp
|
||||
value: hellobinary
|
||||
state: absent
|
||||
register: check16_result
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- "check16_result.changed == true"
|
||||
|
||||
# check mixed case hex values with hex: prefix
|
||||
|
||||
- name: check mixed case binary with hex(colon) prefix
|
||||
win_regedit:
|
||||
key: HKCU:\Software\Cow Corp
|
||||
value: hellobinary
|
||||
data: hex:be,EF,be,EF,be,EF,be,EF,be,EF
|
||||
datatype: binary
|
||||
register: check23_result
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- "check23_result.changed == true"
|
||||
|
||||
- name: check mixed case binary with hex(colon) prefix not modified
|
||||
win_regedit:
|
||||
key: HKCU:\Software\Cow Corp
|
||||
value: hellobinary
|
||||
data: hex:be,EF,be,EF,be,EF,be,EF,be,EF
|
||||
datatype: binary
|
||||
register: check24_result
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- "check24_result.changed == false"
|
||||
|
||||
- name: check mixed case binary with hex(colon) prefix modified
|
||||
win_regedit:
|
||||
key: HKCU:\Software\Cow Corp
|
||||
value: hellobinary
|
||||
data: hex:DE,ad,be,EF,DE,ad,be,EF,DE,ad,be,EF
|
||||
datatype: binary
|
||||
register: check25_result
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- "check25_result.changed == true"
|
||||
|
||||
# reset
|
||||
- name: reset test
|
||||
win_regedit:
|
||||
key: HKCU:\Software\Cow Corp
|
||||
value: hellobinary
|
||||
state: absent
|
||||
register: check26_result
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- "check26_result.changed == true"
|
||||
|
||||
# check mixed case without hex: prefix
|
||||
|
||||
# tests without 'hex:' prefix (optional)
|
||||
- name: check mixed case binary without hex(colon) prefix
|
||||
win_regedit:
|
||||
key: HKCU:\Software\Cow Corp
|
||||
value: hellobinary
|
||||
data: be,EF,be,EF,be,EF,be,EF,be,EF
|
||||
datatype: binary
|
||||
register: check33_result
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- "check33_result.changed == true"
|
||||
|
||||
- name: check mixed case binary without hex(colon) prefix not modified
|
||||
win_regedit:
|
||||
key: HKCU:\Software\Cow Corp
|
||||
value: hellobinary
|
||||
data: be,EF,be,EF,be,EF,be,EF,be,EF
|
||||
datatype: binary
|
||||
register: check34_result
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- "check34_result.changed == false"
|
||||
|
||||
- name: check mixed case binary without hex(colon) prefix modified
|
||||
win_regedit:
|
||||
key: HKCU:\Software\Cow Corp
|
||||
value: hellobinary
|
||||
data: DE,ad,be,EF,DE,ad,be,EF,DE,ad,be,EF
|
||||
datatype: binary
|
||||
register: check35_result
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- "check35_result.changed == true"
|
||||
|
||||
# reset
|
||||
- name: reset test
|
||||
win_regedit:
|
||||
key: HKCU:\Software\Cow Corp
|
||||
value: hellobinary
|
||||
state: absent
|
||||
register: check36_result
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- "check36_result.changed == true"
|
||||
|
||||
# check colon separated hex values with hex: prefix
|
||||
|
||||
- name: check colon separated hex values with hex(colon) prefix
|
||||
win_regedit:
|
||||
key: HKCU:\Software\Cow Corp
|
||||
value: hellobinary
|
||||
data: hex:be:ef:be:ef:be:ef:be:ef:be:ef
|
||||
datatype: binary
|
||||
register: check43_result
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- "check43_result.changed == true"
|
||||
|
||||
- name: check colon separated binary with hex(colon) prefix not modified
|
||||
win_regedit:
|
||||
key: HKCU:\Software\Cow Corp
|
||||
value: hellobinary
|
||||
data: hex:be:ef:be:ef:be:ef:be:ef:be:ef
|
||||
datatype: binary
|
||||
register: check44_result
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- "check44_result.changed == false"
|
||||
|
||||
- name: check colon separated binary with hex(colon) prefix modified
|
||||
win_regedit:
|
||||
key: HKCU:\Software\Cow Corp
|
||||
value: hellobinary
|
||||
data: hex:de:ad:be:ef:de:ad:be:ef:de:ad:be:ef
|
||||
datatype: binary
|
||||
register: check45_result
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- "check45_result.changed == true"
|
||||
|
||||
# reset
|
||||
- name: reset test
|
||||
win_regedit:
|
||||
key: HKCU:\Software\Cow Corp
|
||||
value: hellobinary
|
||||
state: absent
|
||||
register: check46_result
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- "check46_result.changed == true"
|
||||
|
||||
# check colon separated hex values without hex(colon) prefix
|
||||
|
||||
# tests without 'hex:' prefix (optional)
|
||||
- name: check colon separated binary with hex(colon) prefix
|
||||
win_regedit:
|
||||
key: HKCU:\Software\Cow Corp
|
||||
value: hellobinary
|
||||
data: be:ef:be:ef:be:ef:be:ef:be:ef
|
||||
datatype: binary
|
||||
register: check53_result
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- "check53_result.changed == true"
|
||||
|
||||
- name: check colon separated binary without hex(colon) prefix not modified
|
||||
win_regedit:
|
||||
key: HKCU:\Software\Cow Corp
|
||||
value: hellobinary
|
||||
data: be:ef:be:ef:be:ef:be:ef:be:ef
|
||||
datatype: binary
|
||||
register: check54_result
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- "check54_result.changed == false"
|
||||
|
||||
- name: check colon separated binary without hex(colon) prefix modified
|
||||
win_regedit:
|
||||
key: HKCU:\Software\Cow Corp
|
||||
value: hellobinary
|
||||
data: de:ad:be:ef:de:ad:be:ef:de:ad:be:ef
|
||||
datatype: binary
|
||||
register: check55_result
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- "check55_result.changed == true"
|
||||
|
||||
# reset
|
||||
- name: reset test
|
||||
win_regedit:
|
||||
key: HKCU:\Software\Cow Corp
|
||||
value: hellobinary
|
||||
state: absent
|
||||
register: check56_result
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- "check56_result.changed == true"
|
||||
|
||||
# tear down
|
||||
|
||||
- name: remove registry key used for testing
|
||||
win_regedit:
|
||||
key: 'HKCU:\SOFTWARE\Cow Corp'
|
||||
state: absent
|
||||
|
||||
# END OF win_regedit tests
|
Loading…
Reference in New Issue