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.
14 // SQL security - deleting secure test databases from C:
15 // Please, ensure that t_sqlenvdestroy test is executed after the other sql security tests
22 RTest TheTest(_L("t_sqlenvdestroy - deleting secure test databases from C:"));
24 _LIT(KDbCFileName1, "c:\\private\\10281e17\\[21212122]AADb2.db");
25 _LIT(KDbCFileName2, "c:\\private\\10281e17\\[21212122]BBDb2.db");
26 _LIT(KDbCFileName3, "c:\\private\\10281e17\\[21212125]T_AB.db");
27 _LIT(KDbCFileName4, "c:\\private\\10281e17\\[1111CCCC]T_AB.db");
28 _LIT(KDbCFileName5, "c:\\private\\10281e17\\[21212125]T_OneDefPolicy.db");
30 _LIT(KDb1, "c:\\private\\10281e17\\[98765432]t_nosettings.db");
31 _LIT(KDb2, "c:\\private\\10281e17\\[98765432]t_emptysettings.db");
32 _LIT(KDb3, "c:\\private\\10281e17\\[98765432]t_invversion.db");
33 _LIT(KDb4, "c:\\private\\10281e17\\[98765432]t_nocollation.db");
34 _LIT(KDb5, "c:\\private\\10281e17\\[98765432]t_longcollation.db");
35 _LIT(KDb6, "c:\\private\\10281e17\\[98765432]t_nodefaultpolicy.db");
36 _LIT(KDb7, "c:\\private\\10281e17\\[98765432]t_invobject.db");
37 _LIT(KDb8, "c:\\private\\10281e17\\[98765432]t_2defaultpolicies.db");
39 _LIT(KPrivateSubDir, "c:\\private\\10281e17\\cfg-TestDir.db\\");
43 ///////////////////////////////////////////////////////////////////////////////////////
44 ///////////////////////////////////////////////////////////////////////////////////////
45 //Test macros and functions
46 static void Check(TInt aValue, TInt aExpected, TInt aLine)
48 if(aValue != aExpected)
50 RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
51 TheTest(EFalse, aLine);
54 #define TEST2(aValue, aExpected) ::Check(aValue, aExpected, __LINE__)
56 ///////////////////////////////////////////////////////////////////////////////////////
58 void DoDeleteFile(RFs& aFs, const TDesC& aFilePath)
60 TInt err = BaflUtils::DeleteFile(aFs, aFilePath);
61 if(err != KErrNone && err != KErrNotFound)
63 TheTest.Printf(_L("Error %d deleting \"%S\" file.\n"), err, &aFilePath);
67 void PrintDiskUsage(RFs& aFs, const TDesC& aPath, TInt aOffset = 0)
70 TheTest.Printf(_L("%*.*S%S\r\n"), aOffset, aOffset, &KSpace, &aPath);
71 TFindFile findFile(aFs);
72 CDir* fileNameCol = NULL;
74 fileNameMask.Copy(_L("*.*"));
75 TInt err = findFile.FindWildByDir(fileNameMask, aPath, fileNameCol);
80 const TDesC& file = findFile.File();//"file" variable contains the drive and the path. the file name in "file" is invalid in this case.
81 (void)TheParse.Set(file, NULL, NULL);
82 TPtrC driveName = TheParse.Drive();
83 if(aPath.FindF(driveName) >= 0)
85 TInt cnt = fileNameCol->Count();
86 for(TInt i=0;i<cnt;++i)
88 const ::TEntry& entry = (*fileNameCol)[i];
91 TheTest.Printf(_L("%*.*S %S, size=%d\r\n"), aOffset, aOffset, &KSpace, &entry.iName, entry.iSize);
97 path.Append(entry.iName);
98 path.Append(_L("\\"));
99 PrintDiskUsage(aFs, path, aOffset + 4);
102 } // if(aPath.FindF(driveName) >= 0)
106 } while((err = findFile.FindWild(fileNameCol)) == KErrNone);//Get the next set of files
110 TheTest.Printf(_L(" FindWildByDir() failed with err=%d\r\n"), err);
117 TInt err = fs.Connect();
118 TEST2(err, KErrNone);
120 TheTest.Start(_L(" @SYMTestCaseID:SYSLIB-SQL-LEGACY-T_SQLENVDESTROY-0001 Delete secure databases from C: "));
122 DoDeleteFile(fs, KDbCFileName1);
123 DoDeleteFile(fs, KDbCFileName2);
124 DoDeleteFile(fs, KDbCFileName3);
125 DoDeleteFile(fs, KDbCFileName4);
126 DoDeleteFile(fs, KDbCFileName5);
128 DoDeleteFile(fs, KDb1);
129 DoDeleteFile(fs, KDb2);
130 DoDeleteFile(fs, KDb3);
131 DoDeleteFile(fs, KDb4);
132 DoDeleteFile(fs, KDb5);
133 DoDeleteFile(fs, KDb6);
134 DoDeleteFile(fs, KDb7);
135 DoDeleteFile(fs, KDb8);
137 TheTest.Printf(_L("====================================================\r\n"));
138 PrintDiskUsage(fs, _L("c:\\"));
139 TheTest.Printf(_L("====================================================\r\n"));
141 //Remove the created subdir in the private datacage.
142 err = fs.RmDir(KPrivateSubDir);
143 if(err != KErrNone && err != KErrNotFound)
145 TheTest.Printf(_L("Error %d deleting \"%S\" directory.\n"), err, &KPrivateSubDir);
155 CTrapCleanup* tc = CTrapCleanup::New();
168 User::Heap().Check();