This test suite aims to cover Trusted Artifact Signer deployment with end-to-end (E2E) tests, primarily focused on OpenShift deployment.
- Trusted Artifact Signer (TAS): For secure signing capabilities.
- OpenShift Pipelines: To support CI/CD workflows.
-
Set environment variables using provided scripts:
- Linux/macOS:
tas-env-variables.sh
- Windows Command Prompt:
tas-env-variables.bat
- Windows PowerShell:
tas-env-variables.ps1
- Linux/macOS:
-
Optional: Set
CLI_STRATEGY
environment variable to eitheropenshift
orlocal
:
export CLI_STRATEGY=openshift
This configures the test suite to download cosign
, gitsign
, rekor-cli
, ec
, tuftool
binaries from the cluster's console. If not set, the suite will use local binaries by default.
- Optional: To use a manual image setup, set the
MANUAL_IMAGE_SETUP
environment variable totrue
and specify theTARGET_IMAGE_NAME
.
export MANUAL_IMAGE_SETUP=true
export TARGET_IMAGE_NAME="ttl.sh/$(uuidgen):10m"
podman push $TARGET_IMAGE_NAME
For daemonless runners, you can use tools like skopeo.
skopeo copy docker://docker.io/library/alpine:latest docker://$TARGET_IMAGE_NAME
Options:
- Follow instructions at https://github.com/securesign/sigstore-ocp/tree/main
- Install from OperatorHub
make all
make env test
You can also run the tests using go test
command or using the ginkgo client.
If you decide to do so, you need to set ENV variables
source tas-env-variables.sh && go test -v ./test/... --ginkgo.v
To run tests in specific directories:
ginkgo -v test/cosign test/gitsign
- Some tests may require specific configurations (e.g., GitHub token) and will be skipped if not fulfilled.
- The test suite uses the Ginkgo framework.
- Environment variables are defined in values.go.