-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgenerator_test.go
882 lines (779 loc) · 20.2 KB
/
generator_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
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
package gohateoas
import (
"encoding/json"
"fmt"
"net/http"
"reflect"
"testing"
"time"
"github.com/stretchr/testify/assert"
)
type cupcake struct {
ID int `json:"id"`
Name string `json:"name"`
// Infinite loop
Bakery *bakery `json:"bakery"`
}
type bakery struct {
ID int `json:"id"`
Cupcake *cupcake `json:"cupcake,omitempty"`
Cupcakes []*cupcake `json:"cupcakes,omitempty"`
}
func TestTokenReplaceRegex_MatchesCorrectly(t *testing.T) {
t.Parallel()
tests := map[string]struct {
input string
expectedGroups [][]string
}{
"no groups": {
input: "/test",
},
"id": {
input: "/test/{id}",
expectedGroups: [][]string{{"{id}", "id"}},
},
"name and pcode": {
input: "/test/{name}/{pcode}",
expectedGroups: [][]string{{"{name}", "name"}, {"{pcode}", "pcode"}},
},
}
for name, testData := range tests {
testData := testData
t.Run(name, func(t *testing.T) {
t.Parallel()
// Act
result := tokenReplaceRegex.FindAllStringSubmatch(testData.input, -1)
// Assert
assert.Equal(t, testData.expectedGroups, result)
})
}
}
func TestInjectLinks_CreatesExpectedJsonWithObject(t *testing.T) {
t.Parallel()
tests := map[string]struct {
input *bakery
expected map[string]any
}{
"nil": {},
"empty": {
input: &bakery{},
expected: map[string]any{
"_links": map[string]any{
"index": map[string]any{
"method": "GET",
"href": "/api/v1/bakeries",
"comment": "get all bakeries",
},
"self": map[string]any{
"method": "GET",
"href": "/api/v1/bakeries/0",
"comment": "get a bakery by id",
},
"post": map[string]any{
"method": "POST",
"href": "/api/v1/bakeries",
"comment": "create a new bakery",
},
},
"id": float64(0),
},
},
"simple": {
input: &bakery{
ID: 234,
},
expected: map[string]any{
"id": float64(234),
"_links": map[string]any{
"index": map[string]any{
"method": "GET",
"href": "/api/v1/bakeries",
"comment": "get all bakeries",
},
"self": map[string]any{
"method": "GET",
"href": "/api/v1/bakeries/234",
"comment": "get a bakery by id",
},
"post": map[string]any{
"method": "POST",
"href": "/api/v1/bakeries",
"comment": "create a new bakery",
},
},
},
},
"deep object": {
input: &bakery{
ID: 234,
Cupcake: &cupcake{
ID: 123,
Name: "abc",
},
},
expected: map[string]any{
"id": float64(234),
"cupcake": map[string]any{
"name": "abc",
"id": float64(123),
"bakery": nil,
"_links": map[string]any{
"index": map[string]any{"comment": "test", "href": "/api/v1/cupcakes", "method": "GET"},
"other": map[string]any{"comment": "get one by name", "href": "/api/v1/cupcakes/abc", "method": "GET"},
"post": map[string]any{"comment": "create a new one", "href": "/api/v1/cupcakes", "method": "POST"},
"self": map[string]any{"comment": "get itself", "href": "/api/v1/cupcakes/123", "method": "GET"},
},
},
"_links": map[string]any{
"index": map[string]any{
"method": "GET",
"href": "/api/v1/bakeries",
"comment": "get all bakeries",
},
"self": map[string]any{
"method": "GET",
"href": "/api/v1/bakeries/234",
"comment": "get a bakery by id",
},
"post": map[string]any{
"method": "POST",
"href": "/api/v1/bakeries",
"comment": "create a new bakery",
},
},
},
},
"deep array": {
input: &bakery{
ID: 234,
Cupcakes: []*cupcake{
{ID: 1, Name: "a"},
{ID: 3, Name: "c"},
},
},
expected: map[string]any{
"id": float64(234),
"cupcakes": []any{
map[string]any{
"name": "a",
"id": float64(1),
"bakery": nil,
"_links": map[string]any{
"index": map[string]any{"comment": "test", "href": "/api/v1/cupcakes", "method": "GET"},
"other": map[string]any{"comment": "get one by name", "href": "/api/v1/cupcakes/a", "method": "GET"},
"post": map[string]any{"comment": "create a new one", "href": "/api/v1/cupcakes", "method": "POST"},
"self": map[string]any{"comment": "get itself", "href": "/api/v1/cupcakes/1", "method": "GET"},
},
},
map[string]any{
"name": "c",
"id": float64(3),
"bakery": nil,
"_links": map[string]any{
"index": map[string]any{"comment": "test", "href": "/api/v1/cupcakes", "method": "GET"},
"other": map[string]any{"comment": "get one by name", "href": "/api/v1/cupcakes/c", "method": "GET"},
"post": map[string]any{"comment": "create a new one", "href": "/api/v1/cupcakes", "method": "POST"},
"self": map[string]any{"comment": "get itself", "href": "/api/v1/cupcakes/3", "method": "GET"},
},
},
},
"_links": map[string]any{
"index": map[string]any{
"method": "GET",
"href": "/api/v1/bakeries",
"comment": "get all bakeries",
},
"self": map[string]any{
"method": "GET",
"href": "/api/v1/bakeries/234",
"comment": "get a bakery by id",
},
"post": map[string]any{
"method": "POST",
"href": "/api/v1/bakeries",
"comment": "create a new bakery",
},
},
},
},
}
for name, testData := range tests {
testData := testData
t.Run(name, func(t *testing.T) {
t.Parallel()
// Arrange
registry := NewLinkRegistry()
RegisterOn(registry, &cupcake{},
Index("/api/v1/cupcakes", "test"),
Self("/api/v1/cupcakes/{id}", "get itself"),
Custom("other", LinkInfo{Method: http.MethodGet, Href: "/api/v1/cupcakes/{name}", Comment: "get one by name"}),
Post("/api/v1/cupcakes", "create a new one"))
RegisterOn(registry, &bakery{},
Index("/api/v1/bakeries", "get all bakeries"),
Self("/api/v1/bakeries/{id}", "get a bakery by id"),
Post("/api/v1/bakeries", "create a new bakery"))
// Act
result := InjectLinks(registry, testData.input)
// Assert
var mapResult map[string]any
_ = json.Unmarshal(result, &mapResult)
assert.Equal(t, testData.expected, mapResult)
})
}
}
func TestInjectLinks_CreatesExpectedJsonWithSlice(t *testing.T) {
t.Parallel()
tests := map[string]struct {
input []*bakery
expected []any
}{
"nil": {},
"empty": {
input: []*bakery{},
expected: []any{},
},
"simple": {
input: []*bakery{
{ID: 234},
{ID: 556},
},
expected: []any{
map[string]any{
"id": float64(234),
"_links": map[string]any{
"self": map[string]any{
"method": "GET",
"href": "/api/v1/bakeries/234",
"comment": "get a bakery by id",
},
},
},
map[string]any{
"id": float64(556),
"_links": map[string]any{
"self": map[string]any{
"method": "GET",
"href": "/api/v1/bakeries/556",
"comment": "get a bakery by id",
},
},
},
},
},
"deep object": {
input: []*bakery{
{
ID: 234,
Cupcake: &cupcake{
ID: 123,
Name: "abc",
},
},
{
ID: 777,
Cupcake: &cupcake{
ID: 88,
Name: "abc",
},
},
},
expected: []any{
map[string]any{
"id": float64(234),
"cupcake": map[string]any{
"name": "abc",
"id": float64(123),
"bakery": nil,
"_links": map[string]any{
"self": map[string]any{"comment": "get itself", "href": "/api/v1/cupcakes/123", "method": "GET"},
},
},
"_links": map[string]any{
"self": map[string]any{
"method": "GET",
"href": "/api/v1/bakeries/234",
"comment": "get a bakery by id",
},
},
},
map[string]any{
"id": float64(777),
"cupcake": map[string]any{
"name": "abc",
"id": float64(88),
"bakery": nil,
"_links": map[string]any{
"self": map[string]any{"comment": "get itself", "href": "/api/v1/cupcakes/88", "method": "GET"},
},
},
"_links": map[string]any{
"self": map[string]any{
"method": "GET",
"href": "/api/v1/bakeries/777",
"comment": "get a bakery by id",
},
},
},
},
},
"deep array": {
input: []*bakery{
{
ID: 234,
Cupcakes: []*cupcake{
{ID: 1, Name: "a"},
{ID: 3, Name: "c"},
},
},
{
ID: 879,
Cupcakes: []*cupcake{
{ID: 5, Name: "a"},
{ID: 6, Name: "c"},
},
},
},
expected: []any{
map[string]any{
"id": float64(234),
"cupcakes": []any{
map[string]any{
"name": "a",
"id": float64(1),
"bakery": nil,
"_links": map[string]any{
"self": map[string]any{"comment": "get itself", "href": "/api/v1/cupcakes/1", "method": "GET"},
},
},
map[string]any{
"name": "c",
"id": float64(3),
"bakery": nil,
"_links": map[string]any{
"self": map[string]any{"comment": "get itself", "href": "/api/v1/cupcakes/3", "method": "GET"},
},
},
},
"_links": map[string]any{
"self": map[string]any{
"method": "GET",
"href": "/api/v1/bakeries/234",
"comment": "get a bakery by id",
},
},
},
map[string]any{
"id": float64(879),
"cupcakes": []any{
map[string]any{
"name": "a",
"id": float64(5),
"bakery": nil,
"_links": map[string]any{
"self": map[string]any{"comment": "get itself", "href": "/api/v1/cupcakes/5", "method": "GET"},
},
},
map[string]any{
"name": "c",
"id": float64(6),
"bakery": nil,
"_links": map[string]any{
"self": map[string]any{"comment": "get itself", "href": "/api/v1/cupcakes/6", "method": "GET"},
},
},
},
"_links": map[string]any{
"self": map[string]any{
"method": "GET",
"href": "/api/v1/bakeries/879",
"comment": "get a bakery by id",
},
},
},
},
},
}
for name, testData := range tests {
testData := testData
t.Run(name, func(t *testing.T) {
t.Parallel()
// Arrange
registry := NewLinkRegistry()
RegisterOn(registry, &cupcake{}, Self("/api/v1/cupcakes/{id}", "get itself"))
RegisterOn(registry, &bakery{}, Self("/api/v1/bakeries/{id}", "get a bakery by id"))
// Act
result := InjectLinks(registry, testData.input)
// Assert
var mapResult []any
_ = json.Unmarshal(result, &mapResult)
assert.Equal(t, testData.expected, mapResult)
})
}
}
// Deep slices originally didn't work, so this test is to ensure that they do.
type cheeseStore struct {
ID int `json:"id"`
Cheeses [][][]*cheese `json:"cheeses"`
}
type cheese struct {
ID int `json:"id"`
}
func TestInjectLinks_CreatesExpectedJsonWithDeeperSlice(t *testing.T) {
t.Parallel()
// Arrange
input := &cheeseStore{
ID: 53,
Cheeses: [][][]*cheese{
{
{
{
ID: 54,
},
{
ID: 21,
},
},
},
},
}
registry := NewLinkRegistry()
RegisterOn(registry, &cheeseStore{}, Self("/api/v1/stores/{id}", "get itself"))
RegisterOn(registry, &cheese{}, Index("/api/v1/cheeses", "get all cheeses"))
// Act
result := InjectLinks(registry, input)
// Assert
expected := map[string]any{
"id": float64(53),
"cheeses": []any{
[]any{
[]any{
map[string]any{
"id": float64(54),
"_links": map[string]any{
"index": map[string]any{"comment": "get all cheeses", "href": "/api/v1/cheeses", "method": "GET"},
},
},
map[string]any{
"id": float64(21),
"_links": map[string]any{
"index": map[string]any{"comment": "get all cheeses", "href": "/api/v1/cheeses", "method": "GET"},
},
},
},
},
},
"_links": map[string]any{
"self": map[string]any{
"method": "GET",
"href": "/api/v1/stores/53",
"comment": "get itself",
},
},
}
var mapResult map[string]any
_ = json.Unmarshal(result, &mapResult)
assert.Equal(t, expected, mapResult)
}
// empty is used as a dummy to make sure the if-statement in InjectLinks doesn't halt execution on no registered links
type empty struct{}
func TestInjectLinks_ReturnsJsonOnUnknownType(t *testing.T) {
t.Parallel()
// Arrange
registry := NewLinkRegistry()
RegisterOn(registry, empty{}, Self("", ""))
// Act
result := InjectLinks(registry, "test")
// Assert
normalJson, _ := json.Marshal("test")
assert.Equal(t, normalJson, result)
}
// Test objects are numbered because of the caching mechanism.
func TestInjectLinks_IgnoresIfNoTypeRegistered(t *testing.T) {
t.Parallel()
// Arrange
type deepType1 struct {
ID int `json:"id"`
Name string `json:"name"`
}
type testType1 struct {
Deep *deepType1 `json:"deep"`
}
registry := NewLinkRegistry()
RegisterOn(registry, empty{}, Self("", ""))
object := &testType1{
Deep: &deepType1{ID: 23, Name: "test"},
}
// Act
result := InjectLinks(registry, object)
// Assert
normalJson, _ := json.Marshal(object)
assert.Equal(t, normalJson, result)
}
func TestInjectLinks_IgnoresIfNoTypeRegisteredOnSlice(t *testing.T) {
t.Parallel()
// Arrange
type DeepType2 struct {
ID int `json:"id"`
Name string `json:"name"`
}
type testType2 struct {
Deep *DeepType2 `json:"deep"`
}
registry := NewLinkRegistry()
RegisterOn(registry, empty{}, Self("", ""))
object := []*testType2{
{Deep: &DeepType2{ID: 23, Name: "test"}},
{Deep: &DeepType2{ID: 7, Name: "other"}},
}
// Act
result := InjectLinks(registry, object)
// Assert
normalJson, _ := json.Marshal(object)
assert.Equal(t, normalJson, result)
}
func TestInjectLinks_IgnoresOnNonStructSlices(t *testing.T) {
t.Parallel()
// Arrange
registry := NewLinkRegistry()
RegisterOn(registry, empty{}, Self("", ""))
object := []string{"a", "b", "c"}
// Act
result := InjectLinks(registry, object)
// Assert
normalJson, _ := json.Marshal(object)
assert.Equal(t, normalJson, result)
}
func TestInjectLinks_IgnoresIfRegistryIsEmpty(t *testing.T) {
t.Parallel()
// Arrange
type testType3 struct{}
registry := NewLinkRegistry()
object := &testType3{}
// Act
result := InjectLinks(registry, object)
// Assert
normalJson, _ := json.Marshal(object)
assert.Equal(t, normalJson, result)
}
func TestGetFieldNameFromJson_ReturnsExpectedName(t *testing.T) {
t.Parallel()
type testType3 struct {
Name string `json:"name"`
Deep int `json:"deep,omitempty"`
}
tests := map[string]struct {
jsonKey string
expected string
}{
"name": {
jsonKey: "name",
expected: "Name",
},
"deep": {
jsonKey: "deep",
expected: "Deep",
},
}
for name, testData := range tests {
testData := testData
t.Run(name, func(t *testing.T) {
t.Parallel()
// Act
result, err := getFieldNameFromJson(testType3{}, testData.jsonKey)
// Assert
assert.NoError(t, err)
assert.Equal(t, testData.expected, result)
})
}
}
func TestGetFieldNameFromJson_ReturnsEmptyStringOnNonStructType(t *testing.T) {
t.Parallel()
// Arrange
type testType4s []string
// Act
result, err := getFieldNameFromJson(testType4s{}, "any")
// Assert
assert.EqualError(t, err, "object is not a struct")
assert.Equal(t, "", result)
}
func TestGetFieldNameFromJson_IgnoresMissingJsonFields(t *testing.T) {
t.Parallel()
type OtherType1 struct {
Name string `json:""`
Deep int `json:"-"`
}
tests := map[string]struct {
jsonKey string
expected string
}{
"name": {
jsonKey: "name",
},
"deep": {
jsonKey: "deep",
},
}
for name, testData := range tests {
testData := testData
t.Run(name, func(t *testing.T) {
t.Parallel()
// Act
result, err := getFieldNameFromJson(OtherType1{}, testData.jsonKey)
// Assert
assert.NoError(t, err)
assert.Equal(t, "", result)
})
}
}
func TestEnsureConcrete_TurnsTypeTestAIntoValue(t *testing.T) {
t.Parallel()
// Arrange
type TestA struct{}
reflectPointer := reflect.TypeOf(&TestA{})
// Act
result := ensureConcrete(reflectPointer)
// Assert
reflectValue := reflect.TypeOf(TestA{})
assert.Equal(t, reflectValue, result)
}
func TestEnsureConcrete_TurnsTypeTestBIntoValue(t *testing.T) {
t.Parallel()
// Arrange
type TestB struct{}
reflectPointer := reflect.TypeOf(&TestB{})
// Act
result := ensureConcrete(reflectPointer)
// Assert
reflectValue := reflect.TypeOf(TestB{})
assert.Equal(t, reflectValue, result)
}
func TestEnsureConcrete_TurnsTypeTestAIntoValueWithMultiplePointers(t *testing.T) {
t.Parallel()
// Arrange
type TestA struct{}
first := &TestA{}
second := &first
third := &second
reflectPointer := reflect.TypeOf(&third)
// Act
result := ensureConcrete(reflectPointer)
// Assert
reflectValue := reflect.TypeOf(TestA{})
assert.Equal(t, reflectValue, result)
}
func TestEnsureConcrete_LeavesValueOfTypeTestAAlone(t *testing.T) {
t.Parallel()
// Arrange
type TestA struct{}
reflectValue := reflect.TypeOf(TestA{})
// Act
result := ensureConcrete(reflectValue)
// Assert
assert.Equal(t, reflectValue, result)
}
func TestEnsureConcrete_LeavesValueOfTypeTestBAlone(t *testing.T) {
t.Parallel()
// Arrange
type TestB struct{}
reflectValue := reflect.TypeOf(TestB{})
// Act
result := ensureConcrete(reflectValue)
// Assert
assert.Equal(t, reflectValue, result)
}
func BenchmarkInjectLinks(b *testing.B) {
type base struct {
ID [16]byte `json:"id"`
Name string `json:"name"`
Brand string `json:"brand"`
Weight int `json:"weight"`
Expired bool `json:"expired"`
ExpirationDate time.Time `json:"expirationDate"`
}
type fruit struct {
base
}
type vegetable struct {
base
}
type cake struct {
base
}
type fridge struct {
base
Cakes []cake
Fruits []fruit
Vegetables []vegetable
}
inputTests := map[string]func() []fridge{
"1 fridge with 1 of each": func() []fridge {
return []fridge{
{
Cakes: make([]cake, 1),
Fruits: make([]fruit, 1),
Vegetables: make([]vegetable, 1),
},
}
},
"1 fridge with 6000 of each": func() []fridge {
return []fridge{
{
Cakes: make([]cake, 6000),
Fruits: make([]fruit, 6000),
Vegetables: make([]vegetable, 6000),
},
}
},
"6000 empty fridges": func() []fridge {
return make([]fridge, 6000)
},
"6000 fridges with 1 of each": func() []fridge {
result := make([]fridge, 6000)
for i := 0; i < len(result); i++ {
result[i] = fridge{
Cakes: make([]cake, 1),
Fruits: make([]fruit, 1),
Vegetables: make([]vegetable, 1),
}
}
return result
},
"600 fridges with 600 of each": func() []fridge {
result := make([]fridge, 600)
for i := 0; i < len(result); i++ {
result[i] = fridge{
Cakes: make([]cake, 600),
Fruits: make([]fruit, 600),
Vegetables: make([]vegetable, 600),
}
}
return result
},
}
registryTests := map[string]func() LinkRegistry{
// This test won't do much because there's an if-statement blocking execution, but it gives us a bit of insight
"no links": NewLinkRegistry,
"3 links for fridge": func() LinkRegistry {
registry := NewLinkRegistry()
RegisterOn(registry, fridge{}, Self("/api/fridges", "Get this fridge"), Post("/api/fridges", "Create a new fridge"), Delete("/api/v1/fridges/{id}", "Delete a fridge"))
return registry
},
"3 links for all objects": func() LinkRegistry {
registry := NewLinkRegistry()
RegisterOn(registry, fridge{}, Self("/api/fridges", "Get this fridge"), Post("/api/fridges", "Create a new fridge"), Delete("/api/v1/fridges/{id}", "Delete a fridge"))
RegisterOn(registry, vegetable{}, Self("/api/vegetables", "Get this vegetable"), Post("/api/vegetables", "Create a new vegetable"), Delete("/api/v1/vegetables/{id}", "Delete a vegetable"))
RegisterOn(registry, fruit{}, Self("/api/fruits", "Get this fruit"), Post("/api/fruits", "Create a new fruit"), Delete("/api/v1/fruits/{id}", "Delete a fruit"))
RegisterOn(registry, cake{}, Self("/api/cakes", "Get this cake"), Post("/api/cakes", "Create a new cake"), Delete("/api/v1/cakes/{id}", "Delete a cake"))
return registry
},
}
for registryName, registryData := range registryTests {
for inputName, inputData := range inputTests {
b.Run(fmt.Sprintf("%s, %s", registryName, inputName), func(b *testing.B) {
for i := 0; i < b.N; i++ {
_ = InjectLinks(registryData(), inputData())
}
})
}
}
}