First public contribution.
1 // Copyright (c) 2008-2009 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.
14 // Note: Only runs on hardware as you cannot remove MMC card on emulator
23 ///////////////////////////////////////////////////////////////////////////////////////
26 RTest TheTest(_L("t_sqlattach2 test"));
29 _LIT(KTestMMCDir, "c:\\test\\");
30 _LIT(KTestDir, "E:\\test\\");
31 _LIT(KTestDatabase1, "c:\\test\\t_sqlattach2_1.db");
32 _LIT(KTestMMCDatabase1, "E:\\test\\t_sqlattach2_2.db");
33 _LIT(KTestMMCDatabase2, "E:\\test\\t_sqlattach2_3.db");
36 _LIT(KTxtInsertMMCTxt," Insert MMC card\r\n");
37 _LIT(KTxtRemoveMMCTxt," Remove MMC card\r\n");
38 _LIT(KTxtPressAnyKey," [press any key to continue]\r\n");
39 _LIT(KTxtDefectTitle,"DEF116630 SQL, Missing test scenario: Open db, attach db on external media, remove media");
42 ///////////////////////////////////////////////////////////////////////////////////////
43 ///////////////////////////////////////////////////////////////////////////////////////
44 //Test macros and functions
45 void Check1(TInt aValue, TInt aLine)
49 RDebug::Print(_L("*** Line %d\r\n"), aLine);
50 TheTest(EFalse, aLine);
53 void Check2(TInt aValue, TInt aExpected, TInt aLine)
55 if(aValue != aExpected)
57 RDebug::Print(_L("*** Line %d, Expected error: %d, got: %d\r\n"), aLine, aExpected, aValue);
58 TheTest(EFalse, aLine);
61 #define TEST(arg) ::Check1((arg), __LINE__)
62 #define TEST2(aValue, aExpected) ::Check2(aValue, aExpected, __LINE__)
64 ///////////////////////////////////////////////////////////////////////////////////////
66 //Creates file session instance and the test directory
69 TInt err = TheFs.Connect();
72 err = TheFs.MkDir(KTestDir);
73 TEST(err == KErrNone || err == KErrAlreadyExists);
74 err = TheFs.MkDir(KTestMMCDir);
75 TEST(err == KErrNone || err == KErrAlreadyExists);
80 @SYMTestCaseID SYSLIB-SQL-CT-4021
81 @SYMTestCaseDesc Determine the result of union select operations on an external media located attached database
82 when the external media is removed.
83 @SYMTestPriority Medium
85 @SYMTestActions Create database one on internal media and database two on external media.
86 Insert records into both databases.
87 Attach database two which resides on MMC card to database one.
88 Prepare a union SELECT sql statement1 to retrieve records from the internal and attached database with database two listed before database one.
89 Prepare a union SELECT sql statement2 to retrieve records from the internal and attached database with database one listed before database two
90 Pauses and prompts the removal of the MMC card.
91 Exec union select statement1 across databases.
92 Exec union select statement2 across databases.
94 @SYMTestExpectedResults Databases are created and populated successfully.
95 Database are attached sucessfully.
96 Union statement1 operations return KErrNotReady
97 Union statement2 operations return one record from internal database.
100 void SqlAttachMMCDb2InternalDbUnionTestL()
103 CConsoleBase* console=Console::NewL(KTxtDefectTitle,TSize(KConsFullScreen,KConsFullScreen));
104 CleanupStack::PushL(console);
105 console->Printf(KTxtInsertMMCTxt);
106 console->Printf(KTxtPressAnyKey);
107 console->Getch(); // get and ignore character
109 //Initially remove any preexisting database;
110 (void)RSqlDatabase::Delete(KTestMMCDatabase1);
111 (void)RSqlDatabase::Delete(KTestDatabase1);
113 TInt err = TheDb.Create(KTestDatabase1);
114 TEST2(err, KErrNone);
115 err = TheDb.Exec(_L8("CREATE TABLE A(Id INTEGER)"));
117 err = TheDb.Exec(_L8("INSERT INTO A(Id) VALUES(1)"));
119 err = TheDb.Exec(_L8("INSERT INTO A(Id) VALUES(2)"));
123 err = TheDb.Create(KTestMMCDatabase1);
124 TEST2(err, KErrNone);
125 err = TheDb.Exec(_L8("CREATE TABLE B(N INTEGER)"));
127 err = TheDb.Exec(_L8("INSERT INTO B(N) VALUES(10)"));
129 err = TheDb.Exec(_L8("INSERT INTO B(N) VALUES(20)"));
131 err = TheDb.Exec(_L8("INSERT INTO B(N) VALUES(30)"));
133 err = TheDb.Exec(_L8("INSERT INTO B(N) VALUES(40)"));
137 err = TheDb.Open(KTestDatabase1);
138 TEST2(err, KErrNone);
139 err = TheDb.Attach(KTestMMCDatabase1, _L("Db2"));
140 TEST2(err, KErrNone);
143 err = stmt.Prepare(TheDb, _L8("SELECT * FROM B union all Select * from A"));
144 TEST2(err, KErrNone);
147 err = stmt2.Prepare(TheDb, _L8("SELECT * FROM A union all Select * from B"));
148 TEST2(err, KErrNone);
150 console->Printf(KTxtRemoveMMCTxt);
151 console->Printf(KTxtPressAnyKey);
152 console->Getch(); // get and ignore character
155 TEST2(err, KSqlAtRow);
159 TEST2(err, KSqlAtRow);
162 err = TheDb.Detach(_L("Db2"));
163 TEST2(err, KErrNone);
167 CleanupStack::PopAndDestroy(); // close console
168 (void)RSqlDatabase::Delete(KTestDatabase1);
173 @SYMTestCaseID SYSLIB-SQL-CT-4022
174 @SYMTestCaseDesc Determine the result of operations on an external media located attached database
175 when the external media is removed.
177 @SYMTestPriority Medium
178 @SYMTestActions Create database one on internal media and database two on external media.
179 Insert records into both databases.
180 Attach database two which resides on MMC card to database one.
181 Prepare a SELECT sql statement to retrieve records from the attached database two.
182 Retrieve a record from database 2.
183 Pauses and prompts the removal of the MMC card.
184 Attempt to insert two records into database two.
185 Prepare a SELECT sql statement to retrieve records from the attached database one.
186 Attempt to select a record from dabase one.
187 Attempt to insert record into database one.
188 Reinsert the MMC card.
189 Attempt to insert record in database one.
190 Attempt to insert a record in database two.
192 @SYMTestExpectedResults Databases are created and populated successfully.
193 Database are attached sucessfully.
194 Select operations on database one are successful
196 Disk write for database two return KErrNotReady.
197 Select operations on database two are successful
198 Select operations on database one are successful
199 Write operations for database one are successful.
201 Inserting a record into database one are succesful.
202 Inserting a record into database two are successful
206 void SqlAttachMMCDb2InternalDbTestL()
209 CConsoleBase* console=Console::NewL(KTxtDefectTitle,TSize(KConsFullScreen,KConsFullScreen));
210 CleanupStack::PushL(console);
211 console->Printf(KTxtInsertMMCTxt);
212 console->Printf(KTxtPressAnyKey);
213 console->Getch(); // get and ignore character
215 //Initially remove any preexisting database;
216 (void)RSqlDatabase::Delete(KTestMMCDatabase1);
217 (void)RSqlDatabase::Delete(KTestDatabase1);
219 TInt err = TheDb.Create(KTestDatabase1);
220 TEST2(err, KErrNone);
221 err = TheDb.Exec(_L8("CREATE TABLE A(Id INTEGER)"));
223 err = TheDb.Exec(_L8("INSERT INTO A(Id) VALUES(1)"));
225 err = TheDb.Exec(_L8("INSERT INTO A(Id) VALUES(2)"));
229 err = TheDb.Create(KTestMMCDatabase1);
230 TEST2(err, KErrNone);
231 err = TheDb.Exec(_L8("CREATE TABLE B(N INTEGER)"));
233 err = TheDb.Exec(_L8("INSERT INTO B(N) VALUES(10)"));
235 err = TheDb.Exec(_L8("INSERT INTO B(N) VALUES(20)"));
237 err = TheDb.Exec(_L8("INSERT INTO B(N) VALUES(30)"));
239 err = TheDb.Exec(_L8("INSERT INTO B(N) VALUES(40)"));
243 err = TheDb.Open(KTestDatabase1);
244 TEST2(err, KErrNone);
245 err = TheDb.Attach(KTestMMCDatabase1, _L("Db2"));
246 TEST2(err, KErrNone);
249 err = stmt.Prepare(TheDb, _L8("SELECT * FROM B"));
250 TEST2(err, KErrNone);
253 TEST2(err, KSqlAtRow);
255 console->Printf(KTxtRemoveMMCTxt);
256 console->Printf(KTxtPressAnyKey);
257 console->Getch(); // get and ignore character
260 TEST2(err, KSqlAtRow);
262 err = TheDb.Exec(_L8("INSERT INTO B(N) VALUES(40)"));
263 TEST2(err, KErrNotReady);
266 err = TheDb.Exec(_L8("INSERT INTO B(N) VALUES(50)"));
267 TEST2(err, KErrNotReady);
271 TEST2(err, KSqlAtRow);
273 //Check that you can still perform operations on internal media based database
275 err = stmt2.Prepare(TheDb, _L8("SELECT * FROM A"));
276 TEST2(err, KErrNone);
278 TEST2(err, KSqlAtRow);
280 err = TheDb.Exec(_L8("INSERT INTO A(Id) VALUES(40)"));
284 TEST2(err, KSqlAtRow);
287 //Check that databases start working again when mmc card reinserted.
288 console->Printf(KTxtInsertMMCTxt);
289 console->Printf(KTxtPressAnyKey);
290 console->Getch(); // get and ignore character
292 err = TheDb.Detach(_L("Db2"));
293 TEST2(err, KErrNone);
297 err = TheDb2.Open(KTestDatabase1);
298 TEST2(err, KErrNone);
299 err = TheDb2.Attach(KTestMMCDatabase1, _L("Db2"));
300 TEST2(err, KErrNone);
303 err = TheDb2.Exec(_L8("INSERT INTO A(Id) VALUES(50)"));
305 err = TheDb2.Exec(_L8("INSERT INTO B(N) VALUES(50)"));
308 err = TheDb2.Detach(_L("Db2"));
309 TEST2(err, KErrNone);
312 CleanupStack::PopAndDestroy(); // close console
313 (void)RSqlDatabase::Delete(KTestMMCDatabase1);
314 (void)RSqlDatabase::Delete(KTestDatabase1);
318 @SYMTestCaseID SYSLIB-SQL-CT-4023
319 @SYMTestCaseDesc Determine the result of multiple disk write operations on an internal and
320 external media located database when the attached external media is removed.
321 @SYMTestPriority Medium
323 @SYMTestActions Create database 1 on internal media and database two on external media.
324 Insert records into both databases.
325 Attaches database 2 which resides on MMC card to database 1.
326 Prepare a SELECT sql statement to retrieve records from database 1.
327 Retrieve a record from database 1.
328 Pause and prompts the removal of the MMC card.
329 Attempt to insert a record into database one.
330 Attempt to select records from dabase one.
331 Attempt to prepare a select statement on database two.
332 Attempt to retrieve a record from database two.
333 Attempts to insert record into database two.
334 @SYMTestExpectedResults Databases are created and populated successfully.
335 Database are attached sucessfully.
336 Prepare and select operations on database one are successful
338 Write operations on database one are successful.
339 Select operations on database one are successful.
340 Prepare statement on database two are successful
341 Disk read/write operations on database two return KErrNotReady.
345 void SqlAttachMMCDb2InternalDbAndDoDiskOpsTestL()
348 CConsoleBase* console=Console::NewL(KTxtDefectTitle,TSize(KConsFullScreen,KConsFullScreen));
349 CleanupStack::PushL(console);
350 console->Printf(KTxtInsertMMCTxt);
351 console->Printf(KTxtPressAnyKey);
352 console->Getch(); // get and ignore character
354 //Initially remove any preexisting database;
355 (void)RSqlDatabase::Delete(KTestMMCDatabase1);
356 (void)RSqlDatabase::Delete(KTestDatabase1);
358 TInt err = TheDb.Create(KTestDatabase1);
359 TEST2(err, KErrNone);
360 err = TheDb.Exec(_L8("CREATE TABLE A(Id INTEGER)"));
362 err = TheDb.Exec(_L8("INSERT INTO A(Id) VALUES(1)"));
364 err = TheDb.Exec(_L8("INSERT INTO A(Id) VALUES(2)"));
368 err = TheDb.Create(KTestMMCDatabase1);
369 TEST2(err, KErrNone);
370 err = TheDb.Exec(_L8("CREATE TABLE B(N INTEGER)"));
372 err = TheDb.Exec(_L8("INSERT INTO B(N) VALUES(10)"));
374 err = TheDb.Exec(_L8("INSERT INTO B(N) VALUES(20)"));
376 err = TheDb.Exec(_L8("INSERT INTO B(N) VALUES(30)"));
380 err = TheDb.Open(KTestDatabase1);
381 TEST2(err, KErrNone);
382 err = TheDb.Attach(KTestMMCDatabase1, _L("Db2"));
383 TEST2(err, KErrNone);
386 err = stmt.Prepare(TheDb, _L8("SELECT * FROM A"));
387 TEST2(err, KErrNone);
389 TEST2(err, KSqlAtRow);
391 console->Printf(KTxtRemoveMMCTxt);
392 console->Printf(KTxtPressAnyKey);
393 console->Getch(); // get and ignore character
395 err = TheDb.Exec(_L8("INSERT INTO A(Id) VALUES(40)"));
399 TEST2(err, KSqlAtRow);
403 //Check that you can still perform operations on external media based database
405 err = stmt2.Prepare(TheDb, _L8("SELECT * FROM B"));
406 TEST2(err, KErrNone);
408 TEST2(err,KSqlAtRow);
412 err = TheDb.Exec(_L8("INSERT INTO B(N) VALUES(40)"));
413 TEST2(err, KErrNotReady);
415 err = TheDb.Detach(_L("Db2"));
416 TEST2(err, KErrNone);
419 CleanupStack::PopAndDestroy(); // close console
420 (void)RSqlDatabase::Delete(KTestDatabase1);
424 @SYMTestCaseID SYSLIB-SQL-CT-4024
425 @SYMTestCaseDesc Determine the result of operations on an internal media located attached database
426 to a external media database
427 when the external media is removed.
428 @SYMTestPriority Medium
430 @SYMTestActions Create database 1 on internal media and database two on external media.
431 Insert records into both databases.
432 Attempt to Attach database 1 to database two which resides on MMC card.
433 Attempt to Prepare a SELECT statement to retrieve records from the attached database 2.
434 Attempt to retrieve record from database two.
435 Pause and prompts the removal of the MMC card.
436 Attempt to SELECT a record from database two.
437 Attempt to insert a record into database two.
438 Attempt to SELECT a record from database two.
439 Attempt to prepare a select statement on database one.
440 Attempt to select records from dabase one.
441 Attempt to insert record into database one.
443 @SYMTestExpectedResults Databases are created and populated successfully.
444 Database are attached sucessfully.
445 Select operations on database two are successful
447 Select operation on database two is successful
448 Operations involving a disk write for database 2 return KErrNotReady.
449 Select operation on database two is successful
450 Prepare select operations on database on is successful
451 Select operations on database one are successful
452 Insert operations on database one are successful
455 void SqlAttachInternalDb2MMCDbTestL()
458 CConsoleBase* console=Console::NewL(KTxtDefectTitle,TSize(KConsFullScreen,KConsFullScreen));
459 CleanupStack::PushL(console);
460 console->Printf(KTxtInsertMMCTxt);
461 console->Printf(KTxtPressAnyKey);
462 console->Getch(); // get and ignore character
464 //Initially remove any preexisting database;
465 (void)RSqlDatabase::Delete(KTestMMCDatabase1);
466 (void)RSqlDatabase::Delete(KTestDatabase1);
468 TInt err = TheDb.Create(KTestDatabase1);
469 TEST2(err, KErrNone);
470 err = TheDb.Exec(_L8("CREATE TABLE A(Id INTEGER)"));
472 err = TheDb.Exec(_L8("INSERT INTO A(Id) VALUES(1)"));
474 err = TheDb.Exec(_L8("INSERT INTO A(Id) VALUES(2)"));
478 err = TheDb.Create(KTestMMCDatabase1);
479 TEST2(err, KErrNone);
480 err = TheDb.Exec(_L8("CREATE TABLE B(N INTEGER)"));
482 err = TheDb.Exec(_L8("INSERT INTO B(N) VALUES(10)"));
484 err = TheDb.Exec(_L8("INSERT INTO B(N) VALUES(20)"));
486 err = TheDb.Exec(_L8("INSERT INTO B(N) VALUES(30)"));
490 err = TheDb.Open(KTestMMCDatabase1);
491 TEST2(err, KErrNone);
492 err = TheDb.Attach(KTestDatabase1, _L("Db2"));
493 TEST2(err, KErrNone);
496 err = stmt.Prepare(TheDb, _L8("SELECT * FROM B"));
497 TEST2(err, KErrNone);
499 TEST2(err, KSqlAtRow);
501 console->Printf(KTxtRemoveMMCTxt);
502 console->Printf(KTxtPressAnyKey);
503 console->Getch(); // get and ignore character
506 TEST2(err, KSqlAtRow);
508 err = TheDb.Exec(_L8("INSERT INTO B(N) VALUES(40)"));
509 TEST2(err, KErrNotReady);
512 TEST2(err, KSqlAtRow);
515 //Check that you can still perform operations on internal media based database
517 err = stmt2.Prepare(TheDb, _L8("SELECT * FROM A"));
518 TEST2(err, KErrNone);
520 TEST2(err, KSqlAtRow);
522 err = TheDb.Exec(_L8("INSERT INTO A(Id) VALUES(40)"));
526 TEST2(err, KSqlAtRow);
529 err = TheDb.Detach(_L("Db2"));
530 TEST2(err, KErrNone);
533 CleanupStack::PopAndDestroy(); // close console
534 (void)RSqlDatabase::Delete(KTestDatabase1);
538 @SYMTestCaseID SYSLIB-SQL-CT-4025
539 @SYMTestCaseDesc Determine the result of operations on an external media located attached database
540 to another external media database when the external media is removed.
541 @SYMTestPriority Medium
542 @SYMTestActions Create database one and database two on external media.
543 Insert records into both databases.
544 Attach database two to database one
545 Prepare a select statement on database two.
546 Retrieve a record from database two.
547 Pause and prompts the removal of the MMC card.
548 Retrieve a record from database two.
549 Attempt to insert a record into database two.
550 Attempt to insert another record into database two.
551 Retrieve a record from database two.
552 Prepare a select statement on database one.
553 Attempt to retrieve record from database one.
554 Attempt to insert a record into database one.
555 Attempt to retrieve record from database one.
557 @SYMTestExpectedResults Databases are created and populated successfully.
558 Database are attached sucessfully.
559 Select operations on database two are successful
561 Read operations are successful on database two.
562 First Insert operation return KErrNotReady for database two.
563 Second Insert operation return KErrNotReady for database two.
564 Read operations are still successful on database two.
565 Read operations are still successful on database one.
566 Insert operation returns KErrNotReady.
567 Read operations are still successful on database one.
570 void SqlAttachMMCDb12MMCDb2TestL()
573 CConsoleBase* console=Console::NewL(KTxtDefectTitle,TSize(KConsFullScreen,KConsFullScreen));
574 CleanupStack::PushL(console);
575 console->Printf(KTxtInsertMMCTxt);
576 console->Printf(KTxtPressAnyKey);
577 console->Getch(); // get and ignore character
579 //Initially remove any preexisting database;
580 (void)RSqlDatabase::Delete(KTestMMCDatabase1);
581 (void)RSqlDatabase::Delete(KTestMMCDatabase2);
583 TInt err = TheDb.Create(KTestMMCDatabase1);
584 TEST2(err, KErrNone);
585 err = TheDb.Exec(_L8("CREATE TABLE A(Id INTEGER)"));
587 err = TheDb.Exec(_L8("INSERT INTO A(Id) VALUES(1)"));
589 err = TheDb.Exec(_L8("INSERT INTO A(Id) VALUES(2)"));
593 err = TheDb.Create(KTestMMCDatabase2);
594 TEST2(err, KErrNone);
595 err = TheDb.Exec(_L8("CREATE TABLE B(N INTEGER)"));
597 err = TheDb.Exec(_L8("INSERT INTO B(N) VALUES(10)"));
599 err = TheDb.Exec(_L8("INSERT INTO B(N) VALUES(20)"));
601 err = TheDb.Exec(_L8("INSERT INTO B(N) VALUES(30)"));
605 err = TheDb.Open(KTestMMCDatabase1);
606 TEST2(err, KErrNone);
607 err = TheDb.Attach(KTestMMCDatabase2, _L("Db2"));
608 TEST2(err, KErrNone);
611 err = stmt.Prepare(TheDb, _L8("SELECT * FROM B"));
612 TEST2(err, KErrNone);
614 TEST2(err, KSqlAtRow);
616 console->Printf(KTxtRemoveMMCTxt);
617 console->Printf(KTxtPressAnyKey);
618 console->Getch(); // get and ignore character
621 TEST2(err, KSqlAtRow);
623 err = TheDb.Exec(_L8("INSERT INTO B(N) VALUES(40)"));
624 TEST2(err, KErrNotReady);
626 err = TheDb.Exec(_L8("INSERT INTO B(N) VALUES(50)"));
627 TEST2(err, KErrNotReady);
630 TEST2(err, KSqlAtRow);
633 //Check the error conditions when you attempt operations on the other database
635 err = stmt2.Prepare(TheDb, _L8("SELECT * FROM A"));
636 TEST2(err, KErrNone);
638 TEST2(err, KSqlAtRow);
640 err = TheDb.Exec(_L8("INSERT INTO A(Id) VALUES(40)"));
641 TEST2(err, KErrNotReady);
644 TEST2(err, KSqlAtRow);
649 //Initially remove any preexisting database;
650 (void)RSqlDatabase::Delete(KTestMMCDatabase1);
651 (void)RSqlDatabase::Delete(KTestMMCDatabase2);
653 CleanupStack::PopAndDestroy(); // close console
660 TheTest.Start(_L(" @SYMTestCaseID:SYSLIB-SQL-CT-4022 \"SQL against attached MMC db when MMC removed\" test "));
661 SqlAttachMMCDb2InternalDbTestL();
663 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-CT-4024 SQL against MMC db with attached internal database when MMC removed "));
664 SqlAttachInternalDb2MMCDbTestL();
666 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-CT-4025 SQL against MMC based db with attached MMC based database when MMC removed "));
667 SqlAttachMMCDb12MMCDb2TestL();
669 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-CT-4023 SQL against internal database with attached MMC db when MMC removed "));
670 SqlAttachMMCDb2InternalDbAndDoDiskOpsTestL();
672 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-CT-4021 SQL UNION against internal database with attached MMC db when MMC removed "));
673 SqlAttachMMCDb2InternalDbUnionTestL();
681 CTrapCleanup* tc = CTrapCleanup::New();
685 TRAPD(err, DoTestsL());
687 TEST2(err, KErrNone);
696 User::Heap().Check();