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
173 lines
6.2 KiB
YAML
173 lines
6.2 KiB
YAML
---
|
|
# Test setup
|
|
- name: remove test folder for baseline
|
|
win_file:
|
|
path: '{{test_win_acl_inheritance_path}}'
|
|
state: absent
|
|
|
|
- name: create test folders
|
|
win_file:
|
|
path: '{{test_win_acl_inheritance_path}}\folder'
|
|
state: directory
|
|
|
|
- name: create test files
|
|
win_copy:
|
|
dest: '{{test_win_acl_inheritance_path}}\folder\file.txt'
|
|
content: a
|
|
|
|
# Run tests
|
|
- name: remove inheritance check
|
|
win_acl_inheritance:
|
|
path: '{{test_win_acl_inheritance_path}}\folder'
|
|
reorganize: True
|
|
state: absent
|
|
register: remove_check
|
|
check_mode: True
|
|
|
|
- name: get actual remove inheritance check
|
|
test_get_acl:
|
|
path: '{{test_win_acl_inheritance_path}}\folder'
|
|
register: actual_remove_check
|
|
|
|
- name: assert remove inheritance check
|
|
assert:
|
|
that:
|
|
- remove_check is changed
|
|
- actual_remove_check.inherited == True
|
|
|
|
- name: remove inheritance
|
|
win_acl_inheritance:
|
|
path: '{{test_win_acl_inheritance_path}}\folder'
|
|
reorganize: True
|
|
state: absent
|
|
register: remove
|
|
|
|
- name: get actual remove inheritance
|
|
test_get_acl:
|
|
path: '{{test_win_acl_inheritance_path}}\folder'
|
|
register: actual_remove
|
|
|
|
- name: assert remove inheritance
|
|
assert:
|
|
that:
|
|
- remove is changed
|
|
- actual_remove.inherited == False
|
|
- actual_remove.user_details['BUILTIN/Administrators'].isinherited == False
|
|
- actual_remove.user_details['BUILTIN/Administrators'].isnotinherited == True
|
|
- actual_remove.user_details['BUILTIN/Users'].isinherited == False
|
|
- actual_remove.user_details['BUILTIN/Users'].isnotinherited == True
|
|
- actual_remove.user_details['CREATOR OWNER'].isinherited == False
|
|
- actual_remove.user_details['CREATOR OWNER'].isnotinherited == True
|
|
- actual_remove.user_details['NT AUTHORITY/SYSTEM'].isinherited == False
|
|
- actual_remove.user_details['NT AUTHORITY/SYSTEM'].isnotinherited == True
|
|
|
|
- name: remove inheritance again
|
|
win_acl_inheritance:
|
|
path: '{{test_win_acl_inheritance_path}}\folder'
|
|
reorganize: True
|
|
state: absent
|
|
register: remove_again
|
|
|
|
- name: get actual remove inheritance again
|
|
test_get_acl:
|
|
path: '{{test_win_acl_inheritance_path}}\folder'
|
|
register: actual_remove_again
|
|
|
|
- name: assert remove inheritance again
|
|
assert:
|
|
that:
|
|
- remove_again is not changed
|
|
- actual_remove_again.inherited == False
|
|
- actual_remove.user_details['BUILTIN/Administrators'].isinherited == False
|
|
- actual_remove.user_details['BUILTIN/Administrators'].isnotinherited == True
|
|
- actual_remove.user_details['BUILTIN/Users'].isinherited == False
|
|
- actual_remove.user_details['BUILTIN/Users'].isnotinherited == True
|
|
- actual_remove.user_details['CREATOR OWNER'].isinherited == False
|
|
- actual_remove.user_details['CREATOR OWNER'].isnotinherited == True
|
|
- actual_remove.user_details['NT AUTHORITY/SYSTEM'].isinherited == False
|
|
- actual_remove.user_details['NT AUTHORITY/SYSTEM'].isnotinherited == True
|
|
|
|
- name: add inheritance check
|
|
win_acl_inheritance:
|
|
path: '{{test_win_acl_inheritance_path}}\folder'
|
|
reorganize: True
|
|
state: present
|
|
register: add_check
|
|
check_mode: True
|
|
|
|
- name: get actual add inheritance check
|
|
test_get_acl:
|
|
path: '{{test_win_acl_inheritance_path}}\folder'
|
|
register: actual_add_check
|
|
|
|
- name: assert add inheritance check
|
|
assert:
|
|
that:
|
|
- add_check is changed
|
|
- actual_add_check.inherited == False
|
|
- actual_add_check.user_details['BUILTIN/Administrators'].isinherited == False
|
|
- actual_add_check.user_details['BUILTIN/Administrators'].isnotinherited == True
|
|
- actual_add_check.user_details['BUILTIN/Users'].isinherited == False
|
|
- actual_add_check.user_details['BUILTIN/Users'].isnotinherited == True
|
|
- actual_add_check.user_details['CREATOR OWNER'].isinherited == False
|
|
- actual_add_check.user_details['CREATOR OWNER'].isnotinherited == True
|
|
- actual_add_check.user_details['NT AUTHORITY/SYSTEM'].isinherited == False
|
|
- actual_add_check.user_details['NT AUTHORITY/SYSTEM'].isnotinherited == True
|
|
|
|
- name: add inheritance
|
|
win_acl_inheritance:
|
|
path: '{{test_win_acl_inheritance_path}}\folder'
|
|
reorganize: True
|
|
state: present
|
|
register: add
|
|
|
|
- name: get actual add inheritance
|
|
test_get_acl:
|
|
path: '{{test_win_acl_inheritance_path}}\folder'
|
|
register: actual_add
|
|
|
|
- name: assert add inheritance
|
|
assert:
|
|
that:
|
|
- add is changed
|
|
- actual_add.inherited == True
|
|
- actual_add.user_details['BUILTIN/Administrators'].isinherited == True
|
|
- actual_add.user_details['BUILTIN/Administrators'].isnotinherited == False
|
|
- actual_add.user_details['BUILTIN/Users'].isinherited == True
|
|
- actual_add.user_details['BUILTIN/Users'].isnotinherited == True # Bug in win_acl_inheritance, resetting inheritance doubles up entries
|
|
- actual_add.user_details['CREATOR OWNER'].isinherited == True
|
|
- actual_add.user_details['CREATOR OWNER'].isnotinherited == False
|
|
- actual_add.user_details['NT AUTHORITY/SYSTEM'].isinherited == True
|
|
- actual_add.user_details['NT AUTHORITY/SYSTEM'].isnotinherited == False
|
|
|
|
- name: add inheritance again
|
|
win_acl_inheritance:
|
|
path: '{{test_win_acl_inheritance_path}}\folder'
|
|
reorganize: True
|
|
state: present
|
|
register: add_again
|
|
|
|
- name: get actual add inheritance again
|
|
test_get_acl:
|
|
path: '{{test_win_acl_inheritance_path}}\folder'
|
|
register: actual_add_again
|
|
|
|
- name: assert add inheritance again
|
|
assert:
|
|
that:
|
|
- add_again is not changed
|
|
- actual_add_again.inherited == True
|
|
- actual_add_again.user_details['BUILTIN/Administrators'].isinherited == True
|
|
- actual_add_again.user_details['BUILTIN/Administrators'].isnotinherited == False
|
|
- actual_add_again.user_details['BUILTIN/Users'].isinherited == True
|
|
- actual_add_again.user_details['BUILTIN/Users'].isnotinherited == True # Bug in win_acl_inheritance, resetting inheritance doubles up entries
|
|
- actual_add_again.user_details['CREATOR OWNER'].isinherited == True
|
|
- actual_add_again.user_details['CREATOR OWNER'].isnotinherited == False
|
|
- actual_add_again.user_details['NT AUTHORITY/SYSTEM'].isinherited == True
|
|
- actual_add_again.user_details['NT AUTHORITY/SYSTEM'].isnotinherited == False
|
|
|
|
# Test cleanup
|
|
- name: remove test folder
|
|
win_file:
|
|
path: '{{test_win_acl_inheritance_path}}'
|
|
state: absent
|