This repository has been archived by the owner on Mar 11, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 86
/
Makefile
407 lines (349 loc) · 14.3 KB
/
Makefile
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
PROJECT_NAME=fabric8-wit
CUR_DIR=$(shell pwd)
TMP_PATH=$(CUR_DIR)/tmp
INSTALL_PREFIX=$(CUR_DIR)/bin
VENDOR_DIR=vendor
ifeq ($(OS),Windows_NT)
include ./.make/Makefile.win
else
include ./.make/Makefile.lnx
endif
SOURCE_DIR ?= .
SOURCES := $(shell find $(SOURCE_DIR) -path $(SOURCE_DIR)/vendor -prune -o -name '*.go' -print)
DESIGN_DIR=design
DESIGNS := $(shell find $(SOURCE_DIR)/$(DESIGN_DIR) -path $(SOURCE_DIR)/vendor -prune -o -name '*.go' -print)
# Find all required tools:
GIT_BIN := $(shell command -v $(GIT_BIN_NAME) 2> /dev/null)
DEP_BIN_NAME := dep
DEP_BIN_DIR := $(TMP_PATH)/bin
DEP_BIN := $(DEP_BIN_DIR)/$(DEP_BIN_NAME)
DEP_VERSION=v0.4.1
GO_BIN := $(shell command -v $(GO_BIN_NAME) 2> /dev/null)
DOCKER_COMPOSE_BIN := $(shell command -v $(DOCKER_COMPOSE_BIN_NAME) 2> /dev/null)
DOCKER_BIN := $(shell command -v $(DOCKER_BIN_NAME) 2> /dev/null)
MINIMOCK_BIN=$(VENDOR_DIR)/github.com/gojuno/minimock/cmd/minimock/minimock
# Define and get the vakue for UNAME_S variable from shell
UNAME_S := $(shell uname -s)
# This is a fix for a non-existing user in passwd file when running in a docker
# container and trying to clone repos of dependencies
GIT_COMMITTER_NAME ?= "user"
GIT_COMMITTER_EMAIL ?= "[email protected]"
export GIT_COMMITTER_NAME
export GIT_COMMITTER_EMAIL
# Used as target and binary output names... defined in includes
CLIENT_DIR=tool/wit-cli
COMMIT=$(shell git rev-parse HEAD)
GITUNTRACKEDCHANGES := $(shell git status --porcelain --untracked-files=no)
ifneq ($(GITUNTRACKEDCHANGES),)
COMMIT := $(COMMIT)-dirty
endif
BUILD_TIME=`date -u '+%Y-%m-%dT%H:%M:%SZ'`
PACKAGE_NAME := github.com/fabric8-services/fabric8-wit
# For the global "clean" target all targets in this variable will be executed
CLEAN_TARGETS =
# Pass in build time variables to main
LDFLAGS=-ldflags "-X ${PACKAGE_NAME}/controller.Commit=${COMMIT} -X ${PACKAGE_NAME}/controller.BuildTime=${BUILD_TIME}"
# Call this function with $(call log-info,"Your message")
define log-info =
@echo "INFO: $(1)"
endef
# If nothing was specified, run all targets as if in a fresh clone
.PHONY: all
## Default target - fetch dependencies, generate code and build.
all: prebuild-check deps generate build
.PHONY: help
# Based on https://gist.github.com/rcmachado/af3db315e31383502660
## Display this help text.
help:/
$(info Available targets)
$(info -----------------)
@awk '/^[a-zA-Z\-\_0-9]+:/ { \
helpMessage = match(lastLine, /^## (.*)/); \
helpCommand = substr($$1, 0, index($$1, ":")-1); \
if (helpMessage) { \
helpMessage = substr(lastLine, RSTART + 3, RLENGTH); \
gsub(/##/, "\n ", helpMessage); \
} else { \
helpMessage = "(No documentation)"; \
} \
printf "%-35s - %s\n", helpCommand, helpMessage; \
lastLine = "" \
} \
{ hasComment = match(lastLine, /^## (.*)/); \
if(hasComment) { \
lastLine=lastLine$$0; \
} \
else { \
lastLine = $$0 \
} \
}' $(MAKEFILE_LIST)
GOFORMAT_FILES := $(shell find . -name '*.go' | grep -vEf .gofmt_exclude)
.PHONY: check-go-format
## Exists with an error if there are files whose formatting differs from gofmt's
check-go-format: prebuild-check
@gofmt -s -l ${GOFORMAT_FILES} 2>&1 \
| tee /tmp/gofmt-errors \
| read \
&& echo "ERROR: These files differ from gofmt's style (run 'make format-go-code' to fix this):" \
&& cat /tmp/gofmt-errors \
&& exit 1 \
|| true
.PHONY: install-git-hooks
## Creates useful git hooks (e.g. pre-push go-format-code check)
install-git-hooks:
@ln -sfv ../../.pre-push .git/hooks/pre-push
CLEAN_TARGETS += clean-git-hooks
.PHONY: clean-git-hooks
## Removes hooks that have been installed with the "install-git-hooks" target
clean-git-hooks:
@test "$(shell readlink -f .git/hooks/pre-push)" = "${CUR_DIR}/.pre-push" \
&& rm -v .git/hooks/pre-push \
|| true
.PHONY: release
release: prebuild-check deps generate build check-go-format analyze-go-code test-unit-no-coverage-junit
.PHONY: analyze-go-code
## Run a complete static code analysis using the following tools: golint, gocyclo and go-vet.
analyze-go-code: golint gocyclo govet
## Run gocyclo analysis over the code.
golint: $(GOLINT_BIN)
$(info >>--- RESULTS: GOLINT CODE ANALYSIS ---<<)
@$(foreach d,$(GOANALYSIS_DIRS),$(GOLINT_BIN) $d 2>&1 | grep -vEf .golint_exclude || true;)
## Run gocyclo analysis over the code.
gocyclo: $(GOCYCLO_BIN)
$(info >>--- RESULTS: GOCYCLO CODE ANALYSIS ---<<)
@$(foreach d,$(GOANALYSIS_DIRS),$(GOCYCLO_BIN) -over 10 $d | grep -vEf .golint_exclude || true;)
## Run go vet analysis over the code.
govet:
$(info >>--- RESULTS: GO VET CODE ANALYSIS ---<<)
@$(foreach d,$(GOANALYSIS_DIRS),go tool vet --all $d/*.go 2>&1;)
.PHONY: format-go-code
## Formats any go file that differs from gofmt's style
format-go-code: prebuild-check
@gofmt -s -l -w ${GOFORMAT_FILES}
.PHONY: build
## Build server and client.
build: prebuild-check deps generate $(BINARY_SERVER_BIN) $(BINARY_CLIENT_BIN) # do the build
$(BINARY_SERVER_BIN): $(SOURCES)
ifeq ($(OS),Windows_NT)
go build -v ${LDFLAGS} -o "$(shell cygpath --windows '$(BINARY_SERVER_BIN)')"
else
go build -v ${LDFLAGS} -o ${BINARY_SERVER_BIN}
endif
$(BINARY_CLIENT_BIN): $(SOURCES)
ifeq ($(OS),Windows_NT)
cd ${CLIENT_DIR}/ && go build -v ${LDFLAGS} -o "$(shell cygpath --windows '$(BINARY_CLIENT_BIN)')"
else
cd ${CLIENT_DIR}/ && go build -v -o ${BINARY_CLIENT_BIN}
endif
# Build go tool to analysis the code
$(GOLINT_BIN):
cd $(GOLINT_DIR) && go build -v
$(GOCYCLO_BIN):
cd $(VENDOR_DIR)/github.com/fzipp/gocyclo && go build -v
# Pack all migration SQL files into a compilable Go file
migration/sqlbindata.go: $(GO_BINDATA_BIN) $(wildcard migration/sql-files/*.sql) migration/sqlbindata_test.go
$(GO_BINDATA_BIN) \
-o migration/sqlbindata.go \
-pkg migration \
-prefix migration/sql-files \
-nocompress \
migration/sql-files
migration/sqlbindata_test.go: $(GO_BINDATA_BIN) $(wildcard migration/sql-test-files/*.sql)
$(GO_BINDATA_BIN) \
-o migration/sqlbindata_test.go \
-pkg migration_test \
-prefix migration/sql-test-files \
-nocompress \
migration/sql-test-files
spacetemplate/template_assets.go: $(GO_BINDATA_BIN) $(wildcard spacetemplate/assets/*.yaml)
$(GO_BINDATA_BIN) \
-o spacetemplate/template_assets.go \
-pkg spacetemplate \
-prefix spacetemplate/assets \
-nocompress \
spacetemplate/assets
swagger/swagger_assets.go: $(GO_BINDATA_BIN) $(wildcard swagger/*.json)
$(GO_BINDATA_BIN) \
-o swagger/swagger_assets.go \
-pkg swagger \
-prefix swagger \
-nocompress \
swagger
# These are binary tools from our vendored packages
$(GOAGEN_BIN): $(VENDOR_DIR)
cd $(VENDOR_DIR)/github.com/goadesign/goa/goagen && go build -v
$(GO_BINDATA_BIN): $(VENDOR_DIR)
cd $(VENDOR_DIR)/github.com/jteeuwen/go-bindata/go-bindata && go build -v
$(FRESH_BIN): $(VENDOR_DIR)
cd $(VENDOR_DIR)/github.com/pilu/fresh && go build -v
$(GO_JUNIT_BIN): $(VENDOR_DIR)
cd $(VENDOR_DIR)/github.com/jstemmer/go-junit-report && go build -v
CLEAN_TARGETS += clean-artifacts
.PHONY: clean-artifacts
## Removes the ./bin directory.
clean-artifacts:
-rm -rf $(INSTALL_PREFIX)
CLEAN_TARGETS += clean-object-files
.PHONY: clean-object-files
## Runs go clean to remove any executables or other object files.
clean-object-files:
go clean ./...
CLEAN_TARGETS += clean-generated
.PHONY: clean-generated
## Removes all generated code.
clean-generated:
-rm -rf ./app
-rm -rf ./client/
-rm -rf ./swagger/
-rm -rf ./tool/cli/
-rm -f ./migration/sqlbindata.go
-rm -f ./migration/sqlbindata_test.go
-rm -rf ./account/tenant
-rm -rf ./notification/client
-rm -rf ./auth/authservice
-rm -f ./spacetemplate/template_assets.go
CLEAN_TARGETS += clean-sql-generated
.PHONY: clean-sql-generated
## Removes all generated code for SQL migration and tests.
clean-sql-generated:
-rm -f ./migration/sqlbindata.go
-rm -f ./migration/sqlbindata_test.go
CLEAN_TARGETS += clean-vendor
.PHONY: clean-vendor
## Removes the ./vendor directory.
clean-vendor:
-rm -rf $(VENDOR_DIR)
.PHONY: deps
## Download build dependencies.
deps: $(DEP_BIN) $(VENDOR_DIR)
# install dep in a the tmp/bin dir of the repo
$(DEP_BIN):
@echo "Installing 'dep' $(DEP_VERSION) at '$(DEP_BIN_DIR)'..."
mkdir -p $(DEP_BIN_DIR)
ifeq ($(UNAME_S),Darwin)
@curl -L -s https://github.com/golang/dep/releases/download/$(DEP_VERSION)/dep-darwin-amd64 -o $(DEP_BIN)
@cd $(DEP_BIN_DIR) && \
echo "1544afdd4d543574ef8eabed343d683f7211202a65380f8b32035d07ce0c45ef dep" > dep-darwin-amd64.sha256 && \
shasum -a 256 --check dep-darwin-amd64.sha256
else
@curl -L -s https://github.com/golang/dep/releases/download/$(DEP_VERSION)/dep-linux-amd64 -o $(DEP_BIN)
@cd $(DEP_BIN_DIR) && \
echo "31144e465e52ffbc0035248a10ddea61a09bf28b00784fd3fdd9882c8cbb2315 dep" > dep-linux-amd64.sha256 && \
sha256sum -c dep-linux-amd64.sha256
endif
@chmod +x $(DEP_BIN)
$(VENDOR_DIR): Gopkg.toml Gopkg.lock
@echo "checking dependencies..."
@$(DEP_BIN) ensure -v
app/controllers.go: $(DESIGNS) $(GOAGEN_BIN) $(VENDOR_DIR) goasupport/jsonapi_errors_stringer/generator.go goasupport/conditional_request/generator.go goasupport/helper_function/generator.go
$(GOAGEN_BIN) app -d ${PACKAGE_NAME}/${DESIGN_DIR}
$(GOAGEN_BIN) controller -d ${PACKAGE_NAME}/${DESIGN_DIR} -o controller/ --pkg controller --app-pkg ${PACKAGE_NAME}/app
$(GOAGEN_BIN) gen -d ${PACKAGE_NAME}/${DESIGN_DIR} --pkg-path=${PACKAGE_NAME}/goasupport/conditional_request --out app
$(GOAGEN_BIN) gen -d ${PACKAGE_NAME}/${DESIGN_DIR} --pkg-path=${PACKAGE_NAME}/goasupport/helper_function --out app
$(GOAGEN_BIN) gen -d ${PACKAGE_NAME}/${DESIGN_DIR} --pkg-path=${PACKAGE_NAME}/goasupport/jsonapi_errors_stringer --out app
$(GOAGEN_BIN) client -d ${PACKAGE_NAME}/${DESIGN_DIR}
$(GOAGEN_BIN) swagger -d ${PACKAGE_NAME}/${DESIGN_DIR}
$(GOAGEN_BIN) client -d github.com/fabric8-services/fabric8-tenant/design --notool --pkg tenant -o account
$(GOAGEN_BIN) client -d github.com/fabric8-services/fabric8-tenant/design --notool --pkg tenant -o vendor/github.com/fabric8-services/fabric8-auth/account
$(GOAGEN_BIN) client -d github.com/fabric8-services/fabric8-notification/design --notool --pkg client -o notification
$(GOAGEN_BIN) client -d github.com/fabric8-services/fabric8-auth/design --notool --pkg authservice -o auth
$(MINIMOCK_BIN):
@echo "building the minimock binary..."
@cd $(VENDOR_DIR)/github.com/gojuno/minimock/cmd/minimock && go build -v minimock.go
.PHONY: generate-minimock
generate-minimock: deps $(MINIMOCK_BIN) ## Generate Minimock sources. Only necessary after clean or if changes occurred in interfaces.
@echo "Generating mocks..."
-mkdir -p test/controller
$(MINIMOCK_BIN) -i github.com/fabric8-services/fabric8-wit/controller.ClientGetter -o ./test/controller/client_getter_mock.go -t ClientGetterMock
$(MINIMOCK_BIN) -i github.com/fabric8-services/fabric8-wit/controller.OpenshiftIOClient -o ./test/controller/osio_client_mock.go -t OSIOClientMock
-mkdir -p test/kubernetes
$(MINIMOCK_BIN) -i github.com/fabric8-services/fabric8-wit/kubernetes.KubeClientInterface -o ./test/kubernetes/kube_client_mock.go -t KubeClientMock
.PHONY: migrate-database
## Compiles the server and runs the database migration with it
migrate-database: $(BINARY_SERVER_BIN)
$(BINARY_SERVER_BIN) -migrateDatabase
.PHONY: generate
## Generate GOA sources. Only necessary after clean of if changed `design` folder.
generate: app/controllers.go migration/sqlbindata.go spacetemplate/template_assets.go generate-minimock swagger/swagger_assets.go
.PHONY: regenerate
## Runs the "clean-generated" and the "generate" target
regenerate: clean-generated generate
.PHONY: dev
dev: prebuild-check deps generate $(FRESH_BIN) docker-compose-up
F8_DEVELOPER_MODE_ENABLED=true $(FRESH_BIN)
.PHONY: docker-compose-up
docker-compose-up:
ifeq ($(UNAME_S),Darwin)
@echo "Running docker-compose with macOS network settings"
docker-compose -f docker-compose.macos.yml up -d db auth swagger_ui
else
@echo "Running docker-compose with Linux network settings"
docker-compose up -d db auth swagger_ui
endif
MINISHIFT_IP = `minishift ip`
MINISHIFT_URL = http://$(MINISHIFT_IP)
# make sure you have a entry in /etc/hosts for "minishift.local MINISHIFT_IP"
MINISHIFT_HOSTS_ENTRY = http://minishift.local
# Setup AUTH image URL, use default image path and default tag if not provided
AUTH_IMAGE_DEFAULT=quay.io/openshiftio/fabric8-services-fabric8-auth
AUTH_IMAGE_TAG ?= latest
AUTH_IMAGE_URL=$(AUTH_IMAGE_DEFAULT):$(AUTH_IMAGE_TAG)
.PHONY: dev-wit-openshift
## Starts minishift and creates/uses a project named wit-openshift
## Deploys DB, DB-AUTH, AUTH services from minishift/kedge/*.yml
## Runs WIT service on local machine
dev-wit-openshift: prebuild-check deps generate $(FRESH_BIN)
minishift start
./check_hosts.sh
-eval `minishift oc-env` && oc login -u developer -p developer && oc new-project wit-openshift
AUTH_IMAGE_URL=$(AUTH_IMAGE_URL) \
AUTH_WIT_URL=$(MINISHIFT_URL):8080 \
kedge apply -f minishift/kedge/db.yml -f minishift/kedge/db-auth.yml -f minishift/kedge/auth.yml
sleep 3s
F8_AUTH_URL=$(MINISHIFT_HOSTS_ENTRY):31000 \
F8_POSTGRES_HOST=$(MINISHIFT_IP) \
F8_POSTGRES_PORT=32000 \
F8_DEVELOPER_MODE_ENABLED=true \
$(FRESH_BIN)
.PHONY: dev-wit-openshift-clean
## Removes the project created by `make dev-wit-openshift`
dev-wit-openshift-clean:
-eval `minishift oc-env` && oc login -u developer -p developer && oc delete project wit-openshift --force
include ./.make/test.mk
ifneq ($(OS),Windows_NT)
ifdef DOCKER_BIN
include ./.make/docker.mk
endif
endif
$(INSTALL_PREFIX):
# Build artifacts dir
mkdir -p $(INSTALL_PREFIX)
$(TMP_PATH):
mkdir -p $(TMP_PATH)
.PHONY: show-info
show-info:
$(call log-info,"$(shell go version)")
$(call log-info,"$(shell go env)")
.PHONY: prebuild-check
prebuild-check: $(TMP_PATH) $(INSTALL_PREFIX) $(CHECK_GOPATH_BIN) show-info
# Check that all tools where found
ifndef GIT_BIN
$(error The "$(GIT_BIN_NAME)" executable could not be found in your PATH)
endif
ifndef DEP_BIN
$(error The "$(DEP_BIN_NAME)" executable could not be found in your PATH)
endif
@$(CHECK_GOPATH_BIN) -packageName=$(PACKAGE_NAME) || (echo "Project lives in wrong location"; exit 1)
$(CHECK_GOPATH_BIN): .make/check_gopath.go
ifndef GO_BIN
$(error The "$(GO_BIN_NAME)" executable could not be found in your PATH)
endif
ifeq ($(OS),Windows_NT)
@go build -o "$(shell cygpath --windows '$(CHECK_GOPATH_BIN)')" .make/check_gopath.go
else
@go build -o $(CHECK_GOPATH_BIN) .make/check_gopath.go
endif
# Keep this "clean" target here at the bottom
.PHONY: clean
## Runs all clean-* targets.
clean: $(CLEAN_TARGETS)