forked from bitnami/charts
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[bitnami/suitecrm] Revisit Helm Chart tests (bitnami#12141)
* [bitnami/suitecrm] Revisit Helm Chart tests Signed-off-by: FraPazGal <[email protected]> * Update .vib/suitecrm/cypress/cypress/integration/suitecrm_spec.js Co-authored-by: Jose Antonio Carmona <[email protected]> Signed-off-by: Francisco de Paz Galán <[email protected]> Signed-off-by: FraPazGal <[email protected]> Signed-off-by: Francisco de Paz Galán <[email protected]> Co-authored-by: Jose Antonio Carmona <[email protected]>
- Loading branch information
Showing
9 changed files
with
63 additions
and
101 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
Name,ID,Website,Email Address,Non Primary E-mails,Office Phone,Alternate Phone,Fax,Billing Street,Billing City,Billing State,Billing Postal Code,Billing Country,Shipping Street,Shipping City,Shipping State,Shipping Postal Code,Shipping Country,Description,Type,Industry,Annual Revenue,Employees,SIC Code,Ticker Symbol,Parent Account ID,Ownership,Campaign ID,Rating,Assigned to,Assigned User,Date Created,Date Modified,Modified By,Created By,Deleted,Longitude,Geocode Status,Address,Latitude | ||
Test Account,c76e2660-6542-8b05-ff4d-628deed4e5f7,http:/website.com,[email protected],,123-245-2345,,,Central Street,Central City,,,Country,,,,,,,,,,,,,,,,,user,1,05/25/2022 8:52,05/25/2022 8:52,1,1,0,0,,,0 | ||
Test Account 2,c76e2660-6542-8b05-ff4d-628deed4e5f9,http:/website-one.com,[email protected],,123-245-2345,,,Central Street,Central City,,,Country,,,,,,,,,,,,,,,,,user,1,05/25/2022 8:52,05/25/2022 8:52,1,1,0,0,,,0 | ||
First Test Account random_id,c76e2660-6542-8b05-ff4d-628deed4e5f7,http:/website.com,[email protected],,123-245-2345,,,Central Street,Central City,,,Country,,,,,,,,,,,,,,,,,user,1,05/25/2022 8:52,05/25/2022 8:52,1,1,0,0,,,0 | ||
Second Test Account random_id,c76e2660-6542-8b05-ff4d-628deed4e5f9,http:/website-one.com,[email protected],,123-245-2345,,,Central Street,Central City,,,Country,,,,,,,,,,,,,,,,,user,1,05/25/2022 8:52,05/25/2022 8:52,1,1,0,0,,,0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,5 @@ | ||
{ | ||
"newContact": { | ||
"firstName": "Julius Francisco", | ||
"lastName": "Doe", | ||
"address": "Calle de Camino de Santiago" | ||
"lastName": "Lastly" | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,27 @@ | ||
http: | ||
https://suitecrm:{{ .Vars.service.ports.https }}: | ||
status: 200 | ||
allow-insecure: true | ||
command: | ||
user-id-test: | ||
exec: if [ "$(id -u)" -eq 0 ]; then exit 1; fi | ||
check-user-info: | ||
exec: id | ||
exit-status: 0 | ||
stdout: [] | ||
stderr: [] | ||
stdout: | ||
- uid={{ .Vars.containerSecurityContext.runAsUser }} | ||
- /groups=.*{{ .Vars.podSecurityContext.fsGroup }}/ | ||
file: | ||
/opt/bitnami/suitecrm/sugar_version.json: | ||
mode: "0664" | ||
filetype: file | ||
contains: | ||
- sugar_db_version | ||
- sugar_version | ||
/bitnami/suitecrm: | ||
exists: true | ||
/opt/bitnami/suitecrm/config.php: | ||
mode: "0755" | ||
filetype: file | ||
contains: | ||
- vmware-suitecrm | ||
- dbconfig | ||
filetype: directory | ||
mode: '2775' | ||
owner: root | ||
/etc/hosts: | ||
exists: true | ||
/opt/bitnami/apache/conf/extra/httpd-manual.conf: | ||
mode: "0664" | ||
filetype: file | ||
exists: true | ||
group: root | ||
contains: | ||
{{ range .Vars.hostAliases }} | ||
{{ $ip := .ip }} | ||
{{ range $host := .hostnames }} | ||
- /{{ $ip }}.*{{$host}}/ | ||
{{ end }} | ||
{{ end }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
hostAliases: | ||
- ip: "127.0.0.1" | ||
hostnames: | ||
- "status.localhost" | ||
podSecurityContext: | ||
fsGroup: 1002 | ||
containerSecurityContext: | ||
runAsUser: 1002 | ||
service: | ||
ports: | ||
https: 444 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters