os/security/cryptomgmtlibs/securityutils/test/trecog/trecogstep.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 /*
     2 * Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
     3 * All rights reserved.
     4 * This component and the accompanying materials are made available
     5 * under the terms of the License "Eclipse Public License v1.0"
     6 * which accompanies this distribution, and is available
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
     8 *
     9 * Initial Contributors:
    10 * Nokia Corporation - initial contribution.
    11 *
    12 * Contributors:
    13 *
    14 * Description: 
    15 *
    16 */
    17 
    18 
    19 /**
    20  @file
    21  @internalComponent - Internal Symbian test code 
    22 */
    23 
    24 
    25 #include "trecogstep.h"
    26 
    27 // Literals & Constants
    28 _LIT(KCompleted, "Completed.");
    29 _LIT(KMethodName, "byName");
    30 _LIT(KMethodHandle, "byHandle");
    31 _LIT(KMethodBuffer, "byBuffer");
    32 _LIT8(KEmptyBuffer8,"");
    33 
    34 
    35 class RDeletefile
    36 	{
    37 public:
    38 	RDeletefile(RFs &aFs, TDesC &aFileName)
    39 		: iFs(aFs),
    40 		  iFileName(aFileName)
    41 		{
    42 		}
    43 	void Close()
    44 		{
    45 		(void) iFs.Delete(iFileName);
    46 		}
    47 	
    48 private:
    49 	RFs &iFs;
    50 	TDesC &iFileName;
    51 	};
    52 
    53 void CRecogStep::TestRecognizeDataL()
    54 	{
    55 	TDataRecognitionResult recogResult;
    56 	
    57 	TPtrC tmp;
    58 	GetStringFromConfig(ConfigSection(), _L("fileName"), tmp);
    59 	iFileName = tmp;
    60 	
    61 
    62 	TPtrC expectedDataType16;
    63 	GetStringFromConfig(ConfigSection(), _L("expectedDataType"), expectedDataType16);
    64 	HBufC8 *expectedDataBuf8 = ConvertDes16toHBufC8LC(expectedDataType16);
    65 
    66 	TInt expectedConfidence;
    67 	GetIntFromConfig(ConfigSection(), _L("expectedConfidence"), expectedConfidence);
    68 	
    69 	TInt maxDataBufSize;
    70 	if (GetIntFromConfig(ConfigSection(), _L("maxDataBufSize"), maxDataBufSize))
    71 		{
    72 		iLs.SetMaxDataBufSize(maxDataBufSize);
    73 		}
    74 		
    75 	TPtrC method;
    76 	GetStringFromConfig(ConfigSection(), _L("method"), method);
    77 		
    78 	TBool checkSpecific = EFalse;
    79 	TBool matchedSpecificMimeType = EFalse;
    80 	TPtrC specificMimeType;
    81 	if (method == KMethodHandle)
    82 		{		
    83 		checkSpecific = GetStringFromConfig(ConfigSection(), _L("checkSpecificMimeType"), specificMimeType);
    84 		}
    85 
    86 	TInt usePrivateFile = 0;
    87 	GetIntFromConfig(ConfigSection(), _L("usePrivateFile"), usePrivateFile);
    88 	
    89 	RDeletefile deletefile(iTheFs, iFileName);
    90 	if(!usePrivateFile)
    91 		{
    92 		// Tweak file modification time to defeat the apparch recognizer result cache....
    93 		TTime time;
    94 		User::LeaveIfError(iTheFs.Modified(iFileName, time));
    95 		time += TTimeIntervalSeconds(1);
    96 		User::LeaveIfError(iTheFs.SetModified(iFileName, time));
    97 		}
    98 	else
    99 		{
   100 		// Copy file to private dir, this will make it inaccesible to the recognizer code (except via handle).
   101 		ConvertFileToPrivateL();	
   102 		CleanupClosePushL(deletefile);
   103 		}
   104 	
   105 	
   106 	if (method == KMethodName)
   107 		{
   108 		INFO_PRINTF2(_L("Test Recognizing %S by File Name"), &iFileName);
   109 	    User::LeaveIfError(iLs.RecognizeData(iFileName, KEmptyBuffer8, recogResult));
   110 		}
   111 	else if((method == KMethodHandle) || (method == KMethodBuffer))
   112 		{
   113 		RFile fileToRead;	
   114 		User::LeaveIfError(fileToRead.Open(iTheFs, iFileName, EFileShareReadersOrWriters | EFileRead | EFileStream));
   115 		CleanupClosePushL(fileToRead);
   116 		if(method == KMethodHandle)
   117 			{
   118 			if (checkSpecific)
   119 				{
   120 				HBufC8* specificMimeType8 = ConvertDes16toHBufC8LC(specificMimeType);
   121 				TDataType mime(*specificMimeType8);																					
   122 				INFO_PRINTF2(_L("Test matching specific mime-type %S by Handle"), &iFileName);		
   123 				User::LeaveIfError(iLs.RecognizeSpecificData(fileToRead, mime, matchedSpecificMimeType));
   124 				CleanupStack::PopAndDestroy(specificMimeType8);
   125 				}
   126 			else 
   127 				{
   128 				INFO_PRINTF2(_L("Test Recognizing %S by Handle"), &iFileName);		
   129 			    User::LeaveIfError(iLs.RecognizeData(fileToRead, recogResult));				
   130 				}
   131 			}
   132 		else
   133 			{
   134 			INFO_PRINTF2(_L("Test Recognizing %S by Buffer"), &iFileName);		
   135 			TInt size;
   136 			User::LeaveIfError(fileToRead.Size(size));
   137 
   138 			TInt maxBufferSize;
   139 			if(GetIntFromConfig(ConfigSection(), _L("maxBufferSize"), maxBufferSize))
   140 				{
   141 				if(size > maxBufferSize)
   142 					{
   143 					size = maxBufferSize;
   144 					}
   145 				}
   146 
   147 			HBufC8* memForFile = HBufC8::NewLC(size);
   148 			TPtr8 fileContent(memForFile->Des());		
   149 			User::LeaveIfError(fileToRead.Read(fileContent, size));
   150 			User::LeaveIfError(iLs.RecognizeData(iFileName, fileContent, recogResult));
   151 			CleanupStack::PopAndDestroy(); //memForFile,
   152 			}
   153 		CleanupStack::PopAndDestroy(&fileToRead);
   154 		}
   155 	else
   156 		{
   157 		ERR_PRINTF1(_L("method not set correctly"));		
   158 		User::Leave(KErrArgument);
   159 		}
   160 	
   161 	
   162 	if (checkSpecific)
   163 		{
   164 		if (matchedSpecificMimeType)
   165 			{
   166 			INFO_PRINTF2(_L("Specific type '%S' matched\n"), &specificMimeType);
   167 			SetTestStepResult(EPass);			
   168 			}
   169 		else 
   170 			{
   171 			INFO_PRINTF2(_L("Specific type '%S' not matched\n"), &specificMimeType);
   172 			SetTestStepResult(EFail);			
   173 			}
   174 		}
   175     else 
   176     	{
   177     	TPtrC result16 = recogResult.iDataType.Des();
   178     	if (// Expected failure
   179 		((expectedConfidence == CApaDataRecognizerType::ENotRecognized) && 
   180 		 (recogResult.iDataType != expectedDataBuf8->Des())) ||
   181 		// Expected success
   182 		((recogResult.iConfidence == expectedConfidence) && 
   183 		 (recogResult.iDataType == expectedDataBuf8->Des())))
   184 		    {
   185 			INFO_PRINTF3(_L("PASSED - type '%S' confidence=%d\n"), 
   186 						 &result16,
   187 						 recogResult.iConfidence);		
   188 		    SetTestStepResult(EPass);	
   189 		    }
   190 		else
   191 			{
   192 			ERR_PRINTF5(_L("FAILED - expected '%S', got type '%S' - expected confidence=%d got confidence %d\n"), 
   193 						&expectedDataType16,
   194 						&result16,
   195 						expectedConfidence,
   196 						recogResult.iConfidence);		
   197 			SetTestStepResult(EFail);		
   198 			}
   199     	}
   200 	
   201 	if(usePrivateFile)
   202 		{
   203 		CleanupStack::PopAndDestroy(&deletefile);
   204 		}
   205 	
   206 	CleanupStack::PopAndDestroy(expectedDataBuf8);
   207 	INFO_PRINTF1(KCompleted);
   208    	}
   209 
   210 HBufC8* CRecogStep::ConvertDes16toHBufC8LC(TDesC& source)
   211 	{
   212 	HBufC8 *buf = HBufC8::NewL(source.Length());
   213 	CleanupStack::PushL(buf);
   214 	TPtr8 ptr=buf->Des();
   215 
   216 	CCnvCharacterSetConverter *converter = CCnvCharacterSetConverter::NewLC();
   217 	converter->PrepareToConvertToOrFromL(KCharacterSetIdentifierAscii, iTheFs);
   218 	converter->ConvertFromUnicode(ptr, source);
   219 	CleanupStack::PopAndDestroy(converter);
   220 	return buf;
   221 	}
   222 
   223 
   224 
   225 void CRecogStep::RunTestCasesL()
   226 	{
   227 	__UHEAP_MARK;
   228 	TRAPD(r,TestRecognizeDataL());
   229 	TEST(r==KErrNone);
   230 	__UHEAP_MARKEND;
   231 	}
   232 
   233 
   234 /**
   235    Destructor
   236  */
   237 CRecogStep::~CRecogStep()
   238 	{
   239 	iTheFs.Close();
   240 	iLs.Close();
   241 	}
   242 
   243 /**
   244    Constructor
   245  */
   246 CRecogStep::CRecogStep()
   247 	{
   248 
   249 	TInt ret=iTheFs.Connect();
   250 	TEST(ret==KErrNone);
   251 	iTheFs.ShareProtected();
   252 
   253 	ret = iLs.Connect();
   254 	TEST(ret==KErrNone);
   255 
   256 	
   257 	// Call base class method to set up the human readable name for logging
   258 	SetTestStepName(KRecogStep);
   259 	}
   260 
   261 /**
   262    @return - TVerdict code
   263    Override of base class virtual
   264  */
   265 TVerdict CRecogStep::doTestStepPreambleL()
   266 	{
   267 	SetTestStepResult(EPass);
   268 	return TestStepResult();
   269 	}
   270 
   271 /**
   272    @return - TVerdict code
   273    Override of base class virtual
   274  */
   275 TVerdict CRecogStep::doTestStepPostambleL()
   276 	{
   277 	return TestStepResult();
   278 	}
   279 
   280 
   281 TVerdict CRecogStep::doTestStepL()
   282 	{
   283 	TRAPD(ret,RunTestCasesL())
   284 	TEST(ret==KErrNone);
   285 	return TestStepResult();
   286 	}
   287 
   288 void CRecogStep::ConvertFileToPrivateL()
   289 	{
   290 	// Read source file
   291 	RFile fromFile;	
   292 	User::LeaveIfError(fromFile.Open(iTheFs, iFileName, EFileShareReadersOrWriters | EFileRead | EFileStream));
   293 	CleanupClosePushL(fromFile);
   294 	TInt size;
   295 	User::LeaveIfError(fromFile.Size(size));
   296 	HBufC8* memForFileContents = HBufC8::NewLC(size);
   297 	TPtr8 fileContents(memForFileContents->Des());		
   298 	User::LeaveIfError(fromFile.Read(fileContents, size));
   299 	
   300 	// Create destination path
   301 	TDriveUnit sysDrive = RFs::GetSystemDrive();
   302 	(void)iTheFs.CreatePrivatePath(static_cast<TInt> (sysDrive));
   303 	TFileName newFileName;
   304 	User::LeaveIfError(iTheFs.PrivatePath(newFileName));
   305 	newFileName.Insert(0, sysDrive.Name());
   306 	TParsePtr parseFrom(iFileName);
   307 	newFileName.Append(parseFrom.NameAndExt());
   308 
   309 	// Make sure destination does not already exist.
   310 	(void) iTheFs.Delete(newFileName);
   311 
   312 	// Copy file to private location
   313 	RFile toFile;
   314 	User::LeaveIfError(toFile.Create(iTheFs, newFileName, EFileShareExclusive | EFileWrite | EFileStream));
   315 	CleanupClosePushL(toFile);
   316 
   317 	User::LeaveIfError(toFile.Write(fileContents));
   318 
   319 	// Update iFileName
   320 	iFileName = newFileName;
   321 	
   322 	// Cleanup
   323 	CleanupStack::PopAndDestroy(&toFile);
   324 	CleanupStack::PopAndDestroy(memForFileContents);
   325 	CleanupStack::PopAndDestroy(&fromFile);
   326 	}
   327 
   328 // End of file