sl@0: // Copyright (c) 2006-2010 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // SQL security - deleting secure test databases from C: sl@0: // Please, ensure that t_sqlenvdestroy test is executed after the other sql security tests sl@0: // sl@0: // sl@0: sl@0: #include sl@0: #include sl@0: sl@0: RTest TheTest(_L("t_sqlenvdestroy - deleting secure test databases from C:")); sl@0: sl@0: _LIT(KDbCFileName1, "c:\\private\\10281e17\\[21212122]AADb2.db"); sl@0: _LIT(KDbCFileName2, "c:\\private\\10281e17\\[21212122]BBDb2.db"); sl@0: _LIT(KDbCFileName3, "c:\\private\\10281e17\\[21212125]T_AB.db"); sl@0: _LIT(KDbCFileName4, "c:\\private\\10281e17\\[1111CCCC]T_AB.db"); sl@0: _LIT(KDbCFileName5, "c:\\private\\10281e17\\[21212125]T_OneDefPolicy.db"); sl@0: sl@0: _LIT(KDb1, "c:\\private\\10281e17\\[98765432]t_nosettings.db"); sl@0: _LIT(KDb2, "c:\\private\\10281e17\\[98765432]t_emptysettings.db"); sl@0: _LIT(KDb3, "c:\\private\\10281e17\\[98765432]t_invversion.db"); sl@0: _LIT(KDb4, "c:\\private\\10281e17\\[98765432]t_nocollation.db"); sl@0: _LIT(KDb5, "c:\\private\\10281e17\\[98765432]t_longcollation.db"); sl@0: _LIT(KDb6, "c:\\private\\10281e17\\[98765432]t_nodefaultpolicy.db"); sl@0: _LIT(KDb7, "c:\\private\\10281e17\\[98765432]t_invobject.db"); sl@0: _LIT(KDb8, "c:\\private\\10281e17\\[98765432]t_2defaultpolicies.db"); sl@0: sl@0: _LIT(KPrivateSubDir, "c:\\private\\10281e17\\cfg-TestDir.db\\"); sl@0: sl@0: TParse TheParse; sl@0: sl@0: /////////////////////////////////////////////////////////////////////////////////////// sl@0: /////////////////////////////////////////////////////////////////////////////////////// sl@0: //Test macros and functions sl@0: static void Check(TInt aValue, TInt aExpected, TInt aLine) sl@0: { sl@0: if(aValue != aExpected) sl@0: { sl@0: RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue); sl@0: TheTest(EFalse, aLine); sl@0: } sl@0: } sl@0: #define TEST2(aValue, aExpected) ::Check(aValue, aExpected, __LINE__) sl@0: sl@0: /////////////////////////////////////////////////////////////////////////////////////// sl@0: sl@0: void DoDeleteFile(RFs& aFs, const TDesC& aFilePath) sl@0: { sl@0: TInt err = BaflUtils::DeleteFile(aFs, aFilePath); sl@0: if(err != KErrNone && err != KErrNotFound) sl@0: { sl@0: TheTest.Printf(_L("Error %d deleting \"%S\" file.\n"), err, &aFilePath); sl@0: } sl@0: } sl@0: sl@0: void PrintDiskUsage(RFs& aFs, const TDesC& aPath, TInt aOffset = 0) sl@0: { sl@0: _LIT(KSpace, " "); sl@0: TheTest.Printf(_L("%*.*S%S\r\n"), aOffset, aOffset, &KSpace, &aPath); sl@0: TFindFile findFile(aFs); sl@0: CDir* fileNameCol = NULL; sl@0: TBuf<8> fileNameMask; sl@0: fileNameMask.Copy(_L("*.*")); sl@0: TInt err = findFile.FindWildByDir(fileNameMask, aPath, fileNameCol); sl@0: if(err == KErrNone) sl@0: { sl@0: do sl@0: { sl@0: const TDesC& file = findFile.File();//"file" variable contains the drive and the path. the file name in "file" is invalid in this case. sl@0: (void)TheParse.Set(file, NULL, NULL); sl@0: TPtrC driveName = TheParse.Drive(); sl@0: if(aPath.FindF(driveName) >= 0) sl@0: { sl@0: TInt cnt = fileNameCol->Count(); sl@0: for(TInt i=0;i path; sl@0: path.Copy(aPath); sl@0: path.Append(entry.iName); sl@0: path.Append(_L("\\")); sl@0: PrintDiskUsage(aFs, path, aOffset + 4); sl@0: } sl@0: } sl@0: } // if(aPath.FindF(driveName) >= 0) sl@0: sl@0: delete fileNameCol; sl@0: fileNameCol = NULL; sl@0: } while((err = findFile.FindWild(fileNameCol)) == KErrNone);//Get the next set of files sl@0: } sl@0: else sl@0: { sl@0: TheTest.Printf(_L(" FindWildByDir() failed with err=%d\r\n"), err); sl@0: } sl@0: } sl@0: sl@0: void DoRun() sl@0: { sl@0: RFs fs; sl@0: TInt err = fs.Connect(); sl@0: TEST2(err, KErrNone); sl@0: sl@0: TheTest.Start(_L(" @SYMTestCaseID:SYSLIB-SQL-LEGACY-T_SQLENVDESTROY-0001 Delete secure databases from C: ")); sl@0: sl@0: DoDeleteFile(fs, KDbCFileName1); sl@0: DoDeleteFile(fs, KDbCFileName2); sl@0: DoDeleteFile(fs, KDbCFileName3); sl@0: DoDeleteFile(fs, KDbCFileName4); sl@0: DoDeleteFile(fs, KDbCFileName5); sl@0: sl@0: DoDeleteFile(fs, KDb1); sl@0: DoDeleteFile(fs, KDb2); sl@0: DoDeleteFile(fs, KDb3); sl@0: DoDeleteFile(fs, KDb4); sl@0: DoDeleteFile(fs, KDb5); sl@0: DoDeleteFile(fs, KDb6); sl@0: DoDeleteFile(fs, KDb7); sl@0: DoDeleteFile(fs, KDb8); sl@0: sl@0: TheTest.Printf(_L("====================================================\r\n")); sl@0: PrintDiskUsage(fs, _L("c:\\")); sl@0: TheTest.Printf(_L("====================================================\r\n")); sl@0: sl@0: //Remove the created subdir in the private datacage. sl@0: err = fs.RmDir(KPrivateSubDir); sl@0: if(err != KErrNone && err != KErrNotFound) sl@0: { sl@0: TheTest.Printf(_L("Error %d deleting \"%S\" directory.\n"), err, &KPrivateSubDir); sl@0: } sl@0: sl@0: fs.Close(); sl@0: } sl@0: sl@0: TInt E32Main() sl@0: { sl@0: TheTest.Title(); sl@0: sl@0: CTrapCleanup* tc = CTrapCleanup::New(); sl@0: sl@0: __UHEAP_MARK; sl@0: sl@0: DoRun(); sl@0: sl@0: __UHEAP_MARKEND; sl@0: sl@0: TheTest.End(); sl@0: TheTest.Close(); sl@0: sl@0: delete tc; sl@0: sl@0: User::Heap().Check(); sl@0: return KErrNone; sl@0: }