os/persistentdata/persistentstorage/sql/TEST/t_sqlenvdestroy.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 // SQL security - deleting secure test databases from C:
    15 // Please, ensure that t_sqlenvdestroy test is executed after the other sql security tests
    16 // 
    17 //
    18 
    19 #include <e32test.h>
    20 #include <bautils.h>
    21 
    22 RTest TheTest(_L("t_sqlenvdestroy - deleting secure test databases from C:"));
    23 
    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");
    29 
    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");
    38 
    39 _LIT(KPrivateSubDir, "c:\\private\\10281e17\\cfg-TestDir.db\\");
    40 
    41 TParse TheParse;
    42 
    43 ///////////////////////////////////////////////////////////////////////////////////////
    44 ///////////////////////////////////////////////////////////////////////////////////////
    45 //Test macros and functions
    46 static void Check(TInt aValue, TInt aExpected, TInt aLine)
    47 	{
    48 	if(aValue != aExpected)
    49 		{
    50 		RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
    51 		TheTest(EFalse, aLine);
    52 		}
    53 	}
    54 #define TEST2(aValue, aExpected) ::Check(aValue, aExpected, __LINE__)
    55 
    56 ///////////////////////////////////////////////////////////////////////////////////////
    57 
    58 void DoDeleteFile(RFs& aFs, const TDesC& aFilePath)
    59 	{
    60 	TInt err = BaflUtils::DeleteFile(aFs, aFilePath);
    61 	if(err != KErrNone && err != KErrNotFound)
    62 		{
    63 		TheTest.Printf(_L("Error %d deleting \"%S\" file.\n"), err, &aFilePath);
    64 		}
    65 	}
    66 
    67 void PrintDiskUsage(RFs& aFs, const TDesC& aPath, TInt aOffset = 0)
    68 	{
    69 	_LIT(KSpace, " ");
    70 	TheTest.Printf(_L("%*.*S%S\r\n"), aOffset, aOffset, &KSpace, &aPath);
    71 	TFindFile findFile(aFs);
    72 	CDir* fileNameCol = NULL;
    73 	TBuf<8> fileNameMask;
    74 	fileNameMask.Copy(_L("*.*"));
    75 	TInt err = findFile.FindWildByDir(fileNameMask, aPath, fileNameCol);
    76 	if(err == KErrNone)
    77 		{
    78 		do
    79 			{
    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)
    84 				{		
    85                 TInt cnt = fileNameCol->Count();
    86                 for(TInt i=0;i<cnt;++i)
    87                     {
    88                     const ::TEntry& entry = (*fileNameCol)[i];
    89                     if(!entry.IsDir())
    90                         {
    91                         TheTest.Printf(_L("%*.*S    %S, size=%d\r\n"), aOffset, aOffset, &KSpace, &entry.iName, entry.iSize);
    92                         }
    93                     else
    94                         {
    95                         TBuf<100> path;
    96                         path.Copy(aPath);
    97                         path.Append(entry.iName);
    98                         path.Append(_L("\\"));
    99                         PrintDiskUsage(aFs, path, aOffset + 4);
   100                         }
   101                     }
   102 				} // if(aPath.FindF(driveName) >= 0)
   103 			
   104 			delete fileNameCol;
   105 			fileNameCol = NULL;
   106 			} while((err = findFile.FindWild(fileNameCol)) == KErrNone);//Get the next set of files
   107 		}
   108 	else
   109 		{
   110 		TheTest.Printf(_L("  FindWildByDir() failed with err=%d\r\n"), err);
   111 		}
   112 	}
   113 
   114 void DoRun()
   115 	{
   116     RFs fs;
   117 	TInt err = fs.Connect();
   118 	TEST2(err, KErrNone);
   119 
   120 	TheTest.Start(_L("  @SYMTestCaseID:SYSLIB-SQL-LEGACY-T_SQLENVDESTROY-0001 Delete secure databases from C: "));
   121 
   122 	DoDeleteFile(fs, KDbCFileName1);
   123 	DoDeleteFile(fs, KDbCFileName2);
   124 	DoDeleteFile(fs, KDbCFileName3);
   125 	DoDeleteFile(fs, KDbCFileName4);
   126 	DoDeleteFile(fs, KDbCFileName5);
   127 
   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);
   136 
   137 	TheTest.Printf(_L("====================================================\r\n"));
   138 	PrintDiskUsage(fs, _L("c:\\"));
   139 	TheTest.Printf(_L("====================================================\r\n"));
   140 	
   141 	//Remove the created subdir in the private datacage. 
   142 	err = fs.RmDir(KPrivateSubDir);
   143 	if(err != KErrNone && err != KErrNotFound)
   144 		{
   145 		TheTest.Printf(_L("Error %d deleting \"%S\" directory.\n"), err, &KPrivateSubDir);
   146 		}
   147 	
   148 	fs.Close();
   149 	}
   150 
   151 TInt E32Main()
   152     {
   153 	TheTest.Title();
   154 
   155 	CTrapCleanup* tc = CTrapCleanup::New();
   156 
   157 	__UHEAP_MARK;
   158 
   159 	DoRun();
   160 
   161 	__UHEAP_MARKEND;
   162 
   163 	TheTest.End();
   164 	TheTest.Close();
   165 
   166 	delete tc;
   167 
   168 	User::Heap().Check();
   169 	return KErrNone;
   170     }