|
|
|
@ -67,6 +67,7 @@ BUILD_CONTAINER_NAME?=consul-builder
|
|
|
|
|
CONSUL_IMAGE_VERSION?=latest
|
|
|
|
|
ENVOY_VERSION?='1.25.4'
|
|
|
|
|
CONSUL_DATAPLANE_IMAGE := $(or $(CONSUL_DATAPLANE_IMAGE),"docker.io/hashicorppreview/consul-dataplane:1.3-dev-ubi")
|
|
|
|
|
DEPLOYER_CONSUL_DATAPLANE_IMAGE := $(or $(DEPLOYER_CONSUL_DATAPLANE_IMAGE), "docker.io/hashicorppreview/consul-dataplane:1.3-dev")
|
|
|
|
|
|
|
|
|
|
CONSUL_VERSION?=$(shell cat version/VERSION)
|
|
|
|
|
|
|
|
|
@ -339,20 +340,67 @@ other-consul: ## Checking for other consul instances
|
|
|
|
|
# NOTE: Always uses amd64 images, even when running on M1 macs, to match CI/CD environment.
|
|
|
|
|
# You can also specify the envoy version (example: 1.27.0) setting the environment variable: ENVOY_VERSION=1.27.0
|
|
|
|
|
.PHONY: test-envoy-integ
|
|
|
|
|
test-envoy-integ: $(ENVOY_INTEG_DEPS) ## Run integration tests.
|
|
|
|
|
test-envoy-integ: $(ENVOY_INTEG_DEPS) ## Run envoy integration tests.
|
|
|
|
|
@go test -v -timeout=30m -tags integration $(GO_TEST_FLAGS) ./test/integration/connect/envoy
|
|
|
|
|
|
|
|
|
|
# NOTE: Use DOCKER_BUILDKIT=0, if docker build fails to resolve consul:local base image
|
|
|
|
|
.PHONY: test-compat-integ-setup
|
|
|
|
|
test-compat-integ-setup: dev-docker
|
|
|
|
|
@docker tag consul-dev:latest $(CONSUL_COMPAT_TEST_IMAGE):local
|
|
|
|
|
@docker run --rm -t $(CONSUL_COMPAT_TEST_IMAGE):local consul version
|
|
|
|
|
test-compat-integ-setup: test-deployer-setup
|
|
|
|
|
@# 'consul-envoy:target-version' is needed by compatibility integ test
|
|
|
|
|
@docker build -t consul-envoy:target-version --build-arg CONSUL_IMAGE=$(CONSUL_COMPAT_TEST_IMAGE):local --build-arg ENVOY_VERSION=${ENVOY_VERSION} -f ./test/integration/consul-container/assets/Dockerfile-consul-envoy ./test/integration/consul-container/assets
|
|
|
|
|
@docker build -t consul-dataplane:local --build-arg CONSUL_IMAGE=$(CONSUL_COMPAT_TEST_IMAGE):local --build-arg CONSUL_DATAPLANE_IMAGE=${CONSUL_DATAPLANE_IMAGE} -f ./test/integration/consul-container/assets/Dockerfile-consul-dataplane ./test/integration/consul-container/assets
|
|
|
|
|
|
|
|
|
|
# NOTE: Use DOCKER_BUILDKIT=0, if docker build fails to resolve consul:local base image
|
|
|
|
|
.PHONY: test-deployer-setup
|
|
|
|
|
test-deployer-setup: dev-docker
|
|
|
|
|
@docker tag consul-dev:latest $(CONSUL_COMPAT_TEST_IMAGE):local
|
|
|
|
|
@docker run --rm -t $(CONSUL_COMPAT_TEST_IMAGE):local consul version
|
|
|
|
|
|
|
|
|
|
.PHONY: test-deployer
|
|
|
|
|
test-deployer: test-deployer-setup ## Run deployer-based integration tests (skipping peering_commontopo).
|
|
|
|
|
@cd ./test-integ && \
|
|
|
|
|
NOLOGBUFFER=1 \
|
|
|
|
|
TEST_LOG_LEVEL=debug \
|
|
|
|
|
DEPLOYER_CONSUL_DATAPLANE_IMAGE=$(DEPLOYER_CONSUL_DATAPLANE_IMAGE) \
|
|
|
|
|
gotestsum \
|
|
|
|
|
--raw-command \
|
|
|
|
|
--format=standard-verbose \
|
|
|
|
|
--debug \
|
|
|
|
|
-- \
|
|
|
|
|
go test \
|
|
|
|
|
-tags "$(GOTAGS)" \
|
|
|
|
|
-timeout=20m \
|
|
|
|
|
-json \
|
|
|
|
|
$(shell sh -c "cd test-integ ; go list -tags \"$(GOTAGS)\" ./... | grep -v peering_commontopo") \
|
|
|
|
|
--target-image $(CONSUL_COMPAT_TEST_IMAGE) \
|
|
|
|
|
--target-version local \
|
|
|
|
|
--latest-image $(CONSUL_COMPAT_TEST_IMAGE) \
|
|
|
|
|
--latest-version latest
|
|
|
|
|
|
|
|
|
|
.PHONY: test-deployer-peering
|
|
|
|
|
test-deployer-peering: test-deployer-setup ## Run deployer-based integration tests (just peering_commontopo).
|
|
|
|
|
@cd ./test-integ/peering_commontopo && \
|
|
|
|
|
NOLOGBUFFER=1 \
|
|
|
|
|
TEST_LOG_LEVEL=debug \
|
|
|
|
|
DEPLOYER_CONSUL_DATAPLANE_IMAGE=$(DEPLOYER_CONSUL_DATAPLANE_IMAGE) \
|
|
|
|
|
gotestsum \
|
|
|
|
|
--raw-command \
|
|
|
|
|
--format=standard-verbose \
|
|
|
|
|
--debug \
|
|
|
|
|
-- \
|
|
|
|
|
go test \
|
|
|
|
|
-tags "$(GOTAGS)" \
|
|
|
|
|
-timeout=20m \
|
|
|
|
|
-json \
|
|
|
|
|
. \
|
|
|
|
|
--target-image $(CONSUL_COMPAT_TEST_IMAGE) \
|
|
|
|
|
--target-version local \
|
|
|
|
|
--latest-image $(CONSUL_COMPAT_TEST_IMAGE) \
|
|
|
|
|
--latest-version latest
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.PHONY: test-compat-integ
|
|
|
|
|
test-compat-integ: test-compat-integ-setup ## Test compat integ
|
|
|
|
|
test-compat-integ: test-compat-integ-setup ## Run consul-container based integration tests.
|
|
|
|
|
ifeq ("$(GOTESTSUM_PATH)","")
|
|
|
|
|
@cd ./test/integration/consul-container && \
|
|
|
|
|
go test \
|
|
|
|
|