Update contrib.
2 * Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
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".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
21 @internalComponent - Internal Symbian test code
25 #include "trecogstep.h"
27 // Literals & Constants
28 _LIT(KCompleted, "Completed.");
29 _LIT(KMethodName, "byName");
30 _LIT(KMethodHandle, "byHandle");
31 _LIT(KMethodBuffer, "byBuffer");
32 _LIT8(KEmptyBuffer8,"");
38 RDeletefile(RFs &aFs, TDesC &aFileName)
45 (void) iFs.Delete(iFileName);
53 void CRecogStep::TestRecognizeDataL()
55 TDataRecognitionResult recogResult;
58 GetStringFromConfig(ConfigSection(), _L("fileName"), tmp);
62 TPtrC expectedDataType16;
63 GetStringFromConfig(ConfigSection(), _L("expectedDataType"), expectedDataType16);
64 HBufC8 *expectedDataBuf8 = ConvertDes16toHBufC8LC(expectedDataType16);
66 TInt expectedConfidence;
67 GetIntFromConfig(ConfigSection(), _L("expectedConfidence"), expectedConfidence);
70 if (GetIntFromConfig(ConfigSection(), _L("maxDataBufSize"), maxDataBufSize))
72 iLs.SetMaxDataBufSize(maxDataBufSize);
76 GetStringFromConfig(ConfigSection(), _L("method"), method);
78 TBool checkSpecific = EFalse;
79 TBool matchedSpecificMimeType = EFalse;
80 TPtrC specificMimeType;
81 if (method == KMethodHandle)
83 checkSpecific = GetStringFromConfig(ConfigSection(), _L("checkSpecificMimeType"), specificMimeType);
86 TInt usePrivateFile = 0;
87 GetIntFromConfig(ConfigSection(), _L("usePrivateFile"), usePrivateFile);
89 RDeletefile deletefile(iTheFs, iFileName);
92 // Tweak file modification time to defeat the apparch recognizer result cache....
94 User::LeaveIfError(iTheFs.Modified(iFileName, time));
95 time += TTimeIntervalSeconds(1);
96 User::LeaveIfError(iTheFs.SetModified(iFileName, time));
100 // Copy file to private dir, this will make it inaccesible to the recognizer code (except via handle).
101 ConvertFileToPrivateL();
102 CleanupClosePushL(deletefile);
106 if (method == KMethodName)
108 INFO_PRINTF2(_L("Test Recognizing %S by File Name"), &iFileName);
109 User::LeaveIfError(iLs.RecognizeData(iFileName, KEmptyBuffer8, recogResult));
111 else if((method == KMethodHandle) || (method == KMethodBuffer))
114 User::LeaveIfError(fileToRead.Open(iTheFs, iFileName, EFileShareReadersOrWriters | EFileRead | EFileStream));
115 CleanupClosePushL(fileToRead);
116 if(method == KMethodHandle)
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);
128 INFO_PRINTF2(_L("Test Recognizing %S by Handle"), &iFileName);
129 User::LeaveIfError(iLs.RecognizeData(fileToRead, recogResult));
134 INFO_PRINTF2(_L("Test Recognizing %S by Buffer"), &iFileName);
136 User::LeaveIfError(fileToRead.Size(size));
139 if(GetIntFromConfig(ConfigSection(), _L("maxBufferSize"), maxBufferSize))
141 if(size > maxBufferSize)
143 size = maxBufferSize;
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,
153 CleanupStack::PopAndDestroy(&fileToRead);
157 ERR_PRINTF1(_L("method not set correctly"));
158 User::Leave(KErrArgument);
164 if (matchedSpecificMimeType)
166 INFO_PRINTF2(_L("Specific type '%S' matched\n"), &specificMimeType);
167 SetTestStepResult(EPass);
171 INFO_PRINTF2(_L("Specific type '%S' not matched\n"), &specificMimeType);
172 SetTestStepResult(EFail);
177 TPtrC result16 = recogResult.iDataType.Des();
178 if (// Expected failure
179 ((expectedConfidence == CApaDataRecognizerType::ENotRecognized) &&
180 (recogResult.iDataType != expectedDataBuf8->Des())) ||
182 ((recogResult.iConfidence == expectedConfidence) &&
183 (recogResult.iDataType == expectedDataBuf8->Des())))
185 INFO_PRINTF3(_L("PASSED - type '%S' confidence=%d\n"),
187 recogResult.iConfidence);
188 SetTestStepResult(EPass);
192 ERR_PRINTF5(_L("FAILED - expected '%S', got type '%S' - expected confidence=%d got confidence %d\n"),
196 recogResult.iConfidence);
197 SetTestStepResult(EFail);
203 CleanupStack::PopAndDestroy(&deletefile);
206 CleanupStack::PopAndDestroy(expectedDataBuf8);
207 INFO_PRINTF1(KCompleted);
210 HBufC8* CRecogStep::ConvertDes16toHBufC8LC(TDesC& source)
212 HBufC8 *buf = HBufC8::NewL(source.Length());
213 CleanupStack::PushL(buf);
214 TPtr8 ptr=buf->Des();
216 CCnvCharacterSetConverter *converter = CCnvCharacterSetConverter::NewLC();
217 converter->PrepareToConvertToOrFromL(KCharacterSetIdentifierAscii, iTheFs);
218 converter->ConvertFromUnicode(ptr, source);
219 CleanupStack::PopAndDestroy(converter);
225 void CRecogStep::RunTestCasesL()
228 TRAPD(r,TestRecognizeDataL());
237 CRecogStep::~CRecogStep()
246 CRecogStep::CRecogStep()
249 TInt ret=iTheFs.Connect();
251 iTheFs.ShareProtected();
257 // Call base class method to set up the human readable name for logging
258 SetTestStepName(KRecogStep);
262 @return - TVerdict code
263 Override of base class virtual
265 TVerdict CRecogStep::doTestStepPreambleL()
267 SetTestStepResult(EPass);
268 return TestStepResult();
272 @return - TVerdict code
273 Override of base class virtual
275 TVerdict CRecogStep::doTestStepPostambleL()
277 return TestStepResult();
281 TVerdict CRecogStep::doTestStepL()
283 TRAPD(ret,RunTestCasesL())
285 return TestStepResult();
288 void CRecogStep::ConvertFileToPrivateL()
292 User::LeaveIfError(fromFile.Open(iTheFs, iFileName, EFileShareReadersOrWriters | EFileRead | EFileStream));
293 CleanupClosePushL(fromFile);
295 User::LeaveIfError(fromFile.Size(size));
296 HBufC8* memForFileContents = HBufC8::NewLC(size);
297 TPtr8 fileContents(memForFileContents->Des());
298 User::LeaveIfError(fromFile.Read(fileContents, size));
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());
309 // Make sure destination does not already exist.
310 (void) iTheFs.Delete(newFileName);
312 // Copy file to private location
314 User::LeaveIfError(toFile.Create(iTheFs, newFileName, EFileShareExclusive | EFileWrite | EFileStream));
315 CleanupClosePushL(toFile);
317 User::LeaveIfError(toFile.Write(fileContents));
320 iFileName = newFileName;
323 CleanupStack::PopAndDestroy(&toFile);
324 CleanupStack::PopAndDestroy(memForFileContents);
325 CleanupStack::PopAndDestroy(&fromFile);