forked from shinmyung0/pullrequest-events-resource
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcommon.test.js
171 lines (149 loc) · 4.2 KB
/
common.test.js
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
const {
getSourceConfig,
convertToVersions
} = require("./common.js")
const fixtures = require("./fixtures.js")
// silence console.error
console.error = () => {}
test("Missing required source config throws error", () =>{
const missingAccessToken = {
"source": {
"owner": "shinmyung0",
"repo": "fixture-repo"
}
}
const missingOwner = {
"source": {
"access_token": "some_token",
"repo": "fixture-repo"
}
}
const missingRepo = {
"source": {
"access_token": "some_token",
"owner": "shinmyung0",
}
}
expect(() => {
getSourceConfig(missingAccessToken)
}).toThrow()
expect(() => {
getSourceConfig(missingOwner)
}).toThrow()
expect(() => {
getSourceConfig(missingRepo)
}).toThrow()
})
test("Minimal source config is applied with defaults", () =>{
const minimalSource = {
"source": {
"access_token": "some_token",
"owner": "shinmyung0",
"repo": "fixture-repo"
}
}
const finalSource = getSourceConfig(minimalSource)
expect(finalSource).toEqual({
"source": {
"graphql_api": "https://api.github.com/graphql",
"access_token": "some_token",
"base_branch": "master",
"owner": "shinmyung0",
"repo": "fixture-repo",
"first": 3,
"states": [
"MERGED",
"CLOSED"
]
}
})
})
test("Source config defaults are properly overridden", () => {
const fullConfig = {
"source": {
"graphql_api": "https://api.github.com/graphql/custom",
"access_token": "some_token",
"base_branch": "some_branch",
"owner": "some_owner",
"repo": "some_repo",
"first": 10,
"states": [
"MERGED"
]
}
}
const resultConfig = getSourceConfig(fullConfig)
expect(resultConfig).toEqual(
{
"source": {
"graphql_api": "https://api.github.com/graphql/custom",
"access_token": "some_token",
"base_branch": "some_branch",
"owner": "some_owner",
"repo": "some_repo",
"first": 10,
"states": [
"MERGED"
]
}
}
)
})
test("Non capitalized states are capitalized", () => {
const fullConfig = {
"source": {
"graphql_api": "https://api.github.com/graphql/custom",
"access_token": "some_token",
"base_branch": "some_branch",
"owner": "some_owner",
"repo": "some_repo",
"first": 10,
"states": [
"merged",
"closed"
]
}
}
const resultConfig = getSourceConfig(fullConfig)
expect(resultConfig.source.states).toEqual([
"MERGED",
"CLOSED"
])
})
test("Non supported states throws exception", () => {
const fullConfig = {
"source": {
"graphql_api": "https://api.github.com/graphql/custom",
"access_token": "some_token",
"base_branch": "some_branch",
"owner": "some_owner",
"repo": "some_repo",
"first": 10,
"states": [
"unsupported state",
"closed"
]
}
}
expect(()=>{
getSourceConfig(fullConfig)
}).toThrow()
})
test("Array of PR objects are converted to versions properly", () => {
const configWithNoVersion = {
"source": {
"graphql_api": "https://api.github.com/graphql/custom",
"access_token": "some_token",
"base_branch": "some_branch",
"owner": "some_owner",
"repo": "some_repo",
"first": 10,
"states": [
"MERGED"
]
}
}
const versions = convertToVersions(fixtures.expectedPRs, configWithNoVersion)
expect(versions).toEqual(fixtures.expectedVersions)
expect(versions.length).toBe(fixtures.expectedPRs.length)
})