Update contrib.
1 // Copyright (c) 2006-2009 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.
19 @internalComponent - Internal Symbian test code
27 #include <ecom/ecom.h>
28 #include "T_MimeStep.h"
32 _LIT8(KTextPlainData,"text/plain");
33 _LIT(KTextFile,"z:\\system\\data\\emime\\testrec.text");
34 _LIT(KTxtFile,"z:\\system\\data\\emime\\testrec.txt");
35 _LIT(KWordFile,"z:\\system\\data\\emime\\word.doc");
36 _LIT(KLeavingRecognizer,"TLEAVINGRECOGNIZER");
38 const TUid KWordAppUid={0x10003A64};
40 const TUid KLeavingRecogniserUid={0x1d1F75EB};
41 const TUid KTestEcomDataRecognizerUid={0x101F7DA1};
42 const TInt KTestDataRecognizerError=-420; // some random number for test error code
43 _LIT(KDeceptiveRecognizerToken, "c:\\test\\appfwk\\emime\\deceptive_recognizer.token");
46 /* Construction of CTestDataRecognitionType Object*/
48 CTestDataRecognizerType* CTestDataRecognizerType::NewDataRecogTypeL(RFs &aIfs)
50 CTestDataRecognizerType *dataRecogTypeObj=new(ELeave)CTestDataRecognizerType(aIfs);
51 CleanupStack::PushL(dataRecogTypeObj);
52 CleanupStack::Pop(dataRecogTypeObj);
53 return dataRecogTypeObj;
58 CTestDataRecognizerType::CTestDataRecognizerType (RFs &aIfs)
59 :CApaDataRecognizer(aIfs)
65 CTestDataRecognizerType::~CTestDataRecognizerType()
70 Auxiliary Fn for Test Case ID T-MimeStep-testScanningMimeTheRecognizerL
72 This method is used to verify the functionality of Locking and Unlocking the recognizer
73 with the UID of the recognizer .Whenever the Recognizer is Locked the return value of
74 Locked() function should be a value greater than zero. And When the recognizer is tried to
75 Unload , the unloading operation would fail with return code KErrLocked.
76 When the recognizer is in Unlocked condition the return value of Locked() is zero.
77 And Function to Unload the Recognizer is called again after unlocking the recognizer , and the
78 Recognizer is unloaded without any Error.And the return code will be KErrNone.
80 This method is also used to verify the return values of Mimetype() and Confidence(),
81 When the recognizer is not added . And hence the values are default when the
82 Recognizers are not added.
85 void CT_MimeStep::ChkLockAndUnlockL(RFs &aIfs)
88 CTestDataRecognizerType *testLockAndUnLock=CTestDataRecognizerType::NewDataRecogTypeL(aIfs);
89 CleanupStack::PushL(testLockAndUnLock);
90 TRAPD(ret,testLockAndUnLock->AddDataL(iData));
91 INFO_PRINTF2(_L("Val of AddDataL %d"), ret);
93 TInt valBeforeLock=iData->Locked();
94 INFO_PRINTF2(_L("Val of Lock Before %d"), valBeforeLock);
95 TEST(valBeforeLock==0);
98 TInt valAfterLock=iData->Locked();
99 INFO_PRINTF2(_L("Val of Lock %d"), valAfterLock);
100 TEST(valAfterLock > 0);
102 TInt remDataAfterLock=testLockAndUnLock->RemoveData(iData);
103 TEST(remDataAfterLock==KErrLocked);
104 INFO_PRINTF2(_L("Val of remDataAfterLock %d"), remDataAfterLock);
106 TRAP(ret,testLockAndUnLock->UpdateDataTypesL());
110 TInt valAfterUnlock=iData->Locked();
111 INFO_PRINTF2(_L("Val of Loc k %d"), valAfterUnlock);
112 TEST(valAfterUnlock==0);
114 TInt remDataAfterUnLock=testLockAndUnLock->RemoveData(iData);
115 TEST(remDataAfterUnLock==KErrNone);
116 INFO_PRINTF2(_L("Val of remDataAfterLock %d"), remDataAfterUnLock);
119 CleanupStack::PopAndDestroy(testLockAndUnLock);
122 Auxiliary Fn for Test Case ID T-MimeStep-testScanningMimeTheRecognizerL
124 This method is used to verify the return values of Mimetype() and Confidence(),
125 When the recognizer is not added . And hence the values are default when the
126 Recognizers are not added. */
129 void CT_MimeStep::ChkConfAndMimeL(RFs &aIfs,const TUid &aUid)
131 CTestDataRecognizerType *confAndMimeDataRec=CTestDataRecognizerType::NewDataRecogTypeL(aIfs);
132 CleanupStack::PushL(confAndMimeDataRec);
133 TRAPD(ret,iData=CApaDataRecognizerType::CreateDataRecognizerL(aUid));
135 TDataType dataType= iData->MimeType();
136 TInt confidenceVal=iData->Confidence();
137 TEST(dataType.Uid().iUid==0);
138 TEST(confidenceVal==0);
139 INFO_PRINTF2(_L("Val of confidence %d"), confidenceVal);
141 TInt bufSize = iData->PreferredBufSize();
143 INFO_PRINTF2(_L("Val of Preferred buffer size %d"), bufSize);
144 INFO_PRINTF1(_L("Testing default constructor of TDataTypeWithPriority"));
145 TDataTypeWithPriority dataTypeWithPriority = TDataTypeWithPriority();
146 CleanupStack::PopAndDestroy(confAndMimeDataRec);
151 Auxiliary Fn for Test Case ID T-MimeStep-testScanningMimeTheRecognizerL
153 This function checks a return value, and prints it in an Error return value.
156 void CT_MimeStep::DoTest(TInt aReturnValue)
158 if (aReturnValue!=KErrNone)
159 INFO_PRINTF2(_L("\nError: %D\n"),aReturnValue);
160 TEST(aReturnValue==KErrNone);
165 Auxiliary Fn for Test Case ID T-MimeStep-testScanningMimeTheRecognizerL
167 This function checks the integrity of a Recognizer.
170 void CT_MimeStep::testRecognizer(const CApaScanningDataRecognizer::TRecognizer& aRec)
172 _LIT(KRecText,"RECTXT");
173 _LIT(KRecWeb,"RECWEB");
174 _LIT(KRecApp2,"RECAPP2");
175 _LIT(KRecJar,"RECJAR");
176 _LIT(KBookMarkRec,"EBOOKMARKREC");
177 _LIT(KRecMda,"RECMDA");
178 _LIT(KRecOffice,"RECOFFICE");
179 _LIT(KRecWap,"RECWAP");
180 _LIT(KRVersit,"RVERSIT");
181 _LIT(KWebUrlRec,"WEBURLREC");
182 _LIT(TTestEcomDataRec,"TTESTECOMDATAREC");
184 if (aRec.iUid.iUid==0x100012FB)
186 TEST(aRec.iDrive==25);
187 TEST(aRec.Name().CompareF(KRecText)==0);
189 else if (aRec.iUid.iUid==0x10001315)
191 TEST(aRec.iDrive==25);
192 TEST(aRec.Name().CompareF(KRecWeb)==0);
194 else if (aRec.iUid.iUid==0x1000415F)
196 TEST(aRec.iDrive==25);
197 TEST(aRec.Name().CompareF(KRecApp2)==0);
199 else if (aRec.iUid.iUid==0x1000967A)
201 TEST(aRec.iDrive==25);
202 TEST(aRec.Name().CompareF(KRecJar)==0);
204 else if (aRec.iUid.iUid==0x10008ED4)
206 TEST(aRec.iDrive==25);
207 TEST(aRec.Name().CompareF(KBookMarkRec)==0);
209 else if (aRec.iUid.iUid==0x10005617)
211 TEST(aRec.iDrive==25);
212 TEST(aRec.Name().CompareF(KRecMda)==0);
214 else if (aRec.iUid.iUid==0x10008A2F)
216 TEST(aRec.iDrive==25);
217 TEST(aRec.Name().CompareF(KRecOffice)==0);
219 else if (aRec.iUid.iUid==0x1000515E)
221 TEST(aRec.iDrive==25);
222 TEST(aRec.Name().CompareF(KRecWap)==0);
224 else if (aRec.iUid.iUid==0x100047EB)
226 TEST(aRec.iDrive==25);
227 TEST(aRec.Name().CompareF(KRVersit)==0);
229 else if (aRec.iUid.iUid==0x100064DE)
231 TEST(aRec.iDrive==25);
232 TEST(aRec.Name().CompareF(KWebUrlRec)==0);
234 else if (aRec.iUid==KLeavingRecogniserUid)
236 INFO_PRINTF1(_L("Testing a recogniser(TLEAVINGRECOGNIZER) with >12 chars length"));
237 TEST(aRec.iDrive==25);
238 TEST(aRec.Name().CompareF(KLeavingRecognizer)==0);
240 else if(aRec.iUid.iUid==0x101F7DA0)
242 TEST(aRec.Name().CompareF(KRecText)==0);
244 else if(aRec.iUid.iUid==0x101F7D9F)
246 TEST(aRec.Name().CompareF(KRecApp2)==0);
248 else if(aRec.iUid==KTestEcomDataRecognizerUid)
250 INFO_PRINTF1(_L("Testing the presence of ecom style TTESTECOMDATAREC recognizer"));
251 TEST(aRec.Name().CompareF(TTestEcomDataRec)==0);
257 @SYMTestCaseID T-MimeStep-testScanningMimeTheRecognizerL
261 @SYMTestCaseDesc Tests the Scanning File-Recognizer
263 @SYMTestPriority High
265 @SYMTestStatus Implemented
267 @SYMTestActions The test verifies the Scannig File-Recognizer by testing
268 the getter and setter functions. It creates a temporal list of recognizers to
269 check the getter function, and then goes through the whole list of recognizers
271 Also, the setter function is checked, by adding a recognizer that's already
272 added, and adding one that doesn't exist, and verifying that correct return
273 value. Finally, it is checked if specific recognizers are loaded or not.\n
274 This test Also checks for the functionality of the Locking and Unlocking
275 Mechanism of the recognizer and checks that the When the recognizers are not
276 added in CAPARecognizertype class , The properties of the Recognizer will be
279 CApaScanningDataRecognizer::NewL(RFs& aFs) \n
280 CApaScanningDataRecognizer::TRecognizer(HBufC* aName) \n
281 CApaScanningDataRecognizer::RecognizerListLC() \n
282 CApaScanningDataRecognizer::RecognizerCount() \n
283 CApaScanningDataRecognizer::UpdateCounter() const \n
284 CApaScanningDataRecognizer::SetRecognizerL() \n
285 CApaScanningDataRecognizer::SetEcomRecognizerL() \n
286 CApaDataRecognizerType::MimeType() \n
287 CApaDataRecognizerType::Confidence() \n
288 CApaDataRecognizerType::Lock() \n
289 CApaDataRecognizerType::Unlock() \n
290 @SYMTestExpectedResults Test should complete without any panic.
293 void CT_MimeStep::testScanningMimeTheRecognizerL()
295 INFO_PRINTF1(_L("Testing the Scanning File-Recognizer"));
297 // construct - this scans for TheRecognizer plug-ins
298 TRAPD(ret, iRecognizer=CApaScanningDataRecognizer::NewL(iFs) );
300 TEST(iRecognizer->RecognizerCount()>=3);
301 TEST(iRecognizer->UpdateCounter()>=3);
303 INFO_PRINTF1(_L("Testing the getter and setter functions"));
305 // check the getter function
306 CApaScanningDataRecognizer::CRecognizerArray* tempListOfRecognizers = iRecognizer->RecognizerListLC();
307 TInt listCount = tempListOfRecognizers->Count();
309 for (TInt ii=0;ii<listCount;ii++)
311 testRecognizer((*tempListOfRecognizers)[ii]);
314 CleanupStack::PopAndDestroy(1); // tmpListOfRecogniszers
317 INFO_PRINTF1(_L("Testing index([]) operator"));
318 const CApaScanningDataRecognizer::TRecognizer& testDataRecognizer=(*iRecognizer)[0];
319 TUid uid1 = testDataRecognizer.iUid;
320 TUid uid2 = ((*iRecognizer)[0]).iUid;
322 //for testing ecom style plugin
323 INFO_PRINTF1(_L("Testing the ecom style TTESTECOMDATAREC recognizer is loaded or not"));
324 CApaScanningDataRecognizer::TRecognizer testEcomDataRecognizer;
325 testEcomDataRecognizer.iUid=KTestEcomDataRecognizerUid;
326 testEcomDataRecognizer.iDrive=25;
327 TRAP(ret,iRecognizer->SetEcomRecognizerL(testEcomDataRecognizer));
329 // for testing Lock() ,Unlock of the recognizers.
330 INFO_PRINTF1(_L("Test Confidence and MimeType APIs of CApaDataRecognizerType "));
331 TRAP(ret,ChkConfAndMimeL(iFs,testEcomDataRecognizer.iUid));
334 INFO_PRINTF1(_L("Test Lock And Unlock APIs of CApaDataRecognizerType "));
335 TRAP(ret,ChkLockAndUnlockL(iFs));
338 INFO_PRINTF1(_L("Testing the TECOMLEAVINGRECOGNIZER recogniser is loaded or not"));
339 CApaScanningDataRecognizer::TRecognizer ecomLeavingRecognizer;
340 ecomLeavingRecognizer.iUid.iUid = 0x10203630;
341 ecomLeavingRecognizer.iDrive = 25;
342 TRAP(ret,iRecognizer->SetEcomRecognizerL(ecomLeavingRecognizer));
344 TEST(iRecognizer->UpdateCounter()>=3);
349 @SYMTestCaseID T-MimeStep-testTDataTypeL
353 @SYMTestCaseDesc Test TDataType structure by creating new automatic variables
355 @SYMTestPriority High
357 @SYMTestStatus Implemented
359 @SYMTestActions The test creates new TDataType automatic variables.
360 It creates a first TDataType using the constructor taking a UID. The data
361 type must be a native Symbian data type, with an associated UID equal
362 to the original UID from which the UID was constructed.\n
363 A second TDataType is created using a pointer descriptor to the data
364 type previously created. Also, the data type must be a native Symbian data
365 type, with the same associated UID than the previously data type created.\n
367 TDataType::TDataType() \n
368 TDataType::TDataType(const TDesC8& aDataType) \n
369 TDataType::IsNative() \n
372 @SYMTestExpectedResults Test should complete without any panic.
375 void CT_MimeStep::testTDataTypeL()
376 // check TDataType constructors
378 TUid uid={0x12345678};
379 TDataType dataType(uid);
380 TEST(dataType.IsNative());
381 TEST(dataType.Uid()==uid);
382 TDataType secondType(dataType.Des8());
383 TEST(secondType==dataType);
384 TEST(secondType.IsNative());
385 TEST(secondType.Uid()==uid);
390 @SYMTestCaseID T-MimeStep-testRecognizersL
394 @SYMTestCaseDesc Tests file recognizers using RecognizerL function
396 @SYMTestPriority High
398 @SYMTestStatus Implemented
400 @SYMTestActions The test uses the RecognizeL function to recognize the
401 data type of the data in the files, corresponding to three types of file formats:\n
402 (1) .text file, containing plain text. The recognized data type must be
403 equal to a plain text TDataType. When no TDataType is defined, the error must
404 be propagated accordingly.\n
405 (2) .txt file, containing plain text. The recognized data type must be equal to
406 a plain text TDataType.\n
407 (3) Word file (.doc format). The recognized data type must be equal to
408 a word file TDataType.\n
410 CApaScanningDataRecognizer::RecognizeL(const TDesC& aName, const TDesC8& aBuffer)\n
412 @SYMTestExpectedResults Test should complete without any panic.
415 void CT_MimeStep::testRecognizersL()
420 INFO_PRINTF1(_L("Testing the text file recognizer"));
421 CArrayFixFlat<TDataType>* array=new(ELeave) CArrayFixFlat<TDataType>(5);
422 CleanupStack::PushL(array);
423 iRecognizer->DataTypeL(*array);
425 TInt minNumDataTypes = 1; // txt/plain
426 minNumDataTypes++; // dodgy/app
428 TEST(array->Count()>=minNumDataTypes);
429 CleanupStack::PopAndDestroy(); // array
430 // I don't know what order these will be in - I can't test them
432 TInt bufSize=iRecognizer->PreferredBufSize();
433 HBufC8* buf=HBufC8::NewLC(bufSize);
435 TInt err=rfile.Open(iFs,KTextFile,EFileShareReadersOnly);
437 TPtr8 des=buf->Des();
445 TDataType textplain(KTextPlainData);
446 // recognizes the plain text
447 TEST(iRecognizer->RecognizeL(KTextFile, des).iDataType==textplain);
448 // test by passing a empty file name
449 TEST(iRecognizer->RecognizeL(TPtrC(), des).iDataType==textplain);
451 //Test the propagation of error (leave) occured in a recognizer,
452 //if there is no probable data type matched.
453 // There is a V1 version and a V2 (ECom) version of this recognizer.
454 INFO_PRINTF1(_L("Propagates error if a recognizer leaves with no probable data type found"));
457 TRAPD(ret,dataType=iRecognizer->RecognizeL(KTextFile, des).iDataType);
458 TEST(dataType==TDataType());
459 INFO_PRINTF2(_L("Propagated error:%d, it should should be equal to KTestDataRecognizerError(-420)"), ret);
460 TEST(ret==KTestDataRecognizerError);
462 err=rfile.Open(iFs,KTxtFile,EFileShareReadersOnly);
473 TRAP(ret,dataType=iRecognizer->RecognizeL(KTxtFile, des).iDataType);
474 TEST(dataType==textplain);
478 TRAP(ret,dataType=iRecognizer->RecognizeL(KTxtFile, des).iDataType);
479 TEST(dataType==textplain);
482 INFO_PRINTF1(_L("Testing the EIKON app recognizer"));
484 err=rfile.Open(iFs,KWordFile,EFileShareReadersOnly);
495 TRAP(ret,dataType=iRecognizer->RecognizeL(KWordFile, des).iDataType);
496 TEST(dataType==TDataType(KWordAppUid));
498 CleanupStack::PopAndDestroy(buf); // buf
503 CT_MimeStep::~CT_MimeStep()
510 CT_MimeStep::CT_MimeStep()
515 // Call base class method to set up the human readable name for logging
516 SetTestStepName(KT_MimeStep);
520 TVerdict CT_MimeStep::doTestStepL()
522 INFO_PRINTF1(_L("Test Started - Testing the APMIME dll"));
524 // set up the directory structure
525 User::LeaveIfError(iFs.Connect());
528 INFO_PRINTF1(_L("Create token file for deceptive leaving recognizer activation"));
530 CleanupClosePushL(file);
531 TInt r = iFs.MkDirAll(KDeceptiveRecognizerToken);
532 TEST(r == KErrNone || r == KErrAlreadyExists);
533 TEST(file.Create(iFs, KDeceptiveRecognizerToken, EFileWrite|EFileShareExclusive) == KErrNone);
534 CleanupStack::PopAndDestroy(&file);
536 // run the testcode (inside an alloc heaven harness)
539 CActiveScheduler* pS=new(ELeave) CActiveScheduler;
541 CActiveScheduler::Install(pS);
542 TRAP(r,CT_MimeStep::testScanningMimeTheRecognizerL());
544 TRAP(r,CT_MimeStep::testRecognizersL());
546 TRAP(r,CT_MimeStep::testTDataTypeL());
550 REComSession::FinalClose();
554 // Removes token file for deceptive leaving recognizer
555 INFO_PRINTF1(_L("Remove token file for deceptive leaving recognizer deactivation"));
556 TEST(iFs.Delete(KDeceptiveRecognizerToken) == KErrNone);
560 INFO_PRINTF1(_L("Test Finished"));
561 return TestStepResult();