First public contribution.
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_sqlfilesrvcrash1 test"));
32 #if !defined __WINS__ && !defined __WINSCW__
37 const TInt KControlIoRuggedOn=2;
38 const TInt KControlIoRuggedOff=3;
39 const TInt KControlIoIsRugged=4;
41 const TChar KDrvLetter = ('E');
42 _LIT(KTestDir, "E:\\test\\");
43 _LIT(KDbName, "E:\\test\\t_sqlfilesrvcrash.db");
44 _LIT8(KConfigStr, "page_size=32768");
45 _LIT(KFileSrvName, "efile.exe");
47 ///////////////////////////////////////////////////////////////////////////////////////
48 //Deletes all created test files.
49 void DeleteTestFiles()
52 (void)RSqlDatabase::Delete(KDbName);
55 ///////////////////////////////////////////////////////////////////////////////////////
56 //Test macros and functions
57 void Check(TInt aValue, TInt aLine)
62 RDebug::Print(_L("*** Line %d\r\n"), aLine);
63 TheTest(EFalse, aLine);
66 void Check(TInt aValue, TInt aExpected, TInt aLine)
68 if(aValue != aExpected)
71 RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
72 TheTest(EFalse, aLine);
76 #define TEST(arg) ::Check((arg), __LINE__)
77 #define TEST2(aValue, aExpected) ::Check(aValue, aExpected, __LINE__)
79 ///////////////////////////////////////////////////////////////////////////////////////
80 //Set the drive to Rugged or non-rugged depending on the input parameter
81 void SetDrive(TBool aSetToRugged)
84 TPtr8 pRugged(&isRugged,1,1);
87 TInt err = TheFs.CharToDrive(KDrvLetter, drvNum);
89 err=TheFs.ControlIo(drvNum,KControlIoIsRugged,pRugged);
96 err=TheFs.ControlIo(drvNum,KControlIoRuggedOff);
104 err=TheFs.ControlIo(drvNum,KControlIoRuggedOn);
105 TEST2(err, KErrNone);
110 //Creates file session instance and the test directory
113 TInt err = TheFs.Connect();
114 TEST2(err, KErrNone);
116 //Set the drive to non-rugged
117 TBool setDriveToRugged = EFalse;
118 SetDrive(setDriveToRugged);
120 err = TheFs.MkDir(KTestDir);
121 TEST(err == KErrNone || err == KErrAlreadyExists);
124 TInt KillProcess(const TDesC& aProcessName)
127 //RDebug::Print(_L("Find and kill \"%S\" process.\n"), &aProcessName);
128 TBuf<64> pattern(aProcessName);
129 TInt length = pattern.Length();
131 TFindProcess procFinder(pattern);
133 while (procFinder.Next(name) == KErrNone)
135 if (name.Length() > length)
136 {//If found name is a string containing aProcessName string.
137 TChar c(name[length]);
138 if (c.IsAlphaDigit() ||
142 //RDebug::Print(_L(":: Process name: \"%S\".\n"), &name);
147 if (proc.Open(name) == KErrNone)
149 RDebug::Print(_L("About to kill process \"%S\", This will force a reboot\n"), &name);
159 @SYMTestCaseID PDS-SQL-CT-4164
160 @SYMTestCaseDesc Tests for DEF144027: SQL Open returns error if the reported and actual file size are different
161 This function creates a corrupted jorunal file on a non-rugged FAT, where the actual and
162 reported file size is different. This is done by killing the file server forcing the device to
163 reset. After the reset t_sqlfilesrvcrash2.exe is used to verify SQL can handle this corrupted
164 journal file properly.
165 @SYMTestActions DEF144027: SQL Open returns error if the reported and actual file size are different
166 @SYMTestExpectedResults Test must not fail
167 @SYMTestPriority Medium
173 TInt err = TheDb.Create(KDbName, &KConfigStr);
174 TEST2(err, KErrNone);
176 err = TheDb.Exec(_L("CREATE TABLE t1(NUM INTEGER)"));
178 err = TheDb.Exec(_L("CREATE TABLE t2(NUM INTEGER)"));
181 err = TheDb.Exec(_L("INSERT INTO t1(NUM) VALUES (1)"));
184 err = TheDb.Exec(_L("INSERT INTO t2(NUM) VALUES (1)"));
189 err = TheDb.Open(KDbName);
190 TEST2(err, KErrNone);
192 err = TheDb.Exec(_L("BEGIN"));
195 err = TheDb.Exec(_L("CREATE TABLE t3(NUM INTEGER)"));
196 TEST2(err, KErrNone);
198 err = TheDb.Exec(_L("INSERT INTO t1(NUM) VALUES (1)"));
201 err = TheDb.Exec(_L("INSERT INTO t2(NUM) VALUES (1)"));
204 err = TheDb.Exec(_L("INSERT INTO t3(NUM) VALUES (1)"));
208 //Here the transaction is committed but the database is not close
209 //this makes sure that the journal is truncated but not deleted
210 err = TheDb.Exec(_L("COMMIT"));
213 //Reset the drive to rugged
214 TBool setDriveToRugged = ETrue;
215 SetDrive(setDriveToRugged);
217 //When the file server is killed, the file size meta data will not be updated
218 KillProcess(KFileSrvName);
223 TheTest.Start(_L(" @SYMTestCaseID:PDS-SQL-CT-4164 DEF144027: SQL Open returns error if the reported and actual file size are different"));
226 #endif //#if !defined __WINS__ && !defined __WINSCW__
232 CTrapCleanup* tc = CTrapCleanup::New();
236 #if !defined __WINS__ && !defined __WINSCW__
243 TheTest.Start(_L("This test works only works on hardware!"));
253 User::Heap().Check();