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
|
// Copyright 2019 Huan Du. All rights reserved.
// Licensed under the MIT license that can be found in the LICENSE file.
package clone
import (
"testing"
"github.com/huandu/go-assert"
)
type testType struct {
Foo string
Bar map[string]interface{}
Player []float64
}
type testSimple struct {
Foo int
Bar string
}
func TestWrap(t *testing.T) {
a := assert.New(t)
a.Equal(Wrap(nil), nil)
orig := &testType{
Foo: "abcd",
Bar: map[string]interface{}{
"def": 123,
"ghi": 78.9,
},
Player: []float64{
12.3, 45.6, -78.9,
},
}
wrapped := Wrap(orig).(*testType)
a.Use(&orig, &wrapped)
a.Equal(orig, wrapped)
a.Equal(Wrap(wrapped), wrapped)
wrapped.Foo = "xyz"
wrapped.Bar["ghi"] = 98.7
wrapped.Player[1] = 65.4
a.Equal(orig.Foo, "abcd")
a.Equal(orig.Bar["ghi"], 78.9)
a.Equal(orig.Player[1], 45.6)
actual := Unwrap(wrapped).(*testType)
a.Assert(orig == actual)
}
func TestWrapScalarPtr(t *testing.T) {
a := assert.New(t)
i := 123
c := &i
v := Wrap(c).(*int)
orig := Unwrap(v).(*int)
a.Use(&a, &i, &c, &v)
a.Assert(*v == *c)
a.Assert(orig == c)
}
func TestWrapNonePtr(t *testing.T) {
a := assert.New(t)
cases := []interface{}{
123, nil, "abcd", []string{"ghi"}, map[string]int{"xyz": 123},
}
for _, c := range cases {
v := Wrap(c)
a.Equal(c, v)
}
}
func TestUnwrapValueWhichIsNotWrapped(t *testing.T) {
a := assert.New(t)
s := &testType{
Foo: "abcd",
Bar: map[string]interface{}{
"def": 123,
"ghi": 78.9,
},
Player: []float64{
12.3, 45.6, -78.9,
},
}
v := Unwrap(s).(*testType)
v.Foo = "xyz"
a.Equal(s, v)
}
func TestUnwrapPlainValueWhichIsNotWrapped(t *testing.T) {
a := assert.New(t)
i := 0
cases := []interface{}{
123, "abc", nil, &i,
}
for _, c := range cases {
v := Unwrap(c)
a.Equal(c, v)
old := c
Undo(c)
a.Equal(c, old)
}
}
func TestUndo(t *testing.T) {
a := assert.New(t)
orig := &testType{
Foo: "abcd",
Bar: map[string]interface{}{
"def": 123,
"ghi": 78.9,
},
Player: []float64{
12.3, 45.6, -78.9,
},
}
wrapped := Wrap(orig).(*testType)
a.Use(&orig, &wrapped)
wrapped.Foo = "xyz"
wrapped.Bar["ghi"] = 98.7
wrapped.Player[1] = 65.4
a.Equal(orig.Foo, "abcd")
a.Equal(orig.Bar["ghi"], 78.9)
a.Equal(orig.Player[1], 45.6)
Undo(wrapped)
a.Equal(orig, wrapped)
}
|