mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
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
193 lines
4.4 KiB
YAML
193 lines
4.4 KiB
YAML
---
|
|
- debug: msg="START junos_user netconf/basic.yaml"
|
|
|
|
- name: setup - remove user
|
|
junos_user:
|
|
name: test_user
|
|
state: absent
|
|
provider: "{{ netconf }}"
|
|
|
|
- name: Create user
|
|
junos_user:
|
|
name: test_user
|
|
state: present
|
|
full_name: test_user
|
|
role: operator
|
|
provider: "{{ netconf }}"
|
|
register: result
|
|
|
|
- name: Get running configuration
|
|
junos_rpc:
|
|
rpc: get-configuration
|
|
provider: "{{ netconf }}"
|
|
register: config
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == true"
|
|
- "'<name>test_user</name>' in config.xml"
|
|
- "'<full-name>test_user</full-name>' in config.xml"
|
|
- "'<class>operator</class>' in config.xml"
|
|
|
|
- name: Create user again (idempotent)
|
|
junos_user:
|
|
name: test_user
|
|
state: present
|
|
full_name: test_user
|
|
role: operator
|
|
provider: "{{ netconf }}"
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == false"
|
|
|
|
- name: Deactivate user
|
|
junos_user:
|
|
name: test_user
|
|
state: present
|
|
full_name: test_user
|
|
role: operator
|
|
active: False
|
|
provider: "{{ netconf }}"
|
|
register: result
|
|
|
|
- name: Get running configuration
|
|
junos_rpc:
|
|
rpc: get-configuration
|
|
provider: "{{ netconf }}"
|
|
register: config
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == true"
|
|
- "'<user inactive=\"inactive\">' in config.xml"
|
|
- "'<name>test_user</name>' in config.xml"
|
|
|
|
- name: Activate user
|
|
junos_user:
|
|
name: test_user
|
|
state: present
|
|
full_name: test_user
|
|
role: operator
|
|
active: True
|
|
provider: "{{ netconf }}"
|
|
register: result
|
|
|
|
- name: Get running configuration
|
|
junos_rpc:
|
|
rpc: get-configuration
|
|
provider: "{{ netconf }}"
|
|
register: config
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == true"
|
|
- "'<name>test_user</name>' in config.xml"
|
|
- "'<full-name>test_user</full-name>' in config.xml"
|
|
- "'<class>operator</class>' in config.xml"
|
|
|
|
- name: Delete user
|
|
junos_user:
|
|
name: test_user
|
|
state: absent
|
|
full_name: test_user
|
|
role: operator
|
|
provider: "{{ netconf }}"
|
|
register: result
|
|
|
|
- name: Get running configuration
|
|
junos_rpc:
|
|
rpc: get-configuration
|
|
provider: "{{ netconf }}"
|
|
register: config
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == true"
|
|
- "'<name>test_user</name>' not in config.xml"
|
|
- "'<full-name>test_user</full-name>' not in config.xml"
|
|
|
|
- name: Delete user again (idempotent check)
|
|
junos_user:
|
|
name: test_user
|
|
state: absent
|
|
full_name: test_user
|
|
role: operator
|
|
provider: "{{ netconf }}"
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == false"
|
|
|
|
- name: Teardown list of users
|
|
junos_user:
|
|
aggregate:
|
|
- {name: test_user1, state: absent}
|
|
- {name: test_user2, state: absent}
|
|
provider: "{{ netconf }}"
|
|
register: result
|
|
|
|
- name: Create list of users
|
|
junos_user:
|
|
aggregate:
|
|
- {name: test_user1, full_name: test_user2, role: operator, state: present}
|
|
- {name: test_user2, full_name: test_user2, role: read-only, state: present}
|
|
provider: "{{ netconf }}"
|
|
register: result
|
|
|
|
- name: Get running configuration
|
|
junos_rpc:
|
|
rpc: get-configuration
|
|
provider: "{{ netconf }}"
|
|
register: config
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == true"
|
|
- "'<name>test_user1</name>' in config.xml"
|
|
- "'<name>test_user2</name>' in config.xml"
|
|
|
|
- name: Delete list of users
|
|
junos_user:
|
|
aggregate:
|
|
- {name: test_user1, full_name: test_user2, role: operator, state: absent}
|
|
- {name: test_user2, full_name: test_user2, role: read-only, state: absent}
|
|
provider: "{{ netconf }}"
|
|
register: result
|
|
|
|
- name: Get running configuration
|
|
junos_rpc:
|
|
rpc: get-configuration
|
|
provider: "{{ netconf }}"
|
|
register: config
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == true"
|
|
- "'<name>test_user1</name>' not in config.xml"
|
|
- "'<name>test_user2</name>' not in config.xml"
|
|
|
|
- name: Create list of users
|
|
junos_user:
|
|
aggregate:
|
|
- name: ansible
|
|
- {name: test_user1, full_name: test_user2, role: operator}
|
|
- {name: test_user2, full_name: test_user2, role: read-only}
|
|
provider: "{{ netconf }}"
|
|
register: result
|
|
|
|
- name: Purge users except the users in aggregate
|
|
junos_user:
|
|
aggregate:
|
|
- name: ansible
|
|
purge: True
|
|
provider: "{{ netconf }}"
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == true"
|
|
- result.diff.prepared is search("\- *user test_user1")
|
|
- result.diff.prepared is search("\- *user test_user2")
|