-
Notifications
You must be signed in to change notification settings - Fork 67
/
Copy pathz_bytes_session_test.go
188 lines (173 loc) · 5.14 KB
/
z_bytes_session_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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
//Copyright 2014 Rana Ian. All rights reserved.
//Use of this source code is governed by The MIT License
//found in the accompanying LICENSE file.
package ora_test
import (
"fmt"
"strings"
"testing"
"gopkg.in/rana/ora.v4"
)
//// bytes
//longRaw oracleColumnType = "long raw not null"
//longRawNull oracleColumnType = "long raw null"
//raw2000 oracleColumnType = "raw(2000) not null"
//raw2000Null oracleColumnType = "raw(2000) null"
//blob oracleColumnType = "blob not null"
//blobNull oracleColumnType = "blob null"
var _T_bytesCols = []string{
"longRaw", "longRawNull",
"raw2000", "raw2000Null",
"blob", "blobNull",
}
func TestBindDefine_bytes(t *testing.T) {
sc := ora.NewStmtCfg()
type testCase struct {
gen func() interface{}
ct oracleColumnType
gct ora.GoColumnType
}
testCases := make(map[string]testCase)
for _, ctName := range _T_bytesCols {
for _, typName := range []string{
"bytes", "OraBytes", "OraBytesLob",
"bytes2000", "OraBytes2000",
} {
if strings.HasSuffix(ctName, "Null") && !strings.Contains(typName, "Ora") {
continue
}
gct := ora.Bin
if strings.Contains(typName, "Ora") {
gct = ora.OraBin
}
testCases[typName+"_"+ctName] = testCase{
gen: _T_bytesGen[typName],
ct: _T_colType[ctName],
gct: gct,
}
}
}
for name, tc := range testCases {
tc := tc
if tc.gen == nil {
continue
}
t.Run(name, func(t *testing.T) {
t.Parallel()
testBindDefine(tc.gen(), tc.ct, t, sc, tc.gct)
})
}
}
func TestBindSlice_bytes(t *testing.T) {
sc := ora.NewStmtCfg()
type testCase struct {
ct oracleColumnType
gen func() interface{}
}
testCases := make(map[string]testCase)
for _, typName := range []string{
"bytesSlice", "OraBytesSlice",
"bytesSlice2000", "OraBytesSlice2000",
} {
for _, ctName := range _T_bytesCols {
typName := typName
if strings.HasSuffix(ctName, "Null") {
typName += "_null"
}
testCases[typName+"_"+ctName] = testCase{
ct: _T_colType[ctName],
gen: _T_bytesGen[typName],
}
}
}
for name, tc := range testCases {
tc := tc
if tc.gen == nil {
continue
}
t.Run(name, func(t *testing.T) {
t.Parallel()
testBindDefine(tc.gen(), tc.ct, t, sc)
})
}
}
func TestMultiDefine_bytes(t *testing.T) {
for _, ctName := range _T_bytesCols {
t.Run(ctName, func(t *testing.T) {
t.Parallel()
//enableLogging(t)
testMultiDefine(gen_bytes(9), _T_colType[ctName], t)
})
}
}
func TestWorkload_bytes(t *testing.T) {
for _, ctName := range []string{"raw2000", "raw2000Null", "blob", "blobNull"} {
ct := _T_colType[ctName]
t.Run(ctName, func(t *testing.T) {
if !strings.Contains(ctName, "lob") {
t.Parallel()
}
//if strings.Contains(ctName, "blob") {
//enableLogging(t)
//}
testWorkload(ct, t)
})
}
}
func TestBindDefine_bytes_nil(t *testing.T) {
sc := ora.NewStmtCfg()
for _, ctName := range []string{"longRawNull", "raw2000Null", "blobNull"} {
ct := _T_colType[ctName]
t.Run(ctName, func(t *testing.T) {
t.Parallel()
testBindDefine(nil, ct, t, sc)
})
}
}
var _T_bytesGen = map[string](func() interface{}){
"bytes": func() interface{} { return gen_bytes(9) },
"bytes2000": func() interface{} { return gen_bytes(2000) },
"OraBytes": func() interface{} { return gen_OraBytes(9, false) },
"OraBytes2000": func() interface{} { return gen_OraBytes(2000, false) },
"OraBytes_null": func() interface{} { return gen_OraBytes(9, true) },
"OraBytes2000_null": func() interface{} { return gen_OraBytes(2000, true) },
"OraBytesLob": func() interface{} { return gen_OraBytesLob(9, false) },
"bytesSlice": func() interface{} { return gen_bytesSlice(9) },
"bytesSlice2000": func() interface{} { return gen_bytesSlice(2000) },
"OraBytesSlice": func() interface{} { return gen_OraBytesSlice(9, false) },
"OraBytesSlice2000": func() interface{} { return gen_OraBytesSlice(2000, false) },
"OraBytesSlice_null": func() interface{} { return gen_OraBytesSlice(9, true) },
"OraBytesSlice2000_null": func() interface{} { return gen_OraBytesSlice(2000, true) },
}
//// Do not test workload of multiple Oracle LONG RAW types within the same table because
//// ORA-01754: a table may contain only one column of type LONG
//func TestWorkload_longRaw_session(t *testing.T) {
// testWorkload(testWorkloadColumnCount, t, longRaw)
//}
//// Do not test workload of multiple Oracle LONG RAW types within the same table because
//// ORA-01754: a table may contain only one column of type LONG
//func TestWorkload_longRawNull_session(t *testing.T) {
// testWorkload(testWorkloadColumnCount, t, longRawNull)
//}
func TestBindDefine_bytes_blob_size(t *testing.T) {
sc := ora.NewStmtCfg()
cfg := ora.Cfg()
defer ora.SetCfg(cfg)
ora.SetCfg(cfg.SetLobBufferSize(1024))
lbs := ora.Cfg().LobBufferSize()
for _, size := range []int{
lbs - 1,
lbs,
lbs + 1,
lbs*3 - 1,
lbs * 3,
lbs*3 + 1,
} {
t.Run(fmt.Sprintf("%d", size), func(t *testing.T) {
testBindDefine(gen_bytes(size), blob, t, sc, ora.Bin)
testBindDefine(gen_OraBytesLob(size, false), blob, t, sc, ora.Bin)
lob := gen_OraBytesLob(size, false)
testBindDefine(&lob, blob, t, sc, ora.Bin)
})
}
}