-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsafePushing_test.go
106 lines (98 loc) · 2.51 KB
/
safePushing_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
package astra
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestAddReturnType(t *testing.T) {
t.Run("AddingToEmptySlice", func(t *testing.T) {
var emptySlice []ReturnType
newReturn := ReturnType{
StatusCode: 200,
Field: Field{
Package: "test",
Type: "TestType",
},
}
result := AddReturnType(emptySlice, newReturn)
expected := []ReturnType{newReturn}
assert.Equal(t, expected, result)
})
t.Run("AddingToExistingSliceWithSameField", func(t *testing.T) {
existingReturn := ReturnType{
StatusCode: 200,
Field: Field{
Package: "test",
Type: "TestType",
},
}
existingSlice := []ReturnType{existingReturn}
newReturn := ReturnType{
StatusCode: 200,
Field: Field{
Package: "test",
Type: "TestType",
},
}
result := AddReturnType(existingSlice, newReturn)
assert.Equal(t, existingSlice, result)
})
t.Run("AddingToExistingSliceWithDifferentField", func(t *testing.T) {
existingReturn := ReturnType{
StatusCode: 200,
Field: Field{
Package: "test",
Type: "TestType",
},
}
existingSlice := []ReturnType{existingReturn}
differentFieldReturn := ReturnType{
StatusCode: 400,
Field: Field{
Package: "other",
Type: "OtherType",
},
}
result := AddReturnType(existingSlice, differentFieldReturn)
expected := append(existingSlice, differentFieldReturn)
assert.Equal(t, expected, result)
})
}
func TestAddComponent(t *testing.T) {
t.Run("AddingToEmptySlice", func(t *testing.T) {
var emptySlice []Field
newComponent := Field{
Name: "ComponentA",
Package: "test",
}
result := AddComponent(emptySlice, newComponent)
expected := []Field{newComponent}
assert.Equal(t, expected, result)
})
t.Run("AddingToExistingSliceWithSameComponent", func(t *testing.T) {
existingComponent := Field{
Name: "ComponentA",
Package: "test",
}
existingSlice := []Field{existingComponent}
newComponent := Field{
Name: "ComponentA",
Package: "test",
}
result := AddComponent(existingSlice, newComponent)
assert.Equal(t, existingSlice, result)
})
t.Run("AddingToExistingSliceWithDifferentComponent", func(t *testing.T) {
existingComponent := Field{
Name: "ComponentA",
Package: "test",
}
existingSlice := []Field{existingComponent}
differentComponent := Field{
Name: "ComponentB",
Package: "other",
}
result := AddComponent(existingSlice, differentComponent)
expected := append(existingSlice, differentComponent)
assert.Equal(t, expected, result)
})
}