forked from ravendb/ravendb-go-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcustom_serialization_test.go
128 lines (108 loc) · 2.82 KB
/
custom_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
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
package tests
import (
"fmt"
"reflect"
"strconv"
"strings"
"testing"
ravendb "github.com/ravendb/ravendb-go-client"
"github.com/stretchr/testify/assert"
)
const (
Dollar = "USD"
Euro = "EUR"
)
func customSerializationTestSerialization(t *testing.T, driver *RavenTestDriver) {
var err error
store := driver.getDocumentStoreMust(t)
defer store.Close()
{
session := openSessionMust(t, store)
product1 := &Product3{
Name: "iPhone",
Price: NewMoney(9999, Dollar),
}
product2 := &Product3{
Name: "Camera",
Price: NewMoney(150, Euro),
}
product3 := &Product3{
Name: "Bread",
Price: NewMoney(2, Dollar),
}
err = session.Store(product1)
assert.NoError(t, err)
err = session.Store(product2)
assert.NoError(t, err)
err = session.Store(product3)
assert.NoError(t, err)
err = session.SaveChanges()
assert.NoError(t, err)
session.Close()
}
// verify if value was properly serialized
{
command, err := ravendb.NewGetDocumentsCommand([]string{"product3s/1-A"}, nil, false)
assert.NoError(t, err)
err = store.GetRequestExecutor("").ExecuteCommand(command, nil)
assert.NoError(t, err)
productJSON := command.Result.Results[0]
priceNode := productJSON["price"]
assert.Equal(t, priceNode, "9999 USD")
}
// verify if query properly serialize value
{
session := openSessionMust(t, store)
q := session.QueryCollectionForType(reflect.TypeOf(&Product3{}))
q = q.WhereEquals("price", NewMoney(2, Dollar))
var productsForTwoDollars []*Product3
err = q.GetResults(&productsForTwoDollars)
assert.NoError(t, err)
assert.Equal(t, len(productsForTwoDollars), 1)
product := productsForTwoDollars[0]
assert.Equal(t, product.Name, "Bread")
session.Close()
}
}
// unique name to not conflict with Proudct and Product2 elsewhere
type Product3 struct {
Name string `json:"name"`
Price Money `json:"price"`
}
type Money struct {
Currency string `json:"currency"`
Amount int `json:"amount"`
}
func NewMoney(n int, curr string) Money {
return Money{
Currency: curr,
Amount: n,
}
}
func (m Money) MarshalJSON() ([]byte, error) {
s := fmt.Sprintf(`"%d %s"`, m.Amount, m.Currency)
return []byte(s), nil
}
func (m *Money) UnmarshalJSON(d []byte) error {
s := string(d)
s = strings.TrimPrefix(s, `"`)
s = strings.TrimSuffix(s, `"`)
parts := strings.Split(s, " ")
if len(parts) != 2 {
return fmt.Errorf("'%s' is not valid JSON serialization for Money", s)
}
n, err := strconv.Atoi(parts[0])
if err != nil {
return fmt.Errorf("'%s' is not valid JSON serialization for Money", s)
}
m.Amount = n
m.Currency = parts[1]
return nil
}
func TestCustomSerialization(t *testing.T) {
driver := createTestDriver(t)
destroy := func() { destroyDriver(t, driver) }
defer recoverTest(t, destroy)
// matches the order of Java tests
customSerializationTestSerialization(t, driver)
}