os/ossrv/genericservices/mimerecognitionfw/tef/T_MimeStep.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 /**
    17  @file
    18  @test
    19  @internalComponent - Internal Symbian test code 
    20 */
    21 
    22 
    23 #include <e32uid.h>
    24 #include <f32file.h>
    25 #include <bautils.h>
    26 #include <apmrec.h>
    27 #include <ecom/ecom.h>
    28 #include "T_MimeStep.h"
    29 
    30 
    31 //
    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");
    37 
    38 const TUid KWordAppUid={0x10003A64};
    39 
    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");
    44 //
    45 
    46 /* Construction of CTestDataRecognitionType Object*/
    47 
    48 CTestDataRecognizerType* CTestDataRecognizerType::NewDataRecogTypeL(RFs &aIfs)
    49 	{
    50 	CTestDataRecognizerType *dataRecogTypeObj=new(ELeave)CTestDataRecognizerType(aIfs);
    51 	CleanupStack::PushL(dataRecogTypeObj);
    52 	CleanupStack::Pop(dataRecogTypeObj);
    53 	return dataRecogTypeObj;
    54 	
    55 	}
    56 /* Constructor*/
    57 	
    58 CTestDataRecognizerType::CTestDataRecognizerType (RFs &aIfs)
    59 			:CApaDataRecognizer(aIfs)
    60 	{
    61 	
    62 	
    63 	}
    64 
    65 CTestDataRecognizerType::~CTestDataRecognizerType()
    66 	{
    67 	
    68 	}
    69 /**
    70   Auxiliary Fn for Test Case ID T-MimeStep-testScanningMimeTheRecognizerL
    71  
    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.
    79 
    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.
    83   
    84 */
    85 void CT_MimeStep::ChkLockAndUnlockL(RFs &aIfs)
    86 	{
    87 	
    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);
    92 		
    93 	TInt valBeforeLock=iData->Locked();
    94 	INFO_PRINTF2(_L("Val of Lock Before %d"), valBeforeLock);
    95 	TEST(valBeforeLock==0);
    96 
    97 	iData->Lock();	
    98 	TInt valAfterLock=iData->Locked();
    99 	INFO_PRINTF2(_L("Val of Lock %d"), valAfterLock);
   100 	TEST(valAfterLock > 0);
   101 
   102 	TInt remDataAfterLock=testLockAndUnLock->RemoveData(iData);
   103 	TEST(remDataAfterLock==KErrLocked);
   104 	INFO_PRINTF2(_L("Val of remDataAfterLock %d"), remDataAfterLock);
   105 
   106 	TRAP(ret,testLockAndUnLock->UpdateDataTypesL());
   107 	TEST(ret==KErrNone);
   108 
   109 	iData->Unlock();
   110 	TInt valAfterUnlock=iData->Locked();
   111 	INFO_PRINTF2(_L("Val of Loc k %d"), valAfterUnlock);
   112 	TEST(valAfterUnlock==0);
   113 
   114 	TInt remDataAfterUnLock=testLockAndUnLock->RemoveData(iData);
   115 	TEST(remDataAfterUnLock==KErrNone);
   116 	INFO_PRINTF2(_L("Val of remDataAfterLock %d"), remDataAfterUnLock);
   117 
   118 
   119 	CleanupStack::PopAndDestroy(testLockAndUnLock);
   120 	}
   121 /**
   122   Auxiliary Fn for Test Case ID T-MimeStep-testScanningMimeTheRecognizerL 
   123   
   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. */
   127   
   128   
   129 void CT_MimeStep::ChkConfAndMimeL(RFs &aIfs,const TUid &aUid)
   130 {
   131 	CTestDataRecognizerType *confAndMimeDataRec=CTestDataRecognizerType::NewDataRecogTypeL(aIfs);
   132 	CleanupStack::PushL(confAndMimeDataRec);
   133 	TRAPD(ret,iData=CApaDataRecognizerType::CreateDataRecognizerL(aUid));
   134 	TEST(ret==KErrNone);
   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);
   140 	//New tests
   141 	TInt bufSize = iData->PreferredBufSize();
   142 	TEST(bufSize==0);
   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);	
   147 }
   148 
   149 
   150 /**
   151   Auxiliary Fn for Test Case ID T-MimeStep-testScanningMimeTheRecognizerL
   152  
   153   This function checks a return value, and prints it in an Error return value.
   154   
   155 */
   156 void CT_MimeStep::DoTest(TInt aReturnValue)
   157 	{
   158 	if (aReturnValue!=KErrNone)
   159 INFO_PRINTF2(_L("\nError: %D\n"),aReturnValue);
   160 	TEST(aReturnValue==KErrNone);
   161 	}
   162 
   163 
   164 /**
   165   Auxiliary Fn for Test Case ID T-MimeStep-testScanningMimeTheRecognizerL
   166  
   167   This function checks the integrity of a Recognizer.
   168   
   169 */
   170 void CT_MimeStep::testRecognizer(const CApaScanningDataRecognizer::TRecognizer& aRec)
   171 	{
   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");
   183 		
   184 	if (aRec.iUid.iUid==0x100012FB)
   185 		{
   186 		TEST(aRec.iDrive==25);
   187 		TEST(aRec.Name().CompareF(KRecText)==0);
   188 		}
   189 	else if (aRec.iUid.iUid==0x10001315)
   190 		{
   191 		TEST(aRec.iDrive==25);
   192 		TEST(aRec.Name().CompareF(KRecWeb)==0);
   193 		}
   194 	else if (aRec.iUid.iUid==0x1000415F)
   195 		{
   196 		TEST(aRec.iDrive==25);
   197 		TEST(aRec.Name().CompareF(KRecApp2)==0);
   198 		}
   199 	else if (aRec.iUid.iUid==0x1000967A)
   200 		{
   201 		TEST(aRec.iDrive==25);
   202 		TEST(aRec.Name().CompareF(KRecJar)==0);
   203 		}
   204 	else if (aRec.iUid.iUid==0x10008ED4)
   205 		{
   206 		TEST(aRec.iDrive==25);
   207 		TEST(aRec.Name().CompareF(KBookMarkRec)==0);
   208 		}
   209 	else if (aRec.iUid.iUid==0x10005617)
   210 		{
   211 		TEST(aRec.iDrive==25);
   212 		TEST(aRec.Name().CompareF(KRecMda)==0);
   213 		}
   214 	else if (aRec.iUid.iUid==0x10008A2F)
   215 		{
   216 		TEST(aRec.iDrive==25);
   217 		TEST(aRec.Name().CompareF(KRecOffice)==0);
   218 		}
   219 	else if (aRec.iUid.iUid==0x1000515E)
   220 		{
   221 		TEST(aRec.iDrive==25);
   222 		TEST(aRec.Name().CompareF(KRecWap)==0);
   223 		}
   224 	else if (aRec.iUid.iUid==0x100047EB)
   225 		{
   226 		TEST(aRec.iDrive==25);
   227 		TEST(aRec.Name().CompareF(KRVersit)==0);
   228 		}
   229 	else if (aRec.iUid.iUid==0x100064DE)
   230 		{
   231 		TEST(aRec.iDrive==25);
   232 		TEST(aRec.Name().CompareF(KWebUrlRec)==0);
   233 		}
   234 	else if (aRec.iUid==KLeavingRecogniserUid)
   235 		{
   236 INFO_PRINTF1(_L("Testing a recogniser(TLEAVINGRECOGNIZER) with >12 chars length"));
   237 		TEST(aRec.iDrive==25);
   238 		TEST(aRec.Name().CompareF(KLeavingRecognizer)==0);
   239 		}
   240 	else if(aRec.iUid.iUid==0x101F7DA0)
   241 		{
   242 		TEST(aRec.Name().CompareF(KRecText)==0);
   243 		}
   244 	else if(aRec.iUid.iUid==0x101F7D9F)
   245 		{
   246 		TEST(aRec.Name().CompareF(KRecApp2)==0);
   247 		}
   248 	else if(aRec.iUid==KTestEcomDataRecognizerUid)
   249 		{
   250 INFO_PRINTF1(_L("Testing the presence of ecom style TTESTECOMDATAREC recognizer"));
   251 		TEST(aRec.Name().CompareF(TTestEcomDataRec)==0);
   252 		}
   253 	}
   254 
   255 
   256  /**
   257    @SYMTestCaseID		T-MimeStep-testScanningMimeTheRecognizerL
   258   
   259    @SYMPREQ			
   260   
   261    @SYMTestCaseDesc 	Tests the Scanning File-Recognizer
   262   
   263    @SYMTestPriority 	High
   264   
   265    @SYMTestStatus 		Implemented
   266    
   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 
   270    testing each one.\n
   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 
   277    the defaulted.
   278    API Calls:\n
   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.
   291    
   292  */
   293 void CT_MimeStep::testScanningMimeTheRecognizerL()
   294 	{
   295 INFO_PRINTF1(_L("Testing the Scanning File-Recognizer"));
   296 	//
   297 	// construct - this scans for TheRecognizer plug-ins
   298 	TRAPD(ret, iRecognizer=CApaScanningDataRecognizer::NewL(iFs) );
   299 		DoTest(ret);
   300 		TEST(iRecognizer->RecognizerCount()>=3);
   301 		TEST(iRecognizer->UpdateCounter()>=3);
   302 	//
   303 INFO_PRINTF1(_L("Testing the getter and setter functions"));
   304 	//
   305 	// check the getter function
   306 	CApaScanningDataRecognizer::CRecognizerArray* tempListOfRecognizers = iRecognizer->RecognizerListLC();
   307 	TInt listCount = tempListOfRecognizers->Count();
   308 
   309 	for (TInt ii=0;ii<listCount;ii++)
   310 		{
   311 		testRecognizer((*tempListOfRecognizers)[ii]);
   312 		}
   313 
   314 	CleanupStack::PopAndDestroy(1); // tmpListOfRecogniszers
   315 	
   316 	//New test
   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;
   321 	TEST(uid1==uid2);
   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));
   328 		TEST(ret==KErrNone);
   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));
   332 		TEST(ret==KErrNone);
   333 			
   334 INFO_PRINTF1(_L("Test Lock And Unlock APIs of CApaDataRecognizerType "));
   335 	TRAP(ret,ChkLockAndUnlockL(iFs));
   336 		TEST(ret==KErrNone);
   337 
   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));
   343 		TEST(ret==KErrNone);
   344 		TEST(iRecognizer->UpdateCounter()>=3);
   345 	}
   346 
   347 
   348  /**
   349    @SYMTestCaseID		T-MimeStep-testTDataTypeL
   350   
   351    @SYMPREQ			
   352   
   353    @SYMTestCaseDesc 	Test TDataType structure by creating new automatic variables
   354   
   355    @SYMTestPriority 	High
   356   
   357    @SYMTestStatus 		Implemented
   358    
   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
   366    API Calls:\n
   367    TDataType::TDataType() \n
   368    TDataType::TDataType(const TDesC8& aDataType) \n
   369    TDataType::IsNative() \n
   370    TDataType::Uid() \n
   371   
   372    @SYMTestExpectedResults Test should complete without any panic.
   373   
   374  */
   375 void CT_MimeStep::testTDataTypeL()
   376 // check TDataType constructors
   377 	{
   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);
   386 	}
   387 
   388 
   389  /**
   390    @SYMTestCaseID		T-MimeStep-testRecognizersL
   391   
   392    @SYMPREQ			
   393   
   394    @SYMTestCaseDesc 	Tests file recognizers using RecognizerL function
   395   
   396    @SYMTestPriority 	High
   397   
   398    @SYMTestStatus 		Implemented
   399    
   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
   409    API Calls:\n	
   410    CApaScanningDataRecognizer::RecognizeL(const TDesC& aName, const TDesC8& aBuffer)\n
   411    
   412    @SYMTestExpectedResults Test should complete without any panic.
   413    
   414  */
   415 void CT_MimeStep::testRecognizersL()
   416 	{
   417 	//
   418 	// do other stuff...
   419 	
   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);
   424 
   425 	TInt minNumDataTypes = 1;	// txt/plain
   426 	minNumDataTypes++;			// dodgy/app
   427 
   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
   431 
   432 	TInt bufSize=iRecognizer->PreferredBufSize();
   433 	HBufC8* buf=HBufC8::NewLC(bufSize);
   434 	RFile rfile;
   435 	TInt err=rfile.Open(iFs,KTextFile,EFileShareReadersOnly);
   436 	TEST(err==KErrNone);
   437 	TPtr8 des=buf->Des();
   438 	if (err==KErrNone)
   439 		{
   440 		err=rfile.Read(des);
   441 		if (err!=KErrNone)
   442 			des.SetLength(0);
   443 		}
   444 	rfile.Close();
   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);
   450 
   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"));
   455 	TDataType dataType;
   456 	des.SetLength(0);
   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);
   461 
   462 	err=rfile.Open(iFs,KTxtFile,EFileShareReadersOnly);
   463 	TEST(err==KErrNone);
   464 	des=buf->Des();
   465 	if (err==KErrNone)
   466 		{
   467 		err=rfile.Read(des);
   468 		if (err!=KErrNone)
   469 			des.SetLength(0);
   470 		}
   471 	rfile.Close();
   472 	
   473 	TRAP(ret,dataType=iRecognizer->RecognizeL(KTxtFile, des).iDataType);
   474 	TEST(dataType==textplain);
   475 	TEST(err==KErrNone);
   476 	
   477 	des.SetLength(0);
   478 	TRAP(ret,dataType=iRecognizer->RecognizeL(KTxtFile, des).iDataType);
   479 	TEST(dataType==textplain);
   480 	TEST(err==KErrNone);
   481 
   482 	INFO_PRINTF1(_L("Testing the EIKON app recognizer"));
   483 	des.SetLength(0);
   484 	err=rfile.Open(iFs,KWordFile,EFileShareReadersOnly);
   485 	TEST(err==KErrNone);
   486 	des=buf->Des();
   487 	if (err==KErrNone)
   488 		{
   489 		err=rfile.Read(des);
   490 		if (err!=KErrNone)
   491 			des.SetLength(0);
   492 		}
   493 
   494 	rfile.Close();
   495 	TRAP(ret,dataType=iRecognizer->RecognizeL(KWordFile, des).iDataType);
   496 		TEST(dataType==TDataType(KWordAppUid));
   497 		TEST(err==KErrNone);
   498 	CleanupStack::PopAndDestroy(buf); // buf
   499 
   500 	delete iRecognizer;
   501 	}
   502 
   503 CT_MimeStep::~CT_MimeStep()
   504 /**
   505    Destructor
   506  */
   507 	{
   508 	}
   509 
   510 CT_MimeStep::CT_MimeStep()
   511 /**
   512    Constructor
   513  */
   514 	{
   515 	// Call base class method to set up the human readable name for logging
   516 	SetTestStepName(KT_MimeStep);
   517 	}
   518 
   519 
   520 TVerdict CT_MimeStep::doTestStepL()
   521 	{
   522 	INFO_PRINTF1(_L("Test Started - Testing the APMIME dll"));
   523 	
   524 	// set up the directory structure
   525 	User::LeaveIfError(iFs.Connect());
   526 	
   527 
   528 	INFO_PRINTF1(_L("Create token file for deceptive leaving recognizer activation"));
   529 	RFile file;
   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);
   535 
   536 	// run the testcode (inside an alloc heaven harness)
   537  	__UHEAP_MARK;
   538 
   539 	CActiveScheduler* pS=new(ELeave) CActiveScheduler;
   540 	TEST(pS!=NULL);
   541 	CActiveScheduler::Install(pS);
   542 	TRAP(r,CT_MimeStep::testScanningMimeTheRecognizerL());
   543 	TEST(r==KErrNone);
   544 	TRAP(r,CT_MimeStep::testRecognizersL());
   545 	TEST(r==KErrNone);
   546 	TRAP(r,CT_MimeStep::testTDataTypeL());
   547 	TEST(r==KErrNone);
   548 
   549 	delete pS;
   550 	REComSession::FinalClose();
   551 	__UHEAP_MARKEND;
   552 	
   553 
   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);
   557 	
   558 	iFs.Close();
   559 
   560 	INFO_PRINTF1(_L("Test Finished"));
   561 	return TestStepResult();
   562 	}
   563 
   564