forked from ratify-project/ratify
-
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.
feat: Add automated test for quick start test (ratify-project#1045)
Signed-off-by: Susan Shi <[email protected]>
- Loading branch information
Showing
4 changed files
with
91 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
name: quick-start | ||
|
||
on: | ||
pull_request_target: | ||
types: [labeled] | ||
pull_request: | ||
branches: | ||
- main | ||
- 1.0.0* | ||
push: | ||
branches: | ||
- 1.0.0* | ||
- main | ||
workflow_dispatch: | ||
|
||
jobs: | ||
test-quick-start: | ||
name: "Run quick start test" | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 60 | ||
permissions: | ||
contents: read | ||
strategy: | ||
matrix: | ||
KUBERNETES_VERSION: ["1.26.3"] | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0 | ||
- name: setup go environment | ||
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0 | ||
with: | ||
go-version: "1.20" | ||
- name: Run tidy | ||
run: go mod tidy | ||
- name: Bootstrap e2e | ||
run: | | ||
mkdir -p $GITHUB_WORKSPACE/bin | ||
echo "$GITHUB_WORKSPACE/bin" >> $GITHUB_PATH | ||
make e2e-bootstrap KUBERNETES_VERSION=${{ matrix.KUBERNETES_VERSION }} | ||
make generate-certs | ||
- name: Run e2e with config policy | ||
run: | | ||
make e2e-helmfile-install | ||
make e2e-helmfile-deploy-released-ratify | ||
make test-quick-start | ||
- name: Save logs | ||
if: ${{ always() }} | ||
run: | | ||
kubectl logs -n gatekeeper-system -l app=ratify --tail=-1 > logs-ratify-preinstall-${{ matrix.KUBERNETES_VERSION }}-config-policy.json | ||
kubectl logs -n gatekeeper-system -l app.kubernetes.io/name=ratify --tail=-1 > logs-ratify-${{ matrix.KUBERNETES_VERSION }}-config-policy.json | ||
- name: Upload artifacts | ||
uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3.1.2 | ||
if: ${{ always() }} | ||
with: | ||
name: e2e-logs | ||
path: | | ||
logs-*.json |
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
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,12 @@ | ||
#!/usr/bin/env bats | ||
|
||
load helpers | ||
|
||
@test "validate quick start steps" { | ||
run kubectl run demo --image=ghcr.io/deislabs/ratify/notary-image:signed | ||
assert_success | ||
|
||
# validate unsigned fails | ||
run kubectl run demo1 --image=ghcr.io/deislabs/ratify/notary-image:unsigned | ||
assert_failure | ||
} |