33 lines
998 B
YAML
33 lines
998 B
YAML
|
- hosts: localhost
|
||
|
vars:
|
||
|
- topology: 'topology-01'
|
||
|
remote_user: root
|
||
|
roles:
|
||
|
- role: Test_Trigger
|
||
|
- role: Test_Execution
|
||
|
- role: standard-test-basic
|
||
|
tags:
|
||
|
- classic
|
||
|
tests:
|
||
|
- verify_spawn_ca:
|
||
|
dir: .
|
||
|
run: "curl http://localhost:8080/ca/admin/ca/getStatus | grep '<Status>running</Status>'"
|
||
|
- verify_spawn_kra:
|
||
|
dir: .
|
||
|
run: "curl http://localhost:8080/kra/admin/kra/getStatus | grep '<Status>running</Status>'"
|
||
|
- destroy_kra:
|
||
|
dir: .
|
||
|
run: "pkidestroy -i pki-tomcat -s KRA && sleep 5"
|
||
|
- verify_destroy_kra:
|
||
|
dir: .
|
||
|
run: "curl http://localhost:8080/kra/admin/kra/getStatus | grep 'HTTP Status 404'"
|
||
|
- destroy_ca:
|
||
|
dir: .
|
||
|
run: "pkidestroy -i pki-tomcat -s CA"
|
||
|
- verify_destroy_ca:
|
||
|
dir: .
|
||
|
run: "curl http://localhost:8080/ca/admin/ca/getStatus &> testfile.log || true && grep 'Connection refused' testfile.log"
|
||
|
required_packages:
|
||
|
- pki-ca
|
||
|
- pki-kra
|