forked from elliotchance/phpserialize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
serialize_test.go
257 lines (221 loc) · 7.47 KB
/
serialize_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
package phpserialize_test
import (
"reflect"
"testing"
"github.com/hexon/phpserialize"
)
var (
heyStr = "hey"
)
type struct1 struct {
Foo int
Bar Struct2
hidden bool
Baz string
}
type structTag struct {
Foo Struct2 `php:"bar"`
Bar int `php:"foo"`
hidden bool
Balu string `php:"baz"`
Poko string `json:"pika"`
Ignored string `php:"-"`
Nilptr *Struct2 `php:",omitnilptr"`
}
type Struct2 struct {
Qux float64
}
type Struct3 struct {
ObjectArray []Struct2
IntArray []int64
FloatArray []float64
StringArray []string
}
type Nillable struct {
Foo string
Bar Struct2
FooPtr *string
BarPtr *Struct2
}
type marshalTest struct {
input interface{}
output []byte
options *phpserialize.MarshalOptions
}
func getStdClassOnly() *phpserialize.MarshalOptions {
stdClassOnly := phpserialize.DefaultMarshalOptions()
stdClassOnly.OnlyStdClass = true
return stdClassOnly
}
func getUseJsonTag() *phpserialize.MarshalOptions {
useJsonTag := phpserialize.DefaultMarshalOptions()
useJsonTag.UseJsonTag = true
return useJsonTag
}
// These tests have been adapted from the wonderful work at:
// https://github.com/mitsuhiko/phpserialize/blob/master/tests.py
var marshalTests = map[string]marshalTest{
// encode null
"null": {nil, []byte("N;"), nil},
// encode bool
"true": {true, []byte("b:1;"), nil},
"false": {false, []byte("b:0;"), nil},
// encode int
"int: 0": {0, []byte("i:0;"), nil},
"int: 5": {5, []byte("i:5;"), nil},
"int: -8": {-8, []byte("i:-8;"), nil},
"int8: 20": {int8(20), []byte("i:20;"), nil},
"int16: 22": {int16(22), []byte("i:22;"), nil},
"int32: 27": {int32(27), []byte("i:27;"), nil},
"int64: 28": {int64(28), []byte("i:28;"), nil},
"uint: 3": {uint(3), []byte("i:3;"), nil},
"uint8: 4": {uint8(4), []byte("i:4;"), nil},
"uint16: 7": {uint16(7), []byte("i:7;"), nil},
"uint32: 9": {uint32(9), []byte("i:9;"), nil},
"uint64: 11": {uint64(11), []byte("i:11;"), nil},
// encode float
"float64: 3.2": {3.2, []byte("d:3.2;"), nil},
"float64: 10.0": {10.0, []byte("d:10;"), nil},
"float64: 123.456789": {123.456789, []byte("d:123.456789;"), nil},
"float64: 1.23e9": {1.23e9, []byte("d:1230000000;"), nil},
"float64: -17.23": {3.2, []byte("d:3.2;"), nil},
"float32: 4.8": {float32(4.8), []byte("d:4.8;"), nil},
// encode string
"string: ''": {"", []byte("s:0:\"\";"), nil},
"string: 'Hello world'": {
"Hello world",
[]byte("s:11:\"Hello world\";"),
nil,
},
"string: 'Björk Guðmundsdóttir'": {
"Björk Guðmundsdóttir",
[]byte("s:23:\"Björk Guðmundsdóttir\";"),
nil,
},
// encode binary
"[]byte: \\001\\002\\003": {
[]byte{1, 2, 3},
[]byte("s:3:\"\\x01\\x02\\x03\";"),
nil,
},
// encode array (slice)
"[]float64: [7.89]": {
[]float64{7.89},
[]byte("a:1:{i:0;d:7.89;}"),
nil,
},
"[]int: [7, 8, 9]": {
[]int{7, 8, 9},
[]byte("a:3:{i:0;i:7;i:1;i:8;i:2;i:9;}"),
nil,
},
"[]interface{}: [7.2, 'foo']": {
[]interface{}{7.2, "foo"},
[]byte("a:2:{i:0;d:7.2;i:1;s:3:\"foo\";}"),
nil,
},
// encode associative array (map)
"map[string]int: {'foo': 10, 'bar': 20}": {
map[string]int{"foo": 10, "bar": 20},
[]byte("a:2:{s:3:\"bar\";i:20;s:3:\"foo\";i:10;}"),
nil,
},
"map[int]interface{}: {1: 10, 2: 'foo'}": {
map[int]interface{}{1: 10, 2: "foo"},
[]byte("a:2:{i:1;i:10;i:2;s:3:\"foo\";}"),
nil,
},
// encode object (struct)
"struct1{Foo int, Bar Struct2{Qux float64}, hidden bool, Bar string}": {
struct1{10, Struct2{1.23}, true, "yay"},
[]byte("O:7:\"struct1\":3:{s:3:\"foo\";i:10;s:3:\"bar\";O:7:\"Struct2\":1:{s:3:\"qux\";d:1.23;}s:3:\"baz\";s:3:\"yay\";}"),
nil,
},
"&struct1{Foo int, Bar Struct2{Qux float64}, hidden bool}": {
&struct1{20, Struct2{7.89}, false, "yay"},
[]byte("O:7:\"struct1\":3:{s:3:\"foo\";i:20;s:3:\"bar\";O:7:\"Struct2\":1:{s:3:\"qux\";d:7.89;}s:3:\"baz\";s:3:\"yay\";}"),
nil,
},
// encode object with array of objects
"struct3{ObjectArray Struct2{Qux float64}, IntArray {1, 2}, FloatArray {1.0, 2.0}, StringArray {'a', 'b'}}": {
Struct3{[]Struct2{{1.1}, {2.2}}, []int64{1, 2}, []float64{1.0, 2.0}, []string{"a", "b"}},
[]byte("O:7:\"Struct3\":4:{s:11:\"objectArray\";a:2:{i:0;O:7:\"Struct2\":1:{s:3:\"qux\";d:1.1;}i:1;O:7:\"Struct2\":1:{s:3:\"qux\";d:2.2;}}s:8:\"intArray\";a:2:{i:0;i:1;i:1;i:2;}s:10:\"floatArray\";a:2:{i:0;d:1;i:1;d:2;}s:11:\"stringArray\";a:2:{i:0;s:1:\"a\";i:1;s:1:\"b\";}}"),
nil,
},
// encode object (struct with tags)
"structTag{Bar int, Foo Struct2{Qux float64}, hidden bool, Balu string, Nilptr <nil>}": {
structTag{Struct2{1.23}, 10, true, "yay", "papa", "", nil},
[]byte("O:9:\"structTag\":4:{s:3:\"bar\";O:7:\"Struct2\":1:{s:3:\"qux\";d:1.23;}s:3:\"foo\";i:10;s:3:\"baz\";s:3:\"yay\";s:4:\"poko\";s:4:\"papa\";}"),
nil,
},
// encode object (struct with tags and 1 json tag)
"structJsonTag{Bar int, Foo Struct2{Qux float64}, hidden bool, Balu string, Nilptr <nil>}": {
structTag{Struct2{1.23}, 10, true, "yay", "papa", "", nil},
[]byte("O:9:\"structTag\":4:{s:3:\"bar\";O:7:\"Struct2\":1:{s:3:\"qux\";d:1.23;}s:3:\"foo\";i:10;s:3:\"baz\";s:3:\"yay\";s:4:\"pika\";s:4:\"papa\";}"),
getUseJsonTag(),
},
// stdClassOnly
"struct1{Foo int, Bar Struct2{Qux float64}, hidden bool}: OnlyStdClass = true": {
struct1{10, Struct2{1.23}, true, "yay"},
[]byte("O:8:\"stdClass\":3:{s:3:\"foo\";i:10;s:3:\"bar\";O:8:\"stdClass\":1:{s:3:\"qux\";d:1.23;}s:3:\"baz\";s:3:\"yay\";}"),
getStdClassOnly(),
},
"&struct1{Foo int, Bar Struct2{Qux float64}, hidden bool}: OnlyStdClass = true": {
&struct1{20, Struct2{7.89}, false, "yay"},
[]byte("O:8:\"stdClass\":3:{s:3:\"foo\";i:20;s:3:\"bar\";O:8:\"stdClass\":1:{s:3:\"qux\";d:7.89;}s:3:\"baz\";s:3:\"yay\";}"),
getStdClassOnly(),
},
// encode object with pointers
"Nillable{Foo string, Bar Struct2{Qux float64}, FooPtr *string, BarPtr *Struct2{Qux float64}": {
Nillable{"yay", Struct2{10}, &heyStr, &Struct2{}},
[]byte("O:8:\"Nillable\":4:{s:3:\"foo\";s:3:\"yay\";s:3:\"bar\";O:7:\"Struct2\":1:{s:3:\"qux\";d:10;}s:6:\"fooPtr\";s:3:\"hey\";s:6:\"barPtr\";O:7:\"Struct2\":1:{s:3:\"qux\";d:0;}}"),
nil,
},
"Nillable{Foo string, Bar Struct2{Qux float64}, FooPtr <nil>, BarPtr <nil>": {
Nillable{"", Struct2{}, nil, nil},
[]byte("O:8:\"Nillable\":4:{s:3:\"foo\";s:0:\"\";s:3:\"bar\";O:7:\"Struct2\":1:{s:3:\"qux\";d:0;}s:6:\"fooPtr\";N;s:6:\"barPtr\";N;}"),
nil,
},
}
func TestMarshal(t *testing.T) {
for testName, test := range marshalTests {
t.Run(testName, func(t *testing.T) {
if test.options == nil {
test.options = phpserialize.DefaultMarshalOptions()
}
result, err := phpserialize.Marshal(test.input, test.options)
if err != nil {
t.Error(err)
}
if !reflect.DeepEqual(result, test.output) {
t.Errorf("Expected '%v', got '%v'", string(test.output),
string(result))
}
})
}
}
func TestMarshalFail(t *testing.T) {
options := phpserialize.DefaultMarshalOptions()
result, err := phpserialize.Marshal(uintptr(13), options)
if err == nil {
t.Error("expected error to occur")
}
if result != nil {
t.Error("result was not nil")
}
if err.Error() != "can not encode: uintptr" {
t.Error(err.Error())
}
}
func TestMarshalEscape(t *testing.T) {
for testName, test := range escapeTests {
t.Run(testName, func(t *testing.T) {
options := phpserialize.DefaultMarshalOptions()
result, err := phpserialize.Marshal(test.Unserialized, options)
expectErrorToNotHaveOccurred(t, err)
if test.Serialized != string(result) {
t.Errorf("Expected:\n %#+v\nGot:\n %#+v", test.Serialized, result)
}
})
}
}