
_This is the first time I ever messed with helm and is an experiment to show what prevents the tests to pass and how far it still depends on the gitea chart_ ### Description of the change - Deletes a single test that seems to depend directly on gitea - make all tests pass - Moves all value accesses from `actions` one level up - Copies content of the gitea chart required by the existing test - Reveals all dependencies that needs to be decoupled - Fixes readme generation - add package.json - copy dependent readme section from helm-gitea - Removes all dependencies - giteaRootURL is now required to be provided - consistency check that this value has been provided - added test for consistency failure - nc command no longer uses an hardcoded dns name and is checked in tests - added test - Copied yamllint from helm-gitea - added pnpm lock file exclusion - Installed pnpm in the workflow - Updated make unittest command in CI to unittest-helm ### Benefits The existing tests are passing ### Possible drawbacks The provision job might still not work. ### Applicable issues - Fixes #5 ### Additional information The following usage should now deploy ```yaml existingSecret: "somesecret" existingSecretKey: "key" ## Specify the root URL of the Gitea instance giteaRootURL: "http://somedomain:3000" ``` ### ⚠ BREAKING - giteaRootURL is now required to be provided - Moves all value accesses from `actions` one level up - The values.yml had this change without updating tests / dev Readme Reviewed-on: https://gitea.com/gitea/helm-actions/pulls/6 Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com> Reviewed-by: justusbunsi <justusbunsi@noreply.gitea.com> Reviewed-by: volker.raschek <markus.pesch@web.de> Co-authored-by: Christopher Homberger <christopher.homberger@web.de> Co-committed-by: Christopher Homberger <christopher.homberger@web.de>
74 lines
2.4 KiB
YAML
74 lines
2.4 KiB
YAML
suite: actions template | consistency checks
|
|
release:
|
|
name: gitea-unittests
|
|
namespace: testing
|
|
templates:
|
|
- templates/01-consistency-checks.yaml
|
|
tests:
|
|
- it: fails when provisioning is enabled BUT persistence is completely disabled
|
|
set:
|
|
persistence:
|
|
enabled: false
|
|
enabled: true
|
|
provisioning:
|
|
enabled: true
|
|
asserts:
|
|
- failedTemplate:
|
|
errorMessage: "persistence.enabled and persistence.mount are required when provisioning is enabled"
|
|
- it: fails when provisioning is enabled BUT mount is disabled, although persistence is enabled
|
|
set:
|
|
persistence:
|
|
enabled: true
|
|
mount: false
|
|
enabled: true
|
|
provisioning:
|
|
enabled: true
|
|
asserts:
|
|
- failedTemplate:
|
|
errorMessage: "persistence.enabled and persistence.mount are required when provisioning is enabled"
|
|
- it: fails when provisioning is enabled AND existingSecret is given
|
|
set:
|
|
enabled: true
|
|
provisioning:
|
|
enabled: true
|
|
existingSecret: "secret-reference"
|
|
asserts:
|
|
- failedTemplate:
|
|
errorMessage: "Can't specify both actions.provisioning.enabled and actions.existingSecret"
|
|
- it: fails when provisioning is disabled BUT existingSecret and existingSecretKey are missing
|
|
set:
|
|
enabled: true
|
|
provisioning:
|
|
enabled: false
|
|
asserts:
|
|
- failedTemplate:
|
|
errorMessage: "existingSecret and existingSecretKey are required when provisioning is disabled"
|
|
- it: fails when provisioning is disabled BUT existingSecretKey is missing
|
|
set:
|
|
enabled: true
|
|
provisioning:
|
|
enabled: false
|
|
existingSecret: "my-secret"
|
|
asserts:
|
|
- failedTemplate:
|
|
errorMessage: "existingSecret and existingSecretKey are required when provisioning is disabled"
|
|
- it: fails when provisioning is disabled BUT existingSecret is missing
|
|
set:
|
|
enabled: true
|
|
provisioning:
|
|
enabled: false
|
|
existingSecretKey: "my-secret-key"
|
|
asserts:
|
|
- failedTemplate:
|
|
errorMessage: "existingSecret and existingSecretKey are required when provisioning is disabled"
|
|
- it: fails when LOCAL_ROOT_URL is missing
|
|
set:
|
|
enabled: true
|
|
provisioning:
|
|
enabled: false
|
|
existingSecret: "my-secret"
|
|
existingSecretKey: "my-secret-key"
|
|
asserts:
|
|
- failedTemplate:
|
|
errorMessage: "giteaRootURL is required"
|