Update contrib.
1 // Copyright (c) 2006-2010 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
22 ///////////////////////////////////////////////////////////////////////////////////////
25 RTest TheTest(_L("t_sqlscalarfullselect test"));
27 _LIT(KTestDir, "c:\\test\\");
28 _LIT(KTestDatabase1, "c:\\test\\t_sqlscalarfullselect.db");
30 ///////////////////////////////////////////////////////////////////////////////////////
32 //Deletes all created test files.
33 void DeleteTestFiles()
35 (void)RSqlDatabase::Delete(KTestDatabase1);
38 ///////////////////////////////////////////////////////////////////////////////////////
39 ///////////////////////////////////////////////////////////////////////////////////////
40 //Test macros and functions
41 void Check1(TInt64 aValue, TInt aLine)
46 RDebug::Print(_L("*** Line %d\r\n"), aLine);
47 TheTest(EFalse, aLine);
50 void Check2(TInt64 aValue, TInt64 aExpected, TInt aLine)
52 if(aValue != aExpected)
55 RDebug::Print(_L("*** Line %d, Expected error: %d, got: %d\r\n"), aLine, aExpected, aValue);
56 TheTest(EFalse, aLine);
59 #define TEST(arg) ::Check1((arg), __LINE__)
60 #define TEST2(aValue, aExpected) ::Check2(aValue, aExpected, __LINE__)
62 ///////////////////////////////////////////////////////////////////////////////////////
64 //Creates file session instance and the test directory
67 TInt err = TheFs.Connect();
70 err = TheFs.MkDir(KTestDir);
71 TEST(err == KErrNone || err == KErrAlreadyExists);
74 void CreateTestDbLC(RSqlDatabase& aDb)
76 CleanupClosePushL(aDb);
77 TInt rc = aDb.Create(KTestDatabase1);
79 rc = aDb.Exec(_L("CREATE TABLE A(F1 INTEGER, F2 INTEGER, F3 FLOAT, F4 TEXT, F5 BLOB)"));
81 rc = aDb.Exec(_L("INSERT INTO A(F1, F2, F3, F4, F5) VALUES(1, 10000000000, 2.54, 'NAME1234567890', NULL)"));
83 rc = aDb.Exec(_L("INSERT INTO A(F1, F2, F3, F4) VALUES(2, 200, -1.11, 'ADDRESS')"));
86 CleanupClosePushL(stmt);
87 rc = stmt.Prepare(aDb, _L("UPDATE A SET F5=:P WHERE F1 = 2"));
89 RSqlParamWriteStream strm;
90 CleanupClosePushL(strm);
91 rc = strm.BindBinary(stmt, 0);
93 for(TInt i=0;i<100;++i)
95 strm << static_cast <TUint8> (i);
100 CleanupStack::PopAndDestroy(&strm);
101 CleanupStack::PopAndDestroy(&stmt);
104 void DestroyTestDb(RSqlDatabase& aDb)
106 CleanupStack::PopAndDestroy(&aDb);
107 TInt err = RSqlDatabase::Delete(KTestDatabase1);
108 TEST2(err, KErrNone);
112 @SYMTestCaseID SYSLIB-SQL-CT-1809
113 @SYMTestCaseDesc A test database is created, test table created in the database with integer, 64-bit
114 integer, float, text and blob fields.
115 Inserted two records.
116 The test calls TSqlScalarFullSelectQuery functions in all possible
117 "requested value type:real column type" combinations and checks the returned value.
118 @SYMTestPriority High
119 @SYMTestActions SQL, Scalar fullselect test.
120 @SYMTestExpectedResults Test must not fail
124 template <class BUF> void ScalarFullSelectTestL()
126 //Create test database.
129 TSqlScalarFullSelectQuery fullSelectQuery(db);
133 /////////////////// tests with F1 column (integer column) ///////////////////////////
134 _LIT(KSql1, "SELECT F1 FROM A WHERE F2 = 10000000000");
136 //Read F1 as integer. Expected value: 1.
137 TInt valInt = fullSelectQuery.SelectIntL(sql);
139 //Read F1 as 64-bit integer. Expected value: 1.
140 TInt64 valInt64 = fullSelectQuery.SelectInt64L(sql);
142 //Read F1 as real. Expected value: 1.0.
143 TReal valReal = fullSelectQuery.SelectRealL(sql);
144 TEST(Abs(valReal - 1.0) < 0.0001);
146 //Read F1 as text. Expected value: zero-length 16-bit descriptor.
147 TInt err = fullSelectQuery.SelectTextL(sql, valText);
148 TEST2(err, KErrNone);
149 TEST2(valText.Length(), 0);
150 //Read F1 as binary. Expected value: zero-length 8-bit descriptor.
152 err = fullSelectQuery.SelectBinaryL(sql, valBinary);
153 TEST2(err, KErrNone);
154 TEST2(valBinary.Length(), 0);
155 /////////////////// tests with F2 column (64-bit integer column) ///////////////////////////
156 _LIT(KSql2, "SELECT F2 FROM A WHERE F1 = 1");
158 //Read F2 as integer. Expected value: KMaxTInt.
159 valInt = fullSelectQuery.SelectIntL(sql);
160 TEST2(valInt, KMaxTInt);
161 //Read F2 as 64-bit integer. Expected value: 10000000000
162 valInt64 = fullSelectQuery.SelectInt64L(sql);
163 TEST2(valInt64, 10000000000LL);
164 //Read F2 as real. Expected value: 10000000000.0
165 valReal = fullSelectQuery.SelectRealL(sql);
166 TEST(Abs(valReal - 10000000000.0) < 0.0001);
167 //Read F2 as text. Expected value: zero-length 16-bit descriptor.
168 err = fullSelectQuery.SelectTextL(sql, valText);
169 TEST2(err, KErrNone);
170 TEST2(valText.Length(), 0);
171 //Read F2 as binary. Expected value: zero-length 8-bit descriptor.
172 err = fullSelectQuery.SelectBinaryL(sql, valBinary);
173 TEST2(err, KErrNone);
174 TEST2(valBinary.Length(), 0);
175 /////////////////// tests with F3 column (real column) ///////////////////////////
176 _LIT(KSql3, "SELECT F3 FROM A WHERE F1 = 1");
178 //Read F3 as integer. Expected value: 3.
179 valInt = fullSelectQuery.SelectIntL(sql);
181 //Read F3 as 64-bit integer. Expected value: 3.
182 valInt64 = fullSelectQuery.SelectInt64L(sql);
184 //Read F3 as real. Expected value: 2.54.
185 valReal = fullSelectQuery.SelectRealL(sql);
186 TEST(Abs(valReal - 2.54) < 0.0001);
187 //Read F3 as text. Expected value: zero-length 16-bit descriptor.
188 err = fullSelectQuery.SelectTextL(sql, valText);
189 TEST2(err, KErrNone);
190 TEST2(valText.Length(), 0);
191 //Read F3 as binary. Expected value: zero-length 8-bit descriptor.
192 err = fullSelectQuery.SelectBinaryL(sql, valBinary);
193 TEST2(err, KErrNone);
194 TEST2(valBinary.Length(), 0);
195 /////////////////// tests with F4 column (text column) ///////////////////////////
196 _LIT(KSql4, "SELECT F4 FROM A WHERE F1 = 1");
198 //Read F4 as integer. Expected value: 0.
199 valInt = fullSelectQuery.SelectIntL(sql);
201 //Read F4 as 64-bit integer. Expected value: 0.
202 valInt64 = fullSelectQuery.SelectInt64L(sql);
204 //Read F4 as real. Expected value: 0.0.
205 valReal = fullSelectQuery.SelectRealL(sql);
206 TEST(Abs(valReal - 0.0) < 0.0001);
207 //Read F4 as text. Small buffer. Expected return code: positive value, which is the column length in characters.
208 err = fullSelectQuery.SelectTextL(sql, valText);
210 TEST2(valText.Length(), 10);
211 _LIT(KColText, "NAME123456");
212 TEST(valText == KColText());
213 //Read F4 as text. Big enough buffer. Expected error: KErrNone.
215 err = fullSelectQuery.SelectTextL(sql, valText2);
216 TEST2(err, KErrNone);
217 TEST2(valText2.Length(), 14);
218 _LIT(KColText2, "NAME1234567890");
219 TEST(valText2 == KColText2());
220 //Read F4 as binary. Expected error: KErrNone. Zero-length 8-bit descriptor.
221 err = fullSelectQuery.SelectBinaryL(sql, valBinary);
222 TEST2(err, KErrNone);
223 TEST2(valBinary.Length(), 0);
224 /////////////////// tests with F5 column (binary column) ///////////////////////////
225 _LIT(KSql5, "SELECT F5 FROM A WHERE F1 = 2");
227 //Read F5 as integer. Expected value: 0.
228 valInt = fullSelectQuery.SelectIntL(sql);
230 //Read F5 as 64-bit integer. Expected value: 0.
231 valInt64 = fullSelectQuery.SelectInt64L(sql);
233 //Read F5 as real. Expected value: 0.0.
234 valReal = fullSelectQuery.SelectRealL(sql);
235 TEST(Abs(valReal - 0.0) < 0.0001);
236 //Read F5 as text. Expected error: KErrNone. Zero-length 16-bit descriptor.
237 err = fullSelectQuery.SelectTextL(sql, valText);
238 TEST2(err, KErrNone);
239 TEST2(valText.Length(), 0);
240 //Read F5 as binary. Small buffer. Expected return code: positive value, which is the column length in bytes.
241 err = fullSelectQuery.SelectBinaryL(sql, valBinary);
243 TEST2(valBinary.Length(), 10);
247 TEST(valBinary[i] == i);
249 //Read F5 as binary. Big enough buffer. Expected error: KErrNone.
250 TBuf8<100> valBinary2;
251 err = fullSelectQuery.SelectBinaryL(sql, valBinary2);
252 TEST2(err, KErrNone);
253 TEST2(valBinary2.Length(), 100);
256 TEST(valBinary2[i] == i);
258 /////////////////// Text column value, small buffer, reallocation ///////////////////
259 HBufC* hbuf = HBufC::NewLC(10);
260 TPtr name = hbuf->Des();
262 err = fullSelectQuery.SelectTextL(sql, name);
263 TEST(err >= 0); //the function may return only non-negative values
266 hbuf = hbuf->ReAllocL(err);
268 CleanupStack::PushL(hbuf);
269 name.Set(hbuf->Des());
270 err = fullSelectQuery.SelectTextL(sql, name);
271 TEST2(err, KErrNone);
272 TEST(name == KColText2());
274 CleanupStack::PopAndDestroy();//hbuf, can't be put as parameter, because may be reallocated
275 //Close database, delete database file.
280 @SYMTestCaseID SYSLIB-SQL-CT-1810
281 @SYMTestCaseDesc A test database is created, test table created in the database with integer, 64-bit
282 integer, float, text and blob fields.
283 Inserted two records.
284 The test calls TSqlScalarFullSelectQuery functions using inappropriate SQL statements:
285 SELECT sql statement with parameters, INSERT sql statement, SELECT sql statement,
286 which does not return records.
287 @SYMTestPriority High
288 @SYMTestActions SQL, Scalar fullselect test.
289 @SYMTestExpectedResults Test must not fail
293 template <class BUF> void ScalarFullSelectNegativeTestL()
295 //Create test database.
298 TSqlScalarFullSelectQuery fullSelectQuery(db);
302 //An attempt to use inappropriate SQL - 1.
303 _LIT(KSql1, "SELECT F1 FROM A WHERE F2 = :P");
305 TRAPD(err, fullSelectQuery.SelectIntL(sql));
306 TEST2(err, KErrArgument);
308 //An attempt to use inappropriate SQL - 2.
309 _LIT(KSql2, "INSERT INTO A(F1) VALUES(2)");
311 TRAP(err, fullSelectQuery.SelectIntL(sql));
312 TEST2(err, KErrArgument);
314 //The SQL statement does not return any rows
315 _LIT(KSql3, "SELECT F1 FROM A WHERE F2 = 456231");
317 TRAP(err, fullSelectQuery.SelectIntL(sql));
318 TEST2(err, KErrNotFound);
320 //Close database, delete database file.
325 @SYMTestCaseID PDS-SQL-CT-4204
326 @SYMTestCaseDesc TSqlScalarFullSelectQuery - border test.
327 @SYMTestPriority High
328 @SYMTestActions The test checks some border test cases such as:
329 - retrieving NULL column as integer;
330 - retrieving NULL column as 64-bit integer;
331 - retrieving NULL column as TReal;
332 - retrieving column value smaller than KMinTInt, as integer;
333 - retrieving column value bigger than KMaxTInt, as integer;
334 @SYMTestExpectedResults Test must not fail
336 void ScalarFullSelectBorderTest()
338 (void)RSqlDatabase::Delete(KTestDatabase1);
340 TInt rc = db.Create(KTestDatabase1);
342 rc = db.Exec(_L("CREATE TABLE A(F1 INTEGER NULL, F2 INTEGER NULL, F3 FLOAT NULL, F4 TEXT NULL, F5 BLOB NULL)"));
345 TSqlScalarFullSelectQuery q(db);
347 //Insert one record. Bigger than KMaxTInt F1 column value. Smaller than KMinTInt F2 column value.
348 rc = db.Exec(_L("INSERT INTO A(F1,F2,F4) VALUES(5000000000,-5000000000,'aljhsfdlgefberveurfgvefkjgs;kjfgs;kjfsd')"));
350 //Select NULL column value as int.
352 TRAP(rc, res = q.SelectIntL(_L("SELECT F5 FROM A")));
355 //Select NULL column value as int64.
357 TRAP(rc, res = q.SelectInt64L(_L("SELECT F5 FROM A")));
360 //Select NULL column value as TReal.
362 TRAP(rc, res2 = q.SelectRealL(_L("SELECT F5 FROM A")));
364 TEST(Abs(res2) < 0.000001);
365 //Select NULL column value as text.
367 TRAP(rc, res = q.SelectTextL(_L("SELECT F5 FROM A"), text));
370 TEST2(text.Length(), 0);
371 //Select NULL column value as binary.
373 TRAP(rc, res = q.SelectBinaryL(_L("SELECT F5 FROM A"), data));
376 TEST2(data.Length(), 0);
377 //Select column value bigger than KMaxTInt, as int.
379 TRAP(rc, res = q.SelectIntL(_L("SELECT F1 FROM A")));
381 TEST2(res, KMaxTInt);
382 //Select column value smaller than KMinTInt, as int.
384 TRAP(rc, res = q.SelectIntL(_L("SELECT F2 FROM A")));
386 TEST2(res, KMinTInt);
389 (void)RSqlDatabase::Delete(KTestDatabase1);
395 TheTest.Start(_L(" @SYMTestCaseID:SYSLIB-SQL-CT-1809 Scalar fullselect test. 16-bit SQL "));
396 ScalarFullSelectTestL< TBuf16<100> >();
398 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-CT-1809 Scalar fullselect test. 8-bit SQL "));
399 ScalarFullSelectTestL< TBuf8<100> >();
401 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-CT-1810 Scalar fullselect - negative test. 16-bit SQL "));
402 ScalarFullSelectNegativeTestL< TBuf16<100> >();
404 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-CT-1810 Scalar fullselect - negative test. 8-bit SQL "));
405 ScalarFullSelectNegativeTestL< TBuf8<100> >();
407 TheTest.Next(_L(" @SYMTestCaseID:PDS-SQL-CT-4204 Scalar fullselect - border cases "));
408 ScalarFullSelectBorderTest();
415 CTrapCleanup* tc = CTrapCleanup::New();
421 TRAPD(err, DoTestsL());
424 TEST2(err, KErrNone);
433 User::Heap().Check();