-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
serialization_test.go
59 lines (53 loc) · 1.8 KB
/
serialization_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
/*
* Copyright (c) 2024 Go IoC
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*/
package web
import (
"github.com/goioc/di"
"github.com/stretchr/testify/assert"
)
const jsonData = "{\"A\":\"a\",\"B\":42,\"InnerStruct\":{\"C\":\"42\"}}"
type outerStruct struct {
A string
B int
InnerStruct struct {
C string
}
}
func (suite *TestSuite) TestSerialize() {
instance, err := di.GetInstanceSafe(GoiocSerializer)
assert.NotNil(suite.T(), instance)
assert.NoError(suite.T(), err)
serializer := instance.(Serializer)
object := outerStruct{
A: "a",
B: 42,
InnerStruct: struct{ C string }{C: "42"},
}
serializedBytes, err := serializer.Serialize(object)
assert.NoError(suite.T(), err)
serializedString := string(serializedBytes)
assert.Equal(suite.T(), jsonData, serializedString)
}
func (suite *TestSuite) TestDeserialize() {
instance, err := di.GetInstanceSafe(GoiocSerializer)
assert.NotNil(suite.T(), instance)
assert.NoError(suite.T(), err)
serializer := instance.(Serializer)
object := new(outerStruct)
err = serializer.Deserialize([]byte(jsonData), object)
assert.NoError(suite.T(), err)
assert.Equal(suite.T(), "a", object.A)
assert.Equal(suite.T(), 42, object.B)
assert.Equal(suite.T(), "42", object.InnerStruct.C)
}