forked from minus5/gofreetds
-
Notifications
You must be signed in to change notification settings - Fork 0
/
conn_sp_test.go
365 lines (339 loc) · 10.2 KB
/
conn_sp_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
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
package freetds
import (
"strings"
"testing"
"time"
"github.com/stretchr/testify/assert"
)
func TestExecSp(t *testing.T) {
conn := ConnectToTestDb(t)
rst, err := conn.ExecSp("sp_who")
assert.Nil(t, err)
assert.NotNil(t, rst)
assert.Equal(t, 1, len(rst.results))
}
func TestExecSpReturnValue(t *testing.T) {
conn := ConnectToTestDb(t)
err := createProcedure(conn, "test_return_value", " as return 123")
assert.Nil(t, err)
rst, err := conn.ExecSp("test_return_value")
assert.Nil(t, err)
assert.False(t, rst.HasResults())
assert.Equal(t, 123, rst.Status())
}
func TestExecSpResults(t *testing.T) {
conn := ConnectToTestDb(t)
err := createProcedure(conn, "test_results", " as select 1 one; select 2 two; return 456")
assert.Nil(t, err)
rst, err := conn.ExecSp("test_results")
assert.Nil(t, err)
assert.Equal(t, 2, len(rst.results))
assert.Equal(t, 456, rst.Status())
}
func TestExecSpInputParams(t *testing.T) {
conn := ConnectToTestDb(t)
err := createProcedure(conn, "test_input_params", "@p1 int = 0, @p2 int, @p3 as varchar(10), @p4 datetime, @p5 varbinary(10) = null as select @p1 = @p1 + @p2; return @p1")
assert.Nil(t, err)
rst, err := conn.ExecSp("test_input_params", 123, 234, "pero", time.Now(), []byte{1, 2, 3, 4, 5, 6, 7, 8, 9, 0})
assert.Nil(t, err)
assert.False(t, rst.HasResults())
assert.Equal(t, 357, rst.Status())
}
func TestExecSpInputParamsTypes(t *testing.T) {
conn := ConnectToTestDb(t)
err := createProcedure(conn, "test_input_params3", `
@p1 int = 0, @p2 smallint, @p3 bigint, @p4 tinyint, @p5 money, @p6 real as
select @p1, @p2, @p3, @p4, @p5, @p6
return 1`)
assert.Nil(t, err)
//all input types are int, but they are converted to apropriate sql types
rst, err := conn.ExecSp("test_input_params3", 1, 2, 3, 4, 5, 6)
assert.Nil(t, err)
assert.Equal(t, 1, rst.Status())
var p1, p2, p3, p4, p5, p6 int
result := rst.results[0]
result.Next()
//returned as various types, and then converted to int
result.Scan(&p1, &p2, &p3, &p4, &p5, &p6)
assert.Equal(t, 1, p1)
assert.Equal(t, 2, p2)
assert.Equal(t, 3, p3)
assert.Equal(t, 4, p4)
assert.Equal(t, 5, p5)
assert.Equal(t, 6, p6)
}
func TestExecSpInputParams2(t *testing.T) {
conn := ConnectToTestDb(t)
err := createProcedure(conn, "test_input_params2", `
@p1 nvarchar(255), @p2 varchar(255), @p3 nvarchar(255), @p4 nchar(10), @p5 varbinary(10), @p6 as nvarchar(255) as
select @p1, @p2, @p3, @p4, @p5, @p6
if exists(select * from sys.tables where name = 'tbl_test_input_params2')
drop table tbl_test_input_params2
select @p1 p1, @p2 p2, @p3 p3, @p4 p4, @p5 p5, @p6 p6 into tbl_test_input_params2
return`)
assert.Nil(t, err)
want := "£¢§‹›†€ ✓"
wantp2 := "abc"
wantp3 := "" //test empty string
wantp4 := "šđčćžabcd✓"
wantp5 := []byte{1, 2, 3, 4, 5, 6, 7, 8, 9, 10}
wantp6 := "Mark"
rst, err := conn.ExecSp("test_input_params2", want, wantp2, wantp3, wantp4, wantp5, wantp6)
assert.Nil(t, err)
assert.NotNil(t, rst)
if rst == nil {
return
}
assert.True(t, rst.HasResults())
var got, gotp2, gotp3, gotp4, gotp6 string
var gotp5 []byte
result := rst.results[0]
result.Next()
result.Scan(&got, &gotp2, &gotp3, &gotp4, &gotp5, &gotp6)
assert.Equal(t, want, got)
assert.Equal(t, wantp2, gotp2)
assert.Equal(t, wantp3, gotp3)
assert.Equal(t, wantp4, gotp4)
assert.Equal(t, wantp5, gotp5)
assert.Equal(t, wantp6, gotp6)
//PrintResults(rst.Results)
}
func TestExecSpOutputParams(t *testing.T) {
conn := ConnectToTestDb(t)
err := createProcedure(conn, "test_output_params", "@p1 int output as select @p1 = @p1 + 1")
assert.Nil(t, err)
rst, err := conn.ExecSp("test_output_params", 123)
assert.Nil(t, err)
assert.False(t, rst.HasResults())
assert.Equal(t, 0, rst.Status())
assert.True(t, rst.HasOutputParams())
assert.Equal(t, len(rst.outputParams), 1)
assert.Equal(t, rst.outputParams[0].Name, "@p1")
assert.EqualValues(t, rst.outputParams[0].Value, 124)
var p1 int32
err = rst.ParamScan(&p1)
assert.Nil(t, err)
assert.EqualValues(t, p1, 124)
}
func TestGetSpParams(t *testing.T) {
conn := ConnectToTestDb(t)
params, err := conn.getSpParams("test_input_params")
assert.Nil(t, err)
p := params[0]
assert.Equal(t, p.Name, "@p1")
assert.EqualValues(t, p.ParameterId, 1)
assert.EqualValues(t, p.UserTypeId, SYBINT4)
assert.Equal(t, p.IsOutput, false)
assert.EqualValues(t, p.MaxLength, 4)
assert.Equal(t, int(p.Precision), 0xa)
assert.Equal(t, int(p.Scale), 0x0)
}
func createProcedure(conn *Conn, name, body string) error {
drop := `
if exists(select * from sys.procedures where name = 'sp_name')
drop procedure sp_name
`
create := `
create procedure sp_name
sp_body
`
drop = strings.Replace(drop, "sp_name", name, -1)
create = strings.Replace(create, "sp_name", name, -1)
create = strings.Replace(create, "sp_body", body, -1)
_, err := conn.Exec(drop)
if err != nil {
return err
}
_, err = conn.Exec(create)
return err
}
func TestHandlingNumericAndDecimalDataTypes(t *testing.T) {
conn := ConnectToTestDb(t)
err := createProcedure(conn, "test_sp_result", `as
select 1.25 f1, cast(1.26 as decimal(10,5)) f2, cast(1.27 as numeric(10,5)) f3
return 0`)
assert.Nil(t, err)
rst, err := conn.ExecSp("test_sp_result")
assert.Nil(t, err)
assert.Equal(t, 0, rst.Status())
assert.Equal(t, 1, len(rst.results))
result := rst.results[0]
result.Next()
var f1, f2, f3 float64
result.Scan(&f1, &f2, &f3)
assert.Equal(t, 1.25, f1)
assert.Equal(t, 1.26, f2)
assert.Equal(t, 1.27, f3)
}
func TestBugFixEmptyStringInSpParams(t *testing.T) {
conn := ConnectToTestDb(t)
err := createProcedure(conn, "test_sp_bug_fix_1", `@p1 varchar(255) as
select '_' + @p1 + '_', len(@p1)
return 0`)
assert.Nil(t, err)
rst, err := conn.ExecSp("test_sp_bug_fix_1", "")
assert.Nil(t, err)
assert.NotNil(t, rst)
var s string
var l int
rst.Scan(&s, &l)
//we are treating empty strings as single space
assert.Equal(t, "_ _", s)
assert.Equal(t, 0, l)
}
func TestBugGuidInSpParams(t *testing.T) {
conn := ConnectToTestDb(t)
err := createProcedure(conn, "test_sp_bug_fix_2", `@p1 uniqueidentifier as
select cast(@p1 as varchar(255)), @p1
return 0`)
assert.Nil(t, err)
var in, out, out2 string
in = "B5A0E32D-3F48-4CC2-A44B-74753D9CACF8"
rst, err := conn.ExecSp("test_sp_bug_fix_2", in)
assert.Nil(t, err)
assert.NotNil(t, rst)
rst.Scan(&out, &out2)
assert.Equal(t, in, out)
assert.Equal(t, in, out2)
}
/*
//ova petlja je ponekad pucala sa:
// SIGSEGV: segmentation violation
// signal arrived during cgo execution
//nisam uspio dotjearti zasto je to
//kada bi stavio onaj select vise ne bi pucalo
//kada bi stavio GC takodjer ne
//a i kada puca to je stohasticki
//SOLVED - nakon sto sam dodao refHolder u ExecSp vise ne puca
func TestBugFixSegmentationFault(t *testing.T) {
conn := ConnectToTestDb(t)
err := createProcedure(conn, "test_sp_bug_fix_2", `@p1 int,
--@p2 varchar(255),
@p3 varchar(255),
@p4 varchar(255),
@p5 money as
--select @p2
return 1`)
assert.Nil(t, err)
// s := "1"
s2 := "pero zdero"
s3 := "description"
i := 123
f := 12.34
for {
rst, err := conn.ExecSp("test_sp_bug_fix_2", i, s2, s3, f)
assert.Nil(t, err)
assert.NotNil(t, rst)
if err != nil {
break
}
}
}
*/
func TestStoredProcedureNotExists(t *testing.T) {
conn := ConnectToTestDb(t)
err := createProcedure(conn, "test_sp_not_exists", `as return`)
assert.Nil(t, err)
rst, err := conn.ExecSp("test_sp_not_exists")
assert.Nil(t, err)
assert.NotNil(t, rst)
_, err = conn.Exec("drop procedure test_sp_not_exists")
assert.Nil(t, err)
rst, err = conn.ExecSp("test_sp_not_exists")
assert.NotNil(t, err)
assert.Nil(t, rst)
}
func TestTimeSpParams(t *testing.T) {
conn := ConnectToTestDb(t)
err := createProcedure(conn, "test_sp_time_sp_params", `@p1 datetime as
insert into tm (tm) values(@p1)
select @p1, 123
return 0`)
assert.Nil(t, err)
f := func(tmIn time.Time) {
var tmOut time.Time
var i int
rst, err := conn.ExecSp("test_sp_time_sp_params", tmIn)
assert.Nil(t, err)
assert.NotNil(t, rst)
rst.Next()
rst.Scan(&tmOut, &i)
assert.Equal(t, tmIn.UTC(), tmOut.UTC())
if !tmIn.Equal(tmOut) {
t.Errorf("%s != %s", tmIn, tmOut)
}
}
f(time.Unix(1404856799, 0))
f(time.Unix(1404856800, 0))
f(time.Unix(1404856801, 0))
f(time.Unix(1404856799, 0).UTC())
f(time.Unix(1404856800, 0).UTC())
f(time.Unix(1404856801, 0).UTC())
}
func TestNewDateTypesParam(t *testing.T) {
conn := ConnectToTestDb(t)
err := createProcedure(conn, "test_sp_with_datetimeoffset_param", `
(@p1 datetimeoffset, @p2 date, @p3 time, @p4 datetime2) as
DECLARE @datetime datetime = @p1;
SELECT @datetime, @p1, @p2, @p3, @p4
return `)
assert.Nil(t, err)
p1 := "2025-12-10 12:32:10.1237000 +01:00"
p2 := "2025-12-10"
p3 := "12:30"
p4 := "2025-12-10 12:32:10"
rst, err := conn.ExecSp("test_sp_with_datetimeoffset_param", p1, p2, p3, p4)
assert.Nil(t, err)
assert.NotNil(t, rst)
rst.Next()
var op1, op2, op3, op4 string
var dt time.Time
err = rst.Scan(&dt, &op1, &op2, &op3, &op4)
assert.Nil(t, err)
assert.Equal(t, "2025-12-10T12:32:10+01:00", dt.Format(time.RFC3339))
assert.Equal(t, "2025-12-10 12:32:10.1237000 +01:00", op1)
assert.Equal(t, "2025-12-10", op2)
assert.Equal(t, "12:30:00.0000000", op3)
assert.Equal(t, "2025-12-10 12:32:10.0000000", op4)
}
func TestExecSpWithVarcharMax(t *testing.T) {
conn := ConnectToTestDb(t)
err := createProcedure(conn, "test_sp_varchar_max", `
(@p1 varchar(max) output) as
select @p1`)
assert.Nil(t, err)
str := longString(8000)
rst, err := conn.ExecSp("test_sp_varchar_max", str)
assert.Nil(t, err)
var str2 string
result := rst.results[0]
result.Next()
err = result.Scan(&str2)
assert.Nil(t, err)
assert.Equal(t, str, str2)
var str3 string
err = rst.ParamScan(&str3)
assert.Nil(t, err)
assert.Equal(t, str, str3)
}
func TestNullValueScan(t *testing.T) {
conn := ConnectToTestDb(t)
err := createProcedure(conn, "test_sp_null_value_scan", `
as
DECLARE @p1 varchar(255)
DECLARE @p2 varchar(255)
set @p2 = 'p2'
SELECT @p1, @p2
`)
assert.Nil(t, err)
rst, err := conn.ExecSp("test_sp_null_value_scan")
assert.Nil(t, err)
assert.NotNil(t, rst)
rst.Next()
var p1, p2 *string
err = rst.Scan(&p1, &p2)
assert.Nil(t, err)
assert.Nil(t, p1)
assert.NotNil(t, p2)
assert.Equal(t, "p2", *p2)
}