-
-
Notifications
You must be signed in to change notification settings - Fork 77
/
strings_test.go
91 lines (88 loc) · 1.55 KB
/
strings_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
package trdsql
import (
"reflect"
"testing"
"time"
)
func TestValString(t *testing.T) {
type args struct {
v any
}
tests := []struct {
name string
args args
want string
}{
{
name: "test1",
args: args{v: "test"},
want: "test",
},
{
name: "testTime",
args: args{v: time.Date(2020, 1, 3, 17, 28, 18, 0, time.UTC)},
want: "2020-01-03T17:28:18Z",
},
{
name: "testByte",
args: args{v: []byte("test")},
want: "test",
},
{
name: "testByteHex",
args: args{v: []byte("\xf3\xf2\xff")},
want: "\\xf3f2ff",
},
{
name: "testNil",
args: args{v: nil},
want: "",
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := ValString(tt.args.v); got != tt.want {
t.Errorf("ValString() = %v, want %v", got, tt.want)
}
})
}
}
func Test_replaceNULL(t *testing.T) {
type args struct {
NULLString string
v any
}
tests := []struct {
name string
args args
want any
}{
{
name: "test1",
args: args{NULLString: "NULL", v: any("N")},
want: "N",
},
{
name: "testMatch",
args: args{NULLString: "NULL", v: any("NULL")},
want: nil,
},
{
name: "testMatchByte",
args: args{NULLString: "NULL", v: []byte("NULL")},
want: nil,
},
{
name: "testMatchNum",
args: args{NULLString: "", v: 1},
want: 1,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := replaceNULL(tt.args.NULLString, tt.args.v); !reflect.DeepEqual(got, tt.want) {
t.Errorf("replaceNULL() = %v, want %v", got, tt.want)
}
})
}
}