Skip to main content

Helm Charts Testing

Helm charts

Helm charts simplify Kubernetes app management but can be complex to configure correctly. Testing Helm charts ensures templates render as expected, minimizing deployment errors and enhancing reliability. That is, since it allows for catching misconfigurations early and detecting regressions.

Testing Framework: helm-unittest

helm-unittest is a BDD-style testing framework for Helm charts, offering YAML-based test definitions, local rendering, and snapshot testing.

Installation:

helm plugin install https://github.com/helm-unittest/helm-unittest.git

Writing Tests with helm-unittest

Currently, we use Snapshot Testing to verify the correctness of the rendered manifests. This is done by comparing the rendered manifests with a snapshot of the expected manifests.

Example Test Cases

suite: Full Snapshot
tests:
- it: matches the snapshot
chart:
version: 0.0.0
appVersion: 0.0.0
set:
cascadingRules.enabled: true
imagePullSecrets: [{name: foo}]
parser:
env: [{name: foo, value: bar}]
scopeLimiterAliases: {foo: bar}
affinity: {foo: bar}
tolerations: [{foo: bar}]
resources: {foo: bar}
scanner:
nameAppend: foo
resources: {foo: bar}
env: [{name: foo, value: bar}]
extraContainers: [{name: foo, image: bar}]
podSecurityContext: {fsGroup: 1234}
affinity: {foo: bar}
tolerations: [{foo: bar}]
asserts:
- matchSnapshot: {}

Running Tests

In the helm-chart folder, run tests with:

make helm-unit-tests

or

helm unittest .

And review the output for any failures.

The make command will also run inside the Operator, AutoDiscovery, Scanners, Hooks or Demo-Targets root folders and tests all the Helm Charts in the corresponding folder.

CI/CD Integration

The Helm charts tests are integrated into the CI/CD pipeline. Operator, AutoDiscovery, Scanners, Hooks and Demo-Targets Charts are tested. The tests are run automatically on every pull request and merge to the main branch. See the CI/CD Pipeline for reference.