What is a test step¶
A test step is made of three main components used to dermine the actions Chainsaw will perform when executing the step.
Reference documentation
The full structure of the TestStep
is documented here.
Test step lifecycle¶
Test step lifecycle
- The step starts executing operations in the
try
statement - If an operation fails in the
try
statement- If a
catch
statement is present, all operations and collectors are executed
- If a
- If a
finally
statement is present, all operations and collectors are executed
Example¶
Example
apiVersion: chainsaw.kyverno.io/v1alpha1
kind: Test
metadata:
name: test-example
spec:
steps:
- try:
- description: "Description of the try operation"
apply:
file: "path/to/apply.yaml"
assert:
file: "path/to/assert.yaml"
catch: []
finally: []