-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathtemplate_test.go
More file actions
397 lines (388 loc) · 11.1 KB
/
template_test.go
File metadata and controls
397 lines (388 loc) · 11.1 KB
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
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
// Copyright 2022-2026 Salesforce, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package create
import (
"path/filepath"
"testing"
"github.com/slackapi/slack-cli/internal/slackerror"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func Test_Template_GetSubdir(t *testing.T) {
t.Run("default is empty string", func(t *testing.T) {
tmpl := Template{}
assert.Equal(t, "", tmpl.GetSubdir())
})
t.Run("returns value set by SetSubdir", func(t *testing.T) {
tmpl := Template{}
tmpl.SetSubdir("subpath")
assert.Equal(t, "subpath", tmpl.GetSubdir())
})
}
func Test_Template_SetSubdir(t *testing.T) {
tmpl := Template{}
tmpl.SetSubdir("custom/dir")
assert.Equal(t, "custom/dir", tmpl.GetSubdir())
}
func TestTemplate_ResolveTemplateURL(t *testing.T) {
tests := map[string]struct {
url string
expectedTemplate Template
expectedSample bool
expectedError error
}{
"supports http:// for a template": {
url: "http://github.com/slackapi/bolt-js-getting-started-app",
expectedTemplate: Template{
path: "http://github.com/slackapi/bolt-js-getting-started-app",
isGit: true,
},
expectedSample: false,
},
"supports http:// for a sample": {
url: "http://github.com/slack-samples/bolt-js-getting-started-app",
expectedTemplate: Template{
path: "http://github.com/slack-samples/bolt-js-getting-started-app",
isGit: true,
},
expectedSample: true,
},
"supports https:// for a template": {
url: "https://github.com/slackapi/bolt-js-getting-started-app",
expectedTemplate: Template{
path: "https://github.com/slackapi/bolt-js-getting-started-app",
isGit: true,
},
expectedSample: false,
},
"supports https:// for a sample": {
url: "https://github.com/slack-samples/bolt-js-getting-started-app",
expectedTemplate: Template{
path: "https://github.com/slack-samples/bolt-js-getting-started-app",
isGit: true,
},
expectedSample: true,
},
"supports http://....git for a template": {
url: "http://github.com/slackapi/bolt-js-getting-started-app.git",
expectedTemplate: Template{
path: "http://github.com/slackapi/bolt-js-getting-started-app.git",
isGit: true,
},
expectedSample: false,
},
"supports http://....git for a sample": {
url: "http://github.com/slack-samples/bolt-js-getting-started-app.git",
expectedTemplate: Template{
path: "http://github.com/slack-samples/bolt-js-getting-started-app.git",
isGit: true,
},
expectedSample: true,
},
"supports https://....git for a template": {
url: "https://github.com/slackapi/bolt-js-getting-started-app.git",
expectedTemplate: Template{
path: "https://github.com/slackapi/bolt-js-getting-started-app.git",
isGit: true,
},
expectedSample: false,
},
"supports https://....git for a sample": {
url: "https://github.com/slack-samples/bolt-js-getting-started-app.git",
expectedTemplate: Template{
path: "https://github.com/slack-samples/bolt-js-getting-started-app.git",
isGit: true,
},
expectedSample: true,
},
"supports ssh:// for a template": {
url: "ssh://username@host.xz/path/to/repo.git/",
expectedTemplate: Template{
path: "ssh://username@host.xz/path/to/repo.git/",
isGit: true,
},
expectedSample: true,
},
"supports ssh:// for a sample": {
url: "ssh://username@host.xz/slack-samples/repo.git/",
expectedTemplate: Template{
path: "ssh://username@host.xz/slack-samples/repo.git/",
isGit: true,
},
expectedSample: true,
},
"supports git:// for a template": {
url: "git://github.com/slackapi/bolt-js-getting-started-app",
expectedTemplate: Template{
path: "git://github.com/slackapi/bolt-js-getting-started-app",
isGit: true,
},
expectedSample: false,
},
"supports git:// for a sample": {
url: "git://github.com/slack-samples/bolt-js-getting-started-app",
expectedTemplate: Template{
path: "git://github.com/slack-samples/bolt-js-getting-started-app",
isGit: true,
},
expectedSample: true,
},
"supports git@ for a template": {
url: "git@github.com:slackapi/bolt-js-getting-started-app.git",
expectedTemplate: Template{
path: "git@github.com:slackapi/bolt-js-getting-started-app.git",
isGit: true,
},
expectedSample: false,
},
"supports git@ for a sample": {
url: "git@github.com:slack-samples/bolt-js-getting-started-app.git",
expectedTemplate: Template{
path: "git@github.com:slack-samples/bolt-js-getting-started-app.git",
isGit: true,
},
expectedSample: true,
},
"supports github relative url for a template": {
url: "slackapi/bolt-js-getting-started-app",
expectedTemplate: Template{
path: "https://github.com/slackapi/bolt-js-getting-started-app.git",
isGit: true,
},
expectedSample: false,
},
"supports github relative url for a sample": {
url: "slack-samples/bolt-js-getting-started-app",
expectedTemplate: Template{
path: "https://github.com/slack-samples/bolt-js-getting-started-app.git",
isGit: true,
},
expectedSample: false,
},
"supports local relative paths with a separator for a template": {
url: "../create",
expectedTemplate: Template{
path: "../create",
isGit: false,
isLocal: true,
},
expectedSample: false,
},
"errors if local path does not exist": {
url: filepath.Join("path", "not", "exists"),
expectedTemplate: Template{},
expectedError: slackerror.New(slackerror.ErrTemplatePathNotFound),
},
}
for name, tc := range tests {
t.Run(name, func(t *testing.T) {
template, err := ResolveTemplateURL(tc.url)
if tc.expectedError != nil {
require.Error(t, err)
assert.Equal(
t,
slackerror.ToSlackError(tc.expectedError).Code,
slackerror.ToSlackError(err).Code,
)
}
assert.Equal(t, tc.expectedTemplate, template)
})
}
}
func TestTemplate_GetTemplatePath(t *testing.T) {
tests := map[string]struct {
template Template
expectedPath string
}{
"returns a local path without change": {
template: Template{
isLocal: true,
path: "../path/to/template",
},
expectedPath: "../path/to/template",
},
"returns a github url in shorthand notation": {
template: Template{
isGit: true,
path: "https://github.com/slack-samples/bolt-starter-app",
},
expectedPath: "slack-samples/bolt-starter-app",
},
"returns another git url without change": {
template: Template{
isGit: true,
path: "https://gitlab.com/slack-samples/bolt-starter-app",
},
expectedPath: "https://gitlab.com/slack-samples/bolt-starter-app",
},
"returns the unchanged path for invalid git urls": {
template: Template{
isGit: true,
path: ".git",
},
expectedPath: ".git",
},
"returns the complete ssh path without panic": {
template: Template{
isGit: true,
path: "ssh://user@example:path/to/sample",
},
expectedPath: "ssh://user@example:path/to/sample",
},
}
for name, tc := range tests {
t.Run(name, func(t *testing.T) {
path := tc.template.GetTemplatePath()
assert.Equal(t, tc.expectedPath, path)
})
}
}
func TestTemplate_IsSample(t *testing.T) {
tests := map[string]struct {
template Template
expectedSample bool
}{
"templates from the slack-samples github org are samples": {
template: Template{
isGit: true,
path: "https://github.com/slack-samples/bolt-starter-app",
},
expectedSample: true,
},
"templates from the slack-samples github org cloned via git@ are samples": {
template: Template{
isGit: true,
path: "git@github.com:slack-samples/bolt-starter-app.git",
},
expectedSample: true,
},
"templates from other github orgs are not samples": {
template: Template{
isGit: true,
path: "https://github.com/slackapi/bolt-starter-app",
},
expectedSample: false,
},
"templates matching slack-samples not hosted on github are not samples": {
template: Template{
isGit: true,
path: "https://gitlab.com/slack-samples/slack-samples",
},
expectedSample: false,
},
"templates cloned via ssh are not considered samples": {
template: Template{
isGit: true,
path: "ssh://user@example:path/to/sample",
},
expectedSample: false,
},
"local paths are not considered samples": {
template: Template{
isLocal: true,
path: "../path/to/slack-samples/bolt-starter-app",
},
expectedSample: false,
},
"invalid git urls are not considered samples": {
template: Template{
isGit: true,
path: ".git",
},
expectedSample: false,
},
}
for name, tc := range tests {
t.Run(name, func(t *testing.T) {
isSample := tc.template.IsSample()
assert.Equal(t, tc.expectedSample, isSample)
})
}
}
func TestTemplate_IsTrusted(t *testing.T) {
tests := map[string]struct {
template Template
expectedTrusted bool
}{
"templates from the slack-samples github org are trusted": {
template: Template{
isGit: true,
path: "https://github.com/slack-samples/bolt-starter-app",
},
expectedTrusted: true,
},
"templates from the slack-samples github org cloned via git@ are trusted": {
template: Template{
isGit: true,
path: "git@github.com:slack-samples/bolt-starter-app.git",
},
expectedTrusted: true,
},
"templates from the slackapi org are trusted": {
template: Template{
isGit: true,
path: "https://github.com/slackapi/bolt-starter-app",
},
expectedTrusted: true,
},
"templates from the slackhq org are trusted": {
template: Template{
isGit: true,
path: "https://github.com/slackhq/bolt-starter-app",
},
expectedTrusted: true,
},
"templates from other github orgs are not trusted": {
template: Template{
isGit: true,
path: "https://github.com/github/bolt-starter-app",
},
expectedTrusted: false,
},
"templates matching slack-samples not hosted on github are not trusted": {
template: Template{
isGit: true,
path: "https://gitlab.com/slack-samples/slack-samples",
},
expectedTrusted: false,
},
"templates cloned via ssh are not considered trusted": {
template: Template{
isGit: true,
path: "ssh://user@example:path/to/sample",
},
expectedTrusted: false,
},
"local paths are not considered trusted": {
template: Template{
isLocal: true,
path: "../path/to/slack-samples/bolt-starter-app",
},
expectedTrusted: false,
},
"invalid git urls are not considered trusted": {
template: Template{
isGit: true,
path: ".git",
},
expectedTrusted: false,
},
}
for name, tc := range tests {
t.Run(name, func(t *testing.T) {
isTrusted := tc.template.IsTrusted()
assert.Equal(t, tc.expectedTrusted, isTrusted)
})
}
}