forked from CiscoCloud/toscalib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
utils_test.go
158 lines (139 loc) · 3.43 KB
/
utils_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
package toscalib
import (
"os"
"path/filepath"
"reflect"
"testing"
"github.com/davecgh/go-spew/spew"
)
type I interface{}
type A struct {
Greeting string
Message string
Pi float64
}
type B struct {
Struct A
Ptr *A
Answer int
Map map[string]string
StructMap map[string]interface{}
Slice []string
}
func create() I {
// The type C is actually hidden, but reflection allows us to look inside it
type C struct {
String string
}
return B{
Struct: A{
Greeting: "Hello!",
Message: "translate this",
Pi: 3.14,
},
Ptr: &A{
Greeting: "What's up?",
Message: "point here",
Pi: 3.14,
},
Map: map[string]string{
"Test": "translate this as well",
},
StructMap: map[string]interface{}{
"C": C{
String: "deep",
},
},
Slice: []string{
"and one more",
},
Answer: 42,
}
}
func TestNilPointerToStruct(t *testing.T) {
var original *B
translated := clone(original)
if ok := reflect.DeepEqual(original, translated); !ok {
t.Fatal(spew.Sdump(original), "!=", spew.Sdump(translated))
}
}
func TestNilPointerToInterface(t *testing.T) {
var original *I
translated := clone(original)
if ok := reflect.DeepEqual(original, translated); !ok {
t.Fatal(spew.Sdump(original), "!=", spew.Sdump(translated))
}
}
func TestStructWithNoElements(t *testing.T) {
type E struct{}
var original E
translated := clone(original)
if ok := reflect.DeepEqual(original, translated); !ok {
t.Fatal(spew.Sdump(original), "!=", spew.Sdump(translated))
}
}
func TestEmptyStruct(t *testing.T) {
var original B
translated := clone(original)
if ok := reflect.DeepEqual(original, translated); !ok {
t.Fatal(spew.Sdump(original), "!=", spew.Sdump(translated))
}
}
func TestCloneStruct(t *testing.T) {
created := create()
original := created.(B)
translated := clone(original)
if ok := reflect.DeepEqual(original, translated); !ok {
t.Fatal(spew.Sdump(original), "!=", spew.Sdump(translated))
}
}
func TestCloneStructWrappedWithInterface(t *testing.T) {
created := create()
original := created
translated := clone(original)
if ok := reflect.DeepEqual(original, translated); !ok {
t.Fatal(spew.Sdump(original), "!=", spew.Sdump(translated))
}
}
func TestClonePointerToStructWrappedWithInterface(t *testing.T) {
created := create()
original := &created
translated := clone(original)
if ok := reflect.DeepEqual(original, translated); !ok {
t.Fatal(spew.Sdump(original), "!=", spew.Sdump(translated))
}
}
func TestCloneStructWithPointerToStructWrappedWithInterface(t *testing.T) {
created := create()
type D struct {
Payload *I
}
original := D{
Payload: &created,
}
translated := clone(original)
if ok := reflect.DeepEqual(original, translated); !ok {
t.Fatal(spew.Sdump(original), "!=", spew.Sdump(translated))
}
}
func TestIsAbsLocalPath(t *testing.T) {
type localStruct struct {
fileName string
expected bool
}
testFiles := []localStruct{{"tests/example1.yaml", true},
{"tests/tosca_helloworld.yaml", true},
{"does_not_exist.yaml", false},
}
dir, _ := os.Getwd()
for _, testFile := range testFiles {
result := isAbsLocalPath(filepath.Join(dir, testFile.fileName))
if result != testFile.expected {
t.Errorf("checking profile %v, expected %v, actual %v", testFile.fileName, testFile.expected, result)
}
}
//test case relative path
if isAbsLocalPath("tests/tosca_helloworld.yaml") {
t.Errorf("relative path test case: expected false but got true")
}
}