Skip to content

Commit

Permalink
chore: Add api.resource to wordpress.robot test file
Browse files Browse the repository at this point in the history
  • Loading branch information
stephdl committed May 22, 2024
1 parent bbc97ba commit 2aa7913
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions tests/wordpress.robot
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
*** Settings ***
Library SSHLibrary
Resource api.resource

*** Test Cases ***
Check if wordpress is installed correctly
Expand All @@ -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
Expand Down

0 comments on commit 2aa7913

Please sign in to comment.