Update contrib.
1 // Copyright (c) 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.
19 This is a manual test created to verify DEFXXXXX, 2 executables needs to be run to do this test
20 1) t_sqlfilesrvcrash1.exe - Generate a corrupted journal file, this will cause the device to reset.
21 2) t_sqlfilesrvcrash2.exe - After the reboot, tests if SQL can handle the courrpted journal file.
23 This test requires a non-rugged drive to store the database file and therefore will only work in hardware mode
30 RTest TheTest(_L("t_sqlfilesrvcrash2 test"));
32 #if !defined __WINS__ && !defined __WINSCW__
37 _LIT(KDbName, "E:\\test\\t_sqlfilesrvcrash.db");
38 _LIT(KJournalName, "E:\\test\t_sqlfilesrvcrash.db-journal");
39 ///////////////////////////////////////////////////////////////////////////////////////
40 //Deletes all created test files.
41 void DeleteTestFiles()
44 (void)RSqlDatabase::Delete(KDbName);
47 ///////////////////////////////////////////////////////////////////////////////////////
48 //Test macros and functions
49 void Check(TInt aValue, TInt aLine)
53 RDebug::Print(_L("*** Line %d\r\n"), aLine);
54 TheTest(EFalse, aLine);
57 void Check(TInt aValue, TInt aExpected, TInt aLine)
59 if(aValue != aExpected)
61 RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
62 TheTest(EFalse, aLine);
66 #define TEST(arg) ::Check((arg), __LINE__)
67 #define TEST2(aValue, aExpected) ::Check(aValue, aExpected, __LINE__)
68 ///////////////////////////////////////////////////////////////////////////////////////
69 //Creates file session instance and the test directory
72 TInt err = TheFs.Connect();
76 err = file.Open(TheFs, KJournalName, EFileRead);
80 err = file.Size(size);
82 TEST(size > SQLITE_DEFAULT_JOURNAL_SIZE_LIMIT);
85 ///////////////////////////////////////////////////////////////////////////////////////
87 @SYMTestCaseID PDS-SQL-CT-4165
88 @SYMTestCaseDesc Tests for DEF144027: SQL Open returns error if the reported and actual file size are different
89 Requires a corrupted journal file to be created using t_sqlfilesrvcrash1.exe before running
90 this test. If a corrupted journal file exists then check that the opening the database does not
92 @SYMTestActions DEF144027: SQL Open returns error if the reported and actual file size are different
93 @SYMTestExpectedResults The RSqlDatabase::Open operation should not fail
94 @SYMTestPriority Medium
100 TInt err = TheDb.Open(KDbName);
101 TEST2(err, KErrNone);
103 //Lets perform a simple operation to make sure it works
104 err = TheDb.Exec(_L("BEGIN"));
107 err = TheDb.Exec(_L("INSERT INTO t1(NUM) VALUES (55)"));
110 err = TheDb.Exec(_L("INSERT INTO t2(NUM) VALUES (55)"));
113 err = TheDb.Exec(_L("COMMIT"));
121 TheTest.Start(_L(" @SYMTestCaseID:PDS-SQL-CT-4165 DEF144027: SQL Open returns error if the reported and actual file size are different"));
124 #endif //#if !defined __WINS__ && !defined __WINSCW__
130 CTrapCleanup* tc = CTrapCleanup::New();
134 #if !defined __WINS__ && !defined __WINSCW__
140 TheTest.Start(_L("This test works only works on hardware!"));
150 User::Heap().Check();