From eb8bd71ac2a2fed1d9184d1659c36cd8453c7901 Mon Sep 17 00:00:00 2001 From: Shuting Zhao Date: Thu, 10 Oct 2019 19:13:04 -0700 Subject: [PATCH] add test scenario - missing image tag --- pkg/testrunner/testrunner_test.go | 4 ++++ .../require_image_tag_not_latest_notag.yaml | 10 +++++++++ ...te_require_image_tag_not_latest_notag.yaml | 22 +++++++++++++++++++ 3 files changed, 36 insertions(+) create mode 100644 test/manifest/require_image_tag_not_latest_notag.yaml create mode 100644 test/scenarios/test/scenario_valiadate_require_image_tag_not_latest_notag.yaml diff --git a/pkg/testrunner/testrunner_test.go b/pkg/testrunner/testrunner_test.go index ebdaf165c4..79ff434e85 100644 --- a/pkg/testrunner/testrunner_test.go +++ b/pkg/testrunner/testrunner_test.go @@ -64,6 +64,10 @@ func Test_validate_require_image_tag_not_latest_deny(t *testing.T) { testScenario(t, "test/scenarios/test/scenario_valiadate_require_image_tag_not_latest_deny.yaml") } +func Test_validate_require_image_tag_not_latest_notag(t *testing.T) { + testScenario(t, "test/scenarios/test/scenario_valiadate_require_image_tag_not_latest_notag.yaml") +} + func Test_validate_require_image_tag_not_latest_pass(t *testing.T) { testScenario(t, "test/scenarios/test/scenario_valiadate_require_image_tag_not_latest_pass.yaml") } diff --git a/test/manifest/require_image_tag_not_latest_notag.yaml b/test/manifest/require_image_tag_not_latest_notag.yaml new file mode 100644 index 0000000000..c83c830f72 --- /dev/null +++ b/test/manifest/require_image_tag_not_latest_notag.yaml @@ -0,0 +1,10 @@ +apiVersion: v1 +kind: Pod +metadata: + name: myapp-pod + labels: + app: myapp +spec: + containers: + - name: nginx + image: nginx \ No newline at end of file diff --git a/test/scenarios/test/scenario_valiadate_require_image_tag_not_latest_notag.yaml b/test/scenarios/test/scenario_valiadate_require_image_tag_not_latest_notag.yaml new file mode 100644 index 0000000000..33d18c4805 --- /dev/null +++ b/test/scenarios/test/scenario_valiadate_require_image_tag_not_latest_notag.yaml @@ -0,0 +1,22 @@ +# file path relative to project root +input: + policy: samples/best_practices/require_image_tag_not_latest.yaml + resource: test/manifest/require_image_tag_not_latest_notag.yaml +expected: + validation: + policyresponse: + policy: validate-image-tag + resource: + kind: Pod + apiVersion: v1 + namespace: '' + name: myapp-pod + rules: + - name: image-tag-notspecified + type: Validation + message: Validation rule 'image-tag-notspecified' failed at '/spec/containers/0/image/' for resource Pod//myapp-pod. image tag not specified + success: false + - name: image-tag-not-latest + type: Validation + message: Validation rule 'image-tag-not-latest' succesfully validated + success: true