From 2aa79136a61eb8af0f47bb4482495a958e9fd270 Mon Sep 17 00:00:00 2001 From: Stephane de Labrusse Date: Wed, 22 May 2024 10:35:05 +0200 Subject: [PATCH] chore: Add api.resource to wordpress.robot test file --- tests/wordpress.robot | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/tests/wordpress.robot b/tests/wordpress.robot index f84e0dd..9da2d1e 100644 --- a/tests/wordpress.robot +++ b/tests/wordpress.robot @@ -1,5 +1,6 @@ *** Settings *** Library SSHLibrary +Resource api.resource *** Test Cases *** Check if wordpress is installed correctly @@ -10,13 +11,22 @@ Check if wordpress is installed correctly Set Suite Variable ${module_id} ${output.module_id} Check if wordpress can be configured - ${rc} = Execute Command api-cli run module/${module_id}/configure-module --data '{}' + ${rc} = Execute Command api-cli run module/${module_id}/configure-module --data '{"host":"wordpress.domain.org","http2https":true,"lets_encrypt":true}' ... return_rc=True return_stdout=False Should Be Equal As Integers ${rc} 0 +Check postgresql path is configured + ${ocfg} = Run task module/${module_id}/get-configuration {} + Set Suite Variable ${HOST} ${ocfg['host']} + Set Suite Variable ${HTTP2HTTPS} ${ocfg['http2https']} + Set Suite Variable ${LE_ENCRYPT} ${ocfg['lets_encrypt']} + Should Be Equal ${HOST} wordpress.domain.org + Should Be True ${HTTP2HTTPS} + Should Be True ${LE_ENCRYPT} + Check if wordpress works as expected - ${rc} = Execute Command curl -f http://127.0.0.1/wordpress/ - ... return_rc=True return_stdout=False + ${output} ${rc} = Execute Command sleep 10 && curl -H "Host: wordpress.domain.org" -fkL https://127.0.0.1/ + ... return_rc=True return_stdout=True Should Be Equal As Integers ${rc} 0 Check if wordpress is removed correctly