sl@0
|
1 |
// Copyright (c) 2006-2010 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
#include <e32test.h>
|
sl@0
|
17 |
#include <bautils.h>
|
sl@0
|
18 |
#include <s32strm.h>
|
sl@0
|
19 |
#include <e32math.h>
|
sl@0
|
20 |
#include <sqldb.h>
|
sl@0
|
21 |
|
sl@0
|
22 |
///////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
23 |
|
sl@0
|
24 |
static RFs TheFs;
|
sl@0
|
25 |
RTest TheTest(_L("t_sqlscalarfullselect test"));
|
sl@0
|
26 |
|
sl@0
|
27 |
_LIT(KTestDir, "c:\\test\\");
|
sl@0
|
28 |
_LIT(KTestDatabase1, "c:\\test\\t_sqlscalarfullselect.db");
|
sl@0
|
29 |
|
sl@0
|
30 |
///////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
31 |
|
sl@0
|
32 |
//Deletes all created test files.
|
sl@0
|
33 |
void DeleteTestFiles()
|
sl@0
|
34 |
{
|
sl@0
|
35 |
(void)RSqlDatabase::Delete(KTestDatabase1);
|
sl@0
|
36 |
}
|
sl@0
|
37 |
|
sl@0
|
38 |
///////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
39 |
///////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
40 |
//Test macros and functions
|
sl@0
|
41 |
void Check1(TInt64 aValue, TInt aLine)
|
sl@0
|
42 |
{
|
sl@0
|
43 |
if(!aValue)
|
sl@0
|
44 |
{
|
sl@0
|
45 |
DeleteTestFiles();
|
sl@0
|
46 |
RDebug::Print(_L("*** Line %d\r\n"), aLine);
|
sl@0
|
47 |
TheTest(EFalse, aLine);
|
sl@0
|
48 |
}
|
sl@0
|
49 |
}
|
sl@0
|
50 |
void Check2(TInt64 aValue, TInt64 aExpected, TInt aLine)
|
sl@0
|
51 |
{
|
sl@0
|
52 |
if(aValue != aExpected)
|
sl@0
|
53 |
{
|
sl@0
|
54 |
DeleteTestFiles();
|
sl@0
|
55 |
RDebug::Print(_L("*** Line %d, Expected error: %d, got: %d\r\n"), aLine, aExpected, aValue);
|
sl@0
|
56 |
TheTest(EFalse, aLine);
|
sl@0
|
57 |
}
|
sl@0
|
58 |
}
|
sl@0
|
59 |
#define TEST(arg) ::Check1((arg), __LINE__)
|
sl@0
|
60 |
#define TEST2(aValue, aExpected) ::Check2(aValue, aExpected, __LINE__)
|
sl@0
|
61 |
|
sl@0
|
62 |
///////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
63 |
|
sl@0
|
64 |
//Creates file session instance and the test directory
|
sl@0
|
65 |
void CreateTestEnv()
|
sl@0
|
66 |
{
|
sl@0
|
67 |
TInt err = TheFs.Connect();
|
sl@0
|
68 |
TEST2(err, KErrNone);
|
sl@0
|
69 |
|
sl@0
|
70 |
err = TheFs.MkDir(KTestDir);
|
sl@0
|
71 |
TEST(err == KErrNone || err == KErrAlreadyExists);
|
sl@0
|
72 |
}
|
sl@0
|
73 |
|
sl@0
|
74 |
void CreateTestDbLC(RSqlDatabase& aDb)
|
sl@0
|
75 |
{
|
sl@0
|
76 |
CleanupClosePushL(aDb);
|
sl@0
|
77 |
TInt rc = aDb.Create(KTestDatabase1);
|
sl@0
|
78 |
TEST2(rc, KErrNone);
|
sl@0
|
79 |
rc = aDb.Exec(_L("CREATE TABLE A(F1 INTEGER, F2 INTEGER, F3 FLOAT, F4 TEXT, F5 BLOB)"));
|
sl@0
|
80 |
TEST(rc >= 0);
|
sl@0
|
81 |
rc = aDb.Exec(_L("INSERT INTO A(F1, F2, F3, F4, F5) VALUES(1, 10000000000, 2.54, 'NAME1234567890', NULL)"));
|
sl@0
|
82 |
TEST2(rc, 1);
|
sl@0
|
83 |
rc = aDb.Exec(_L("INSERT INTO A(F1, F2, F3, F4) VALUES(2, 200, -1.11, 'ADDRESS')"));
|
sl@0
|
84 |
TEST2(rc, 1);
|
sl@0
|
85 |
RSqlStatement stmt;
|
sl@0
|
86 |
CleanupClosePushL(stmt);
|
sl@0
|
87 |
rc = stmt.Prepare(aDb, _L("UPDATE A SET F5=:P WHERE F1 = 2"));
|
sl@0
|
88 |
TEST2(rc, KErrNone);
|
sl@0
|
89 |
RSqlParamWriteStream strm;
|
sl@0
|
90 |
CleanupClosePushL(strm);
|
sl@0
|
91 |
rc = strm.BindBinary(stmt, 0);
|
sl@0
|
92 |
TEST2(rc, KErrNone);
|
sl@0
|
93 |
for(TInt i=0;i<100;++i)
|
sl@0
|
94 |
{
|
sl@0
|
95 |
strm << static_cast <TUint8> (i);
|
sl@0
|
96 |
}
|
sl@0
|
97 |
strm.CommitL();
|
sl@0
|
98 |
rc = stmt.Exec();
|
sl@0
|
99 |
TEST2(rc, 1);
|
sl@0
|
100 |
CleanupStack::PopAndDestroy(&strm);
|
sl@0
|
101 |
CleanupStack::PopAndDestroy(&stmt);
|
sl@0
|
102 |
}
|
sl@0
|
103 |
|
sl@0
|
104 |
void DestroyTestDb(RSqlDatabase& aDb)
|
sl@0
|
105 |
{
|
sl@0
|
106 |
CleanupStack::PopAndDestroy(&aDb);
|
sl@0
|
107 |
TInt err = RSqlDatabase::Delete(KTestDatabase1);
|
sl@0
|
108 |
TEST2(err, KErrNone);
|
sl@0
|
109 |
}
|
sl@0
|
110 |
|
sl@0
|
111 |
/**
|
sl@0
|
112 |
@SYMTestCaseID SYSLIB-SQL-CT-1809
|
sl@0
|
113 |
@SYMTestCaseDesc A test database is created, test table created in the database with integer, 64-bit
|
sl@0
|
114 |
integer, float, text and blob fields.
|
sl@0
|
115 |
Inserted two records.
|
sl@0
|
116 |
The test calls TSqlScalarFullSelectQuery functions in all possible
|
sl@0
|
117 |
"requested value type:real column type" combinations and checks the returned value.
|
sl@0
|
118 |
@SYMTestPriority High
|
sl@0
|
119 |
@SYMTestActions SQL, Scalar fullselect test.
|
sl@0
|
120 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
121 |
@SYMREQ REQ5792
|
sl@0
|
122 |
REQ5793
|
sl@0
|
123 |
*/
|
sl@0
|
124 |
template <class BUF> void ScalarFullSelectTestL()
|
sl@0
|
125 |
{
|
sl@0
|
126 |
//Create test database.
|
sl@0
|
127 |
RSqlDatabase db;
|
sl@0
|
128 |
CreateTestDbLC(db);
|
sl@0
|
129 |
TSqlScalarFullSelectQuery fullSelectQuery(db);
|
sl@0
|
130 |
|
sl@0
|
131 |
BUF sql;
|
sl@0
|
132 |
|
sl@0
|
133 |
/////////////////// tests with F1 column (integer column) ///////////////////////////
|
sl@0
|
134 |
_LIT(KSql1, "SELECT F1 FROM A WHERE F2 = 10000000000");
|
sl@0
|
135 |
sql.Copy(KSql1);
|
sl@0
|
136 |
//Read F1 as integer. Expected value: 1.
|
sl@0
|
137 |
TInt valInt = fullSelectQuery.SelectIntL(sql);
|
sl@0
|
138 |
TEST2(valInt, 1);
|
sl@0
|
139 |
//Read F1 as 64-bit integer. Expected value: 1.
|
sl@0
|
140 |
TInt64 valInt64 = fullSelectQuery.SelectInt64L(sql);
|
sl@0
|
141 |
TEST2(valInt64, 1);
|
sl@0
|
142 |
//Read F1 as real. Expected value: 1.0.
|
sl@0
|
143 |
TReal valReal = fullSelectQuery.SelectRealL(sql);
|
sl@0
|
144 |
TEST(Abs(valReal - 1.0) < 0.0001);
|
sl@0
|
145 |
TBuf<10> valText;
|
sl@0
|
146 |
//Read F1 as text. Expected value: zero-length 16-bit descriptor.
|
sl@0
|
147 |
TInt err = fullSelectQuery.SelectTextL(sql, valText);
|
sl@0
|
148 |
TEST2(err, KErrNone);
|
sl@0
|
149 |
TEST2(valText.Length(), 0);
|
sl@0
|
150 |
//Read F1 as binary. Expected value: zero-length 8-bit descriptor.
|
sl@0
|
151 |
TBuf8<10> valBinary;
|
sl@0
|
152 |
err = fullSelectQuery.SelectBinaryL(sql, valBinary);
|
sl@0
|
153 |
TEST2(err, KErrNone);
|
sl@0
|
154 |
TEST2(valBinary.Length(), 0);
|
sl@0
|
155 |
/////////////////// tests with F2 column (64-bit integer column) ///////////////////////////
|
sl@0
|
156 |
_LIT(KSql2, "SELECT F2 FROM A WHERE F1 = 1");
|
sl@0
|
157 |
sql.Copy(KSql2);
|
sl@0
|
158 |
//Read F2 as integer. Expected value: KMaxTInt.
|
sl@0
|
159 |
valInt = fullSelectQuery.SelectIntL(sql);
|
sl@0
|
160 |
TEST2(valInt, KMaxTInt);
|
sl@0
|
161 |
//Read F2 as 64-bit integer. Expected value: 10000000000
|
sl@0
|
162 |
valInt64 = fullSelectQuery.SelectInt64L(sql);
|
sl@0
|
163 |
TEST2(valInt64, 10000000000LL);
|
sl@0
|
164 |
//Read F2 as real. Expected value: 10000000000.0
|
sl@0
|
165 |
valReal = fullSelectQuery.SelectRealL(sql);
|
sl@0
|
166 |
TEST(Abs(valReal - 10000000000.0) < 0.0001);
|
sl@0
|
167 |
//Read F2 as text. Expected value: zero-length 16-bit descriptor.
|
sl@0
|
168 |
err = fullSelectQuery.SelectTextL(sql, valText);
|
sl@0
|
169 |
TEST2(err, KErrNone);
|
sl@0
|
170 |
TEST2(valText.Length(), 0);
|
sl@0
|
171 |
//Read F2 as binary. Expected value: zero-length 8-bit descriptor.
|
sl@0
|
172 |
err = fullSelectQuery.SelectBinaryL(sql, valBinary);
|
sl@0
|
173 |
TEST2(err, KErrNone);
|
sl@0
|
174 |
TEST2(valBinary.Length(), 0);
|
sl@0
|
175 |
/////////////////// tests with F3 column (real column) ///////////////////////////
|
sl@0
|
176 |
_LIT(KSql3, "SELECT F3 FROM A WHERE F1 = 1");
|
sl@0
|
177 |
sql.Copy(KSql3);
|
sl@0
|
178 |
//Read F3 as integer. Expected value: 3.
|
sl@0
|
179 |
valInt = fullSelectQuery.SelectIntL(sql);
|
sl@0
|
180 |
TEST2(valInt, 3);
|
sl@0
|
181 |
//Read F3 as 64-bit integer. Expected value: 3.
|
sl@0
|
182 |
valInt64 = fullSelectQuery.SelectInt64L(sql);
|
sl@0
|
183 |
TEST2(valInt64, 3);
|
sl@0
|
184 |
//Read F3 as real. Expected value: 2.54.
|
sl@0
|
185 |
valReal = fullSelectQuery.SelectRealL(sql);
|
sl@0
|
186 |
TEST(Abs(valReal - 2.54) < 0.0001);
|
sl@0
|
187 |
//Read F3 as text. Expected value: zero-length 16-bit descriptor.
|
sl@0
|
188 |
err = fullSelectQuery.SelectTextL(sql, valText);
|
sl@0
|
189 |
TEST2(err, KErrNone);
|
sl@0
|
190 |
TEST2(valText.Length(), 0);
|
sl@0
|
191 |
//Read F3 as binary. Expected value: zero-length 8-bit descriptor.
|
sl@0
|
192 |
err = fullSelectQuery.SelectBinaryL(sql, valBinary);
|
sl@0
|
193 |
TEST2(err, KErrNone);
|
sl@0
|
194 |
TEST2(valBinary.Length(), 0);
|
sl@0
|
195 |
/////////////////// tests with F4 column (text column) ///////////////////////////
|
sl@0
|
196 |
_LIT(KSql4, "SELECT F4 FROM A WHERE F1 = 1");
|
sl@0
|
197 |
sql.Copy(KSql4);
|
sl@0
|
198 |
//Read F4 as integer. Expected value: 0.
|
sl@0
|
199 |
valInt = fullSelectQuery.SelectIntL(sql);
|
sl@0
|
200 |
TEST2(valInt, 0);
|
sl@0
|
201 |
//Read F4 as 64-bit integer. Expected value: 0.
|
sl@0
|
202 |
valInt64 = fullSelectQuery.SelectInt64L(sql);
|
sl@0
|
203 |
TEST2(valInt64, 0);
|
sl@0
|
204 |
//Read F4 as real. Expected value: 0.0.
|
sl@0
|
205 |
valReal = fullSelectQuery.SelectRealL(sql);
|
sl@0
|
206 |
TEST(Abs(valReal - 0.0) < 0.0001);
|
sl@0
|
207 |
//Read F4 as text. Small buffer. Expected return code: positive value, which is the column length in characters.
|
sl@0
|
208 |
err = fullSelectQuery.SelectTextL(sql, valText);
|
sl@0
|
209 |
TEST(err > 0);
|
sl@0
|
210 |
TEST2(valText.Length(), 10);
|
sl@0
|
211 |
_LIT(KColText, "NAME123456");
|
sl@0
|
212 |
TEST(valText == KColText());
|
sl@0
|
213 |
//Read F4 as text. Big enough buffer. Expected error: KErrNone.
|
sl@0
|
214 |
TBuf<32> valText2;
|
sl@0
|
215 |
err = fullSelectQuery.SelectTextL(sql, valText2);
|
sl@0
|
216 |
TEST2(err, KErrNone);
|
sl@0
|
217 |
TEST2(valText2.Length(), 14);
|
sl@0
|
218 |
_LIT(KColText2, "NAME1234567890");
|
sl@0
|
219 |
TEST(valText2 == KColText2());
|
sl@0
|
220 |
//Read F4 as binary. Expected error: KErrNone. Zero-length 8-bit descriptor.
|
sl@0
|
221 |
err = fullSelectQuery.SelectBinaryL(sql, valBinary);
|
sl@0
|
222 |
TEST2(err, KErrNone);
|
sl@0
|
223 |
TEST2(valBinary.Length(), 0);
|
sl@0
|
224 |
/////////////////// tests with F5 column (binary column) ///////////////////////////
|
sl@0
|
225 |
_LIT(KSql5, "SELECT F5 FROM A WHERE F1 = 2");
|
sl@0
|
226 |
sql.Copy(KSql5);
|
sl@0
|
227 |
//Read F5 as integer. Expected value: 0.
|
sl@0
|
228 |
valInt = fullSelectQuery.SelectIntL(sql);
|
sl@0
|
229 |
TEST2(valInt, 0);
|
sl@0
|
230 |
//Read F5 as 64-bit integer. Expected value: 0.
|
sl@0
|
231 |
valInt64 = fullSelectQuery.SelectInt64L(sql);
|
sl@0
|
232 |
TEST2(valInt64, 0);
|
sl@0
|
233 |
//Read F5 as real. Expected value: 0.0.
|
sl@0
|
234 |
valReal = fullSelectQuery.SelectRealL(sql);
|
sl@0
|
235 |
TEST(Abs(valReal - 0.0) < 0.0001);
|
sl@0
|
236 |
//Read F5 as text. Expected error: KErrNone. Zero-length 16-bit descriptor.
|
sl@0
|
237 |
err = fullSelectQuery.SelectTextL(sql, valText);
|
sl@0
|
238 |
TEST2(err, KErrNone);
|
sl@0
|
239 |
TEST2(valText.Length(), 0);
|
sl@0
|
240 |
//Read F5 as binary. Small buffer. Expected return code: positive value, which is the column length in bytes.
|
sl@0
|
241 |
err = fullSelectQuery.SelectBinaryL(sql, valBinary);
|
sl@0
|
242 |
TEST(err > 0);
|
sl@0
|
243 |
TEST2(valBinary.Length(), 10);
|
sl@0
|
244 |
TInt i;
|
sl@0
|
245 |
for(i=0;i<10;++i)
|
sl@0
|
246 |
{
|
sl@0
|
247 |
TEST(valBinary[i] == i);
|
sl@0
|
248 |
}
|
sl@0
|
249 |
//Read F5 as binary. Big enough buffer. Expected error: KErrNone.
|
sl@0
|
250 |
TBuf8<100> valBinary2;
|
sl@0
|
251 |
err = fullSelectQuery.SelectBinaryL(sql, valBinary2);
|
sl@0
|
252 |
TEST2(err, KErrNone);
|
sl@0
|
253 |
TEST2(valBinary2.Length(), 100);
|
sl@0
|
254 |
for(i=0;i<100;++i)
|
sl@0
|
255 |
{
|
sl@0
|
256 |
TEST(valBinary2[i] == i);
|
sl@0
|
257 |
}
|
sl@0
|
258 |
/////////////////// Text column value, small buffer, reallocation ///////////////////
|
sl@0
|
259 |
HBufC* hbuf = HBufC::NewLC(10);
|
sl@0
|
260 |
TPtr name = hbuf->Des();
|
sl@0
|
261 |
sql.Copy(KSql4);
|
sl@0
|
262 |
err = fullSelectQuery.SelectTextL(sql, name);
|
sl@0
|
263 |
TEST(err >= 0); //the function may return only non-negative values
|
sl@0
|
264 |
if(err > 0)
|
sl@0
|
265 |
{
|
sl@0
|
266 |
hbuf = hbuf->ReAllocL(err);
|
sl@0
|
267 |
CleanupStack::Pop();
|
sl@0
|
268 |
CleanupStack::PushL(hbuf);
|
sl@0
|
269 |
name.Set(hbuf->Des());
|
sl@0
|
270 |
err = fullSelectQuery.SelectTextL(sql, name);
|
sl@0
|
271 |
TEST2(err, KErrNone);
|
sl@0
|
272 |
TEST(name == KColText2());
|
sl@0
|
273 |
}
|
sl@0
|
274 |
CleanupStack::PopAndDestroy();//hbuf, can't be put as parameter, because may be reallocated
|
sl@0
|
275 |
//Close database, delete database file.
|
sl@0
|
276 |
DestroyTestDb(db);
|
sl@0
|
277 |
}
|
sl@0
|
278 |
|
sl@0
|
279 |
/**
|
sl@0
|
280 |
@SYMTestCaseID SYSLIB-SQL-CT-1810
|
sl@0
|
281 |
@SYMTestCaseDesc A test database is created, test table created in the database with integer, 64-bit
|
sl@0
|
282 |
integer, float, text and blob fields.
|
sl@0
|
283 |
Inserted two records.
|
sl@0
|
284 |
The test calls TSqlScalarFullSelectQuery functions using inappropriate SQL statements:
|
sl@0
|
285 |
SELECT sql statement with parameters, INSERT sql statement, SELECT sql statement,
|
sl@0
|
286 |
which does not return records.
|
sl@0
|
287 |
@SYMTestPriority High
|
sl@0
|
288 |
@SYMTestActions SQL, Scalar fullselect test.
|
sl@0
|
289 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
290 |
@SYMREQ REQ5792
|
sl@0
|
291 |
REQ5793
|
sl@0
|
292 |
*/
|
sl@0
|
293 |
template <class BUF> void ScalarFullSelectNegativeTestL()
|
sl@0
|
294 |
{
|
sl@0
|
295 |
//Create test database.
|
sl@0
|
296 |
RSqlDatabase db;
|
sl@0
|
297 |
CreateTestDbLC(db);
|
sl@0
|
298 |
TSqlScalarFullSelectQuery fullSelectQuery(db);
|
sl@0
|
299 |
|
sl@0
|
300 |
BUF sql;
|
sl@0
|
301 |
|
sl@0
|
302 |
//An attempt to use inappropriate SQL - 1.
|
sl@0
|
303 |
_LIT(KSql1, "SELECT F1 FROM A WHERE F2 = :P");
|
sl@0
|
304 |
sql.Copy(KSql1);
|
sl@0
|
305 |
TRAPD(err, fullSelectQuery.SelectIntL(sql));
|
sl@0
|
306 |
TEST2(err, KErrArgument);
|
sl@0
|
307 |
|
sl@0
|
308 |
//An attempt to use inappropriate SQL - 2.
|
sl@0
|
309 |
_LIT(KSql2, "INSERT INTO A(F1) VALUES(2)");
|
sl@0
|
310 |
sql.Copy(KSql2);
|
sl@0
|
311 |
TRAP(err, fullSelectQuery.SelectIntL(sql));
|
sl@0
|
312 |
TEST2(err, KErrArgument);
|
sl@0
|
313 |
|
sl@0
|
314 |
//The SQL statement does not return any rows
|
sl@0
|
315 |
_LIT(KSql3, "SELECT F1 FROM A WHERE F2 = 456231");
|
sl@0
|
316 |
sql.Copy(KSql3);
|
sl@0
|
317 |
TRAP(err, fullSelectQuery.SelectIntL(sql));
|
sl@0
|
318 |
TEST2(err, KErrNotFound);
|
sl@0
|
319 |
|
sl@0
|
320 |
//Close database, delete database file.
|
sl@0
|
321 |
DestroyTestDb(db);
|
sl@0
|
322 |
}
|
sl@0
|
323 |
|
sl@0
|
324 |
/**
|
sl@0
|
325 |
@SYMTestCaseID PDS-SQL-CT-4204
|
sl@0
|
326 |
@SYMTestCaseDesc TSqlScalarFullSelectQuery - border test.
|
sl@0
|
327 |
@SYMTestPriority High
|
sl@0
|
328 |
@SYMTestActions The test checks some border test cases such as:
|
sl@0
|
329 |
- retrieving NULL column as integer;
|
sl@0
|
330 |
- retrieving NULL column as 64-bit integer;
|
sl@0
|
331 |
- retrieving NULL column as TReal;
|
sl@0
|
332 |
- retrieving column value smaller than KMinTInt, as integer;
|
sl@0
|
333 |
- retrieving column value bigger than KMaxTInt, as integer;
|
sl@0
|
334 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
335 |
*/
|
sl@0
|
336 |
void ScalarFullSelectBorderTest()
|
sl@0
|
337 |
{
|
sl@0
|
338 |
(void)RSqlDatabase::Delete(KTestDatabase1);
|
sl@0
|
339 |
RSqlDatabase db;
|
sl@0
|
340 |
TInt rc = db.Create(KTestDatabase1);
|
sl@0
|
341 |
TEST2(rc, KErrNone);
|
sl@0
|
342 |
rc = db.Exec(_L("CREATE TABLE A(F1 INTEGER NULL, F2 INTEGER NULL, F3 FLOAT NULL, F4 TEXT NULL, F5 BLOB NULL)"));
|
sl@0
|
343 |
TEST(rc >= 0);
|
sl@0
|
344 |
|
sl@0
|
345 |
TSqlScalarFullSelectQuery q(db);
|
sl@0
|
346 |
|
sl@0
|
347 |
//Insert one record. Bigger than KMaxTInt F1 column value. Smaller than KMinTInt F2 column value.
|
sl@0
|
348 |
rc = db.Exec(_L("INSERT INTO A(F1,F2,F4) VALUES(5000000000,-5000000000,'aljhsfdlgefberveurfgvefkjgs;kjfgs;kjfsd')"));
|
sl@0
|
349 |
TEST2(rc, 1);
|
sl@0
|
350 |
//Select NULL column value as int.
|
sl@0
|
351 |
TInt res = -1;
|
sl@0
|
352 |
TRAP(rc, res = q.SelectIntL(_L("SELECT F5 FROM A")));
|
sl@0
|
353 |
TEST2(rc, KErrNone);
|
sl@0
|
354 |
TEST2(res, 0);
|
sl@0
|
355 |
//Select NULL column value as int64.
|
sl@0
|
356 |
res = -1;
|
sl@0
|
357 |
TRAP(rc, res = q.SelectInt64L(_L("SELECT F5 FROM A")));
|
sl@0
|
358 |
TEST2(rc, KErrNone);
|
sl@0
|
359 |
TEST2(res, 0);
|
sl@0
|
360 |
//Select NULL column value as TReal.
|
sl@0
|
361 |
TReal res2 = -1.0;
|
sl@0
|
362 |
TRAP(rc, res2 = q.SelectRealL(_L("SELECT F5 FROM A")));
|
sl@0
|
363 |
TEST2(rc, KErrNone);
|
sl@0
|
364 |
TEST(Abs(res2) < 0.000001);
|
sl@0
|
365 |
//Select NULL column value as text.
|
sl@0
|
366 |
TBuf<10> text;
|
sl@0
|
367 |
TRAP(rc, res = q.SelectTextL(_L("SELECT F5 FROM A"), text));
|
sl@0
|
368 |
TEST2(rc, KErrNone);
|
sl@0
|
369 |
TEST2(res, 0);
|
sl@0
|
370 |
TEST2(text.Length(), 0);
|
sl@0
|
371 |
//Select NULL column value as binary.
|
sl@0
|
372 |
TBuf8<10> data;
|
sl@0
|
373 |
TRAP(rc, res = q.SelectBinaryL(_L("SELECT F5 FROM A"), data));
|
sl@0
|
374 |
TEST2(rc, KErrNone);
|
sl@0
|
375 |
TEST2(res, 0);
|
sl@0
|
376 |
TEST2(data.Length(), 0);
|
sl@0
|
377 |
//Select column value bigger than KMaxTInt, as int.
|
sl@0
|
378 |
res = -1;
|
sl@0
|
379 |
TRAP(rc, res = q.SelectIntL(_L("SELECT F1 FROM A")));
|
sl@0
|
380 |
TEST2(rc, KErrNone);
|
sl@0
|
381 |
TEST2(res, KMaxTInt);
|
sl@0
|
382 |
//Select column value smaller than KMinTInt, as int.
|
sl@0
|
383 |
res = -1;
|
sl@0
|
384 |
TRAP(rc, res = q.SelectIntL(_L("SELECT F2 FROM A")));
|
sl@0
|
385 |
TEST2(rc, KErrNone);
|
sl@0
|
386 |
TEST2(res, KMinTInt);
|
sl@0
|
387 |
|
sl@0
|
388 |
db.Close();
|
sl@0
|
389 |
(void)RSqlDatabase::Delete(KTestDatabase1);
|
sl@0
|
390 |
}
|
sl@0
|
391 |
|
sl@0
|
392 |
|
sl@0
|
393 |
void DoTestsL()
|
sl@0
|
394 |
{
|
sl@0
|
395 |
TheTest.Start(_L(" @SYMTestCaseID:SYSLIB-SQL-CT-1809 Scalar fullselect test. 16-bit SQL "));
|
sl@0
|
396 |
ScalarFullSelectTestL< TBuf16<100> >();
|
sl@0
|
397 |
|
sl@0
|
398 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-CT-1809 Scalar fullselect test. 8-bit SQL "));
|
sl@0
|
399 |
ScalarFullSelectTestL< TBuf8<100> >();
|
sl@0
|
400 |
|
sl@0
|
401 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-CT-1810 Scalar fullselect - negative test. 16-bit SQL "));
|
sl@0
|
402 |
ScalarFullSelectNegativeTestL< TBuf16<100> >();
|
sl@0
|
403 |
|
sl@0
|
404 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-CT-1810 Scalar fullselect - negative test. 8-bit SQL "));
|
sl@0
|
405 |
ScalarFullSelectNegativeTestL< TBuf8<100> >();
|
sl@0
|
406 |
|
sl@0
|
407 |
TheTest.Next(_L(" @SYMTestCaseID:PDS-SQL-CT-4204 Scalar fullselect - border cases "));
|
sl@0
|
408 |
ScalarFullSelectBorderTest();
|
sl@0
|
409 |
}
|
sl@0
|
410 |
|
sl@0
|
411 |
TInt E32Main()
|
sl@0
|
412 |
{
|
sl@0
|
413 |
TheTest.Title();
|
sl@0
|
414 |
|
sl@0
|
415 |
CTrapCleanup* tc = CTrapCleanup::New();
|
sl@0
|
416 |
|
sl@0
|
417 |
__UHEAP_MARK;
|
sl@0
|
418 |
|
sl@0
|
419 |
CreateTestEnv();
|
sl@0
|
420 |
DeleteTestFiles();
|
sl@0
|
421 |
TRAPD(err, DoTestsL());
|
sl@0
|
422 |
DeleteTestFiles();
|
sl@0
|
423 |
TheFs.Close();
|
sl@0
|
424 |
TEST2(err, KErrNone);
|
sl@0
|
425 |
|
sl@0
|
426 |
__UHEAP_MARKEND;
|
sl@0
|
427 |
|
sl@0
|
428 |
TheTest.End();
|
sl@0
|
429 |
TheTest.Close();
|
sl@0
|
430 |
|
sl@0
|
431 |
delete tc;
|
sl@0
|
432 |
|
sl@0
|
433 |
User::Heap().Check();
|
sl@0
|
434 |
return KErrNone;
|
sl@0
|
435 |
}
|