forked from hashicorp/terraform-provider-aws
-
Notifications
You must be signed in to change notification settings - Fork 0
/
GNUmakefile
320 lines (276 loc) · 10.3 KB
/
GNUmakefile
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
SWEEP ?= us-west-2,us-east-1,us-east-2
TEST ?= ./...
SWEEP_DIR ?= ./internal/sweep
PKG_NAME ?= internal
SVC_DIR ?= ./internal/service
TEST_COUNT ?= 1
ACCTEST_TIMEOUT ?= 180m
ACCTEST_PARALLELISM ?= 20
GO_VER ?= go
ifneq ($(origin PKG), undefined)
PKG_NAME = internal/service/$(PKG)
TEST = ./$(PKG_NAME)/...
endif
ifneq ($(origin TESTS), undefined)
RUNARGS = -run='$(TESTS)'
endif
ifneq ($(origin SWEEPERS), undefined)
SWEEPARGS = -sweep-run='$(SWEEPERS)'
endif
ifeq ($(PKG_NAME), internal/service/ebs)
PKG_NAME = internal/service/ec2
TEST = ./$(PKG_NAME)/...
endif
ifeq ($(PKG_NAME), internal/service/ipam)
PKG_NAME = internal/service/ec2
TEST = ./$(PKG_NAME)/...
endif
ifeq ($(PKG_NAME), internal/service/transitgateway)
PKG_NAME = internal/service/ec2
TEST = ./$(PKG_NAME)/...
endif
ifeq ($(PKG_NAME), internal/service/vpc)
PKG_NAME = internal/service/ec2
TEST = ./$(PKG_NAME)/...
endif
ifeq ($(PKG_NAME), internal/service/vpnclient)
PKG_NAME = internal/service/ec2
TEST = ./$(PKG_NAME)/...
endif
ifeq ($(PKG_NAME), internal/service/vpnsite)
PKG_NAME = internal/service/ec2
TEST = ./$(PKG_NAME)/...
endif
ifeq ($(PKG_NAME), internal/service/wavelength)
PKG_NAME = internal/service/ec2
TEST = ./$(PKG_NAME)/...
endif
default: build
build: fmtcheck
$(GO_VER) install
gen:
rm -f .github/labeler-issue-triage.yml
rm -f .github/labeler-pr-triage.yml
rm -f infrastructure/repository/labels-service.tf
rm -f internal/conns/*_gen.go
rm -f internal/service/**/*_gen.go
rm -f internal/sweep/sweep_test.go
rm -f names/caps.md
rm -f names/*_gen.go
rm -f website/allowed-subcategories.txt
rm -f website/docs/guides/custom-service-endpoints.html.md
rm -f .ci/.semgrep-caps-aws-ec2.yml
rm -f .ci/.semgrep-configs.yml
rm -f .ci/.semgrep-service-name*.yml
$(GO_VER) generate ./...
sweep:
# make sweep SWEEPARGS=-sweep-run=aws_example_thing
# set SWEEPARGS=-sweep-allow-failures to continue after first failure
@echo "WARNING: This will destroy infrastructure. Use only in development accounts."
$(GO_VER) test $(SWEEP_DIR) -v -tags=sweep -sweep=$(SWEEP) $(SWEEPARGS) -timeout 60m
test: fmtcheck
$(GO_VER) test $(TEST) $(TESTARGS) -timeout=5m
testacc: fmtcheck
@if [ "$(TESTARGS)" = "-run=TestAccXXX" ]; then \
echo ""; \
echo "Error: Skipping example acceptance testing pattern. Update PKG and TESTS for the relevant *_test.go file."; \
echo ""; \
echo "For example if updating internal/service/acm/certificate.go, use the test names in internal/service/acm/certificate_test.go starting with TestAcc and up to the underscore:"; \
echo "make testacc TESTS=TestAccACMCertificate_ PKG=acm"; \
echo ""; \
echo "See the contributing guide for more information: https://hashicorp.github.io/terraform-provider-aws/running-and-writing-acceptance-tests"; \
exit 1; \
fi
TF_ACC=1 $(GO_VER) test ./$(PKG_NAME)/... -v -count $(TEST_COUNT) -parallel $(ACCTEST_PARALLELISM) $(RUNARGS) $(TESTARGS) -timeout $(ACCTEST_TIMEOUT)
testacc-lint:
@echo "Checking acceptance tests with terrafmt"
find $(SVC_DIR) -type f -name '*_test.go' \
| sort -u \
| xargs -I {} terrafmt diff --check --fmtcompat {}
testacc-lint-fix:
@echo "Fixing acceptance tests with terrafmt"
find $(SVC_DIR) -type f -name '*_test.go' \
| sort -u \
| xargs -I {} terrafmt fmt --fmtcompat {}
fmt:
@echo "==> Fixing source code with gofmt..."
gofmt -s -w ./$(PKG_NAME) ./names $(filter-out ./.ci/providerlint/go% ./.ci/providerlint/README.md ./.ci/providerlint/vendor, $(wildcard ./.ci/providerlint/*))
fumpt:
@echo "==> Fixing source code with gofumpt..."
gofumpt -w ./$(PKG_NAME) ./names $(filter-out ./.ci/providerlint/go% ./.ci/providerlint/README.md ./.ci/providerlint/vendor, $(wildcard ./.ci/providerlint/*))
# Currently required by tf-deploy compile
fmtcheck:
@sh -c "'$(CURDIR)/.ci/scripts/gofmtcheck.sh'"
gencheck:
@echo "==> Checking generated source code..."
@$(MAKE) gen
@git diff --compact-summary --exit-code || \
(echo; echo "Unexpected difference in directories after code generation. Run 'make gen' command and commit."; exit 1)
generate-changelog:
@echo "==> Generating changelog..."
@sh -c "'$(CURDIR)/.ci/scripts/generate-changelog.sh'"
depscheck:
@echo "==> Checking source code with go mod tidy..."
@$(GO_VER) mod tidy
@git diff --exit-code -- go.mod go.sum || \
(echo; echo "Unexpected difference in go.mod/go.sum files. Run 'go mod tidy' command or revert any go.mod/go.sum changes and commit."; exit 1)
docs-lint:
@echo "==> Checking docs against linters..."
@misspell -error -source=text docs/ || (echo; \
echo "Unexpected misspelling found in docs files."; \
echo "To automatically fix the misspelling, run 'make docs-lint-fix' and commit the changes."; \
exit 1)
@docker run --rm -v $(PWD):/markdown 06kellyjac/markdownlint-cli docs/ || (echo; \
echo "Unexpected issues found in docs Markdown files."; \
echo "To apply any automatic fixes, run 'make docs-lint-fix' and commit the changes."; \
exit 1)
docs-lint-fix:
@echo "==> Applying automatic docs linter fixes..."
@misspell -w -source=text docs/
@docker run --rm -v $(PWD):/markdown 06kellyjac/markdownlint-cli --fix docs/
docscheck:
@tfproviderdocs check \
-allowed-resource-subcategories-file website/allowed-subcategories.txt \
-enable-contents-check \
-ignore-file-missing-data-sources aws_alb,aws_alb_listener,aws_alb_target_group \
-ignore-file-missing-resources aws_alb,aws_alb_listener,aws_alb_listener_certificate,aws_alb_listener_rule,aws_alb_target_group,aws_alb_target_group_attachment \
-provider-name=aws \
-require-resource-subcategory
@misspell -error -source text CHANGELOG.md .changelog
lint: golangci-lint providerlint importlint
gh-workflows-lint:
@echo "==> Checking github workflows with actionlint..."
@actionlint
golangci-lint:
@echo "==> Checking source code with golangci-lint..."
@golangci-lint run --config .ci/.golangci.yml ./$(PKG_NAME)/...
@golangci-lint run --config .ci/.golangci2.yml ./$(PKG_NAME)/...
providerlint:
@echo "==> Checking source code with providerlint..."
@providerlint \
-c 1 \
-AT001.ignored-filename-suffixes=_data_source_test.go \
-AWSAT006=false \
-AWSR002=false \
-AWSV001=false \
-R001=false \
-R010=false \
-R018=false \
-R019=false \
-V001=false \
-V009=false \
-V011=false \
-V012=false \
-V013=false \
-V014=false \
-XR001=false \
-XR002=false \
-XR003=false \
-XR004=false \
-XR005=false \
-XS001=false \
-XS002=false \
./$(PKG_NAME)/service/... ./$(PKG_NAME)/provider/...
importlint:
@echo "==> Checking source code with importlint..."
@impi --local . --scheme stdThirdPartyLocal ./$(PKG_NAME)/...
tools:
cd .ci/providerlint && $(GO_VER) install .
cd .ci/tools && $(GO_VER) install github.com/bflad/tfproviderdocs
cd .ci/tools && $(GO_VER) install github.com/client9/misspell/cmd/misspell
cd .ci/tools && $(GO_VER) install github.com/golangci/golangci-lint/cmd/golangci-lint
cd .ci/tools && $(GO_VER) install github.com/katbyte/terrafmt
cd .ci/tools && $(GO_VER) install github.com/terraform-linters/tflint
cd .ci/tools && $(GO_VER) install github.com/pavius/impi/cmd/impi
cd .ci/tools && $(GO_VER) install github.com/hashicorp/go-changelog/cmd/changelog-build
cd .ci/tools && $(GO_VER) install github.com/rhysd/actionlint/cmd/actionlint
cd .ci/tools && $(GO_VER) install mvdan.cc/gofumpt
test-compile:
@if [ "$(TEST)" = "./..." ]; then \
echo "ERROR: Set TEST to a specific package. For example,"; \
echo " make test-compile TEST=./$(PKG_NAME)"; \
exit 1; \
fi
$(GO_VER) test -c $(TEST) $(TESTARGS)
website-link-check:
@.ci/scripts/markdown-link-check.sh
website-link-check-ghrc:
@LINK_CHECK_CONTAINER="ghcr.io/tcort/markdown-link-check:stable" .ci/scripts/markdown-link-check.sh
website-lint:
@echo "==> Checking website against linters..."
@misspell -error -source=text website/ || (echo; \
echo "Unexpected mispelling found in website files."; \
echo "To automatically fix the misspelling, run 'make website-lint-fix' and commit the changes."; \
exit 1)
@docker run --rm -v $(PWD):/markdown 06kellyjac/markdownlint-cli website/docs/ || (echo; \
echo "Unexpected issues found in website Markdown files."; \
echo "To apply any automatic fixes, run 'make website-lint-fix' and commit the changes."; \
exit 1)
@terrafmt diff ./website --check --pattern '*.markdown' --quiet || (echo; \
echo "Unexpected differences in website HCL formatting."; \
echo "To see the full differences, run: terrafmt diff ./website --pattern '*.markdown'"; \
echo "To automatically fix the formatting, run 'make website-lint-fix' and commit the changes."; \
exit 1)
website-lint-fix:
@echo "==> Applying automatic website linter fixes..."
@misspell -w -source=text website/
@docker run --rm -v $(PWD):/markdown 06kellyjac/markdownlint-cli --fix website/docs/
@terrafmt fmt ./website --pattern '*.markdown'
semgrep:
@echo "==> Running Semgrep static analysis..."
@docker run --rm --volume "${PWD}:/src" returntocorp/semgrep --config .ci/.semgrep.yml
semall:
@echo "==> Running Semgrep checks locally (must have semgrep installed)..."
@semgrep --error --metrics=off \
--config .ci/.semgrep.yml \
--config .ci/.semgrep-caps-aws-ec2.yml \
--config .ci/.semgrep-configs.yml \
--config .ci/.semgrep-service-name0.yml \
--config .ci/.semgrep-service-name1.yml \
--config .ci/.semgrep-service-name2.yml \
--config .ci/.semgrep-service-name3.yml \
--config 'r/dgryski.semgrep-go.badnilguard' \
--config 'r/dgryski.semgrep-go.errnilcheck' \
--config 'r/dgryski.semgrep-go.marshaljson' \
--config 'r/dgryski.semgrep-go.nilerr' \
--config 'r/dgryski.semgrep-go.oddifsequence' \
--config 'r/dgryski.semgrep-go.oserrors'
skaff:
cd skaff && $(GO_VER) install github.com/hashicorp/terraform-provider-aws/skaff
tfsdk2fw:
cd tools/tfsdk2fw && $(GO_VER) install github.com/hashicorp/terraform-provider-aws/tools/tfsdk2fw
yamllint:
@yamllint .
.PHONY: \
build \
gen \
sweep \
test \
testacc \
testacc-lint \
testacc-lint-fix \
fmt \
fumpt \
fmtcheck \
gencheck \
generate-changelog \
depscheck \
docs-lint \
docs-lint-fix \
docscheck \
lint \
gh-workflows-lint \
golangci-lint \
providerlint \
importlint \
tools \
test-compile \
website-link-check \
website-link-check-ghrc \
website-lint \
website-lint-fix \
semgrep \
semall \
skaff \
tfsdk2fw \
yamllint