mirror of
https://github.com/kyverno/kyverno.git
synced 2024-12-15 17:51:20 +00:00
chore: group unit and cli tests targets and separate sections (#4693)
Signed-off-by: Charles-Edouard Brétéché <charled.breteche@gmail.com> Signed-off-by: Charles-Edouard Brétéché <charled.breteche@gmail.com>
This commit is contained in:
parent
2a5407f7f0
commit
ec5c469175
1 changed files with 61 additions and 48 deletions
109
Makefile
109
Makefile
|
@ -16,7 +16,6 @@ IMAGE_TAG_LATEST_DEV = $(shell git describe --match "[0-9].[0-9]-dev*" | cut -d
|
||||||
IMAGE_TAG_DEV = $(GIT_VERSION_DEV)
|
IMAGE_TAG_DEV = $(GIT_VERSION_DEV)
|
||||||
IMAGE_TAG ?= $(GIT_VERSION)
|
IMAGE_TAG ?= $(GIT_VERSION)
|
||||||
K8S_VERSION ?= $(shell kubectl version --short | grep -i server | cut -d" " -f3 | cut -c2-)
|
K8S_VERSION ?= $(shell kubectl version --short | grep -i server | cut -d" " -f3 | cut -c2-)
|
||||||
TEST_GIT_BRANCH ?= main
|
|
||||||
KIND_IMAGE ?= kindest/node:v1.24.4
|
KIND_IMAGE ?= kindest/node:v1.24.4
|
||||||
KIND_NAME ?= kind
|
KIND_NAME ?= kind
|
||||||
GOOS ?= $(shell go env GOOS)
|
GOOS ?= $(shell go env GOOS)
|
||||||
|
@ -488,6 +487,67 @@ verify-helm: codegen-helm-all ## Check Helm charts are up to date
|
||||||
.PHONY: verify-codegen
|
.PHONY: verify-codegen
|
||||||
verify-codegen: verify-crds verify-client verify-deepcopy verify-api-docs verify-helm ## Verify all generated code and docs are up to date
|
verify-codegen: verify-crds verify-client verify-deepcopy verify-api-docs verify-helm ## Verify all generated code and docs are up to date
|
||||||
|
|
||||||
|
##############
|
||||||
|
# UNIT TESTS #
|
||||||
|
##############
|
||||||
|
|
||||||
|
CODE_COVERAGE_FILE := coverage
|
||||||
|
CODE_COVERAGE_FILE_TXT := $(CODE_COVERAGE_FILE).txt
|
||||||
|
CODE_COVERAGE_FILE_HTML := $(CODE_COVERAGE_FILE).html
|
||||||
|
|
||||||
|
.PHONY: test
|
||||||
|
test: test-clean test-unit test-e2e ## Clean tests cache then run unit and e2e tests
|
||||||
|
|
||||||
|
.PHONY: test-clean
|
||||||
|
test-clean: ## Clean tests cache
|
||||||
|
@echo Clean test cache...
|
||||||
|
@go clean -testcache ./...
|
||||||
|
|
||||||
|
.PHONY: test-unit
|
||||||
|
test-unit: test-clean $(GO_ACC) ## Run unit tests
|
||||||
|
@echo Running unit tests...
|
||||||
|
@$(GO_ACC) ./... -o $(CODE_COVERAGE_FILE_TXT)
|
||||||
|
|
||||||
|
.PHONY: code-cov-report
|
||||||
|
code-cov-report: test-clean ## Generate code coverage report
|
||||||
|
@echo Generating code coverage report...
|
||||||
|
@GO111MODULE=on go test -v -coverprofile=coverage.out ./...
|
||||||
|
@go tool cover -func=coverage.out -o $(CODE_COVERAGE_FILE_TXT)
|
||||||
|
@go tool cover -html=coverage.out -o $(CODE_COVERAGE_FILE_HTML)
|
||||||
|
|
||||||
|
#############
|
||||||
|
# CLI TESTS #
|
||||||
|
#############
|
||||||
|
|
||||||
|
TEST_GIT_BRANCH ?= main
|
||||||
|
|
||||||
|
.PHONY: test-cli
|
||||||
|
test-cli: test-cli-policies test-cli-local test-cli-local-mutate test-cli-local-generate test-cli-test-case-selector-flag test-cli-registry ## Run all CLI tests
|
||||||
|
|
||||||
|
.PHONY: test-cli-policies
|
||||||
|
test-cli-policies: $(CLI_BIN)
|
||||||
|
@$(CLI_BIN) test https://github.com/kyverno/policies/$(TEST_GIT_BRANCH)
|
||||||
|
|
||||||
|
.PHONY: test-cli-local
|
||||||
|
test-cli-local: $(CLI_BIN)
|
||||||
|
@$(CLI_BIN) test ./test/cli/test
|
||||||
|
|
||||||
|
.PHONY: test-cli-local-mutate
|
||||||
|
test-cli-local-mutate: $(CLI_BIN)
|
||||||
|
@$(CLI_BIN) test ./test/cli/test-mutate
|
||||||
|
|
||||||
|
.PHONY: test-cli-local-generate
|
||||||
|
test-cli-local-generate: $(CLI_BIN)
|
||||||
|
@$(CLI_BIN) test ./test/cli/test-generate
|
||||||
|
|
||||||
|
.PHONY: test-cli-test-case-selector-flag
|
||||||
|
test-cli-test-case-selector-flag: $(CLI_BIN)
|
||||||
|
@$(CLI_BIN) test ./test/cli/test --test-case-selector "policy=disallow-latest-tag, rule=require-image-tag, resource=test-require-image-tag-pass"
|
||||||
|
|
||||||
|
.PHONY: test-cli-registry
|
||||||
|
test-cli-registry: $(CLI_BIN)
|
||||||
|
@$(CLI_BIN) test ./test/cli/registry --registry
|
||||||
|
|
||||||
##################################
|
##################################
|
||||||
# Create e2e Infrastructure
|
# Create e2e Infrastructure
|
||||||
##################################
|
##################################
|
||||||
|
@ -519,53 +579,6 @@ create-e2e-infrastructure: e2e-init-container e2e-kyverno-container e2e-kustomiz
|
||||||
# Testing & Code-Coverage
|
# Testing & Code-Coverage
|
||||||
##################################
|
##################################
|
||||||
|
|
||||||
CODE_COVERAGE_FILE:= coverage
|
|
||||||
CODE_COVERAGE_FILE_TXT := $(CODE_COVERAGE_FILE).txt
|
|
||||||
CODE_COVERAGE_FILE_HTML := $(CODE_COVERAGE_FILE).html
|
|
||||||
|
|
||||||
test: test-clean test-unit test-e2e ## Clean tests cache then run unit and e2e tests
|
|
||||||
|
|
||||||
test-clean: ## Clean tests cache
|
|
||||||
@echo " cleaning test cache"
|
|
||||||
go clean -testcache ./...
|
|
||||||
|
|
||||||
.PHONY: test-cli
|
|
||||||
test-cli: test-cli-policies test-cli-local test-cli-local-mutate test-cli-local-generate test-cli-test-case-selector-flag test-cli-registry
|
|
||||||
|
|
||||||
.PHONY: test-cli-policies
|
|
||||||
test-cli-policies: $(CLI_BIN)
|
|
||||||
@$(CLI_BIN) test https://github.com/kyverno/policies/$(TEST_GIT_BRANCH)
|
|
||||||
|
|
||||||
.PHONY: test-cli-local
|
|
||||||
test-cli-local: $(CLI_BIN)
|
|
||||||
@$(CLI_BIN) test ./test/cli/test
|
|
||||||
|
|
||||||
.PHONY: test-cli-local-mutate
|
|
||||||
test-cli-local-mutate: $(CLI_BIN)
|
|
||||||
@$(CLI_BIN) test ./test/cli/test-mutate
|
|
||||||
|
|
||||||
.PHONY: test-cli-local-generate
|
|
||||||
test-cli-local-generate: $(CLI_BIN)
|
|
||||||
@$(CLI_BIN) test ./test/cli/test-generate
|
|
||||||
|
|
||||||
.PHONY: test-cli-test-case-selector-flag
|
|
||||||
test-cli-test-case-selector-flag: $(CLI_BIN)
|
|
||||||
@$(CLI_BIN) test ./test/cli/test --test-case-selector "policy=disallow-latest-tag, rule=require-image-tag, resource=test-require-image-tag-pass"
|
|
||||||
|
|
||||||
.PHONY: test-cli-registry
|
|
||||||
test-cli-registry: $(CLI_BIN)
|
|
||||||
@$(CLI_BIN) test ./test/cli/registry --registry
|
|
||||||
|
|
||||||
test-unit: $(GO_ACC) ## Run unit tests
|
|
||||||
@echo " running unit tests"
|
|
||||||
$(GO_ACC) ./... -o $(CODE_COVERAGE_FILE_TXT)
|
|
||||||
|
|
||||||
code-cov-report: ## Generate code coverage report
|
|
||||||
@echo " generating code coverage report"
|
|
||||||
GO111MODULE=on go test -v -coverprofile=coverage.out ./...
|
|
||||||
go tool cover -func=coverage.out -o $(CODE_COVERAGE_FILE_TXT)
|
|
||||||
go tool cover -html=coverage.out -o $(CODE_COVERAGE_FILE_HTML)
|
|
||||||
|
|
||||||
# Test E2E
|
# Test E2E
|
||||||
test-e2e:
|
test-e2e:
|
||||||
E2E=ok K8S_VERSION=$(K8S_VERSION) go test ./test/e2e/verifyimages -v
|
E2E=ok K8S_VERSION=$(K8S_VERSION) go test ./test/e2e/verifyimages -v
|
||||||
|
|
Loading…
Reference in a new issue