1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
|
-include .env
BIN_DIR := $(GOPATH)/bin
INTEGRATION_DIR := ./test/integration
FIXTURES_DIR := $(INTEGRATION_DIR)/fixtures
TEST_TAGS := integration
TEST_TIMEOUT := 5h
SKIP_DOCKER ?= 0
GOLANGCILINT := golangci-lint
GOLANGCILINT_IMG := golangci/golangci-lint:latest
GOLANGCILINT_ARGS := run
LINODE_URL ?= https://api.linode.com/
PACKAGES := $(shell go list ./... | grep -v integration)
SKIP_LINT ?= 0
.PHONY: build vet test refresh-fixtures clean clean-cov clean-fixtures lint run_fixtures sanitize fixtures godoc test-int test-unit test-smoke testcov tidy
test: build lint test-unit test-int
citest: lint test
test-unit:
go test -v $(PACKAGES) $(TEST_ARGS)
cd test && make test-unit
test-int:
cd test && make test-int TEST_TIMEOUT=$(TEST_TIMEOUT)
testcov-func:
@go test -v -coverprofile="coverage.txt" . > /dev/null 2>&1
@go tool cover -func coverage.txt
# Note for WSL Users, set BROWSER=wslview
testcov-html:
@go test -v -coverprofile="coverage.txt" . > /dev/null 2>&1
@go tool cover -html coverage.txt
test-smoke:
cd test && make test-smoke TEST_TIMEOUT=$(TEST_TIMEOUT)
build: vet lint
go build ./...
cd k8s && go build ./...
vet:
go vet ./...
cd k8s && go vet ./...
lint:
ifeq ($(SKIP_LINT), 1)
@echo Skipping lint stage
else ifeq ($(SKIP_DOCKER), 1)
$(GOLANGCILINT) $(GOLANGCILINT_ARGS)
else
docker run --rm -v $(shell pwd):/app -w /app $(GOLANGCILINT_IMG) $(GOLANGCILINT) $(GOLANGCILINT_ARGS)
endif
clean: clean-cov
clean-cov:
@-rm -f coverage.txt
clean-fixtures:
@-rm -f fixtures/*.yaml
refresh-fixtures: clean-fixtures fixtures
run_fixtures:
@echo "* Running fixtures"
cd $(INTEGRATION_DIR) && \
LINODE_FIXTURE_MODE="record" \
LINODE_TOKEN=$(LINODE_TOKEN) \
LINODE_API_VERSION="v4beta" \
LINODE_URL="$(LINODE_URL)" \
GO111MODULE="on" \
go test -timeout=$(TEST_TIMEOUT) -v $(TEST_ARGS)
sanitize:
@echo "* Sanitizing fixtures"
@for yaml in $(FIXTURES_DIR)/*yaml; do \
sed -E -i.bak \
-e 's_stats/20[0-9]{2}/[1-9][0-2]?_stats/2018/1_g' \
-e 's/(([0-9a-fA-F]{1,4}:){7,7}[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,7}:|([0-9a-fA-F]{1,4}:){1,6}:[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,5}(:[0-9a-fA-F]{1,4}){1,2}|([0-9a-fA-F]{1,4}:){1,4}(:[0-9a-fA-F]{1,4}){1,3}|([0-9a-fA-F]{1,4}:){1,3}(:[0-9a-fA-F]{1,4}){1,4}|([0-9a-fA-F]{1,4}:){1,2}(:[0-9a-fA-F]{1,4}){1,5}|[0-9a-fA-F]{1,4}:((:[0-9a-fA-F]{1,4}){1,6})|:((:[0-9a-fA-F]{1,4}){1,7}|:)|fe80:(:[0-9a-fA-F]{0,4}){0,4}%[0-9a-zA-Z]{1,}|::(ffff(:0{1,4}){0,1}:){0,1}((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])|([0-9a-fA-F]{1,4}:){1,4}:((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9]))/1234::5678/g' \
$$yaml; \
done
@find $(FIXTURES_DIR) -name *yaml.bak -exec rm {} \;
fixtures: run_fixtures sanitize
godoc:
@godoc -http=:6060
tidy:
go mod tidy
cd k8s && go mod tidy
cd test && go mod tidy
|