Update contrib.
1 // Copyright (c) 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.
18 #include "SqlSrvMain.h"
19 #include "SqlSrvStartup.h"
20 #include "SqlSrvUtil.h"
22 _LIT(KCfgDb1ConfigFilePath, "c:\\private\\10281e17\\cfg[10281E17]t_sqlstartup1.db.02"); // config file version 2 for t_sqlstartup1.db
23 _LIT(KCfgDb2ConfigFilePath, "c:\\private\\10281e17\\cfg[10281E17]t_sqlstartup2.db.05"); // config file version 5 for t_sqlstartup2.db
25 //This subdir is created by t_sqlenvcreate app. It should not be returned in the list of files for backup.
26 _LIT(KPrivateSubDir, "c:\\private\\10281e17\\TestDir.db");
28 ///////////////////////////////////////////////////////////////////////////////////////
30 RTest TheTest(_L("t_sqlstartup test"));
34 static TInt TheProcessHandleCount = 0;
35 static TInt TheThreadHandleCount = 0;
36 static TInt TheAllocatedCellsCount = 0;
39 static const TInt KBurstRate = 20;
42 ///////////////////////////////////////////////////////////////////////////////////////
44 void DeleteTestFiles()
46 (void)TheFs.Delete(KCfgDb2ConfigFilePath);
47 (void)TheFs.Delete(KCfgDb1ConfigFilePath);
51 ///////////////////////////////////////////////////////////////////////////////////////
52 ///////////////////////////////////////////////////////////////////////////////////////
53 //Test macros and functions
54 void Check(TInt aValue, TInt aLine)
59 RDebug::Print(_L("*** Expresssion evaluated to false\r\n"));
60 TheTest(EFalse, aLine);
63 void Check(TInt aValue, TInt aExpected, TInt aLine)
65 if(aValue != aExpected)
68 RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
69 TheTest(EFalse, aLine);
72 #define TEST(arg) ::Check((arg), __LINE__)
73 #define TEST2(aValue, aExpected) ::Check(aValue, aExpected, __LINE__)
75 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
77 static void MarkHandles()
79 RThread().HandleCount(TheProcessHandleCount, TheThreadHandleCount);
82 static void MarkAllocatedCells()
84 TheAllocatedCellsCount = User::CountAllocCells();
87 static void CheckAllocatedCells()
89 TInt allocatedCellsCount = User::CountAllocCells();
90 TEST2(allocatedCellsCount, TheAllocatedCellsCount);
93 static void CheckHandles()
95 TInt endProcessHandleCount;
96 TInt endThreadHandleCount;
98 RThread().HandleCount(endProcessHandleCount, endThreadHandleCount);
100 TEST2(TheProcessHandleCount, endProcessHandleCount);
101 TEST2(TheThreadHandleCount, endThreadHandleCount);
104 static void OomPreStep(TInt
111 MarkAllocatedCells();
113 __UHEAP_SETBURSTFAIL(RAllocator::EBurstFailNext, aFailingAllocationNo, KBurstRate);
116 static void OomPostStep()
120 CheckAllocatedCells();
124 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
125 ////////////////////////////////////////////////////////////////////////////////////////////////////////////
127 static void CreateAndDestroySqlServerL()
129 CSqlServer* server = CSqlServer::NewLC();
130 //Drive C: to the RSqlDriveSpaceCol object. This will allow "reserve drive space" construct/destroy code to be tested.
131 RSqlDriveSpaceCol& drvcol = server->DriveSpaceCol();
132 drvcol.AddL(EDriveC);
133 CleanupStack::PopAndDestroy(server);
136 static CSqlServer* CreateSqlServerL()
138 CSqlServer* server = CSqlServer::NewLC();
139 CleanupStack::Pop(server);
144 @SYMTestCaseID PDS-SQL-UT-4159
145 @SYMTestCaseDesc SQL server startup OOM test
146 @SYMTestPriority High
147 @SYMTestActions Runs the SQL server startup code in an OOM loop.
148 @SYMTestExpectedResults Test must not fail
151 void SqlServerStartupOomTest()
153 TInt err = KErrNoMemory;
154 TInt failingAllocationNo = 0;
155 TheTest.Printf(_L("Iteration:\r\n"));
156 while(err == KErrNoMemory)
158 TheTest.Printf(_L(" %d"), ++failingAllocationNo);
159 OomPreStep(failingAllocationNo);
160 TRAP(err, CreateAndDestroySqlServerL());
163 if(err != KErrNoMemory)
165 TEST2(err, KErrNone);
167 TheTest.Printf(_L("\r\n===OOM test succeeded at heap failure rate of %d ===\r\n"), failingAllocationNo);
171 @SYMTestCaseID PDS-SQL-UT-4160
172 @SYMTestCaseDesc CSqlServer::GetBackUpListL() OOM test
173 @SYMTestPriority High
174 @SYMTestActions Calls CSqlServer::GetBackUpListL() in an OOM loop.
175 @SYMTestExpectedResults Test must not fail
178 void GetBackupListOomTest()
180 CSqlServer* server = NULL;
181 TRAPD(err, server = CreateSqlServerL());
182 TEST2(err, KErrNone);
186 TInt failingAllocationNo = 0;
187 TheTest.Printf(_L("Iteration:\r\n"));
188 while(err == KErrNoMemory)
190 TheTest.Printf(_L(" %d"), ++failingAllocationNo);
191 OomPreStep(failingAllocationNo);
192 const TUid KDbUd = {0x98765432};
193 RArray<HBufC*> files;
194 TRAP(err, server->GetBackUpListL(KDbUd, EDriveC, files));
195 fileCnt = files.Count();
198 //No directories should be returned in the list of files for backup
199 for(TInt i=0;i<fileCnt;++i)
201 TPtrC fname = files[i]->Des();
202 TInt rc = KPrivateSubDir().CompareF(fname);
206 for(TInt j=0;j<files.Count();++j)
216 if(err != KErrNoMemory)
218 TEST2(err, KErrNone);
220 TheTest.Printf(_L("\r\n===OOM test succeeded at heap failure rate of %d ===\r\nFile count: %d\r\n"), failingAllocationNo, fileCnt);
224 @SYMTestCaseID PDS-SQL-UT-4161
225 @SYMTestCaseDesc SQL server startup file I/O error simulation test
226 @SYMTestPriority High
227 @SYMTestActions Runs the SQL server startup code in a file I/O error simulation loop.
228 @SYMTestExpectedResults Test must not fail
231 void SqlServerStartupFileIoErrorTest()
234 TInt err = fs.Connect();
235 TEST2(err, KErrNone);
237 for(TInt fsError=KErrNotFound;fsError>=KErrBadName;--fsError)
239 TheTest.Printf(_L("===Simulated error: %d\r\nIteration: "), fsError);
244 TheTest.Printf(_L("%d "), cnt);
245 (void)fs.SetErrorCondition(fsError, cnt);
246 TRAP(err, CreateAndDestroySqlServerL());
247 (void)fs.SetErrorCondition(KErrNone);
253 TEST2(err, KErrNone);
254 TheTest.Printf(_L("\r\n===File I/O error simulation test succeeded on iteration %d===\r\n"), cnt);
261 @SYMTestCaseID PDS-SQL-UT-4162
262 @SYMTestCaseDesc CSqlServer::GetBackUpListL() file I/O error simulation test
263 @SYMTestPriority High
264 @SYMTestActions Calls CSqlServer::GetBackUpListL() in a file I/O error simulation loop.
265 @SYMTestExpectedResults Test must not fail
268 void GetBackupListFileIoErrorTest()
270 CSqlServer* server = NULL;
271 TRAPD(err, server = CreateSqlServerL());
272 TEST2(err, KErrNone);
274 for(TInt fsError=KErrNotFound;fsError>=KErrBadName;--fsError)
276 TheTest.Printf(_L("===Simulated error: %d\r\nIteration: "), fsError);
282 TheTest.Printf(_L("%d "), cnt);
283 (void)server->Fs().SetErrorCondition(fsError, cnt);
284 const TUid KDbUd = {0x98765432};
285 RArray<HBufC*> files;
286 TRAP(err, server->GetBackUpListL(KDbUd, EDriveC, files));
287 fileCnt = files.Count();
290 //No directories should be returned in the list of files for backup
291 for(TInt i=0;i<fileCnt;++i)
293 TPtrC fname = files[i]->Des();
294 TInt rc = KPrivateSubDir().CompareF(fname);
298 for(TInt j=0;j<files.Count();++j)
303 (void)server->Fs().SetErrorCondition(KErrNone);
309 TEST2(err, KErrNone);
310 TheTest.Printf(_L("\r\n===File I/O error simulation test succeeded on iteration %d===\r\nFile count: %d\r\n"), cnt, fileCnt);
317 @SYMTestCaseID PDS-SQL-UT-4224
318 @SYMTestCaseDesc CSqlServer::GetBackUpListL() functional test
319 @SYMTestPriority High
320 @SYMTestActions Calls CSqlServer::GetBackUpListL() and tests the output, when the drive is read-only,
321 when there is a sub-directory which name is matching the search pattern.
322 @SYMTestExpectedResults Test must not fail
324 void GetBackupListFunctionalTest()
326 CSqlServer* server = NULL;
327 TRAPD(err, server = CreateSqlServerL());
328 TEST2(err, KErrNone);
329 //Case 1: database with specified uid bellow do exist (on drive C). There will be one subdirectory matching the search pattern.
330 const TDriveNumber KTestDrvNum1 = EDriveC;
331 const TUid KDbUid = {0x98765432};
332 TDriveUnit testDrive(KTestDrvNum1);
333 TDriveName testDriveName = testDrive.Name();
334 testDriveName.LowerCase();
335 //One test directory will be created, which name will be matching the search pattern.
336 //The directory name should not be included in the list with the file names.
337 TFileName testFileName;
338 err = server->Fs().PrivatePath(testFileName);
339 TEST2(err, KErrNone);
340 testFileName.Append(KDbUid.Name());
341 _LIT(KTestPath, "t_startup\\");
342 testFileName.Append(KTestPath);
343 testFileName.Append(_L("t_startup.db"));
345 err = parse.Set(testFileName, &testDriveName, 0);
346 TEST2(err, KErrNone);
347 err = server->Fs().MkDirAll(parse.FullName());
348 TEST(err == KErrNone || err == KErrAlreadyExists);
350 RArray<HBufC*> files;
351 TRAP(err, server->GetBackUpListL(KDbUid, KTestDrvNum1, files));
352 TEST2(err, KErrNone);
353 TInt fileCnt = files.Count();
354 for(TInt i=0;i<fileCnt;++i)
356 TPtrC fname = files[i]->Des();
357 TheTest.Printf(_L("Db: %S\r\n"), &fname);
358 TEST(fname.FindF(KTestPath) < 0);
359 //The name should include the full path + the drive
360 err = parse.Set(fname, 0, 0);
361 TEST2(err, KErrNone);
362 TEST(parse.DrivePresent());
363 TEST(parse.PathPresent());
364 TDriveName driveName(parse.Drive());
365 driveName.LowerCase();
367 TEST(driveName == testDriveName);
370 //Case 2: drive Z:. No files should be returned.
371 const TDriveNumber KTestDrvNum2 = EDriveZ;
372 TRAP(err, server->GetBackUpListL(KDbUid, KTestDrvNum2, files));
373 TEST2(err, KErrNone);
374 fileCnt = files.Count();
376 //Case 3: drive A:. The drive does not exist. No files should be returned.
377 const TDriveNumber KTestDrvNum3 = EDriveA;
378 TRAP(err, server->GetBackUpListL(KDbUid, KTestDrvNum3, files));
379 TheTest.Printf(_L("Drive %d, err=%d\r\n"), KTestDrvNum3, err);
380 fileCnt = files.Count();
387 @SYMTestCaseID PDS-SQL-UT-4163
388 @SYMTestCaseDesc Test for DEF144196: SQL, server code coverage can be improved
389 @SYMTestPriority High
390 @SYMTestActions Tests the UTF conversion functions implemented in SqlSrvUtil.cpp.
391 @SYMTestExpectedResults Test must not fail
394 void UtfConversionTest()
396 ///////// UTF16ToUTF8() ///////////////////////
397 _LIT(KStr16, "abcd");
398 _LIT8(KStr8, "abcd");
399 TBuf8<KMaxFileName + 1> bufout;
400 TBool rc = UTF16ToUTF8(KStr16, bufout);
402 TEST(bufout == KStr8);
403 //Test where the input buffer contains non-convertible characters
406 name2[0] = TChar(0xD800);
407 name2[1] = TChar(0xFC00);
408 rc = UTF16ToUTF8(name2, bufout);
410 ///////// UTF16ToUTF8Z() ///////////////////////
411 _LIT8(KStr8Z, "abcd\x0");
412 rc = UTF16ToUTF8Z(KStr16, bufout);
414 TEST(bufout == KStr8Z);
415 //Test where the input buffer contains non-convertible characters
416 rc = UTF16ToUTF8Z(name2, bufout);
418 ///////// UTF16ZToUTF8Z() ///////////////////////
419 _LIT(KStr16Z, "abcd\x0");
420 rc = UTF16ZToUTF8Z(KStr16Z, bufout);
422 TEST(bufout == KStr8Z);
423 //Test where the input buffer contains non-convertible characters
426 name3[0] = TChar(0xD800);
427 name3[1] = TChar(0xFC00);
428 name3[2] = TChar(0x0000);
429 rc = UTF16ZToUTF8Z(name3, bufout);
434 @SYMTestCaseID PDS-SQL-UT-4175
435 @SYMTestCaseDesc Test for DEF144937: SQL, SQL server, the code coverage can be improved in some areas.
436 @SYMTestPriority High
437 @SYMTestActions The test creates a SQL server instance and performs some basic operations with
438 RSqlDriveSpaceCol object owned by the server, such as: adding a new drive,
439 getting an access to the reserved drive space, releasing the access.
440 @SYMTestExpectedResults Test must not fail
443 void ReserveDriveSpaceTest()
445 CSqlServer* srv = NULL;
446 TRAPD(err, srv = CreateSqlServerL());
447 TEST2(err, KErrNone);
449 RSqlDriveSpaceCol& drvcol = srv->DriveSpaceCol();
450 TRAP(err, drvcol.AddL(EDriveC));
451 TEST2(err, KErrNone);
453 CSqlDriveSpace* drvspace = drvcol.Find(EDriveZ);
455 drvspace = drvcol.Find(EDriveC);
456 TEST(drvspace != NULL);
458 TDriveNumber drvnum = drvspace->Drive();
459 TEST2(drvnum, EDriveC);
460 //It is safe to call GetAccessL() more than once. The access is reference counted.
461 TRAP(err, drvspace->GetAccessL());
462 TEST2(err, KErrNone);
463 TRAP(err, drvspace->GetAccessL());
464 TEST2(err, KErrNone);
465 //It is safe if ReleaseAccess() call count do not match GetAccessL() call count.
466 drvspace->ReleaseAccess();
467 drvspace->ReleaseAccess();
468 drvspace->ReleaseAccess();
470 drvcol.ResetAndDestroy();
474 void DoCreateCfgFile(const TDesC& aFileName, const TDesC8& aData)
477 TInt err = file.Create(TheFs, aFileName, EFileRead | EFileWrite);
478 TEST2(err, KErrNone);
479 err = file.Write(aData);
481 TEST2(err, KErrNone);
486 CActiveScheduler* scheduler = new CActiveScheduler;
487 TEST(scheduler != NULL);
488 CActiveScheduler::Install(scheduler);
490 //Adding two db config files will allow CDbConfigFiles construct/destroy code also to be tested in the OOM tests.
491 TInt err = TheFs.Connect();
492 TEST2(err, KErrNone);
493 DoCreateCfgFile(KCfgDb1ConfigFilePath, _L8("CREATE INDEX idx ON table1(i1);"));
494 DoCreateCfgFile(KCfgDb2ConfigFilePath, _L8("CREATE INDEX idx1 ON table1(i1);CREATE INDEX idx2 ON table2(i2)"));
496 TheTest.Start(_L(" @SYMTestCaseID:PDS-SQL-UT-4159 SQL server startup OOM test"));
497 SqlServerStartupOomTest();
499 TheTest.Next (_L(" @SYMTestCaseID:PDS-SQL-UT-4160 CSqlServer::GetBackUpListL() OOM test"));
500 GetBackupListOomTest();
502 TheTest.Next (_L(" @SYMTestCaseID:PDS-SQL-UT-4161 SQL server startup file I/O error simulation test"));
503 SqlServerStartupFileIoErrorTest();
505 TheTest.Next (_L(" @SYMTestCaseID:PDS-SQL-UT-4162 CSqlServer::GetBackUpListL() file I/O error simulation test"));
506 GetBackupListFileIoErrorTest();
508 TheTest.Next (_L(" @SYMTestCaseID:PDS-SQL-UT-4224 CSqlServer::GetBackUpListL() functional test"));
509 GetBackupListFunctionalTest();
511 TheTest.Next (_L(" @SYMTestCaseID:PDS-SQL-UT-4163 SQL server, UTF conversion test"));
514 TheTest.Next (_L(" @SYMTestCaseID:PDS-SQL-UT-4175 Reserve drive space tests"));
515 ReserveDriveSpaceTest();
524 CTrapCleanup* tc = CTrapCleanup::New();
539 User::Heap().Check();