-
-
Notifications
You must be signed in to change notification settings - Fork 110
/
null_test.go
115 lines (111 loc) · 2.17 KB
/
null_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
package datatypes
import (
"database/sql/driver"
"reflect"
"testing"
)
func TestNull_Scan(t *testing.T) {
type args struct {
value any
}
type testCase[T any] struct {
name string
n Null[T]
args args
wantErr bool
}
tests := []testCase[int64]{
{
name: "test",
n: Null[int64]{},
args: args{value: "test"},
wantErr: true,
}, {
name: "test2",
n: Null[int64]{},
args: args{value: "6"},
wantErr: false,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if err := tt.n.Scan(tt.args.value); (err != nil) != tt.wantErr {
t.Errorf("Scan() error = %v, wantErr %v", err, tt.wantErr)
}
})
}
}
func TestNull_Value(t *testing.T) {
type testCase[T any] struct {
name string
n Null[T]
want driver.Value
wantErr bool
}
var (
v1 int64 = 1
v2 int64 = 2
)
tests := []testCase[int64]{
{
name: "test",
n: Null[int64]{V: v1, Valid: true},
want: v1,
wantErr: false,
}, {
name: "test",
n: Null[int64]{V: v2, Valid: false},
want: nil,
wantErr: false,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got, err := tt.n.Value()
if (err != nil) != tt.wantErr {
t.Errorf("Value() error = %v, wantErr %v", err, tt.wantErr)
return
}
if !reflect.DeepEqual(got, tt.want) {
t.Errorf("Value() got = %v, want %v", got, tt.want)
}
})
}
}
func TestNullInt64_Value(t *testing.T) {
type testCase[T any] struct {
name string
n NullInt64
want driver.Value
wantErr bool
}
var (
v1 int64 = 1
v2 int64 = 2
)
tests := []testCase[int64]{
{
name: "test",
n: NullInt64{V: v1, Valid: true},
want: v1,
wantErr: false,
}, {
name: "test",
n: NullInt64{V: v2, Valid: false},
want: nil,
wantErr: false,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got, err := tt.n.Value()
if (err != nil) != tt.wantErr {
t.Errorf("Int64_Value() error = %v, wantErr %v", err, tt.wantErr)
return
}
if !reflect.DeepEqual(got, tt.want) {
t.Errorf("Int64_Value() got = %v, want %v", got, tt.want)
}
})
}
}