-
Notifications
You must be signed in to change notification settings - Fork 2
/
Makefile
322 lines (268 loc) · 11.2 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
CURRENTDIR=`pwd`
modVer=$(shell cat go.mod | head -n 3 | tail -n 1 | awk '{print $2}' | cut -d'.' -f2)
currentVer=$(shell go version | awk '{print $3}' | sed -e "s/go//" | cut -d'.' -f2)
PROJECT_ROOT=${GOPATH}/src/github.com/hiromaily/go-goa
TOMLPATH=${PROJECT_ROOT}/configs/settings.toml
ENDPOINT=localhost:8090/api
###############################################################################
# Initialization
###############################################################################
# expects MacOS user here because of using `brew` command
.PHONY: setup-tools
setup-tools:
brew install httpie
brew install jq
go install golang.org/x/tools/cmd/goimports@latest
go install mvdan.cc/gofumpt@latest
go install github.com/golangci/golangci-lint/cmd/[email protected]
go install github.com/rakyll/hey@latest
go install github.com/davecheney/httpstat@latest
go install github.com/volatiletech/sqlboiler/v4@latest
go install github.com/volatiletech/sqlboiler/v4/drivers/sqlboiler-mysql@latest
go install github.com/cosmtrek/air@latest
#go get -u github.com/volatiletech/null/v8
.PHONY: sqlboiler
sqlboiler:
sqlboiler --wipe mysql
###############################################################################
# linter and formatter
###############################################################################
.PHONY: check-ver
check-ver:
#echo $(modVer)
#echo $(currentVer)
@if [ ${currentVer} -lt ${modVer} ]; then\
echo go version ${modVer}++ is required but your go version is ${currentVer};\
fi
.PHONY: imports
imports:
./scripts/imports.sh
.PHONY: lint
lint:
golangci-lint run
#.PHONY: lint-fix
#lint-fix: imports
# golangci-lint run --fix
.PHONY: cache-clean
cache-clean:
golangci-lint cache clean
###############################################################################
# Goa generation
# -
###############################################################################
.PHONY: gen-design
gen-design:
make -C internal/goa/service/resume gen
.PHONY: gen-example
gen-example:
make -C internal/goa/service/resume example
###############################################################################
# Build on local
###############################################################################
.PHONY: build
build:
go build -v -o ${GOPATH}/bin/goa-file-server ./cmd/fileserver/server/...
go build -v -o ${GOPATH}/bin/goa-server ./cmd/resume/server/...
go build -v -o ${GOPATH}/bin/goa-client ./cmd/resume/cli/...
.PHONY: build-ci
build-ci:
go build -v -o goa-file-server ./cmd/fileserver/server/...
go build -v -o goa-server ./cmd/resume/server/...
go build -v -o goa-client ./cmd/resume/cli/...
.PHONY: run
run:
goa-server -conf ./configs/settings.toml
#go run -race ./cmd/resume/server/... -conf ./configs/settings.toml
.PHONY: run-file
run-file:
goa-file-server
.PHONY: rerun
rerun: build run
###############################################################################
# Docker
###############################################################################
docker-build:
docker compose build --no-cache api-server
docker compose build --no-cache file-server
###############################################################################
# TEST API
###############################################################################
.PHONY: test
test:
./scripts/api-test.sh
###############################################################################
# check API by httpie
###############################################################################
.PHONY: chk
chk: http-login
http $(ENDPOINT)/user/1/workhistory 'Authorization: Bearer $(TOKEN)'
# Login
# when displaying response body
#http --body POST $(ENDPOINT)/auth/login [email protected] password=password
#$(eval TOKEN := $(shell http --body POST $(ENDPOINT)/auth/login [email protected] password=password | jq '.token' | sed 's/"//g'))
# when displaying response headers
#http --headers POST $(ENDPOINT)/auth/login [email protected] password=password
#$(eval TOKEN := $(shell http --headers POST $(ENDPOINT)/auth/login [email protected] password=password | head -n 2 | tail -n 1 | sed -e "s/Authorization: //g"))
# FXIME: somehow this task run by running other task
.PHONY: http-login
http-login:
#$(eval TOKEN := $(shell http --headers POST $(ENDPOINT)/auth/login [email protected] password=password | head -n 2 | tail -n 1 | sed -e "s/Authorization: //g"))
$(eval TOKEN := $(shell http --body POST $(ENDPOINT)/auth/login [email protected] password=password | jq '.token' | sed 's/"//g'))
.PHONY: static
static:
# Static files
http localhost:8080/assets/index.html
http localhost:8080/openapi.json
http localhost:8080/openapi3.json
.PHONY: http-health
http-health:
http $(ENDPOINT)/health
.PHONY: http-user
http-user: http-login
# User
http $(ENDPOINT)/user 'Authorization: Bearer $(TOKEN)'
http $(ENDPOINT)/user/1 'Authorization: Bearer $(TOKEN)'
http POST $(ENDPOINT)/user user_name=harry [email protected] password=secret123 'Authorization: Bearer $(TOKEN)'
http PUT $(ENDPOINT)/user/5 [email protected] password=secret456 'Authorization: Bearer $(TOKEN)'
http DELETE $(ENDPOINT)/user/5 'Authorization: Bearer $(TOKEN)'
http $(ENDPOINT)/user/5 'Authorization: Bearer $(TOKEN)'
.PHONY: http-tech
http-tech: http-login
# Tech
http $(ENDPOINT)/tech 'Authorization: Bearer $(TOKEN)'
http $(ENDPOINT)/tech/1 'Authorization: Bearer $(TOKEN)'
http POST $(ENDPOINT)/tech tech_name='New Tech' 'Authorization: Bearer $(TOKEN)'
http PUT $(ENDPOINT)/tech/133 tech_name='Old Tech' 'Authorization: Bearer $(TOKEN)'
http DELETE $(ENDPOINT)/tech/133 'Authorization: Bearer $(TOKEN)'
.PHONY: http-usertech
http-usertech: http-login
http $(ENDPOINT)/user/1/liketech 'Authorization: Bearer $(TOKEN)'
http $(ENDPOINT)/user/1/disliketech 'Authorization: Bearer $(TOKEN)'
.PHONY: http-userworkhistory
http-userworkhistory: http-login
http $(ENDPOINT)/user/1/workhistory 'Authorization: Bearer $(TOKEN)'
.PHONY: http-company
http-company: http-login
# Company
http $(ENDPOINT)/company 'Authorization: Bearer $(TOKEN)'
http $(ENDPOINT)/company/1 'Authorization: Bearer $(TOKEN)'
http POST $(ENDPOINT)/company company_name=Google country_id:=230 address=California 'Authorization: Bearer $(TOKEN)'
http PUT $(ENDPOINT)/company/7 company_name=Google3 address=Tokyo country_id:=10 'Authorization: Bearer $(TOKEN)'
http DELETE $(ENDPOINT)/company/7 'Authorization: Bearer $(TOKEN)'
###############################################################################
# Curl [WIP]
###############################################################################
curl:
# curl
# Static files
curl -i localhost:8080/
curl -i localhost:8080/swagger/swagger.json
curl -i localhost:8080/swagger-ui/
# Health check
curl -i localhost:8080/api/_ah/health
# Login
curl -i -H "Content-Type: application/x-www-form-urlencoded" -d "username=hiro&password=xxxxxxxx" -X POST http://localhost:8080/api/auth/login
# User
curl -i localhost:8080/api/user
curl -i localhost:8080/api/user/1
curl -i -H "Content-Type: application/x-www-form-urlencoded" -d "name=Harry&[email protected]" -X POST http://localhost:8080/api/user
curl -i --data-urlencode "name=harry" --data-urlencode "[email protected]" http://localhost:8080/api/user
curl -i -H "Content-Type: application/json" -d '{"name":"harry","email":"[email protected]"}' -X POST http://localhost:8080/api/user
curl -i -H "Content-Type: application/x-www-form-urlencoded" -d "name=harry&[email protected]" -X PUT http://localhost:8080/api/user/1
curl -i -X DELETE http://localhost:8080/api/user/1
# Company
curl -i localhost:8080/api/company
curl -i localhost:8080/api/company/1
curl -i -H "Content-Type: application/x-www-form-urlencoded" -d "name=Google&country=America&address=California" -X POST http://localhost:8080/api/company
curl -i -H "Content-Type: application/x-www-form-urlencoded" -d "name=Google&country=America&address=California" -X PUT http://localhost:8080/api/company/1
curl -i -X DELETE http://localhost:8080/api/company/1
###############################################################################
# Docker
###############################################################################
#dcgobld:
# #goplus:1.11.5
# docker build -t hirokiy/goplus:1.11.5 -f ./docker/golang/Dockerfile .
# docker push hirokiy/goplus:1.11.5
#
#dcins:
# docker exec -it gogoa_webserver_1 bash
#
#dctest:
# docker-compose exec webserver /bin/sh -c "go test -v ext/cmd/*.go"
# #docker-compose exec webserver /bin/sh -c "go test -v ext/cmd/*.go -f /go/src/github.com/hiromaily/go-goa/resources/tomls/docker.toml"
#
#dcpush:
# docker push hirokiy/go-goa:1.0
###############################################################################
# Heroku
###############################################################################
#heroku_init:
# heroku plugins:install heroku-container-registry
# heroku container:login
# heroku create goa-web
# #heroku container:push web
# #cd docker/mysql;heroku container:push mysql
#
#heroku_after_change_app_name:
# #git remote remove heroku [Important!!]
#
#heroku_settings:
# heroku apps
# #goa-web
#
#heroku_open:
# open -a goa-web
# #https://goa-web.herokuapp.com/
#
#heroku_remove:
# heroku apps:destroy
###############################################################################
# Build Image for Heroku
###############################################################################
#heroku_build_docker1:
# docker build --no-cache -t hirokiy/goapack_base:latest -f ./docker/Dockerfile.base.heroku .
# docker push hirokiy/goapack_base:latest
#
#heroku_build_docker2:
# docker build --no-cache -t hirokiy/goapack:latest -f ./docker/Dockerfile.heroku .
#
#heroku_build_multistage:
# #It works!
# docker build --no-cache -t registry.heroku.com/goa-web/web -f ./docker/Dockerfile.multistage.heroku .
#
#heroku_bldfull:
# docker build --no-cache -t hirokiy/goapack_base:latest -f ./docker/Dockerfile.base.heroku .
# docker build --no-cache -t hirokiy/goapack:latest -f ./docker/Dockerfile.heroku .
#
#heroku_exec_docker:
# docker run -p 8080:8080 --name goapack hirokiy/goapack:latest
# docker stop goapack
#
#heroku_upd:
# docker build --no-cache -t registry.heroku.com/goa-web/web -f ./docker/Dockerfile.heroku .
# docker push registry.heroku.com/goa-web/web
#
#heroku_updfull:
# docker build --no-cache -t hirokiy/goapack_base:latest -f ./docker/Dockerfile.base.heroku .
# docker build --no-cache -t registry.heroku.com/goa-web/web -f ./docker/Dockerfile.heroku .
# docker push registry.heroku.com/goa-web/web
###############################################################################
# Build Image for GCP Kubernetes
###############################################################################
#dcp_build:
# docker-compose build --no-cache webserver
# #docker build --no-cache -t hirokiy/go-goa-mysql:latest -f ./docker/mysql/Dockerfile .
#
#dcp_push:
# docker push hirokiy/go-goa:1.0
# #docker push hirokiy/go-goa-mysql:latest
###############################################################################
# Bench
###############################################################################
bench:
hey -n 20000 -c 50 -m GET http://localhost:8080/api/user
###############################################################################
# HTTP Stat
###############################################################################
httpstat:
httpstat http://localhost:8080/api/user