grafana-ansible-collection/tests/integration/targets/cloud_api_key/tasks/main.yml
Ishan Jain c718a25d7d
Add Integration tests for the modules
* add integration tests

* add tests

* add checkout

* check cat of the file

* updatng tests

* rename folder

* update action

* test str api key

* update config file name

* updated versions for tests

* updated action

* updated action

* update test

* updated ytests

* updated check

* Delete play.yml

* updated check

* update delete test

* updated conditional check

* updated check

* updated tests

* updated tests

* Updated tests

* Add folder test

* fail test

* updated tests

* updated tests

* update tests

* add cloud stack test

* update stack test

* update test

* update test

* update test

* update test

* update test

* update test

* update tests

* update tests

* updated test

* add plugin test

* updated tests

* add api key test

* updat etest

* updated tests

* add notification policy tree test

* reorg

* fix

* fix

* update

* add contact point test

* update action

* Seperate actions

* update action name

* update action

* update action

* update seq number

* Updating CI tests

* Edit Actions
2022-08-23 19:12:32 +05:30

43 lines
1.2 KiB
YAML

- name: Create Grafana Cloud API key
grafana.grafana.cloud_api_key:
name: ansible-integration-test
role: Admin
org_slug: "{{ org_name }}"
existing_cloud_api_key: "{{ grafana_cloud_api_key }}"
fail_if_already_created: False
state: present
register: add_result
- assert:
that:
- add_result.changed == true
- add_result.output.name == "ansible-integration-test"
- name: Re-run previous task
grafana.grafana.cloud_api_key:
name: ansible-integration-test
role: Admin
org_slug: "{{ org_name }}"
existing_cloud_api_key: "{{ grafana_cloud_api_key }}"
fail_if_already_created: False
state: present
register: update_result
- assert:
that:
- update_result.changed == false
- update_result.output == "A Cloud API key with the same name already exists"
- name: Delete Grafana Cloud API key
grafana.grafana.cloud_api_key:
name: ansible-integration-test
role: Admin
org_slug: "{{ org_name }}"
existing_cloud_api_key: "{{ grafana_cloud_api_key }}"
state: absent
register: delete_result
- assert:
that:
- delete_result.changed == true
- delete_result.output == "Cloud API key is deleted"