- Notifications
You must be signed in to change notification settings - Fork 82
/
Copy pathtest_4200_cursor_scrollable.py
226 lines (206 loc) · 9.19 KB
/
test_4200_cursor_scrollable.py
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
# -----------------------------------------------------------------------------
# Copyright (c) 2020, 2025, Oracle and/or its affiliates.
#
# This software is dual-licensed to you under the Universal Permissive License
# (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl and Apache License
# 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose
# either license.
#
# If you elect to accept the software under the Apache License, Version 2.0,
# the following applies:
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# -----------------------------------------------------------------------------
"""
4200 - Module for testing scrollable cursors
"""
importtest_env
classTestCase(test_env.BaseTestCase):
deftest_4200(self):
"4200 - test creating a scrollable cursor"
cursor=self.conn.cursor()
self.assertEqual(cursor.scrollable, False)
cursor=self.conn.cursor(True)
self.assertEqual(cursor.scrollable, True)
cursor=self.conn.cursor(scrollable=True)
self.assertEqual(cursor.scrollable, True)
cursor.scrollable=False
self.assertEqual(cursor.scrollable, False)
deftest_4201(self):
"4201 - test scrolling absolute yields an exception (after result set)"
cursor=self.conn.cursor(scrollable=True)
cursor.arraysize=self.cursor.arraysize
cursor.execute("select NumberCol from TestNumbers order by IntCol")
withself.assertRaisesFullCode("DPY-2063"):
cursor.scroll(12, "absolute")
deftest_4202(self):
"4202 - test scrolling absolute (when in buffers)"
cursor=self.conn.cursor(scrollable=True)
cursor.prefetchrows=0
cursor.arraysize=self.cursor.arraysize
cursor.execute("select NumberCol from TestNumbers order by IntCol")
cursor.fetchmany()
self.assertTrue(
cursor.arraysize>1,
"array size must exceed 1 for this test to work correctly",
)
cursor.scroll(1, mode="absolute")
(value,) =cursor.fetchone()
self.assertEqual(value, 1.25)
self.assertEqual(cursor.rowcount, 1)
deftest_4203(self):
"4203 - test scrolling absolute (when not in buffers)"
cursor=self.conn.cursor(scrollable=True)
cursor.arraysize=self.cursor.arraysize
cursor.execute("select NumberCol from TestNumbers order by IntCol")
cursor.scroll(6, mode="absolute")
(value,) =cursor.fetchone()
self.assertEqual(value, 7.5)
self.assertEqual(cursor.rowcount, 6)
deftest_4204(self):
"4204 - test scrolling to first row in result set (in buffers)"
cursor=self.conn.cursor(scrollable=True)
cursor.arraysize=self.cursor.arraysize
cursor.prefetchrows=0
cursor.execute("select NumberCol from TestNumbers order by IntCol")
cursor.fetchmany()
cursor.scroll(mode="first")
(value,) =cursor.fetchone()
self.assertEqual(value, 1.25)
self.assertEqual(cursor.rowcount, 1)
deftest_4205(self):
"4205 - test scrolling to first row in result set (not in buffers)"
cursor=self.conn.cursor(scrollable=True)
cursor.arraysize=self.cursor.arraysize
cursor.prefetchrows=0
cursor.execute("select NumberCol from TestNumbers order by IntCol")
cursor.fetchmany()
cursor.fetchmany()
cursor.scroll(mode="first")
(value,) =cursor.fetchone()
self.assertEqual(value, 1.25)
self.assertEqual(cursor.rowcount, 1)
deftest_4206(self):
"4206 - test scrolling to last row in result set"
cursor=self.conn.cursor(scrollable=True)
cursor.arraysize=self.cursor.arraysize
cursor.execute("select NumberCol from TestNumbers order by IntCol")
cursor.scroll(mode="last")
(value,) =cursor.fetchone()
self.assertEqual(value, 12.5)
self.assertEqual(cursor.rowcount, 10)
deftest_4207(self):
"4207 - test scrolling relative yields an exception (after result set)"
cursor=self.conn.cursor(scrollable=True)
cursor.arraysize=self.cursor.arraysize
cursor.execute("select NumberCol from TestNumbers order by IntCol")
withself.assertRaisesFullCode("DPY-2063"):
cursor.scroll(15)
deftest_4208(self):
"4208 - test scrolling relative yields exception (before result set)"
cursor=self.conn.cursor(scrollable=True)
cursor.arraysize=self.cursor.arraysize
cursor.execute("select NumberCol from TestNumbers order by IntCol")
withself.assertRaisesFullCode("DPY-2063"):
cursor.scroll(-5)
deftest_4209(self):
"4209 - test scrolling relative (when in buffers)"
cursor=self.conn.cursor(scrollable=True)
cursor.arraysize=self.cursor.arraysize
cursor.prefetchrows=0
cursor.execute("select NumberCol from TestNumbers order by IntCol")
cursor.fetchmany()
message="array size must exceed 1 for this test to work correctly"
self.assertTrue(cursor.arraysize>1, message)
cursor.scroll(2-cursor.rowcount)
(value,) =cursor.fetchone()
self.assertEqual(value, 2.5)
self.assertEqual(cursor.rowcount, 2)
deftest_4210(self):
"4210 - test scrolling relative (when not in buffers)"
cursor=self.conn.cursor(scrollable=True)
cursor.arraysize=self.cursor.arraysize
cursor.execute("select NumberCol from TestNumbers order by IntCol")
cursor.fetchmany()
cursor.fetchmany()
message="array size must exceed 1 for this test to work correctly"
self.assertTrue(cursor.arraysize>1, message)
cursor.scroll(3-cursor.rowcount)
(value,) =cursor.fetchone()
self.assertEqual(value, 3.75)
self.assertEqual(cursor.rowcount, 3)
deftest_4211(self):
"4211 - test scrolling when there are no rows"
self.cursor.execute("truncate table TestTempTable")
cursor=self.conn.cursor(scrollable=True)
cursor.execute("select * from TestTempTable")
cursor.scroll(mode="last")
self.assertEqual(cursor.fetchall(), [])
cursor.scroll(mode="first")
self.assertEqual(cursor.fetchall(), [])
withself.assertRaisesFullCode("DPY-2063"):
cursor.scroll(1, mode="absolute")
deftest_4212(self):
"4212 - test scrolling with differing array and fetch array sizes"
self.cursor.execute("truncate table TestTempTable")
foriinrange(30):
self.cursor.execute(
"""
insert into TestTempTable (IntCol, StringCol1)
values (:1, null)
""",
[i+1],
)
forarraysizeinrange(1, 6):
cursor=self.conn.cursor(scrollable=True)
cursor.arraysize=arraysize
cursor.execute("select IntCol from TestTempTable order by IntCol")
fornum_rowsinrange(1, arraysize+1):
cursor.scroll(15, "absolute")
rows=cursor.fetchmany(num_rows)
self.assertEqual(rows[0][0], 15)
self.assertEqual(cursor.rowcount, 15+num_rows-1)
cursor.scroll(9)
rows=cursor.fetchmany(num_rows)
num_rows_fetched=len(rows)
self.assertEqual(rows[0][0], 15+num_rows+8)
self.assertEqual(
cursor.rowcount, 15+num_rows+num_rows_fetched+7
)
cursor.scroll(-12)
rows=cursor.fetchmany(num_rows)
count=15+num_rows+num_rows_fetched-5
self.assertEqual(rows[0][0], count)
count=15+num_rows+num_rows_fetched+num_rows-6
self.assertEqual(cursor.rowcount, count)
deftest_4213(self):
"4213 - test calling scroll() with invalid mode"
cursor=self.conn.cursor(scrollable=True)
cursor.arraysize=self.cursor.arraysize
cursor.execute("select NumberCol from TestNumbers order by IntCol")
cursor.fetchmany()
withself.assertRaisesFullCode("DPY-2009"):
cursor.scroll(mode="middle")
deftest_4214(self):
"4214 - test scroll after fetching all rows"
cursor=self.conn.cursor(scrollable=True)
cursor.arraysize=5
cursor.prefetchrows=0
cursor.execute("select NumberCol from TestNumbers order by IntCol")
cursor.fetchall()
cursor.scroll(5, mode="absolute")
(value,) =cursor.fetchone()
self.assertEqual(value, 6.25)
self.assertEqual(cursor.rowcount, 5)
if__name__=="__main__":
test_env.run_test_cases()