forked from okta/okta-sdk-golang
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
60 lines (51 loc) · 1.96 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
COLOR_OK=\\x1b[0;32m
COLOR_NONE=\x1b[0m
COLOR_ERROR=\x1b[31;01m
COLOR_WARNING=\x1b[33;05m
COLOR_OKTA=\x1B[34;01m
help:
@echo "$(COLOR_OK)Okta SDK for Golang$(COLOR_NONE)"
@echo ""
@echo "$(COLOR_WARNING)Usage:$(COLOR_NONE)"
@echo "$(COLOR_OK) make [command]$(COLOR_NONE)"
@echo ""
@echo "$(COLOR_WARNING)Available commands:$(COLOR_NONE)"
@echo "$(COLOR_OK) build Clean and build the Okta Golang SDK generated files$(COLOR_NONE)"
@echo "$(COLOR_OK) clean-files Deletes all generated files$(COLOR_NONE)"
@echo "$(COLOR_OK) generate-files Generates files based around spec$(COLOR_NONE)"
@echo "$(COLOR_OK) pull-spec Pull down the most recent released version of the spec$(COLOR_NONE)"
@echo "$(COLOR_WARNING)test$(COLOR_NONE)"
@echo "$(COLOR_OK) test:all Run all tests$(COLOR_NONE)"
@echo "$(COLOR_OK) test:integration Run only integration tests$(COLOR_NONE)"
@echo "$(COLOR_OK) test:unit Run only unit tests$(COLOR_NONE)"
build:
@echo "$(COLOR_OKTA)Building SDK...$(COLOR_NONE)"
make clean-files
make generate-files
make test:all
clean-files:
@echo "$(COLOR_OKTA)Cleaning Up Old Generated Files...$(COLOR_NONE)"
cd openapi && yarn cleanFiles
generate-files:
@echo "$(COLOR_OKTA)Generating SDK Files...$(COLOR_NONE)"
cd openapi && yarn generator
@echo "$(COLOR_OK)Running Go Fmt on generated files...$(COLOR_NONE)"
go fmt ./okta
pull-spec:
@echo "$(COLOR_OKTA)Pulling in latest spec...$(COLOR_NONE)"
rm openapi/spec.json
git clone https://github.com/okta/openapi spec-raw
cp spec-raw/dist/spec.json openapi/spec.json
rm -fr spec-raw
test:
make test:all
test\:all:
@echo "$(COLOR_OKTA)Running all tests...$(COLOR_NONE)"
make test:unit
make test:integration
test\:integration:
@echo "$(COLOR_OKTA)Running integration tests...$(COLOR_NONE)"
go test ./tests/integration -test.v
test\:unit:
@echo "$(COLOR_OK)Running unit tests...$(COLOR_NONE)"
go test ./tests/unit -test.v