-
Notifications
You must be signed in to change notification settings - Fork 92
/
Makefile
142 lines (119 loc) · 5.6 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
.PHONY: install-tools
install-tools:
@./scripts/install-tools.sh
.PHONY: run-catalogs-write-service
run-catalogs-write-service:
@./scripts/run.sh catalogwriteservice
.PHONY: run-catalog-read-service
run-catalog-read-service:
@./scripts/run.sh catalogreadservice
.PHONY: run-order-service
run-order-service:
@./scripts/run.sh orderservice
.PHONY: build
build:
@./scripts/build.sh pkg
@./scripts/build.sh catalogwriteservice
@./scripts/build.sh catalogreadservice
@./scripts/build.sh orderservice
.PHONY: update-dependencies
update-dependencies:
@./scripts/update-dependencies.sh pkg
@./scripts/update-dependencies.sh catalogwriteservice
@./scripts/update-dependencies.sh catalogreadservice
@./scripts/update-dependencies.sh orderservice
.PHONY: install-dependencies
install-dependencies:
@./scripts/install-dependencies.sh pkg
@./scripts/install-dependencies.sh catalogwriteservice
@./scripts/install-dependencies.sh catalogreadservice
@./scripts/install-dependencies.sh orderservice
.PHONY: docker-compose-infra-up
docker-compose-infra-up:
@docker-compose -f deployments/docker-compose/docker-compose.infrastructure.yaml up --build -d
docker-compose-infra-down:
@docker-compose -f deployments/docker-compose/docker-compose.infrastructure.yaml down
.PHONY: openapi
openapi:
@./scripts/openapi.sh catalogwriteservice
@./scripts/openapi.sh catalogreadservice
@./scripts/openapi.sh orderservice
# https://stackoverflow.com/questions/13616033/install-protocol-buffers-on-windows
.PHONY: proto
proto:
@./scripts/proto.sh catalogwriteservice
@./scripts/proto.sh orderservice
.PHONY: unit-test
unit-test:
@./scripts/test.sh catalogreadservice unit
@./scripts/test.sh catalogwriteservice unit
@./scripts/test.sh orderservice unit
.PHONY: integration-test
integration-test:
@./scripts/test.sh catalogreadservice integration
@./scripts/test.sh catalogwriteservice integration
@./scripts/test.sh orderservice integration
.PHONY: e2e-test
e2e-test:
@./scripts/test.sh catalogreadservice e2e
@./scripts/test.sh catalogwriteservice e2e
@./scripts/test.sh orderservice e2e
#.PHONY: load-test
#load-test:
# @./scripts/test.sh catalogs_write load-test
# @./scripts/test.sh catalogs_read load-test
# @./scripts/test.sh orders load-test
.PHONY: format
format:
@./scripts/format.sh catalogwriteservice
@./scripts/format.sh catalogreadservice
@./scripts/format.sh orderservice
@./scripts/format.sh pkg
.PHONY: lint
lint:
@./scripts/lint.sh catalogwriteservice
@./scripts/lint.sh catalogreadservice
@./scripts/lint.sh orderservice
@./scripts/lint.sh pkg
# https://github.com/golang-migrate/migrate/blob/856ea12df9d230b0145e23d951b7dbd6b86621cb/database/postgres/TUTORIAL.md
# https://github.com/golang-migrate/migrate/blob/856ea12df9d230b0145e23d951b7dbd6b86621cb/GETTING_STARTED.md
# https://github.com/golang-migrate/migrate/blob/856ea12df9d230b0145e23d951b7dbd6b86621cb/MIGRATIONS.md
# https://github.com/golang-migrate/migrate/tree/856ea12df9d230b0145e23d951b7dbd6b86621cb/cmd/migrate#usage
.PHONY: go-migrate
go-migrate:
@./scripts/go-migrate.sh -p ./internal/services/catalogwriteservice/db/migrations/go-migrate -c create -n create_product_table
@./scripts/go-migrate.sh -p ./internal/services/catalogwriteservice/db/migrations/go-migrate -c up -o postgres://postgres:postgres@localhost:5432/catalogs_write_service?sslmode=disable
@./scripts/go-migrate.sh -p ./internal/services/catalogwriteservice/db/migrations/go-migrate -c down -o postgres://postgres:postgres@localhost:5432/catalogs_write_service?sslmode=disable
# https://github.com/pressly/goose#usage
.PHONY: goose-migrate
goose-migrate:
@./scripts/goose-migrate.sh -p ./internal/services/catalogwriteservice/db/migrations/goose-migrate -c create -n create_product_table
@./scripts/goose-migrate.sh -p ./internal/services/catalogwriteservice/db/migrations/goose-migrate -c up -o "user=postgres password=postgres dbname=catalogs_write_service sslmode=disable"
@./scripts/goose-migrate.sh -p ./internal/services/catalogwriteservice/db/migrations/goose-migrate -c down -o "user=postgres password=postgres dbname=catalogs_write_service sslmode=disable"
# https://atlasgo.io/guides/orms/gorm
.PHONY: atlas
atlas:
@./scripts/atlas-migrate.sh -c gorm-sync -p "./internal/services/catalogwriteservice"
@./scripts/atlas-migrate.sh -c apply -p "./internal/services/catalogwriteservice" -o "postgres://postgres:postgres@localhost:5432/catalogs_write_service?sslmode=disable"
.PHONY: cycle-check
cycle-check:
cd internal/pkg && goimportcycle -dot imports.dot dot -Tpng -o cycle/pkg.png imports.dot
cd internal/services/catalogwriteservice && goimportcycle -dot imports.dot dot -Tpng -o cycle/catalogwriteservice.png imports.dot
cd internal/services/catalogwriteservice && goimportcycle -dot imports.dot dot -Tpng -o cycle/catalogwriteservice.png imports.dot
cd internal/services/orderservice && goimportcycle -dot imports.dot dot -Tpng -o cycle/orderservice.png imports.dot
#.PHONY: c4
#c4:
# cd tools/c4 && go mod tidy && sh generate.sh
# https://medium.com/yemeksepeti-teknoloji/mocking-an-interface-using-mockery-in-go-afbcb83cc773
# https://vektra.github.io/mockery/latest/running/
# https://amitshekhar.me/blog/test-with-testify-and-mockery-in-go
.PHONY: pkg-mocks
pkg-mocks:
cd internal/pkg/es && mockery --output mocks --all
cd internal/pkg/core/serializer && mockery --output mocks --all
cd internal/pkg/core/messaging && mockery --output mocks --all
.PHONY: services-mocks
services-mocks:
cd internal/services/catalogwriteservice && mockery --output mocks --all
cd internal/services/catalogreadservice && mockery --output mocks --all
cd internal/services/orderservice && mockery --output mocks --all