| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- .PHONY: test examples clean test_full pebble pebble_setup pebble_start pebble_wait pebble_stop boulder boulder_setup boulder_start boulder_stop
- # some variables for path injection, if already set will not override
- GOPATH ?= $(HOME)/go
- BOULDER_PATH ?= $(GOPATH)/src/github.com/letsencrypt/boulder
- PEBBLE_PATH ?= $(GOPATH)/src/github.com/letsencrypt/pebble
- TEST_PATH ?= github.com/eggsampler/acme/v3
- CLIENT ?= unknown
- # tests the code against an already running ca instance
- # to actually do a test against pebble or boulder, including , see the 'pebble' or 'boulder' targets
- test:
- -go clean -testcache
- CGO_ENABLED=1 go test -v -race -coverprofile=coverage-$(CLIENT).out -covermode=atomic $(TEST_PATH)
- examples:
- go build -o /dev/null examples/certbot/certbot.go
- go build -o /dev/null examples/autocert/autocert.go
- go build -o /dev/null examples/zerossl/zerossl.go
- go build -o /dev/null examples/ari/renewalinfo.go
- clean:
- rm -f coverage*.out
- test_full: clean examples pebble pebble_stop boulder boulder_stop
- # sets up & runs pebble (in docker), tests, then stops pebble
- pebble: CLIENT = pebble
- pebble: pebble_setup pebble_start pebble_wait test pebble_stop
- pebble_setup:
- CLIENT=pebble
- mkdir -p $(PEBBLE_PATH)
- -git clone --depth 1 https://github.com/letsencrypt/pebble.git $(PEBBLE_PATH)
- (cd $(PEBBLE_PATH); git checkout -f main && git reset --hard HEAD && git pull -q)
- make pebble_stop
- # runs an instance of pebble using docker
- pebble_start:
- docker-compose -f $(PEBBLE_PATH)/docker-compose.yml up -d
- # waits until pebble responds
- pebble_wait:
- while ! wget --delete-after -q --no-check-certificate "https://localhost:14000/dir" ; do sleep 1 ; done
- # stops the running pebble instance
- pebble_stop:
- docker-compose -f $(PEBBLE_PATH)/docker-compose.yml down
- # sets up & runs boulder (in docker), tests, then stops boulder
- boulder: CLIENT = boulder
- boulder: boulder_setup boulder_start boulder_wait test boulder_stop
- # NB: this edits docker-compose.yml
- boulder_setup:
- mkdir -p $(BOULDER_PATH)
- -git clone --depth 1 https://github.com/letsencrypt/boulder.git $(BOULDER_PATH)
- (cd $(BOULDER_PATH); git checkout -f main && git reset --hard HEAD && git pull -q)
- make boulder_stop
- (cd $(BOULDER_PATH); docker compose run --rm bsetup)
- # runs an instance of boulder
- boulder_start:
- docker-compose -f $(BOULDER_PATH)/docker-compose.yml -f $(BOULDER_PATH)/docker-compose.next.yml -f docker-compose.boulder-temp.yml up -d
- # waits until boulder responds
- boulder_wait:
- while ! wget --delete-after -q --no-check-certificate "http://localhost:4001/directory" ; do sleep 1 ; done
- # stops the running docker instance
- boulder_stop:
- docker-compose -f $(BOULDER_PATH)/docker-compose.yml -f $(BOULDER_PATH)/docker-compose.next.yml -f docker-compose.boulder-temp.yml down
|