4fe08441be
* Warn on tests used as filters * Update docs, add aliases for tests that fit more gramatically with test syntax * Fix rst formatting * Add successful filter, alias of success * Remove renamed_deprecation, it was overkill * Make directory alias for is_dir * Update tests to use proper jinja test syntax * Update additional documentation, living outside of YAML files, to reflect proper jinja test syntax * Add conversion script, porting guide updates, and changelog updates * Update newly added uses of tests as filters * No underscore variable * Convert recent tests as filter changes to win_stat * Fix some changes related to rebasing a few integration tests * Make tests_as_filters_warning explicitly accept the name of the test, instead of inferring the name * Add test for tests_as_filters_warning * Update tests as filters in newly added/modified tests * Address recent changes to several integration tests * Address recent changes in cs_vpc
52 lines
1.2 KiB
YAML
52 lines
1.2 KiB
YAML
# NOTE: The win_firewall module only works on WMF 5+
|
|
|
|
- setup:
|
|
|
|
- name: Test Windows capabilities
|
|
raw: Get-Command Get-NetFirewallProfile -ErrorAction SilentlyContinue; return $?
|
|
failed_when: no
|
|
register: get_netfirewallprofile
|
|
|
|
- name: Only run tests when Windows is capable
|
|
when: get_netfirewallprofile.rc == 0 and ansible_powershell_version >= 5
|
|
block:
|
|
- name: Turn off Windows Firewall (begin)
|
|
win_firewall:
|
|
profiles: [ Domain, Private, Public ]
|
|
state: disabled
|
|
register: firewall_off
|
|
|
|
- name: Test firewall_off
|
|
assert:
|
|
that:
|
|
- not firewall_off.Domain.enabled
|
|
- not firewall_off.Private.enabled
|
|
- not firewall_off.Public.enabled
|
|
|
|
|
|
- name: Test in normal mode
|
|
include: tests.yml
|
|
vars:
|
|
in_check_mode: no
|
|
|
|
|
|
- name: Test in check-mode
|
|
include: tests.yml
|
|
vars:
|
|
in_check_mode: yes
|
|
check_mode: yes
|
|
|
|
|
|
- name: Turn on Windows Firewall (end)
|
|
win_firewall:
|
|
profiles: [ Domain, Private, Public ]
|
|
state: enabled
|
|
register: firewall_on
|
|
|
|
- name: Test firewall_on
|
|
assert:
|
|
that:
|
|
- firewall_on is changed
|
|
- firewall_on.Domain.enabled
|
|
- firewall_on.Private.enabled
|
|
- firewall_on.Public.enabled
|