forked from knative/func
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplates_test.go
604 lines (509 loc) · 15.8 KB
/
templates_test.go
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
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
//go:build !integration
// +build !integration
package function_test
import (
"errors"
"os"
"path/filepath"
"runtime"
"testing"
"github.com/google/go-cmp/cmp"
fn "knative.dev/func"
. "knative.dev/func/testing"
)
// TestTemplates_List ensures that all templates are listed taking into account
// both internal and extensible (prefixed) repositories.
func TestTemplates_List(t *testing.T) {
// A client which specifies a location of exensible repositoreis on disk
// will list all builtin plus exensible
client := fn.New(fn.WithRepositoriesPath("testdata/repositories"))
// list templates for the "go" runtime
templates, err := client.Templates().List("go")
if err != nil {
t.Fatal(err)
}
// Note that this list will change as the customTemplateRepo
// and builtin templates are shared. THis could be mitigated
// by creating a custom repository path for just this test, if
// that becomes a hassle.
expected := []string{
"cloudevents",
"http",
"customTemplateRepo/customTemplate",
}
if diff := cmp.Diff(expected, templates); diff != "" {
t.Error("Unexpected templates (-want, +got):", diff)
}
}
// TestTemplates_List_ExtendedNotFound ensures that an error is not returned
// when retrieving the list of templates for a runtime that does not exist
// in an extended repository, but does in the default.
func TestTemplates_List_ExtendedNotFound(t *testing.T) {
client := fn.New(fn.WithRepositoriesPath("testdata/repositories"))
// list templates for the "python" runtime -
// not supplied by the extended repos
templates, err := client.Templates().List("python")
if err != nil {
t.Fatal(err)
}
expected := []string{
"cloudevents",
"http",
}
if diff := cmp.Diff(expected, templates); diff != "" {
t.Error("Unexpected templates (-want, +got):", diff)
}
}
// TestTemplates_Get ensures that a template's metadata object can
// be retrieved by full name (full name prefix optional for embedded).
func TestTemplates_Get(t *testing.T) {
client := fn.New(fn.WithRepositoriesPath("testdata/repositories"))
// Check embedded
embedded, err := client.Templates().Get("go", "http")
if err != nil {
t.Fatal(err)
}
if embedded.Runtime() != "go" || embedded.Repository() != "default" || embedded.Name() != "http" {
t.Logf("Expected template from embedded to have runtime 'go' repo 'default' name 'http', got '%v', '%v', '%v',",
embedded.Runtime(), embedded.Repository(), embedded.Name())
}
// Check extended
extended, err := client.Templates().Get("go", "customTemplateRepo/customTemplate")
if err != nil {
t.Fatal(err)
}
if embedded.Runtime() != "go" || embedded.Repository() != "default" || embedded.Name() != "http" {
t.Logf("Expected template from extended repo to have runtime 'go' repo 'customTemplateRepo' name 'customTemplate', got '%v', '%v', '%v',",
extended.Runtime(), extended.Repository(), extended.Name())
}
}
// TestTemplates_Embedded ensures that embedded templates are copied on write.
func TestTemplates_Embedded(t *testing.T) {
// create test directory
root := "testdata/testTemplatesEmbedded"
defer Using(t, root)()
// Client whose internal (builtin default) templates will be used.
client := fn.New(fn.WithRegistry(TestRegistry))
// write out a template
err := client.Create(fn.Function{
Root: root,
Runtime: TestRuntime,
Template: "http",
})
if err != nil {
t.Fatal(err)
}
// Assert file exists as expected
_, err = os.Stat(filepath.Join(root, "handle.go"))
if err != nil {
t.Fatal(err)
}
}
// TestTemplates_Custom ensures that a template from a filesystem source
// (ie. custom provider on disk) can be specified as the source for a
// template.
func TestTemplates_Custom(t *testing.T) {
// Create test directory
root := "testdata/testTemplatesCustom"
defer Using(t, root)()
// CLient which uses custom repositories
// in form [provider]/[template], on disk the template is
// at: testdata/repositories/[provider]/[runtime]/[template]
client := fn.New(
fn.WithRegistry(TestRegistry),
fn.WithRepositoriesPath("testdata/repositories"))
// Create a function specifying a template from
// the custom provider's directory in the on-disk template repo.
err := client.Create(fn.Function{
Root: root,
Runtime: "customRuntime",
Template: "customTemplateRepo/customTemplate",
})
if err != nil {
t.Fatal(err)
}
// Assert file exists as expected
_, err = os.Stat(filepath.Join(root, "custom.impl"))
if err != nil {
t.Fatal(err)
}
}
// TestTemplates_Remote ensures that a Git template repository provided via URI
// can be specificed on creation of client, with subsequent calls to Create
// using this remote by default.
func TestTemplates_Remote(t *testing.T) {
var err error
root := "testdata/testTemplatesRemote"
defer Using(t, root)()
url := ServeRepo(RepositoriesTestRepo, t)
// Create a client which explicitly specifies the Git repo at URL
// rather than relying on the default internally builtin template repo
client := fn.New(
fn.WithRegistry(TestRegistry),
fn.WithRepository(url))
// Create a default function, which should override builtin and use
// that from the specified url (git repo)
err = client.Create(fn.Function{
Root: root,
Runtime: "go",
Template: "remote",
})
if err != nil {
t.Fatal(err)
}
// Assert the sample file from the git repo was written
_, err = os.Stat(filepath.Join(root, "remote-test"))
if err != nil {
t.Fatal(err)
}
}
// TestTemplates_Default ensures that the expected default template
// is used when none specified.
func TestTemplates_Default(t *testing.T) {
// create test directory
root := "testdata/testTemplates_Default"
defer Using(t, root)()
client := fn.New(fn.WithRegistry(TestRegistry))
// The runtime is specified, and explicitly includes a
// file for the default template of fn.DefaultTemplate
err := client.Create(fn.Function{Root: root, Runtime: TestRuntime})
if err != nil {
t.Fatal(err)
}
// Assert file exists as expected
_, err = os.Stat(filepath.Join(root, "handle.go"))
if err != nil {
t.Fatal(err)
}
}
// TestTemplates_InvalidErrors ensures that specifying unrecgognized
// runtime/template errors
func TestTemplates_InvalidErrors(t *testing.T) {
// create test directory
root := "testdata/testTemplates_InvalidErrors"
defer Using(t, root)()
client := fn.New(fn.WithRegistry(TestRegistry))
// Error will be type-checked.
var err error
// Test for error writing an invalid runtime
err = client.Create(fn.Function{
Root: root,
Runtime: "invalid",
})
if !errors.Is(err, fn.ErrRuntimeNotFound) {
t.Fatalf("Expected ErrRuntimeNotFound, got %v", err)
}
os.Remove(filepath.Join(root, ".gitignore"))
// Test for error writing an invalid template
err = client.Create(fn.Function{
Root: root,
Runtime: TestRuntime,
Template: "invalid",
})
if !errors.Is(err, fn.ErrTemplateNotFound) {
t.Fatalf("Expected ErrTemplateNotFound, got %v", err)
}
}
// TestTemplates_ModeEmbedded ensures that templates written from the embedded
// templates retain their mode.
func TestTemplates_ModeEmbedded(t *testing.T) {
if runtime.GOOS == "windows" {
return
// not applicable
}
// set up test directory
root := "testdata/testTemplatesModeEmbedded"
defer Using(t, root)()
client := fn.New(fn.WithRegistry(TestRegistry))
// Write the embedded template that contains a file which
// needs to be executable (only such is mvnw in quarkus)
err := client.Create(fn.Function{
Root: root,
Runtime: "quarkus",
Template: "http",
})
if err != nil {
t.Fatal(err)
}
// Verify file mode was preserved
file, err := os.Stat(filepath.Join(root, "mvnw"))
if err != nil {
t.Fatal(err)
}
if file.Mode() != os.FileMode(0755) {
t.Fatalf("The embedded executable's mode should be 0755 but was %v", file.Mode())
}
}
// TestTemplates_ModeCustom ensures that templates written from custom templates
// retain their mode.
func TestTemplates_ModeCustom(t *testing.T) {
if runtime.GOOS == "windows" {
return // not applicable
}
// test directories
root := "testdata/testTemplates_ModeCustom"
defer Using(t, root)()
client := fn.New(
fn.WithRegistry(TestRegistry),
fn.WithRepositoriesPath("testdata/repositories"))
// Write executable from custom repo
err := client.Create(fn.Function{
Root: root,
Runtime: "test",
Template: "customTemplateRepo/tplb",
})
if err != nil {
t.Fatal(err)
}
// Verify custom file mode was preserved.
file, err := os.Stat(filepath.Join(root, "executable.sh"))
if err != nil {
t.Fatal(err)
}
if file.Mode() != os.FileMode(0755) {
t.Fatalf("The custom executable file's mode should be 0755 but was %v", file.Mode())
}
}
// TestTemplates_ModeRemote ensures that templates written from remote templates
// retain their mode.
func TestTemplates_ModeRemote(t *testing.T) {
var err error
if runtime.GOOS == "windows" {
return // not applicable
}
// test directories
root := "testdata/testTemplates_ModeRemote"
defer Using(t, root)()
url := ServeRepo(RepositoriesTestRepo, t)
client := fn.New(
fn.WithRegistry(TestRegistry),
fn.WithRepository(url))
// Write executable from custom repo
err = client.Create(fn.Function{
Root: root,
Runtime: "node",
Template: "remote",
})
if err != nil {
t.Fatal(err)
}
// Verify directory file mode was preserved
file, err := os.Stat(filepath.Join(root, "test"))
if err != nil {
t.Fatal(err)
}
if file.Mode() != os.ModeDir|0755 {
t.Fatalf("The remote repositry directory mode should be 0755 but was %#o", file.Mode())
}
// Verify remote executible file mode was preserved.
file, err = os.Stat(filepath.Join(root, "test", "executable.sh"))
if err != nil {
t.Fatal(err)
}
if file.Mode() != os.FileMode(0755) {
t.Fatalf("The remote executable's mode should be 0755 but was %v", file.Mode())
}
}
// TODO: test typed errors for custom and remote (embedded checked)
// TestTemplates_RuntimeManifestBuildEnvs ensures that BuildEnvs specified in a
// runtimes's manifest are included in the final function.
func TestTemplates_RuntimeManifestBuildEnvs(t *testing.T) {
// create test directory
root := "testdata/testTemplatesRuntimeManifestBuildEnvs"
defer Using(t, root)()
// Client whose internal templates will be used.
client := fn.New(
fn.WithRegistry(TestRegistry),
fn.WithRepositoriesPath("testdata/repositories"))
// write out a template
err := client.Create(fn.Function{
Root: root,
Runtime: "manifestedRuntime",
Template: "customLanguagePackRepo/customTemplate",
})
if err != nil {
t.Fatal(err)
}
// Assert file exists as expected
_, err = os.Stat(filepath.Join(root, "func.yaml"))
if err != nil {
t.Fatal(err)
}
testVariableName := "TEST_RUNTIME_VARIABLE"
testVariableValue := "test-runtime"
envs := []fn.Env{
{
Name: &testVariableName,
Value: &testVariableValue,
},
}
f, err := fn.NewFunction(root)
if err != nil {
t.Fatal(err)
}
if diff := cmp.Diff(envs, f.Build.BuildEnvs); diff != "" {
t.Fatalf("Unexpected difference between runtime's manifest.yaml buildEnvs and function BuildEnvs (-want, +got): %v", diff)
}
}
// TestTemplates_ManifestBuildEnvs ensures that BuildEnvs specified in a
// template's manifest are included in the final function.
func TestTemplates_ManifestBuildEnvs(t *testing.T) {
// create test directory
root := "testdata/testTemplatesManifestBuildEnvs"
defer Using(t, root)()
// Client whose internal templates will be used.
client := fn.New(
fn.WithRegistry(TestRegistry),
fn.WithRepositoriesPath("testdata/repositories"))
// write out a template
err := client.Create(fn.Function{
Root: root,
Runtime: "manifestedRuntime",
Template: "customLanguagePackRepo/manifestedTemplate",
})
if err != nil {
t.Fatal(err)
}
// Assert file exists as expected
_, err = os.Stat(filepath.Join(root, "func.yaml"))
if err != nil {
t.Fatal(err)
}
testVariableName := "TEST_TEMPLATE_VARIABLE"
testVariableValue := "test-template"
envs := []fn.Env{
{
Name: &testVariableName,
Value: &testVariableValue,
},
}
f, err := fn.NewFunction(root)
if err != nil {
t.Fatal(err)
}
if diff := cmp.Diff(envs, f.Build.BuildEnvs); diff != "" {
t.Fatalf("Unexpected difference between template's manifest.yaml buildEnvs and function BuildEnvs (-want, +got): %v", diff)
}
}
// TestTemplates_RepositoryManifestBuildEnvs ensures that BuildEnvs specified in a
// repository's manifest are included in the final function.
func TestTemplates_RepositoryManifestBuildEnvs(t *testing.T) {
// create test directory
root := "testdata/testRepositoryManifestBuildEnvs"
defer Using(t, root)()
// Client whose internal templates will be used.
client := fn.New(
fn.WithRegistry(TestRegistry),
fn.WithRepositoriesPath("testdata/repositories"))
// write out a template
err := client.Create(fn.Function{
Root: root,
Runtime: "customRuntime",
Template: "customLanguagePackRepo/customTemplate",
})
if err != nil {
t.Fatal(err)
}
// Assert file exists as expected
_, err = os.Stat(filepath.Join(root, "func.yaml"))
if err != nil {
t.Fatal(err)
}
testVariableName := "TEST_REPO_VARIABLE"
testVariableValue := "test-repo"
envs := []fn.Env{
{
Name: &testVariableName,
Value: &testVariableValue,
},
}
f, err := fn.NewFunction(root)
if err != nil {
t.Fatal(err)
}
if diff := cmp.Diff(envs, f.Build.BuildEnvs); diff != "" {
t.Fatalf("Unexpected difference between repository's manifest.yaml buildEnvs and function BuildEnvs (-want, +got): %v", diff)
}
}
// TestTemplates_ManifestInvocationHints ensures that invocation hints
// from a template's manifest are included in the final function.
func TestTemplates_ManifestInvocationHints(t *testing.T) {
root := "testdata/testTemplatesManifestInvocationHints"
defer Using(t, root)()
client := fn.New(
fn.WithRegistry(TestRegistry),
fn.WithRepositoriesPath("testdata/repositories"))
err := client.Create(fn.Function{
Root: root,
Runtime: "manifestedRuntime",
Template: "customLanguagePackRepo/manifestedTemplate",
})
if err != nil {
t.Fatal(err)
}
f, err := fn.NewFunction(root)
if err != nil {
t.Fatal(err)
}
if f.Invoke != "format" {
t.Fatalf("expected invoke format 'format', got '%v'", f.Invoke)
}
}
// TestTemplates_ManifestRemoved ensures that the manifest is not left in
// the resultant function after write.
func TestTemplates_ManifestRemoved(t *testing.T) {
// create test directory
root := "testdata/testTemplateManifestRemoved"
defer Using(t, root)()
// Client whose internal templates will be used.
client := fn.New(
fn.WithRegistry(TestRegistry),
fn.WithRepositoriesPath("testdata/repositories"))
// write out a template
err := client.Create(fn.Function{
Root: root,
Runtime: "manifestedRuntime",
Template: "customLanguagePackRepo/manifestedTemplate",
})
if err != nil {
t.Fatal(err)
}
// Assert func.yaml exists as expected
_, err = os.Stat(filepath.Join(root, "func.yaml"))
if err != nil {
t.Fatal(err)
}
// Assert manifest.yaml does not
_, err = os.Stat(filepath.Join(root, "manifest.yaml"))
if err == nil {
t.Fatal("manifest.yaml should not exist after write")
}
}
// TestTemplates_InvocationDefault ensures that creating a function which
// does not define an invocation hint defaults to empty string (since 0.35.0
// default value is omitted from func.yaml file for Invoke)
func TestTemplates_InvocationDefault(t *testing.T) {
expectedInvoke := ""
root := "testdata/testTemplatesInvocationDefault"
defer Using(t, root)()
client := fn.New(
fn.WithRegistry(TestRegistry),
fn.WithRepositoriesPath("testdata/repositories"))
// The customTemplateRepo explicitly does not
// include manifests as it exemplifies an entirely default template repo.
err := client.Create(fn.Function{
Root: root,
Runtime: "customRuntime",
Template: "customTemplateRepo/customTemplate",
})
if err != nil {
t.Fatal(err)
}
f, err := fn.NewFunction(root)
if err != nil {
t.Fatal(err)
}
if f.Invoke != expectedInvoke {
t.Fatalf("expected '%v' invoke format. Got '%v'", expectedInvoke, f.Invoke)
}
}