mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-22 12:50:22 -07:00
New module: management of the Nuage Networks VSP SDN solution (network/nuage/nuage_vspk) (#24895)
* Nuage module and unit tests with requested changes * Cleanup of imports * Adding check on python version * Adding import try and catch wrappers * Cleanup of requirements and adding integration tests * Using pypi package for simulator * Cleanup of requirements and adding integration tests * Adding aliases for integration tests * Adding module to import sanity test skip list * Revert "Adding module to import sanity test skip list" This reverts commit eab23af8c5ca7c503af63c05610b5db66d31fae4. * Adding check for importlib and cleanup of requirements
This commit is contained in:
parent
e37e736ddb
commit
c00554735f
13 changed files with 2804 additions and 0 deletions
1
test/integration/targets/nuage_vspk/aliases
Normal file
1
test/integration/targets/nuage_vspk/aliases
Normal file
|
@ -0,0 +1 @@
|
|||
skip/python3
|
9
test/integration/targets/nuage_vspk/defaults/main.yaml
Normal file
9
test/integration/targets/nuage_vspk/defaults/main.yaml
Normal file
|
@ -0,0 +1,9 @@
|
|||
---
|
||||
testcase: "*"
|
||||
test_items: []
|
||||
nuage_auth:
|
||||
api_username: csproot
|
||||
api_password: csproot
|
||||
api_enterprise: csp
|
||||
api_url: http://localhost:5000
|
||||
api_version: v5_0
|
2
test/integration/targets/nuage_vspk/meta/main.yaml
Normal file
2
test/integration/targets/nuage_vspk/meta/main.yaml
Normal file
|
@ -0,0 +1,2 @@
|
|||
dependencies:
|
||||
- prepare_nuage_tests
|
17
test/integration/targets/nuage_vspk/tasks/main.yaml
Normal file
17
test/integration/targets/nuage_vspk/tasks/main.yaml
Normal file
|
@ -0,0 +1,17 @@
|
|||
---
|
||||
|
||||
- name: collect all test cases
|
||||
find:
|
||||
paths: "{{ role_path }}/tests"
|
||||
patterns: "{{ testcase }}.yaml"
|
||||
delegate_to: localhost
|
||||
register: test_cases
|
||||
|
||||
- name: set test_items
|
||||
set_fact: test_items="{{ test_cases.files | map(attribute='path') | list }}"
|
||||
|
||||
- name: run test case
|
||||
include: "{{ test_case_to_run }}"
|
||||
with_items: "{{ test_items }}"
|
||||
loop_control:
|
||||
loop_var: test_case_to_run
|
226
test/integration/targets/nuage_vspk/tests/basic.yaml
Normal file
226
test/integration/targets/nuage_vspk/tests/basic.yaml
Normal file
|
@ -0,0 +1,226 @@
|
|||
---
|
||||
# Getting the CSP enterprise
|
||||
- name: Get CSP Enterprise
|
||||
nuage_vspk:
|
||||
auth: "{{ nuage_auth }}"
|
||||
type: Enterprise
|
||||
command: get_csp_enterprise
|
||||
register: nuage_csp_enterprise
|
||||
|
||||
- name: Check if CSP enterprise was found
|
||||
assert:
|
||||
that:
|
||||
- nuage_csp_enterprise.id is defined
|
||||
- nuage_csp_enterprise.entities is defined
|
||||
- nuage_csp_enterprise.entities[0].name == "CSP"
|
||||
|
||||
- name: Create Enterprise
|
||||
nuage_vspk:
|
||||
auth: "{{ nuage_auth }}"
|
||||
type: Enterprise
|
||||
state: present
|
||||
properties:
|
||||
name: "Ansible-Enterprise"
|
||||
register: nuage_enterprise
|
||||
|
||||
- name: Check Enterprise was created
|
||||
assert:
|
||||
that:
|
||||
- nuage_enterprise.changed
|
||||
- nuage_enterprise.id is defined
|
||||
- nuage_enterprise.entities is defined
|
||||
- nuage_enterprise.entities[0].name == "Ansible-Enterprise"
|
||||
|
||||
- name: Finding Enterprise
|
||||
nuage_vspk:
|
||||
auth: "{{ nuage_auth }}"
|
||||
type: Enterprise
|
||||
command: find
|
||||
properties:
|
||||
name: "Ansible-Enterprise"
|
||||
register: nuage_enterprise
|
||||
|
||||
- name: Check Enterprise was found
|
||||
assert:
|
||||
that:
|
||||
- not nuage_enterprise.changed
|
||||
- nuage_enterprise.id is defined
|
||||
- nuage_enterprise.entities is defined
|
||||
- nuage_enterprise.entities[0].name == "Ansible-Enterprise"
|
||||
|
||||
- name: Create Enterprise again to confirm idempoteny
|
||||
nuage_vspk:
|
||||
auth: "{{ nuage_auth }}"
|
||||
type: Enterprise
|
||||
state: present
|
||||
properties:
|
||||
name: "Ansible-Enterprise"
|
||||
register: nuage_enterprise
|
||||
|
||||
- name: Check Enterprise was not created again
|
||||
assert:
|
||||
that:
|
||||
- not nuage_enterprise.changed
|
||||
- nuage_enterprise.id is defined
|
||||
- nuage_enterprise.entities is defined
|
||||
- nuage_enterprise.entities[0].name == "Ansible-Enterprise"
|
||||
|
||||
- name: Create admin user
|
||||
nuage_vspk:
|
||||
auth: "{{ nuage_auth }}"
|
||||
type: User
|
||||
parent_id: "{{ nuage_enterprise.id }}"
|
||||
parent_type: Enterprise
|
||||
state: present
|
||||
match_filter: "userName == 'ansible-admin'"
|
||||
properties:
|
||||
email: "ansible@localhost.local"
|
||||
first_name: "Ansible"
|
||||
last_name: "Admin"
|
||||
password: "ansible-password"
|
||||
user_name: "ansible-admin"
|
||||
register: nuage_user
|
||||
|
||||
- name: Check the user was created
|
||||
assert:
|
||||
that:
|
||||
- nuage_user.changed
|
||||
- nuage_user.id is defined
|
||||
- nuage_user.entities is defined
|
||||
- nuage_user.entities[0].userName == "ansible-admin"
|
||||
|
||||
- name: Update admin password
|
||||
nuage_vspk:
|
||||
auth: "{{ nuage_auth }}"
|
||||
type: User
|
||||
id: "{{ nuage_user.id }}"
|
||||
command: change_password
|
||||
properties:
|
||||
password: "ansible-new-password"
|
||||
ignore_errors: yes
|
||||
|
||||
- name: Check the user was created
|
||||
assert:
|
||||
that:
|
||||
- nuage_user.changed
|
||||
- nuage_user.id is defined
|
||||
- nuage_user.entities is defined
|
||||
- nuage_user.entities[0].userName == "ansible-admin"
|
||||
|
||||
- name: Create group in Enterprise
|
||||
nuage_vspk:
|
||||
auth: "{{ nuage_auth }}"
|
||||
type: Group
|
||||
parent_id: "{{ nuage_enterprise.id }}"
|
||||
parent_type: Enterprise
|
||||
state: present
|
||||
properties:
|
||||
name: "Ansible-Group"
|
||||
register: nuage_group
|
||||
|
||||
- name: Check the group was created
|
||||
assert:
|
||||
that:
|
||||
- nuage_group.changed
|
||||
- nuage_group.id is defined
|
||||
- nuage_group.entities is defined
|
||||
- nuage_group.entities[0].name == "Ansible-Group"
|
||||
|
||||
- name: Assign admin user to group
|
||||
nuage_vspk:
|
||||
auth: "{{ nuage_auth }}"
|
||||
type: User
|
||||
id: "{{ nuage_user.id }}"
|
||||
parent_id: "{{ nuage_group.id }}"
|
||||
parent_type: Group
|
||||
state: present
|
||||
register: nuage_assign
|
||||
|
||||
- name: Check the admin was added to the group
|
||||
assert:
|
||||
that:
|
||||
- nuage_assign.changed
|
||||
|
||||
- name: Assign admin user to administrators again to test idempotency
|
||||
nuage_vspk:
|
||||
auth: "{{ nuage_auth }}"
|
||||
type: User
|
||||
id: "{{ nuage_user.id }}"
|
||||
parent_id: "{{ nuage_group.id }}"
|
||||
parent_type: Group
|
||||
state: present
|
||||
register: nuage_assign
|
||||
|
||||
- name: Check the group was not changed
|
||||
assert:
|
||||
that:
|
||||
- not nuage_assign.changed
|
||||
|
||||
- name: Unassign admin user to administrators
|
||||
nuage_vspk:
|
||||
auth: "{{ nuage_auth }}"
|
||||
type: User
|
||||
id: "{{ nuage_user.id }}"
|
||||
parent_id: "{{ nuage_group.id }}"
|
||||
parent_type: Group
|
||||
state: absent
|
||||
register: nuage_unassign
|
||||
|
||||
- name: Check the admin was removed from the group
|
||||
assert:
|
||||
that:
|
||||
- nuage_unassign.changed
|
||||
|
||||
- name: Unassign admin user to administrators again to test idempotency
|
||||
nuage_vspk:
|
||||
auth: "{{ nuage_auth }}"
|
||||
type: User
|
||||
id: "{{ nuage_user.id }}"
|
||||
parent_id: "{{ nuage_group.id }}"
|
||||
parent_type: Group
|
||||
state: absent
|
||||
register: nuage_unassign
|
||||
|
||||
- name: Check the group was not changed
|
||||
assert:
|
||||
that:
|
||||
- not nuage_unassign.changed
|
||||
|
||||
- name: Delete User
|
||||
nuage_vspk:
|
||||
auth: "{{ nuage_auth }}"
|
||||
type: User
|
||||
id: "{{ nuage_user.id }}"
|
||||
state: absent
|
||||
register: nuage_user
|
||||
|
||||
- name: Check the user was deleted
|
||||
assert:
|
||||
that:
|
||||
- nuage_user.changed
|
||||
|
||||
- name: Delete Enterprise
|
||||
nuage_vspk:
|
||||
auth: "{{ nuage_auth }}"
|
||||
type: Enterprise
|
||||
id: "{{ nuage_enterprise.id }}"
|
||||
state: absent
|
||||
register: nuage_enterprise
|
||||
|
||||
- name: Check the enterprise was deleted
|
||||
assert:
|
||||
that:
|
||||
- nuage_enterprise.changed
|
||||
|
||||
- name: Delete Enterprise again to test idempotency
|
||||
nuage_vspk:
|
||||
auth: "{{ nuage_auth }}"
|
||||
type: Enterprise
|
||||
match_filter: 'name == "Ansible-Enterprise"'
|
||||
state: absent
|
||||
register: nuage_enterprise
|
||||
|
||||
- name: Check the delete idempotency
|
||||
assert:
|
||||
that:
|
||||
- not nuage_enterprise.changed
|
Loading…
Add table
Add a link
Reference in a new issue