-
Notifications
You must be signed in to change notification settings - Fork 15
/
integration_cursorClose_test.go
229 lines (191 loc) · 6.2 KB
/
integration_cursorClose_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
// SPDX-FileCopyrightText: 2021 SAP SE
// SPDX-FileCopyrightText: 2022 SAP SE
// SPDX-FileCopyrightText: 2023 SAP SE
//
// SPDX-License-Identifier: Apache-2.0
//go:build integration
// +build integration
package ase
import (
"context"
"database/sql"
"fmt"
"testing"
"github.com/SAP/go-dblib/integration"
)
func TestCursorClose(t *testing.T) {
t.Run("SingleCursor", func(t *testing.T) {
integration.TestForEachDB("TestCursorCloseSingleCursor", t, func(t *testing.T, db *sql.DB, tableName string) {
wrapper(t, db, tableName, singleCursor)
})
})
t.Run("SingleCursorWithArgs", func(t *testing.T) {
integration.TestForEachDB("TestCursorCloseSingleCursorWithArgs", t, func(t *testing.T, db *sql.DB, tableName string) {
wrapper(t, db, tableName, singleCursorWithArgs)
})
})
t.Run("TwoCursors", func(t *testing.T) {
integration.TestForEachDB("TestCursorCloseTwoCursors", t, func(t *testing.T, db *sql.DB, tableName string) {
wrapper(t, db, tableName, twoCursors)
})
})
t.Run("TwoCursorsOneWithArgs", func(t *testing.T) {
integration.TestForEachDB("TestCursorCloseTwoCursorsOneWithArgs", t, func(t *testing.T, db *sql.DB, tableName string) {
wrapper(t, db, tableName, twoCursorsOneWithArgs)
})
})
t.Run("TwoCursorsWithArgs", func(t *testing.T) {
integration.TestForEachDB("TestCursorCloseTwoCursorsWithArgs", t, func(t *testing.T, db *sql.DB, tableName string) {
wrapper(t, db, tableName, twoCursorsWithArgs)
})
})
t.Run("TwoCursorsOneWithArgs2", func(t *testing.T) {
integration.TestForEachDB("TestCursorCloseTwoCursorsOneWithArgs2", t, func(t *testing.T, db *sql.DB, tableName string) {
wrapper(t, db, tableName, twoCursorsOneWithArgs2)
})
})
}
func createTable(db *sql.DB, tableName string) error {
if _, err := db.Exec("create table " + tableName + " (a bigint, b varchar(30))"); err != nil {
return fmt.Errorf("error creating table %s: %w", tableName, err)
}
for i, val := range []string{"one", "two", "three", "four"} {
if _, err := db.Exec("insert into "+tableName+" (a, b) values (?, ?)", i+1, val); err != nil {
return fmt.Errorf("error inserting values (%d, %s) into table %s: %w", i+1, val, tableName, err)
}
}
return nil
}
func cursorFetch(t *testing.T, cursor *Cursor) {
rows, err := cursor.Fetch(context.Background())
if err != nil {
t.Errorf("error fetching result set: %v", err)
return
}
fetchRows(t, rows)
if err := rows.Close(); err != nil {
t.Errorf("error closing rows: %v", err)
}
}
func singleCursor(t *testing.T, conn *Conn, tableName string) {
cursor, err := conn.NewCursor(context.Background(), "select * from "+tableName)
if err != nil {
t.Errorf("error creating cursor: %v", err)
return
}
defer func() {
if err := cursor.Close(context.Background()); err != nil {
t.Errorf("error closing cursor: %v", err)
}
}()
cursorFetch(t, cursor)
}
func singleCursorWithArgs(t *testing.T, conn *Conn, tableName string) {
cursor, err := conn.NewCursor(context.Background(), "select * from "+tableName+" where b like (?)", "two")
if err != nil {
t.Errorf("error creating cursor: %v", err)
return
}
defer func() {
if err := cursor.Close(context.Background()); err != nil {
t.Errorf("error closing cursor: %v", err)
}
}()
cursorFetch(t, cursor)
}
func twoCursors(t *testing.T, conn *Conn, tableName string) {
cursor, err := conn.NewCursor(context.Background(), "select * from "+tableName)
if err != nil {
t.Errorf("error creating cursor: %v", err)
return
}
defer func() {
if err := cursor.Close(context.Background()); err != nil {
t.Errorf("error closing cursor: %v", err)
}
}()
cursorFetch(t, cursor)
cursor2, err := conn.NewCursor(context.Background(), "select * from "+tableName)
if err != nil {
t.Errorf("error creating cursor2: %v", err)
return
}
defer func() {
if err := cursor2.Close(context.Background()); err != nil {
t.Errorf("error closing cursor2: %v", err)
}
}()
cursorFetch(t, cursor2)
}
func twoCursorsOneWithArgs(t *testing.T, conn *Conn, tableName string) {
cursor, err := conn.NewCursor(context.Background(), "select * from "+tableName)
if err != nil {
t.Errorf("error creating cursor: %v", err)
return
}
defer func() {
if err := cursor.Close(context.Background()); err != nil {
t.Errorf("error closing cursor: %v", err)
}
}()
cursorFetch(t, cursor)
cursorWithArgs, err := conn.NewCursor(context.Background(), "select * from "+tableName+" where b like (?)", "two")
if err != nil {
t.Errorf("error creating cursorWithArgs: %v", err)
return
}
defer func() {
if err := cursorWithArgs.Close(context.Background()); err != nil {
t.Errorf("error closing cursorWithArgs: %v", err)
}
}()
cursorFetch(t, cursorWithArgs)
}
func twoCursorsOneWithArgs2(t *testing.T, conn *Conn, tableName string) {
cursorWithArgs, err := conn.NewCursor(context.Background(), "select * from "+tableName+" where b like (?)", "two")
if err != nil {
t.Errorf("error creating cursorWithArgs: %v", err)
return
}
defer func() {
if err := cursorWithArgs.Close(context.Background()); err != nil {
t.Errorf("error closing cursorWithArgs: %v", err)
}
}()
cursorFetch(t, cursorWithArgs)
cursor, err := conn.NewCursor(context.Background(), "select * from "+tableName)
if err != nil {
t.Errorf("error creating cursor: %v", err)
return
}
defer func() {
if err := cursor.Close(context.Background()); err != nil {
t.Errorf("error closing cursor: %v", err)
}
}()
cursorFetch(t, cursor)
}
func twoCursorsWithArgs(t *testing.T, conn *Conn, tableName string) {
cursorWithArgs, err := conn.NewCursor(context.Background(), "select * from "+tableName+" where b like (?)", "two")
if err != nil {
t.Errorf("error creating cursorWithArgs: %v", err)
return
}
defer func() {
if err := cursorWithArgs.Close(context.Background()); err != nil {
t.Errorf("error closing cursorWithArgs: %v", err)
}
}()
cursorFetch(t, cursorWithArgs)
cursorWithArgs2, err := conn.NewCursor(context.Background(), "select * from "+tableName+" where b like (?)", "two")
if err != nil {
t.Errorf("error creating cursorWithArgs2: %v", err)
return
}
defer func() {
if err := cursorWithArgs2.Close(context.Background()); err != nil {
t.Errorf("error closing cursorWithArgs2: %v", err)
}
}()
cursorFetch(t, cursorWithArgs2)
}