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.
24 ///////////////////////////////////////////////////////////////////////////////////////
26 RTest TheTest(_L("SQL Backup and Restore Test"));
28 _LIT(KPrivateDir, "\\private\\10281e17\\");
30 //Don't forget to update DeleteBackupFiles() implementation if a new uid is added
31 const TSecureId KClientUid = 0x21212122; // the data owner's UID
32 const TSecureId KZeroFileSizeUid = 0xFFFF4321;
33 const TSecureId KTestClientUid1 = 0xFFFF4322;
34 const TSecureId KTestClientUid2 = 0xFFFF4323;
35 const TSecureId KTestClientUid3 = 0xFFFF4324;
37 _LIT(KBackupDir, "C:\\TEST\\");
38 _LIT(KBackupFileTemplate, "C:\\TEST\\Backup.bak");
39 _LIT(KBackupCopy, "C:\\TEST\\Backup2.bak");
40 _LIT(KBackupFile2Z, "Z:\\TEST\\t_sqlbur_backup_ver0.bak");
41 _LIT(KBackupFile2, "C:\\TEST\\t_sqlbur_backup_ver0.bak");
43 _LIT(KZeroSizeFile, "C:\\private\\10281e17\\[FFFF4321]t_sqlbur_zero.db");
44 _LIT(KTestFile1, "C:\\private\\10281e17\\[FFFF4322]t_sqlbur_test1.db");
45 _LIT(KTestFile1NameOnly, "[FFFF4322]t_sqlbur_test1.db");
46 _LIT(KTestFile1Bak, "C:\\private\\10281e17\\bak[FFFF4322]t_sqlbur_test1.db.bak");
47 _LIT(KTestDeleteMask1, "C:\\private\\10281e17\\[FFFF4322]*");
48 _LIT(KTestDeleteMask2, "*bur_test1.db");
49 _LIT(KTestFile2, "\\private\\10281e17\\[FFFF4323]t_sqlbur_test2.db");
50 _LIT(KTestFile3, "c:\\private\\10281e17\\[FFFF4324]t_sqlbur_test3.db");
51 _LIT(KTestFile4, "c:\\private\\10281e17\\[FFFF4324]t_sqlbur_test4.db");
53 const TDriveNumber KTestDrive = EDriveC;
55 const TUint KBufferSize = 2048; // used for reading backup files for validation
57 static CActiveScheduler* TheScheduler = NULL;
58 static CSqlSrvTestBurInterface* TheSqlSrvTestBurInterface = NULL;
60 /////////////////////////////////////
63 _LIT(KTestDbFileName1,"C:[21212122]AADB2.db");
64 _LIT(KTestDbFileName2,"C:[21212122]BBDB2.db");
66 //Temp buffers for storing files content, to be compared with what is received after the restore operation. 10 files max.
67 TInt TheFileCount = 0;
68 const TInt KMaxDbFileSize = 10 * 1024;//The max test db file size - 10 Kb max.
69 static TUint8 TheDbFileData[10][KMaxDbFileSize];//An array where the original db file content will be stored
70 static TInt TheDbFileSizes[10];//An array where the real db file size will be stored
71 static TUint8 TheBuf[KMaxDbFileSize];
73 /////////////////////////////////////
75 ///////////////////////////////////////////////////////////////////////////////////////
77 void DeleteBackupFiles()
81 fname.Copy(KBackupFileTemplate);
82 fname.Append((static_cast <TUid> (KClientUid)).Name());
83 (void)TheSqlSrvTestBurInterface->Fs().Delete(fname);
85 fname.Copy(KBackupFileTemplate);
86 fname.Append((static_cast <TUid> (KZeroFileSizeUid)).Name());
87 (void)TheSqlSrvTestBurInterface->Fs().Delete(fname);
89 fname.Copy(KBackupFileTemplate);
90 fname.Append((static_cast <TUid> (KTestClientUid1)).Name());
91 (void)TheSqlSrvTestBurInterface->Fs().Delete(fname);
93 fname.Copy(KBackupFileTemplate);
94 fname.Append((static_cast <TUid> (KTestClientUid2)).Name());
95 (void)TheSqlSrvTestBurInterface->Fs().Delete(fname);
97 fname.Copy(KBackupFileTemplate);
98 fname.Append((static_cast <TUid> (KTestClientUid3)).Name());
99 (void)TheSqlSrvTestBurInterface->Fs().Delete(fname);
102 void TestEnvDestroy()
104 (void)TheSqlSrvTestBurInterface->Fs().Delete(KBackupCopy);
105 (void)TheSqlSrvTestBurInterface->Fs().Delete(KTestFile1);
106 (void)TheSqlSrvTestBurInterface->Fs().Delete(KTestFile1Bak);
107 (void)TheSqlSrvTestBurInterface->Fs().Delete(KTestFile3);
108 (void)TheSqlSrvTestBurInterface->Fs().Delete(KTestFile4);
109 (void)TheSqlSrvTestBurInterface->Fs().Delete(KZeroSizeFile);
113 delete TheSqlSrvTestBurInterface;
114 TheSqlSrvTestBurInterface = NULL;
120 ////////////////////////////
121 // Test macros and functions
122 ////////////////////////////
124 void Check(TInt aValue, TInt aLine)
129 TheTest(EFalse, aLine);
133 void Check(TInt aValue, TInt aExpected, TInt aLine)
135 if(aValue != aExpected)
138 RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
139 TheTest(EFalse, aLine);
142 #define TEST(arg) ::Check((arg), __LINE__)
143 #define TEST2(aValue, aExpected) ::Check(aValue, aExpected, __LINE__)
145 ///////////////////////////////////////////////////////////////////////////////////////
147 static void DestroyFileList(RArray<HBufC*>& aFileList)
149 for(TInt i=0;i<aFileList.Count();++i)
156 //CSqlSrvTestBurInterface - test implementation of the MSqlSrvBurInterface, implemented in the production code by the SQL server.
157 CSqlSrvTestBurInterface *CSqlSrvTestBurInterface::New()
159 CSqlSrvTestBurInterface* self = new CSqlSrvTestBurInterface;
165 CSqlSrvTestBurInterface::CSqlSrvTestBurInterface()
169 void CSqlSrvTestBurInterface::Construct()
171 TInt err = iFs.Connect();
172 TEST2(err, KErrNone);
173 err = iFs.MkDir(KBackupDir);
174 TEST(err == KErrNone || err == KErrAlreadyExists);
175 err = iFs.CreatePrivatePath(KTestDrive);
176 TEST2(err, KErrNone);
179 CSqlSrvTestBurInterface::~CSqlSrvTestBurInterface()
184 //Called by the backup client ot get a list of database files to backup
185 //The array is owned by the caller
186 //The SQL server would have the job to get a list of databases owned by
187 //the given SID and to determine whether the backup flag is set
188 //All databases that satisfy this requirement will be added to the array.
189 void CSqlSrvTestBurInterface::GetBackUpListL(TSecureId aUid, TDriveNumber aDrive, RArray<HBufC*>& aFileList)
192 {//Simulates that there are no databases for backup
193 DestroyFileList(aFileList);
197 TDriveUnit driveUnit(aDrive);
198 TDriveName driveName = driveUnit.Name();
200 path.Copy(driveName);
201 path.Append(KPrivateDir);
202 //Include the aUid and the "*" mask
203 TUidName uidName = (static_cast <TUid> (aUid)).Name();
204 _LIT(KMatchAllDbFiles, "*");
205 TBuf<KMaxUidName + sizeof(KMatchAllDbFiles)> fileNameMask(uidName);
206 fileNameMask.Append(KMatchAllDbFiles);
208 TInt err = parse.Set(path, &fileNameMask, NULL);
209 User::LeaveIfError(err);
211 TPtrC fullPath(parse.FullName());
212 CDir* fileNameCol = NULL;
213 err = TheSqlSrvTestBurInterface->Fs().GetDir(fullPath, KEntryAttNormal, ESortNone, fileNameCol);
214 if(err == KErrNotFound)
218 User::LeaveIfError(err);
219 CleanupStack::PushL(fileNameCol);
220 TInt fileCount = fileNameCol->Count();
221 err = aFileList.Reserve(fileCount);
222 User::LeaveIfError(err);
223 //Append the full database file paths to the file names list.
224 for(TInt i=0;i<fileCount;++i)
226 const ::TEntry& entry = (*fileNameCol)[i];
227 err = parse.Set(path, &entry.iName, NULL);
228 User::LeaveIfError(err);
229 TPtrC fname(parse.FullName());
230 HBufC* fnameBuf = fname.AllocL();
231 err = aFileList.Append(fnameBuf);
232 User::LeaveIfError(err);
234 CleanupStack::PopAndDestroy(fileNameCol);
237 //Returns the file system resource handle to the caller.
238 RFs& CSqlSrvTestBurInterface::Fs()
243 ///////////////////////////////////////////////////////////////////////////////////////
244 ///////////////////////////////////////////////////////////////////////////////////////
245 ///////////////////////////////////////////////////////////////////////////////////////
247 TBool FileExists(RFs& aFs, const TDesC& aFileName)
250 return aFs.Entry(aFileName, entry) == KErrNone;
255 TheScheduler = new CActiveScheduler;
256 TEST(TheScheduler != NULL);
258 CActiveScheduler::Install(TheScheduler);
260 TheSqlSrvTestBurInterface = CSqlSrvTestBurInterface::New();
261 TEST(TheSqlSrvTestBurInterface != NULL);
264 void PrepareSearchPath(TDriveNumber aDrive, TDes& aPath)
266 TDriveUnit driveUnit(aDrive);
267 TDriveName driveName = driveUnit.Name();
268 aPath.Copy(driveName);
269 aPath.Append(KPrivateDir);
272 void PrepareSearchPattern(const TDesC& aPath, TSecureId aUid, TParse& aParse)
274 TUidName uidName = (static_cast <TUid> (aUid)).Name();
275 _LIT(KMatchAllDbFiles, "*");
276 TBuf<KMaxUidName + sizeof(KMatchAllDbFiles)> fileNameMask(uidName);
277 fileNameMask.Append(KMatchAllDbFiles);
278 TInt err = aParse.Set(aPath, &fileNameMask, NULL);
279 TEST2(err, KErrNone);
282 //Reads the content of the db files and stores the content to a global memory buffer.
283 //That buffer content will be used later for verification of the restore process.
284 void StoreDbContentToBuf(RFs& aFs, TDriveNumber aDrive, TSecureId aUid)
287 PrepareSearchPath(aDrive, path);
289 PrepareSearchPattern(path, aUid, parse);
292 Mem::FillZ(TheDbFileData, sizeof(TheDbFileData));
293 Mem::FillZ(TheDbFileSizes, sizeof(TheDbFileSizes));
296 TInt err = aFs.GetDir(parse.FullName(), KEntryAttNormal, ESortByName, dir);
297 TEST2(err, KErrNone);
298 TheFileCount = dir->Count();
299 for(TInt i=0;i<TheFileCount;++i)
301 const ::TEntry& entry = (*dir)[i];
302 err = parse.Set(path, &entry.iName, NULL);
303 TEST2(err, KErrNone);
304 TPtrC fname(parse.FullName());
307 err = dbFile.Open(aFs, fname, EFileRead);
308 TEST2(err, KErrNone);
311 err = dbFile.Size(fileSize);
312 TEST2(err, KErrNone);
315 TPtr8 bufptr(TheDbFileData[i], 0, KMaxDbFileSize);
316 err = dbFile.Read(bufptr, fileSize);
317 TEST2(err, KErrNone);
318 TEST(fileSize == bufptr.Length());
320 TheDbFileSizes[i] = fileSize;
327 //At the moment when this function is called, the db files content is already restored.
328 //The function will open the restored db files and compare their content against the content
329 //of the original db files (kept in a global memory buffer).
330 void CompareDbContentWithBuf(RFs& aFs, TDriveNumber aDrive, TSecureId aUid)
333 PrepareSearchPath(aDrive, path);
335 PrepareSearchPattern(path, aUid, parse);
338 TInt err = aFs.GetDir(parse.FullName(), KEntryAttNormal, ESortByName, dir);
339 TEST2(err, KErrNone);
340 TEST2(TheFileCount, dir->Count());
341 for(TInt i=0;i<TheFileCount;++i)
343 TEST(TheDbFileSizes[i] > 0);
345 const ::TEntry& entry = (*dir)[i];
346 err = parse.Set(path, &entry.iName, NULL);
347 TEST2(err, KErrNone);
348 TPtrC fname(parse.FullName());
351 TInt err = dbFile.Open(aFs, fname, EFileRead);
352 TEST2(err, KErrNone);
355 err = dbFile.Size(fileSize);
356 TEST2(err, KErrNone);
358 TEST2(TheDbFileSizes[i], fileSize);
360 TPtr8 bufptr(TheBuf, 0, KMaxDbFileSize);
361 err = dbFile.Read(bufptr, fileSize);
362 TEST2(err, KErrNone);
363 TEST2(fileSize, bufptr.Length());
365 err = Mem::Compare(TheBuf, fileSize, TheDbFileData[i], TheDbFileSizes[i]);
373 ////////////////////////////////////////////////////////////////////////////////////////
375 //The backup client will return a series of data chunks representing
376 //one of more databases for the uid of the data owner.
377 //This data is stored in a file on the C drive for the purposes of the test
378 TInt TestBackupL(CSqlBurCallback &aBackupClient, RFs& aFs, TSecureId aUid, TDriveNumber aDrive, TInt aDataChunkSize = KBufferSize)
380 TFileName backupFileName;
381 backupFileName.Copy(KBackupFileTemplate);
382 backupFileName.Append((static_cast <TUid> (aUid)).Name());
385 CleanupClosePushL(file);
386 TInt err = file.Replace(aFs, backupFileName, EFileWrite | EFileStream | EFileShareExclusive);
387 User::LeaveIfError(err);
388 aBackupClient.InitialiseGetProxyBackupDataL(aUid, aDrive);
390 TBuf8<KBufferSize> buf;
391 TPtr8 ptr((TUint8*)buf.Ptr(), aDataChunkSize);
392 TBool finishedFlag = EFalse;
397 aBackupClient.GetBackupDataSectionL(ptr, finishedFlag);
398 count += ptr.Length();
399 err = file.Write(ptr);
400 User::LeaveIfError(err);
403 while(!finishedFlag);
405 CleanupStack::PopAndDestroy(&file);
409 User::Leave(KErrEof);
411 if(!FileExists(aFs, backupFileName))
413 User::Leave(KErrNotFound);
415 TheTest.Printf(_L("Backup complete. %d bytes processed.\r\n"), count);
419 //This sends the data in chunks form back to the BUR client
420 //for nupacking and restoration of the original databases files
421 TInt TestRestoreL(CSqlBurCallback &aRestoreClient, RFs& aFs, TSecureId aUid, TDriveNumber aDrive, TInt aDataChunkSize = KBufferSize)
423 TFileName backupFileName;
424 backupFileName.Copy(KBackupFileTemplate);
425 backupFileName.Append((static_cast <TUid> (aUid)).Name());
428 CleanupClosePushL(file);
429 TInt err = file.Open(aFs, backupFileName, EFileRead | EFileShareExclusive);
430 User::LeaveIfError(err);
431 aRestoreClient.InitialiseRestoreProxyBaseDataL(aUid, aDrive);
433 TBuf8<KBufferSize> buf;
434 TPtr8 ptr((TUint8*)buf.Ptr(), aDataChunkSize);
435 TBool finishedFlag = EFalse;
438 err = file.Size(fileSize);
439 User::LeaveIfError(err);
440 TInt count = fileSize;
444 err = file.Read(ptr, aDataChunkSize);
445 User::LeaveIfError(err);
446 fileSize -= ptr.Length();
447 finishedFlag = fileSize == 0;
448 aRestoreClient.RestoreBaseDataSectionL(ptr, finishedFlag);
453 CleanupStack::PopAndDestroy(&file);
455 aRestoreClient.RestoreComplete(aDrive);
459 User::Leave(KErrEof);
462 TheTest.Printf(_L("Restore complete. %d bytes processed.\r\n"), count);
466 //Verifies the integrity of the backup file.
467 void TestArchiveIntegrityL(CSqlBurCallback &aBackupClient, RFs& aFs, TSecureId aUid)
470 CleanupClosePushL(bkpFile);
472 TFileName backupFileName;
473 backupFileName.Copy(KBackupFileTemplate);
474 backupFileName.Append((static_cast <TUid> (aUid)).Name());
476 TInt err = bkpFile.Open(aFs, backupFileName, EFileRead | EFileShareExclusive);
477 User::LeaveIfError(err);
479 TBuf8<KBufferSize> buf;
480 TPtr8 ptr((TUint8*)buf.Ptr(), buf.MaxLength());
482 TInt bkpFileSize = 0;
483 err = bkpFile.Size(bkpFileSize);
484 User::LeaveIfError(err);
486 while(bkpFileSize > 0)
489 err = bkpFile.Read(ptr, 16); // 8 UTF-16 characters
490 User::LeaveIfError(err);
491 if(ptr.Length() != 16)
493 User::Leave(KErrCorrupt);
495 TPtr ptr16((TUint16*) ptr.Ptr(), 8, 8);
499 err = lex.Val(checksum, EHex);
500 User::LeaveIfError(err);
503 // get the old file size
504 err = bkpFile.Read(ptr, 16); // 8 UTF-16 characters
505 User::LeaveIfError(err);
506 if(ptr.Length() != 16)
508 User::Leave(KErrCorrupt);
510 ptr16.Set((TUint16*) ptr.Ptr(), 8, 8);
514 err = lex.Val(oldFileSize, EHex);
515 User::LeaveIfError(err);
518 // get the backup file header version
519 err = bkpFile.Read(ptr, 8); // 4 UTF-16 characters
520 User::LeaveIfError(err);
521 ptr16.Set((TUint16*)ptr.Ptr(), 4, 4);
525 err = lex.Val(hdrVer, EHex);
526 User::LeaveIfError(err);
530 err = bkpFile.Read(ptr, 32); // 16 UTF-16 characters
531 User::LeaveIfError(err);
532 if(ptr.Length() != 32)
534 User::Leave(KErrCorrupt);
536 ptr16.Set((TUint16*) ptr.Ptr(), 16, 16);
540 err = lex.Val(fileSize, EHex);
541 User::LeaveIfError(err);
544 // get the filename size
545 err = bkpFile.Read(ptr, 16); // 8 UTF-16 characters
546 User::LeaveIfError(err);
547 ptr16.Set((TUint16*)ptr.Ptr(), 8, 8);
549 TUint32 fileNameSize;
551 err = lex.Val(fileNameSize, EHex);
552 User::LeaveIfError(err);
556 err = bkpFile.Read(ptr, fileNameSize * 2); // fileName UTF-16 characters
557 User::LeaveIfError(err);
558 if(ptr.Length() != (fileNameSize * 2))
560 User::Leave(KErrCorrupt);
562 ptr16.Set((TUint16*) ptr.Ptr(), fileNameSize, fileNameSize);
565 tp.Set(ptr16, NULL, NULL);
566 TPtrC dbFileName = tp.Name();
567 bkpFileSize -= fileNameSize * 2;
569 // open a local file - replaces any previous one
571 CleanupClosePushL(dbFile);
572 err = dbFile.Replace(aFs, dbFileName, EFileWrite | EFileShareExclusive);
573 User::LeaveIfError(err);
575 // copy all the data (file size bytes)
576 TInt bytesLeftToRead = fileSize;
578 while(bytesLeftToRead > 0)
580 TInt readSize = bytesLeftToRead > KBufferSize ? KBufferSize : bytesLeftToRead;
581 err = bkpFile.Read(ptr, readSize);
582 User::LeaveIfError(err);
583 if(ptr.Length() != readSize)
585 User::Leave(KErrCorrupt);
587 bytesLeftToRead -= readSize;
588 err = dbFile.Write(ptr, readSize);
589 User::LeaveIfError(err);
592 bkpFileSize -= fileSize;
595 TUint64 checkSum64 = 0;
596 User::LeaveIfError(aBackupClient.CheckSum(dbFile, checkSum64));
597 TUint32 checksum32 = checkSum64 & 0xFFFFFFFF;
599 if(checksum != checksum32)
601 User::Leave(KErrCorrupt);
604 // all done with this file
605 CleanupStack::PopAndDestroy(&dbFile);
606 err = aFs.Delete(dbFileName);
607 User::LeaveIfError(err);
610 CleanupStack::PopAndDestroy(&bkpFile);
614 @SYMTestCaseID SYSLIB-SQL-UT-4002
615 @SYMTestCaseDesc Test for DEF113598 - "SQL, t_sqlbur unit test needs refactoring"
616 The test backups 2 test db files, then verifies the backup file integrity,
617 then restores the test db files content from the backup file.
618 At the end, the test checks that the restored test db files content is the
619 same as the content of the original test db file.
620 @SYMTestPriority High
621 @SYMTestActions Test for DEF113598 - "SQL, t_sqlbur unit test needs refactoring"
622 @SYMTestExpectedResults Test must not fail
625 void FunctionalTest()
627 CSqlBurCallback* backupClient = NULL;
628 TRAPD(err, backupClient = CSqlBurCallback::NewL(*TheSqlSrvTestBurInterface));
629 TEST(backupClient != NULL);
631 ////////////////////////////////////////
633 //Virtual functions - with default implementation
635 (void)backupClient->GetExpectedDataSize(KTestDrive);
637 (void)backupClient->GetDataChecksum(KTestDrive);
639 TBool finished = EFalse;
641 TRAP(err, backupClient->GetSnapshotDataL(KTestDrive, ptr, finished));
642 TEST2(err, KErrNotSupported);
644 TRAP(err, backupClient->InitialiseGetBackupDataL(KTestDrive));
645 TEST2(err, KErrNotSupported);
647 TRAP(err, backupClient->InitialiseRestoreBaseDataL(KTestDrive));
648 TEST2(err, KErrNotSupported);
650 TRAP(err, backupClient->InitialiseRestoreIncrementDataL(KTestDrive));
651 TEST2(err, KErrNotSupported);
653 TPtrC8 ptr2(KNullDesC8);
654 TRAP(err, backupClient->RestoreIncrementDataSectionL(ptr2, finished));
655 TEST2(err, KErrNotSupported);
657 TRAP(err, backupClient->AllSnapshotsSuppliedL());
658 TEST2(err, KErrNone);
660 TRAP(err, backupClient->ReceiveSnapshotDataL(KTestDrive, ptr2, finished));
661 TEST2(err, KErrNotSupported);
663 backupClient->TerminateMultiStageOperation();
665 ////////////////////////////////////////
667 TInt bytesStored = 0;
668 TRAP(err, bytesStored = TestBackupL(*backupClient, TheSqlSrvTestBurInterface->Fs(), KClientUid, KTestDrive));
669 TEST2(err, KErrNone);
671 TheTest.Next(_L("Archive integrity test"));
673 TRAP(err, TestArchiveIntegrityL(*backupClient, TheSqlSrvTestBurInterface->Fs(), KClientUid));
674 TEST2(err, KErrNone);
678 TheTest.Next(_L("Restore: functional test"));
680 CSqlBurCallback* restoreClient = NULL;
681 TRAP(err, restoreClient = CSqlBurCallback::NewL(*TheSqlSrvTestBurInterface));
682 TEST(restoreClient != NULL);
684 TInt bytesRestored = 0;
685 TRAP(err, bytesRestored = TestRestoreL(*restoreClient, TheSqlSrvTestBurInterface->Fs(), KClientUid, KTestDrive));
686 TEST2(err, KErrNone);
688 TEST(bytesRestored == bytesStored);
690 delete restoreClient;
692 CompareDbContentWithBuf(TheSqlSrvTestBurInterface->Fs(), KTestDrive, KClientUid);
695 TInt DoBackupL(TDriveNumber aDrive, TSecureId aUid)
697 CSqlBurCallback* backupClient = CSqlBurCallback::NewL(*TheSqlSrvTestBurInterface);
698 CleanupStack::PushL(backupClient);
699 TInt bytesStored = TestBackupL(*backupClient, TheSqlSrvTestBurInterface->Fs(), aUid, aDrive);
700 CleanupStack::PopAndDestroy(backupClient);
704 TInt DoRestoreL(TDriveNumber aDrive, TSecureId aUid)
706 CSqlBurCallback* restoreClient = CSqlBurCallback::NewL(*TheSqlSrvTestBurInterface);
707 CleanupStack::PushL(restoreClient);
708 TInt bytesRestored = TestRestoreL(*restoreClient, TheSqlSrvTestBurInterface->Fs(), aUid, aDrive);
709 CleanupStack::PopAndDestroy(restoreClient);
710 return bytesRestored;
714 @SYMTestCaseID SYSLIB-SQL-UT-4003
715 @SYMTestCaseDesc Test for DEF113598 - "SQL, t_sqlbur unit test needs refactoring"
716 Under simulated OOM condition, the test backups 2 test db files,
717 then restores the test db files content from the backup file.
718 At the end, the test checks that the restored test db files content is the
719 same as the content of the original test db file.
720 @SYMTestPriority High
721 @SYMTestActions Test for DEF113598 - "SQL, t_sqlbur unit test needs refactoring"
722 @SYMTestExpectedResults Test must not fail
727 ///////////////////////////////////////////////////////////////////////////////
728 TInt err = KErrNoMemory;
729 TInt bytesStored = 0;
732 for(count=1;err==KErrNoMemory;++count)
734 TInt startProcessHandleCount;
735 TInt startThreadHandleCount;
736 RThread().HandleCount(startProcessHandleCount, startThreadHandleCount);
738 User::__DbgMarkStart(RHeap::EUser);
739 User::__DbgSetAllocFail(RHeap::EUser,RHeap::EFailNext, count);
740 TRAP(err, bytesStored = DoBackupL(KTestDrive, KClientUid));
741 User::__DbgMarkEnd(RHeap::EUser, 0);
743 TInt endProcessHandleCount;
744 TInt endThreadHandleCount;
745 RThread().HandleCount(endProcessHandleCount, endThreadHandleCount);
747 TEST(startProcessHandleCount == endProcessHandleCount);
748 TEST(startThreadHandleCount == endThreadHandleCount);
750 TEST2(err, KErrNone);
751 TheTest.Printf(_L("OOM backup test succeeded at heap failure rate of %d\r\n"), count);
753 ///////////////////////////////////////////////////////////////////////////////
754 TheTest.Next(_L("Restore: OOM test"));
756 TInt bytesRestored = 0;
758 for(count=1;err==KErrNoMemory;++count)
760 TInt startProcessHandleCount;
761 TInt startThreadHandleCount;
762 RThread().HandleCount(startProcessHandleCount, startThreadHandleCount);
764 User::__DbgMarkStart(RHeap::EUser);
765 User::__DbgSetAllocFail(RHeap::EUser,RHeap::EFailNext, count);
766 TRAP(err, bytesRestored = DoRestoreL(KTestDrive, KClientUid));
767 User::__DbgMarkEnd(RHeap::EUser, 0);
769 TInt endProcessHandleCount;
770 TInt endThreadHandleCount;
771 RThread().HandleCount(endProcessHandleCount, endThreadHandleCount);
773 TEST(startProcessHandleCount == endProcessHandleCount);
774 TEST(startThreadHandleCount == endThreadHandleCount);
776 TEST2(err, KErrNone);
777 User::__DbgSetAllocFail(RHeap::EUser, RAllocator::ENone, 0);
778 TheTest.Printf(_L("OOM restore test succeeded at heap failure rate of %d\r\n"), count);
780 TEST2(bytesStored, bytesRestored);
782 CompareDbContentWithBuf(TheSqlSrvTestBurInterface->Fs(), KTestDrive, KClientUid);
786 @SYMTestCaseID PDS-SQL-UT-4143
787 @SYMTestCaseDesc SQL Backup&Restore - data chunk size test.
788 The test uses an integer array of 10 elements with randomly generated data chunk sizes.
789 Then the test runs 10 backup iterations using each time different data chunk size.
790 After each backup iteration the test performs a restore operation and checks that the
791 data has been backup&restored without errors.
792 @SYMTestActions SQL Backup&Restore - data chunk size test.
793 @SYMTestExpectedResults Test must not fail
794 @SYMTestPriority Medium
797 void FunctionalTest2()
801 TInt64 seed = now.Int64();
803 const TInt KArraySize = 10;
804 TInt dataChunks[10] = {2, 6, 0, 0, 0, 0, 0, 0, 0, 0};
805 const TInt KMaxDataChunkSize = 50;
807 for(TInt i=2;i<KArraySize;)
809 TInt dataChunkSize = Math::Rand(seed) % KMaxDataChunkSize;
810 if((dataChunkSize % 2) == 0 && dataChunkSize != 0) //The code works only with data chunks with even sizes!!!
812 dataChunks[i++] = dataChunkSize;
816 for(TInt i=0;i<KArraySize;++i)
818 TheTest.Printf(_L(" === Iteration %d, chunk size %d\r\n"), i + 1, dataChunks[i]);
819 CSqlBurCallback* backupClient = NULL;
820 TRAPD(err, backupClient = CSqlBurCallback::NewL(*TheSqlSrvTestBurInterface));
821 TEST(backupClient != NULL);
823 TInt bytesStored = 0;
824 TRAP(err, bytesStored = TestBackupL(*backupClient, TheSqlSrvTestBurInterface->Fs(), KClientUid, KTestDrive, dataChunks[i]));
825 TEST2(err, KErrNone);
827 TRAP(err, TestArchiveIntegrityL(*backupClient, TheSqlSrvTestBurInterface->Fs(), KClientUid));
828 TEST2(err, KErrNone);
832 CSqlBurCallback* restoreClient = NULL;
833 TRAP(err, restoreClient = CSqlBurCallback::NewL(*TheSqlSrvTestBurInterface));
834 TEST(restoreClient != NULL);
836 TInt bytesRestored = 0;
837 TRAP(err, bytesRestored = TestRestoreL(*restoreClient, TheSqlSrvTestBurInterface->Fs(), KClientUid, KTestDrive, dataChunks[i]));
838 TEST2(err, KErrNone);
840 TEST(bytesRestored == bytesStored);
842 delete restoreClient;
844 CompareDbContentWithBuf(TheSqlSrvTestBurInterface->Fs(), KTestDrive, KClientUid);
849 @SYMTestCaseID PDS-SQL-UT-4144
850 @SYMTestCaseDesc SQL Backup&Restore - legacy backup file format header test.
851 The 64-bit file system related changes made in the SQL server required some
852 changes to be made in the format of the backup file header.
853 The test checks that a backup file created with the previous format of the file header
854 can be restored without errors by the updated Backup&Restore implementation.
855 @SYMTestActions SQL Backup&Restore - legacy backup file format header test.
856 @SYMTestExpectedResults Test must not fail
857 @SYMTestPriority Medium
860 void LegacyFileFormatTest()
862 //KBackupFile2 is a database backup file with header version 0.
863 (void)TheSqlSrvTestBurInterface->Fs().Delete(KBackupFile2);
864 TInt rc = BaflUtils::CopyFile(TheSqlSrvTestBurInterface->Fs(), KBackupFile2Z, KBackupFile2);
866 (void)TheSqlSrvTestBurInterface->Fs().SetAtt(KBackupFile2, 0, KEntryAttReadOnly);
868 //Restore the databases from KBackupFile2.
869 CSqlBurCallback* restoreClient = NULL;
870 TRAP(rc, restoreClient = CSqlBurCallback::NewL(*TheSqlSrvTestBurInterface));
871 TEST(restoreClient != NULL);
874 rc = file.Open(TheSqlSrvTestBurInterface->Fs(), KBackupFile2, EFileRead | EFileShareExclusive);
877 TRAP(rc, restoreClient->InitialiseRestoreProxyBaseDataL(KClientUid, KTestDrive));
880 TBuf8<KBufferSize> buf;
881 TPtr8 ptr((TUint8*)buf.Ptr(), buf.MaxSize());
882 TBool finishedFlag = EFalse;
885 rc = file.Size(fileSize);
892 fileSize -= ptr.Size();
893 finishedFlag = fileSize == 0;
894 TRAP(rc, restoreClient->RestoreBaseDataSectionL(ptr, finishedFlag));
901 restoreClient->RestoreComplete(KTestDrive);
905 delete restoreClient;
907 //At this point we have two restored databases: KTestDbFileName1 and KTestDbFileName2.
908 //The content of the restored file cannot be compared directly, because t_sqlattach uses the same test databases
909 //and modifies them. The original database content was stored without executing t_sqlattach.
910 //Hence a simple test is made: open the restored database, check if the database content can be accessed.
913 rc = db.Open(KTestDbFileName1);
915 //The database contains this table: "TABLE C(A1 INTEGER, B2 BLOB)".
916 rc = db.Exec(_L("INSERT INTO C VALUES(100, 200)"));
919 rc = stmt.Prepare(db, _L("SELECT * FROM C"));
921 while((rc = stmt.Next()) == KSqlAtRow)
925 TEST2(rc, KSqlAtEnd);
928 rc = db.Open(KTestDbFileName2);
930 //The database contains this table: "TABLE A1(F1 INTEGER , F2 INTEGER, B1 BLOB)"
931 rc = db.Exec(_L("INSERT INTO A1 VALUES(100, 200, NULL)"));
933 rc = stmt.Prepare(db, _L("SELECT * FROM A1"));
935 while((rc = stmt.Next()) == KSqlAtRow)
939 TEST2(rc, KSqlAtEnd);
942 (void)TheSqlSrvTestBurInterface->Fs().Delete(KBackupFile2);
946 @SYMTestCaseID PDS-SQL-UT-4192
947 @SYMTestCaseDesc SQL Backup&Restore - empty backup file list test.
948 The test checks what will happen if the list with the files for backup is empty.
949 The GetBackupDataSectionL() should immediatelly set the flag parameter to true and do nothing.
950 @SYMTestActions SQL Backup&Restore - empty backup file list test.
951 @SYMTestExpectedResults Test must not fail
952 @SYMTestPriority High
955 void EmptyBackupFileListTest()
957 CSqlBurCallback* backupClient = NULL;
958 TRAPD(err, backupClient = CSqlBurCallback::NewL(*TheSqlSrvTestBurInterface));
959 TEST(backupClient != NULL);
961 TRAP(err, backupClient->InitialiseGetProxyBackupDataL(KNullUid, KTestDrive));
962 TEST2(err, KErrNone);
965 TPtr8 ptr((TUint8*)buf.Ptr(), 0, buf.MaxLength());
966 TBool finishedFlag = EFalse;
967 TRAP(err, backupClient->GetBackupDataSectionL(ptr, finishedFlag));
969 TEST2(err, KErrNone);
971 TEST2(buf.Length(), 0);
976 @SYMTestCaseID PDS-SQL-UT-4193
977 @SYMTestCaseDesc SQL Backup&Restore - file I/O error simulation test.
978 The test executes a backup, followed by a restore operation
979 in a file I/O error simulation loop.
980 @SYMTestActions SQL Backup&Restore - file I/O error simulation test.
981 @SYMTestExpectedResults Test must not fail
982 @SYMTestPriority High
985 void BackupRestoreFileIoErrTest()
987 //Make sure that the database content, just before the backup, will be copied to the test biffers.
988 //The buffers will be used during the restore testing for verification of the database content.
989 StoreDbContentToBuf(TheSqlSrvTestBurInterface->Fs(), KTestDrive, KClientUid);
991 for(TInt fsError=KErrNotFound;fsError>=KErrBadName;--fsError)
993 TheTest.Printf(_L("===Backup&Restore, simulated file system error=%d\r\n"), fsError);
995 TInt err = KErrGeneral;
996 TInt bytesStored = -1;
998 for(;err<KErrNone;++it_cnt1)
1001 (void)TheSqlSrvTestBurInterface->Fs().SetErrorCondition(fsError, it_cnt1);
1002 TRAP(err, bytesStored = DoBackupL(KTestDrive, KClientUid));
1003 (void)TheSqlSrvTestBurInterface->Fs().SetErrorCondition(KErrNone);
1006 TEST2(err, KErrNone);
1009 TInt bytesRestored = -1;
1011 for(;err<KErrNone;++it_cnt2)
1014 (void)TheSqlSrvTestBurInterface->Fs().SetErrorCondition(fsError, it_cnt2);
1015 TRAP(err, bytesRestored = DoRestoreL(KTestDrive, KClientUid));
1016 (void)TheSqlSrvTestBurInterface->Fs().SetErrorCondition(KErrNone);
1019 TEST2(err, KErrNone);
1021 TEST2(bytesStored, bytesRestored);
1022 CompareDbContentWithBuf(TheSqlSrvTestBurInterface->Fs(), KTestDrive, KClientUid);
1024 TheTest.Printf(_L("Backup&Restore file I/O error simulation test succeeded at backup iteration %d and restore itreration %d\r\n"), it_cnt1 - 1, it_cnt2 - 1);
1029 @SYMTestCaseID PDS-SQL-UT-4225
1030 @SYMTestCaseDesc SQL Backup - zero size file backup.
1031 The test executes a backup on a file with zero size.
1032 @SYMTestActions SQL Backup - zero size file backup.
1033 @SYMTestExpectedResults Test must not fail
1034 @SYMTestPriority High
1036 void BackupZeroSizeFileTest()
1038 CSqlBurCallback* backupClient = NULL;
1039 TRAPD(err, backupClient = CSqlBurCallback::NewL(*TheSqlSrvTestBurInterface));
1040 TEST2(err, KErrNone);
1041 TEST(backupClient != NULL);
1043 (void)TheSqlSrvTestBurInterface->Fs().Delete(KZeroSizeFile);
1045 err = file.Replace(TheSqlSrvTestBurInterface->Fs(), KZeroSizeFile, EFileRead | EFileWrite);
1046 TEST2(err, KErrNone);
1049 TRAP(err, TestBackupL(*backupClient, TheSqlSrvTestBurInterface->Fs(), KZeroFileSizeUid, KTestDrive));
1050 TEST2(err, KErrNone);
1051 //Write something to the file
1052 err = file.Open(TheSqlSrvTestBurInterface->Fs(), KZeroSizeFile, EFileRead | EFileWrite);
1053 TEST2(err, KErrNone);
1054 _LIT8(KData, "123456787989");
1055 err = file.Write(KData);
1056 TEST2(err, KErrNone);
1058 TEST2(err, KErrNone);
1060 //Do the restore. After the restore the file size should be 0.
1061 TRAP(err, TestRestoreL(*backupClient, TheSqlSrvTestBurInterface->Fs(), KZeroFileSizeUid, KTestDrive));
1062 TEST2(err, KErrNone);
1063 err = file.Open(TheSqlSrvTestBurInterface->Fs(), KZeroSizeFile, EFileRead | EFileWrite);
1064 TEST2(err, KErrNone);
1066 err = file.Size(size);
1067 TEST2(err, KErrNone);
1070 //Write something to the file
1071 err = file.Open(TheSqlSrvTestBurInterface->Fs(), KZeroSizeFile, EFileRead | EFileWrite);
1072 TEST2(err, KErrNone);
1073 err = file.Write(KData);
1074 TEST2(err, KErrNone);
1076 TEST2(err, KErrNone);
1078 //Call RestoreBaseDataSectionL() with 0 data in the input buffer and finished flag: false.
1079 TRAP(err, backupClient->InitialiseRestoreProxyBaseDataL(KZeroFileSizeUid, KTestDrive));
1080 TEST2(err, KErrNone);
1082 TRAP(err, backupClient->RestoreBaseDataSectionL(zeroBuf, EFalse));
1083 TEST2(err, KErrNone);
1084 //No restore in this case,
1085 err = file.Open(TheSqlSrvTestBurInterface->Fs(), KZeroSizeFile, EFileRead | EFileWrite);
1086 TEST2(err, KErrNone);
1087 err = file.Size(size);
1088 TEST2(err, KErrNone);
1091 //Call RestoreBaseDataSectionL() with 0 data in the input buffer and finished flag: true.
1092 TRAP(err, backupClient->InitialiseRestoreProxyBaseDataL(KZeroFileSizeUid, KTestDrive));
1093 TEST2(err, KErrNone);
1094 TRAP(err, backupClient->RestoreBaseDataSectionL(zeroBuf, ETrue));
1095 TEST2(err, KErrNone);
1096 //No restore in this case,
1097 err = file.Open(TheSqlSrvTestBurInterface->Fs(), KZeroSizeFile, EFileRead | EFileWrite);
1098 TEST2(err, KErrNone);
1099 err = file.Size(size);
1100 TEST2(err, KErrNone);
1104 (void)TheSqlSrvTestBurInterface->Fs().Delete(KZeroSizeFile);
1105 delete backupClient;
1109 @SYMTestCaseID PDS-SQL-UT-4226
1110 @SYMTestCaseDesc SQL Restore - corrupted archive 1.
1111 The test does a backup of a file with a non-zero size.
1112 The the test modifies the archive, simulating a corruption.
1113 The the test performs a restore from the archive. The corruption
1114 should be detected and reported by SQL B&R code.
1115 @SYMTestActions SQL Restore - corrupted archive 1.
1116 @SYMTestExpectedResults Test must not fail
1117 @SYMTestPriority High
1119 void CorruptedArchiveTest1()
1121 CSqlBurCallback* backupClient = NULL;
1122 TRAPD(err, backupClient = CSqlBurCallback::NewL(*TheSqlSrvTestBurInterface));
1123 TEST2(err, KErrNone);
1124 TEST(backupClient != NULL);
1125 //Create the test file that will be sent for backup
1126 (void)TheSqlSrvTestBurInterface->Fs().Delete(KTestFile1);
1128 err = file.Replace(TheSqlSrvTestBurInterface->Fs(), KTestFile1, EFileRead | EFileWrite);
1129 TEST2(err, KErrNone);
1130 _LIT8(KData1, "123456787989");
1131 err = file.Write(KData1);
1132 TEST2(err, KErrNone);
1134 TEST2(err, KErrNone);
1137 TRAP(err, TestBackupL(*backupClient, TheSqlSrvTestBurInterface->Fs(), KTestClientUid1, KTestDrive));
1138 TEST2(err, KErrNone);
1139 //Modify the file, which was sent for backup
1140 err = file.Open(TheSqlSrvTestBurInterface->Fs(), KTestFile1, EFileRead | EFileWrite);
1141 TEST2(err, KErrNone);
1142 _LIT8(KData2, "ABCDEFGH");
1143 err = file.Write(KData2);
1144 TEST2(err, KErrNone);
1145 err = file.SetSize(KData2().Length());
1146 TEST2(err, KErrNone);
1148 TEST2(err, KErrNone);
1150 //Corrupt the archive
1151 TFileName backupFileName;
1152 backupFileName.Copy(KBackupFileTemplate);
1153 backupFileName.Append((static_cast <TUid> (KTestClientUid1)).Name());
1154 err = file.Open(TheSqlSrvTestBurInterface->Fs(), backupFileName, EFileRead | EFileWrite);
1155 TEST2(err, KErrNone);
1157 err = file.Seek(ESeekEnd, pos);
1158 TEST2(err, KErrNone);
1159 _LIT8(KData3, "ERR");
1160 err = file.Write(KData3);
1161 TEST2(err, KErrNone);
1163 TEST2(err, KErrNone);
1165 //Try to restore the archive
1166 TRAP(err, TestRestoreL(*backupClient, TheSqlSrvTestBurInterface->Fs(), KTestClientUid1, KTestDrive));
1167 TEST2(err, KErrCorrupt);
1168 //Check that the file really has not been restored
1169 err = file.Open(TheSqlSrvTestBurInterface->Fs(), KTestFile1, EFileRead | EFileWrite);
1170 TEST2(err, KErrNone);
1172 err = file.Read(data);
1173 TEST2(err, KErrNone);
1175 TEST(data == KData2);
1177 (void)TheSqlSrvTestBurInterface->Fs().Delete(KTestFile1);
1178 delete backupClient;
1182 @SYMTestCaseID PDS-SQL-UT-4227
1183 @SYMTestCaseDesc SQL Restore - corrupted archive 2.
1184 The test does a backup of a file with a non-zero size.
1185 Then the test modifies the archive, byte after byte each step,
1186 simulating a corruption.
1187 The the test performs a restore from the archive. The corruption
1188 should be detected and reported by SQL B&R code.
1189 @SYMTestActions SQL Restore - corrupted archive 2.
1190 @SYMTestExpectedResults Test must not fail
1191 @SYMTestPriority High
1193 void CorruptedArchiveTest2()
1195 CSqlBurCallback* backupClient = NULL;
1196 TRAPD(err, backupClient = CSqlBurCallback::NewL(*TheSqlSrvTestBurInterface));
1197 TEST2(err, KErrNone);
1198 TEST(backupClient != NULL);
1199 //Create the test file that will be sent for backup
1200 (void)TheSqlSrvTestBurInterface->Fs().Delete(KTestFile1);
1202 err = file.Replace(TheSqlSrvTestBurInterface->Fs(), KTestFile1, EFileRead | EFileWrite);
1203 TEST2(err, KErrNone);
1204 _LIT8(KData1, "123456787989");
1205 err = file.Write(KData1);
1206 TEST2(err, KErrNone);
1208 TEST2(err, KErrNone);
1211 TRAP(err, TestBackupL(*backupClient, TheSqlSrvTestBurInterface->Fs(), KTestClientUid1, KTestDrive));
1212 TEST2(err, KErrNone);
1213 //Modify the file, which was sent for backup
1214 err = file.Open(TheSqlSrvTestBurInterface->Fs(), KTestFile1, EFileRead | EFileWrite);
1215 TEST2(err, KErrNone);
1216 _LIT8(KData2, "ABCDEFGH");
1217 err = file.Write(KData2);
1218 TEST2(err, KErrNone);
1219 err = file.SetSize(KData2().Length());
1220 TEST2(err, KErrNone);
1222 TEST2(err, KErrNone);
1224 //Make a copy of the modified file
1225 CFileMan* fm = NULL;
1226 TRAP(err, fm = CFileMan::NewL(TheSqlSrvTestBurInterface->Fs()));
1227 TEST2(err, KErrNone);
1228 (void)TheSqlSrvTestBurInterface->Fs().Delete(KTestFile1Bak);
1229 err = fm->Copy(KTestFile1, KTestFile1Bak);
1230 TEST2(err, KErrNone);
1231 //Get the archive size
1232 TFileName backupFileName;
1233 backupFileName.Copy(KBackupFileTemplate);
1234 backupFileName.Append((static_cast <TUid> (KTestClientUid1)).Name());
1235 err = file.Open(TheSqlSrvTestBurInterface->Fs(), backupFileName, EFileRead | EFileWrite);
1236 TEST2(err, KErrNone);
1238 err = file.Size(size);
1239 TEST2(err, KErrNone);
1241 //Save a copy of the archive
1242 (void)TheSqlSrvTestBurInterface->Fs().Delete(KBackupCopy);
1243 err = fm->Copy(backupFileName, KBackupCopy);
1244 TEST2(err, KErrNone);
1245 //On each iteration step: corrupt the archive and try to do a restore from it.
1246 for(TInt i=0;i<size;++i)
1248 //Change 1 byte in the archive
1249 err = file.Open(TheSqlSrvTestBurInterface->Fs(), backupFileName, EFileRead | EFileWrite);
1250 TEST2(err, KErrNone);
1252 err = file.Seek(ESeekStart, pos);
1253 TEST2(err, KErrNone);
1255 err = file.Read(byte);
1256 TEST2(err, KErrNone);
1258 err = file.Seek(ESeekStart, pos);
1259 TEST2(err, KErrNone);
1260 err = file.Write(byte);
1261 TEST2(err, KErrNone);
1262 if(i == (size - 1) && (size & 0x01) == 0)
1263 {//Make the file size an odd number, just to test....
1264 err = file.Write(byte);
1265 TEST2(err, KErrNone);
1268 TEST2(err, KErrNone);
1271 TRAP(err, TestRestoreL(*backupClient, TheSqlSrvTestBurInterface->Fs(), KTestClientUid1, KTestDrive));
1272 TheTest.Printf(_L("Iteration %d, err=%d\r\n"), i, err);
1275 //Delete the restored file. The reason that the restore didn't fail is because only the file data is
1276 //protected with checksum. The restore file header - not. The restore completed, the data was restored
1277 //to a file with different name. Or even to a file with the same name. Delete created file(s).
1278 (void)fm->Delete(KTestDeleteMask1);
1279 (void)fm->Delete(KTestDeleteMask2);
1283 //The restore completed with an error. The file content is preserved.
1284 //Check that the file content is the same.
1285 err = file.Open(TheSqlSrvTestBurInterface->Fs(), KTestFile1, EFileRead | EFileWrite);
1286 TEST2(err, KErrNone);
1288 err = file.Read(data);
1289 TEST2(err, KErrNone);
1291 TEST(data == KData2);
1293 //Restore the file from the backup copy
1294 (void)TheSqlSrvTestBurInterface->Fs().Delete(KTestFile1);
1295 err = fm->Copy(KTestFile1Bak, KTestFile1);
1296 TEST2(err, KErrNone);
1297 //Restore the archive from the good copy.
1298 (void)TheSqlSrvTestBurInterface->Fs().Delete(backupFileName);
1299 err = fm->Copy(KBackupCopy, backupFileName);
1300 TEST2(err, KErrNone);
1304 (void)TheSqlSrvTestBurInterface->Fs().Delete(KTestFile1);
1305 (void)TheSqlSrvTestBurInterface->Fs().Delete(KTestFile1Bak);
1306 (void)TheSqlSrvTestBurInterface->Fs().Delete(KBackupCopy);
1307 delete backupClient;
1311 @SYMTestCaseID PDS-SQL-UT-4228
1312 @SYMTestCaseDesc SQL Backup&Restore on a drive different than KTestDrive (C: by default).
1313 The test creates one database on KTestDrive and another database
1314 with the same name on a drive different than KTestDrive.
1315 Then the test backups the "not KTestDrive" drive and restores
1316 the data after that. The test verifies that the backup&restore
1317 really impacts only the other drive, not KTestDrive.
1318 @SYMTestActions SQL Backup&Restore on a drive different than KTestDrive (C: by default).
1319 @SYMTestExpectedResults Test must not fail
1320 @SYMTestPriority High
1324 CSqlBurCallback* backupClient = NULL;
1325 TRAPD(err, backupClient = CSqlBurCallback::NewL(*TheSqlSrvTestBurInterface));
1326 TEST2(err, KErrNone);
1327 TEST(backupClient != NULL);
1329 TDriveUnit driveUnitDefault(KTestDrive);
1330 TDriveName driveNameDefault = driveUnitDefault.Name();
1331 //Find a r/w drive, different than KTestDrive
1332 TInt drive = EDriveA;
1333 for(;drive<=EDriveZ;++drive)
1335 if(drive == KTestDrive)
1339 TDriveInfo driveInfo;
1340 err = TheSqlSrvTestBurInterface->Fs().Drive(driveInfo, drive);
1345 if(driveInfo.iDriveAtt & KDriveAttRom)
1350 TDriveUnit driveUnit(drive);
1351 TDriveName driveName = driveUnit.Name();
1354 err = TheSqlSrvTestBurInterface->Fs().Volume(vinfo, drive);
1357 TheTest.Printf(_L("Drive %S, RFs::Volume() err=%d\r\n"), &driveName, err);
1361 TheTest.Printf(_L("Test drive: %S\r\n"), &driveName);
1363 err = parse.Set(KTestFile2, &driveName, 0);
1364 TEST2(err, KErrNone);
1365 //Create the test file that will be sent for backup
1366 TPtrC fname1(parse.FullName());
1367 TheTest.Printf(_L("Test file 1: %S\r\n"), &fname1);
1368 err = TheSqlSrvTestBurInterface->Fs().MkDirAll(parse.FullName());
1369 TEST(err == KErrNone || err == KErrAlreadyExists);
1370 (void)TheSqlSrvTestBurInterface->Fs().Delete(parse.FullName());
1372 err = file.Replace(TheSqlSrvTestBurInterface->Fs(), parse.FullName(), EFileRead | EFileWrite);
1373 TEST2(err, KErrNone);
1374 _LIT8(KData1, "123456787989");
1375 err = file.Write(KData1);
1376 TEST2(err, KErrNone);
1378 TEST2(err, KErrNone);
1380 //Create a test file with the same name on drive KTestDrive
1381 err = parse.Set(KTestFile2, &driveNameDefault, 0);
1382 TEST2(err, KErrNone);
1383 TPtrC fname2(parse.FullName());
1384 TheTest.Printf(_L("Test file 2: %S\r\n"), &fname2);
1385 (void)TheSqlSrvTestBurInterface->Fs().Delete(parse.FullName());
1386 err = file.Replace(TheSqlSrvTestBurInterface->Fs(), parse.FullName(), EFileRead | EFileWrite);
1387 TEST2(err, KErrNone);
1388 _LIT8(KData2, "ABCDEFG");
1389 err = file.Write(KData2);
1390 TEST2(err, KErrNone);
1392 TEST2(err, KErrNone);
1394 //Do the backup on "drive"
1395 TRAP(err, TestBackupL(*backupClient, TheSqlSrvTestBurInterface->Fs(), KTestClientUid2, (TDriveNumber)drive));
1396 TEST2(err, KErrNone);
1397 //Modify the file that was sent for backup
1398 err = parse.Set(KTestFile2, &driveName, 0);
1399 TEST2(err, KErrNone);
1400 err = file.Open(TheSqlSrvTestBurInterface->Fs(), parse.FullName(), EFileRead | EFileWrite);
1401 TEST2(err, KErrNone);
1402 _LIT8(KData3, "ABCDEFGHYYYYYY");
1403 err = file.Write(KData3);
1404 TEST2(err, KErrNone);
1406 TEST2(err, KErrNone);
1408 //Do the restore on "drive"
1409 TRAP(err, TestRestoreL(*backupClient, TheSqlSrvTestBurInterface->Fs(), KTestClientUid2, (TDriveNumber)drive));
1410 TEST2(err, KErrNone);
1411 //Verify the content of the restored file
1412 err = parse.Set(KTestFile2, &driveName, 0);
1413 TEST2(err, KErrNone);
1414 err = file.Open(TheSqlSrvTestBurInterface->Fs(), parse.FullName(), EFileRead | EFileWrite);
1415 TEST2(err, KErrNone);
1417 err = file.Read(data);
1418 TEST2(err, KErrNone);
1420 TEST(data == KData1);
1421 //Verify the content of the file on drive KTestDrive. It should be the same as before the backup&restore.
1422 err = parse.Set(KTestFile2, &driveNameDefault, 0);
1423 TEST2(err, KErrNone);
1424 err = file.Open(TheSqlSrvTestBurInterface->Fs(), parse.FullName(), EFileRead | EFileWrite);
1425 TEST2(err, KErrNone);
1426 err = file.Read(data);
1427 TEST2(err, KErrNone);
1429 TEST(data == KData2);
1431 err = parse.Set(KTestFile2, &driveNameDefault, 0);
1432 TEST2(err, KErrNone);
1433 (void)TheSqlSrvTestBurInterface->Fs().Delete(parse.FullName());
1434 err = parse.Set(KTestFile2, &driveName, 0);
1435 TEST2(err, KErrNone);
1436 (void)TheSqlSrvTestBurInterface->Fs().Delete(parse.FullName());
1439 delete backupClient;
1442 TheTest.Printf(_L("No R/W drive has been found, different than %S\r\n"), &driveNameDefault);
1447 @SYMTestCaseID PDS-SQL-UT-4229
1448 @SYMTestCaseDesc SQL Backup&Restore with locked file.
1449 The test creates two test files on the same drive and with the same uid.
1450 Then the test backups the databases. After the backup the test simulates that
1451 the first file is "in use". Then the test performs a restore.
1452 The expected result: the locked file is not restored but the other file is restored.
1453 @SYMTestActions SQL Backup&Restore with locked file.
1454 @SYMTestExpectedResults Test must not fail
1455 @SYMTestPriority High
1459 CSqlBurCallback* backupClient = NULL;
1460 TRAPD(err, backupClient = CSqlBurCallback::NewL(*TheSqlSrvTestBurInterface));
1461 TEST2(err, KErrNone);
1462 TEST(backupClient != NULL);
1463 (void)TheSqlSrvTestBurInterface->Fs().Delete(KTestFile3);
1464 (void)TheSqlSrvTestBurInterface->Fs().Delete(KTestFile4);
1465 //Create the files. File 1.
1467 err = file.Replace(TheSqlSrvTestBurInterface->Fs(), KTestFile3, EFileRead | EFileWrite);
1468 TEST2(err, KErrNone);
1469 _LIT8(KData1, "123456787989");
1470 err = file.Write(KData1);
1471 TEST2(err, KErrNone);
1473 TEST2(err, KErrNone);
1476 err = file.Replace(TheSqlSrvTestBurInterface->Fs(), KTestFile4, EFileRead | EFileWrite);
1477 TEST2(err, KErrNone);
1478 _LIT8(KData2, "ABCDEF");
1479 err = file.Write(KData2);
1480 TEST2(err, KErrNone);
1482 TEST2(err, KErrNone);
1485 TRAP(err, TestBackupL(*backupClient, TheSqlSrvTestBurInterface->Fs(), KTestClientUid3, KTestDrive));
1486 TEST2(err, KErrNone);
1487 //Modify the files. Keep the first file opened.
1489 err = file1.Open(TheSqlSrvTestBurInterface->Fs(), KTestFile3, EFileRead | EFileWrite);
1490 TEST2(err, KErrNone);
1491 _LIT8(KData3, "YYYYYQQQQQQQQQQQ");
1492 err = file1.Write(KData3);
1493 TEST2(err, KErrNone);
1494 err = file1.Flush();
1495 TEST2(err, KErrNone);
1497 err = file.Open(TheSqlSrvTestBurInterface->Fs(), KTestFile4, EFileRead | EFileWrite);
1498 TEST2(err, KErrNone);
1499 _LIT8(KData4, "5545495444j32322332234223432");
1500 err = file.Write(KData4);
1501 TEST2(err, KErrNone);
1503 TEST2(err, KErrNone);
1505 //Restore. The reported error should be KErrInUse.
1506 TRAP(err, TestRestoreL(*backupClient, TheSqlSrvTestBurInterface->Fs(), KTestClientUid3, KTestDrive));
1507 TEST2(err, KErrInUse);
1508 //Close file 1 and check the content. It should be the same as after the backup
1510 err = file.Open(TheSqlSrvTestBurInterface->Fs(), KTestFile3, EFileRead | EFileWrite);
1511 TEST2(err, KErrNone);
1513 err = file.Read(data);
1514 TEST2(err, KErrNone);
1516 TEST(data == KData3);
1517 //File2: check the content. It should be the same as before the backup
1518 err = file.Open(TheSqlSrvTestBurInterface->Fs(), KTestFile4, EFileRead | EFileWrite);
1519 TEST2(err, KErrNone);
1520 err = file.Read(data);
1521 TEST2(err, KErrNone);
1523 TEST(data == KData2);
1525 (void)TheSqlSrvTestBurInterface->Fs().Delete(KTestFile4);
1526 (void)TheSqlSrvTestBurInterface->Fs().Delete(KTestFile3);
1527 delete backupClient;
1531 @SYMTestCaseID PDS-SQL-UT-4230
1532 @SYMTestCaseDesc SQL Backup&Restore with locked file - test 2.
1533 The test creates two test files on the same drive and with different uids.
1534 Then the test backups the databases. After the backup the test simulates that
1535 the first file is "in use". Then the test performs a restore.
1536 The expected result: the locked file is not restored but the other file is restored.
1537 @SYMTestActions SQL Backup&Restore with locked file - test 2.
1538 @SYMTestExpectedResults Test must not fail
1539 @SYMTestPriority High
1541 void LockFileTest2()
1543 CSqlBurCallback* backupClient = NULL;
1544 TRAPD(err, backupClient = CSqlBurCallback::NewL(*TheSqlSrvTestBurInterface));
1545 TEST2(err, KErrNone);
1546 TEST(backupClient != NULL);
1547 (void)TheSqlSrvTestBurInterface->Fs().Delete(KTestFile1);//KTestClientUid1 used
1548 (void)TheSqlSrvTestBurInterface->Fs().Delete(KTestFile4);//KTestClientUid3 used
1549 //Create the files. File 1.
1551 err = file.Replace(TheSqlSrvTestBurInterface->Fs(), KTestFile1, EFileRead | EFileWrite);
1552 TEST2(err, KErrNone);
1553 _LIT8(KData1, "123456787989");
1554 err = file.Write(KData1);
1555 TEST2(err, KErrNone);
1557 TEST2(err, KErrNone);
1560 err = file.Replace(TheSqlSrvTestBurInterface->Fs(), KTestFile4, EFileRead | EFileWrite);
1561 TEST2(err, KErrNone);
1562 _LIT8(KData2, "ABCDEF");
1563 err = file.Write(KData2);
1564 TEST2(err, KErrNone);
1566 TEST2(err, KErrNone);
1569 TRAP(err, TestBackupL(*backupClient, TheSqlSrvTestBurInterface->Fs(), KTestClientUid1, KTestDrive));
1570 TEST2(err, KErrNone);
1571 TRAP(err, TestBackupL(*backupClient, TheSqlSrvTestBurInterface->Fs(), KTestClientUid3, KTestDrive));
1572 TEST2(err, KErrNone);
1573 //Modify the files. Keep the first file opened.
1575 err = file1.Open(TheSqlSrvTestBurInterface->Fs(), KTestFile1, EFileRead | EFileWrite);
1576 TEST2(err, KErrNone);
1577 _LIT8(KData3, "YYYYYQQQQQQQQQQQ");
1578 err = file1.Write(KData3);
1579 TEST2(err, KErrNone);
1580 err = file1.Flush();
1581 TEST2(err, KErrNone);
1583 err = file.Open(TheSqlSrvTestBurInterface->Fs(), KTestFile4, EFileRead | EFileWrite);
1584 TEST2(err, KErrNone);
1585 _LIT8(KData4, "5545495444j32322332234223432");
1586 err = file.Write(KData4);
1587 TEST2(err, KErrNone);
1589 TEST2(err, KErrNone);
1591 //Restore the first file. The reported error should be KErrInUse.
1592 TRAP(err, TestRestoreL(*backupClient, TheSqlSrvTestBurInterface->Fs(), KTestClientUid1, KTestDrive));
1593 TEST2(err, KErrInUse);
1594 //Restore the second file. The reported error should be KErrNone.
1595 TRAP(err, TestRestoreL(*backupClient, TheSqlSrvTestBurInterface->Fs(), KTestClientUid3, KTestDrive));
1596 TEST2(err, KErrNone);
1597 //Close file 1 and check the content. It should be the same as after the backup
1599 err = file.Open(TheSqlSrvTestBurInterface->Fs(), KTestFile1, EFileRead | EFileWrite);
1600 TEST2(err, KErrNone);
1602 err = file.Read(data);
1603 TEST2(err, KErrNone);
1605 TEST(data == KData3);
1606 //File2: check the content. It should be the same as before the backup
1607 err = file.Open(TheSqlSrvTestBurInterface->Fs(), KTestFile4, EFileRead | EFileWrite);
1608 TEST2(err, KErrNone);
1609 err = file.Read(data);
1610 TEST2(err, KErrNone);
1612 TEST(data == KData2);
1614 (void)TheSqlSrvTestBurInterface->Fs().Delete(KTestFile4);
1615 (void)TheSqlSrvTestBurInterface->Fs().Delete(KTestFile1);
1616 delete backupClient;
1619 CDir* GetPrivateDirContent(TDriveNumber aDrive)
1621 TDriveUnit driveUnit(aDrive);
1622 TDriveName driveName = driveUnit.Name();
1624 path.Copy(driveName);
1625 path.Append(KPrivateDir);
1626 _LIT(KMatchAllDbFiles, "*");
1627 path.Append(KMatchAllDbFiles);
1629 CDir* fileNameCol = NULL;
1630 TInt err = TheSqlSrvTestBurInterface->Fs().GetDir(path, KEntryAttNormal, ESortByName, fileNameCol);
1631 TEST2(err, KErrNone);
1636 @SYMTestCaseID PDS-SQL-UT-4231
1637 @SYMTestCaseDesc SQL Backup&Restore - directory content test.
1638 The test stores into an array information regarding all files in
1639 SQL private datacage. Then the test backups one of the files and modifies
1640 the file after that. Then the test does a restore. Expected result - the only
1641 modifed file should be the file which was sent for backup.
1642 @SYMTestActions SQL Backup&Restore - directory content test.
1643 @SYMTestExpectedResults Test must not fail
1644 @SYMTestPriority High
1646 void DirectoryContentTest()
1648 CSqlBurCallback* backupClient = NULL;
1649 TRAPD(err, backupClient = CSqlBurCallback::NewL(*TheSqlSrvTestBurInterface));
1650 TEST2(err, KErrNone);
1651 TEST(backupClient != NULL);
1652 (void)TheSqlSrvTestBurInterface->Fs().Delete(KTestFile1);//KTestClientUid1 used
1655 err = file.Replace(TheSqlSrvTestBurInterface->Fs(), KTestFile1, EFileRead | EFileWrite);
1656 TEST2(err, KErrNone);
1657 _LIT8(KData1, "123456787989");
1658 err = file.Write(KData1);
1659 TEST2(err, KErrNone);
1661 TEST2(err, KErrNone);
1663 //Store file entries into an array
1664 CDir* dirBeforeBackup = GetPrivateDirContent(KTestDrive);
1666 TRAP(err, TestBackupL(*backupClient, TheSqlSrvTestBurInterface->Fs(), KTestClientUid1, KTestDrive));
1667 TEST2(err, KErrNone);
1669 CDir* dirAfterBackup = GetPrivateDirContent(KTestDrive);
1670 TEST2(dirBeforeBackup->Count(), dirAfterBackup->Count());
1671 for(TInt i=0;i<dirBeforeBackup->Count();++i)
1673 const TEntry& entry1 = (*dirBeforeBackup)[i];
1674 const TEntry& entry2 = (*dirAfterBackup)[i];
1675 TheTest.Printf(_L("Entry1=%S, Entry2=%S\r\n"), &entry1.iName, &entry2.iName);
1676 TBool rc = entry1.iAtt == entry2.iAtt;
1678 rc = entry1.iSize == entry2.iSize;
1680 rc = entry1.iModified == entry2.iModified;
1682 rc = entry1.iType == entry2.iType;
1684 rc = entry1.iName == entry2.iName;
1687 delete dirAfterBackup;
1689 err = file.Replace(TheSqlSrvTestBurInterface->Fs(), KTestFile1, EFileRead | EFileWrite);
1690 TEST2(err, KErrNone);
1691 _LIT8(KData2, "ABCDEF");
1692 err = file.Write(KData2);
1693 TEST2(err, KErrNone);
1695 TEST2(err, KErrNone);
1698 User::After(2000000);//To force a change in the file time stamp (the restored file time stamp).
1699 TRAP(err, TestRestoreL(*backupClient, TheSqlSrvTestBurInterface->Fs(), KTestClientUid1, KTestDrive));
1700 TEST2(err, KErrNone);
1702 CDir* dirAfterRestore = GetPrivateDirContent(KTestDrive);
1703 TEST2(dirBeforeBackup->Count(), dirAfterRestore->Count());
1704 for(TInt i=0;i<dirBeforeBackup->Count();++i)
1706 const TEntry& entry1 = (*dirBeforeBackup)[i];
1707 const TEntry& entry2 = (*dirAfterRestore)[i];
1708 TheTest.Printf(_L("Entry1=%S, Entry2=%S\r\n"), &entry1.iName, &entry2.iName);
1709 TBool rc = entry1.iAtt == entry2.iAtt;
1711 rc = entry1.iSize == entry2.iSize;
1713 if(entry1.iName.FindF(KTestFile1NameOnly) >= 0)
1715 rc = entry1.iModified != entry2.iModified;
1719 rc = entry1.iModified == entry2.iModified;
1722 rc = entry1.iType == entry2.iType;
1724 rc = entry1.iName == entry2.iName;
1727 delete dirAfterRestore;
1729 delete dirBeforeBackup;
1730 (void)TheSqlSrvTestBurInterface->Fs().Delete(KTestFile1);
1731 delete backupClient;
1735 @SYMTestCaseID PDS-SQL-UT-4232
1736 @SYMTestCaseDesc SQL Backup&Restore - large file test.
1737 Backup and restore with a file with size bigger than 1 Mb.
1738 @SYMTestActions SQL Backup&Restore - large file test.
1739 @SYMTestExpectedResults Test must not fail
1740 @SYMTestPriority High
1742 void LargeFileTest()
1744 CSqlBurCallback* backupClient = NULL;
1745 TRAPD(err, backupClient = CSqlBurCallback::NewL(*TheSqlSrvTestBurInterface));
1746 TEST2(err, KErrNone);
1747 TEST(backupClient != NULL);
1748 (void)TheSqlSrvTestBurInterface->Fs().Delete(KTestFile1);//KTestClientUid1 used
1749 (void)TheSqlSrvTestBurInterface->Fs().Delete(KTestFile2);//KTestClientUid2 used
1750 //Allocate buffer for the data
1751 const TInt KDataBufSize = 100000;
1752 HBufC8* dataBuf = HBufC8::New(KDataBufSize);
1753 TEST(dataBuf != NULL);
1754 TPtr8 dataPtr = dataBuf->Des();
1756 const TInt KFileSize1 = 1201345;
1758 err = file.Replace(TheSqlSrvTestBurInterface->Fs(), KTestFile1, EFileRead | EFileWrite);
1759 TEST2(err, KErrNone);
1760 dataPtr.SetLength(dataPtr.MaxLength());
1761 const TChar KChar1(0x5A);
1762 dataPtr.Fill(KChar1);
1763 TInt len = KFileSize1;
1766 TInt blockSize = Min(len, dataPtr.MaxLength());
1767 err = file.Write(dataPtr, blockSize);
1768 TEST2(err, KErrNone);
1772 TEST2(err, KErrNone);
1775 const TInt KFileSize2 = 1387651;
1776 err = file.Replace(TheSqlSrvTestBurInterface->Fs(), KTestFile2, EFileRead | EFileWrite);
1777 TEST2(err, KErrNone);
1778 dataPtr.SetLength(dataPtr.MaxLength());
1779 const TChar KChar2(0xD5);
1780 dataPtr.Fill(KChar2);
1784 TInt blockSize = Min(len, dataPtr.MaxLength());
1785 err = file.Write(dataPtr, blockSize);
1786 TEST2(err, KErrNone);
1790 TEST2(err, KErrNone);
1793 TRAP(err, TestBackupL(*backupClient, TheSqlSrvTestBurInterface->Fs(), KTestClientUid1, KTestDrive));
1794 TEST2(err, KErrNone);
1795 TRAP(err, TestBackupL(*backupClient, TheSqlSrvTestBurInterface->Fs(), KTestClientUid2, KTestDrive));
1796 TEST2(err, KErrNone);
1798 (void)TheSqlSrvTestBurInterface->Fs().Delete(KTestFile1);
1799 (void)TheSqlSrvTestBurInterface->Fs().Delete(KTestFile2);
1801 TRAP(err, TestRestoreL(*backupClient, TheSqlSrvTestBurInterface->Fs(), KTestClientUid1, KTestDrive));
1802 TEST2(err, KErrNone);
1803 TRAP(err, TestRestoreL(*backupClient, TheSqlSrvTestBurInterface->Fs(), KTestClientUid2, KTestDrive));
1804 TEST2(err, KErrNone);
1805 //Check restored files content
1806 const TPtrC KFileNames[] = {KTestFile1(), KTestFile2()};
1807 const TInt KFileSizes[] = {KFileSize1, KFileSize2};
1808 const TChar KSymbols[] = {KChar1, KChar2};
1809 for(TInt i=0;i<(sizeof(KFileNames)/sizeof(KFileNames[i]));++i)
1811 err = file.Open(TheSqlSrvTestBurInterface->Fs(), KFileNames[i], EFileRead);
1812 TEST2(err, KErrNone);
1814 err = file.Size(len);
1815 TEST2(err, KErrNone);
1816 TEST2(len, KFileSizes[i]);
1819 TInt blockSize = Min(len, dataPtr.MaxLength());
1820 err = file.Read(dataPtr, blockSize);
1821 TEST2(err, KErrNone);
1823 for(TInt j=0;j<dataPtr.Length();++j)
1825 TEST(dataPtr[j] == KSymbols[i]);
1832 (void)TheSqlSrvTestBurInterface->Fs().Delete(KTestFile2);
1833 (void)TheSqlSrvTestBurInterface->Fs().Delete(KTestFile1);
1834 delete backupClient;
1841 TheTest.Start(_L("Store db content to memory buffer"));
1842 StoreDbContentToBuf(TheSqlSrvTestBurInterface->Fs(), KTestDrive, KClientUid);
1844 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-4002 Backup: functional test "));
1847 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-4003 Backup: OOM test "));
1850 TheTest.Next(_L(" @SYMTestCaseID:PDS-SQL-UT-4143 Backup&Restore: functional test 2"));
1853 TheTest.Next(_L(" @SYMTestCaseID:PDS-SQL-UT-4144 Backup&Restore: legacy file format test"));
1854 LegacyFileFormatTest();
1856 TheTest.Next(_L(" @SYMTestCaseID:PDS-SQL-UT-4192 Backup&Restore: empty backup file list"));
1857 EmptyBackupFileListTest();
1859 TheTest.Next(_L(" @SYMTestCaseID:PDS-SQL-UT-4193 Backup: File I/O error simulation test"));
1860 BackupRestoreFileIoErrTest();
1862 TheTest.Next(_L(" @SYMTestCaseID:PDS-SQL-UT-4225 Zero size file - backup test"));
1863 BackupZeroSizeFileTest();
1865 TheTest.Next(_L(" @SYMTestCaseID:PDS-SQL-UT-4226 Restore test - corrupted archive 1"));
1866 CorruptedArchiveTest1();
1868 TheTest.Next(_L(" @SYMTestCaseID:PDS-SQL-UT-4227 Restore test - corrupted archive 2"));
1869 CorruptedArchiveTest2();
1871 TheTest.Next(_L(" @SYMTestCaseID:PDS-SQL-UT-4228 Backup&Restore test on a drive different than KTestDrive (C: by default)"));
1874 TheTest.Next(_L(" @SYMTestCaseID:PDS-SQL-UT-4229 Backup&Restore test with locked file"));
1877 TheTest.Next(_L(" @SYMTestCaseID:PDS-SQL-UT-4230 Backup&Restore test with locked file 2"));
1880 TheTest.Next(_L(" @SYMTestCaseID:PDS-SQL-UT-4231 Backup&Restore - directory content test"));
1881 DirectoryContentTest();
1883 TheTest.Next(_L(" @SYMTestCaseID:PDS-SQL-UT-4232 Backup&Restore - large file test"));
1893 CTrapCleanup* tc = CTrapCleanup::New();
1894 TheTest(tc != NULL);
1907 User::Heap().Check();