os/ossrv/genericservices/mimerecognitionfw/tef/T_MimeStep.cpp
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
// Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
//
sl@0
    15
sl@0
    16
/**
sl@0
    17
 @file
sl@0
    18
 @test
sl@0
    19
 @internalComponent - Internal Symbian test code 
sl@0
    20
*/
sl@0
    21
sl@0
    22
sl@0
    23
#include <e32uid.h>
sl@0
    24
#include <f32file.h>
sl@0
    25
#include <bautils.h>
sl@0
    26
#include <apmrec.h>
sl@0
    27
#include <ecom/ecom.h>
sl@0
    28
#include "T_MimeStep.h"
sl@0
    29
sl@0
    30
sl@0
    31
//
sl@0
    32
_LIT8(KTextPlainData,"text/plain");
sl@0
    33
_LIT(KTextFile,"z:\\system\\data\\emime\\testrec.text");
sl@0
    34
_LIT(KTxtFile,"z:\\system\\data\\emime\\testrec.txt");
sl@0
    35
_LIT(KWordFile,"z:\\system\\data\\emime\\word.doc");
sl@0
    36
_LIT(KLeavingRecognizer,"TLEAVINGRECOGNIZER");
sl@0
    37
sl@0
    38
const TUid KWordAppUid={0x10003A64};
sl@0
    39
sl@0
    40
const TUid KLeavingRecogniserUid={0x1d1F75EB};
sl@0
    41
const TUid KTestEcomDataRecognizerUid={0x101F7DA1};
sl@0
    42
const TInt KTestDataRecognizerError=-420;  // some random number for test error code
sl@0
    43
_LIT(KDeceptiveRecognizerToken, "c:\\test\\appfwk\\emime\\deceptive_recognizer.token");
sl@0
    44
//
sl@0
    45
sl@0
    46
/* Construction of CTestDataRecognitionType Object*/
sl@0
    47
sl@0
    48
CTestDataRecognizerType* CTestDataRecognizerType::NewDataRecogTypeL(RFs &aIfs)
sl@0
    49
	{
sl@0
    50
	CTestDataRecognizerType *dataRecogTypeObj=new(ELeave)CTestDataRecognizerType(aIfs);
sl@0
    51
	CleanupStack::PushL(dataRecogTypeObj);
sl@0
    52
	CleanupStack::Pop(dataRecogTypeObj);
sl@0
    53
	return dataRecogTypeObj;
sl@0
    54
	
sl@0
    55
	}
sl@0
    56
/* Constructor*/
sl@0
    57
	
sl@0
    58
CTestDataRecognizerType::CTestDataRecognizerType (RFs &aIfs)
sl@0
    59
			:CApaDataRecognizer(aIfs)
sl@0
    60
	{
sl@0
    61
	
sl@0
    62
	
sl@0
    63
	}
sl@0
    64
sl@0
    65
CTestDataRecognizerType::~CTestDataRecognizerType()
sl@0
    66
	{
sl@0
    67
	
sl@0
    68
	}
sl@0
    69
/**
sl@0
    70
  Auxiliary Fn for Test Case ID T-MimeStep-testScanningMimeTheRecognizerL
sl@0
    71
 
sl@0
    72
  This method is used to verify the functionality of Locking and Unlocking the recognizer 
sl@0
    73
  with the UID of the recognizer .Whenever the Recognizer is Locked the return value of 
sl@0
    74
  Locked() function should be a value greater than zero. And When the recognizer is tried to
sl@0
    75
  Unload , the unloading operation would fail with return code KErrLocked.
sl@0
    76
  When the recognizer is in Unlocked condition the return value of Locked() is zero.
sl@0
    77
  And Function to Unload the Recognizer is called again after unlocking the recognizer , and the 
sl@0
    78
  Recognizer is unloaded without any Error.And the return code will be KErrNone.
sl@0
    79
sl@0
    80
  This method is also used to verify the return values of Mimetype() and Confidence(), 
sl@0
    81
  When the recognizer is not added . And hence the values are default when the 
sl@0
    82
  Recognizers are not added.
sl@0
    83
  
sl@0
    84
*/
sl@0
    85
void CT_MimeStep::ChkLockAndUnlockL(RFs &aIfs)
sl@0
    86
	{
sl@0
    87
	
sl@0
    88
	CTestDataRecognizerType *testLockAndUnLock=CTestDataRecognizerType::NewDataRecogTypeL(aIfs);
sl@0
    89
	CleanupStack::PushL(testLockAndUnLock);
sl@0
    90
	TRAPD(ret,testLockAndUnLock->AddDataL(iData));
sl@0
    91
	INFO_PRINTF2(_L("Val of AddDataL  %d"), ret);
sl@0
    92
		
sl@0
    93
	TInt valBeforeLock=iData->Locked();
sl@0
    94
	INFO_PRINTF2(_L("Val of Lock Before %d"), valBeforeLock);
sl@0
    95
	TEST(valBeforeLock==0);
sl@0
    96
sl@0
    97
	iData->Lock();	
sl@0
    98
	TInt valAfterLock=iData->Locked();
sl@0
    99
	INFO_PRINTF2(_L("Val of Lock %d"), valAfterLock);
sl@0
   100
	TEST(valAfterLock > 0);
sl@0
   101
sl@0
   102
	TInt remDataAfterLock=testLockAndUnLock->RemoveData(iData);
sl@0
   103
	TEST(remDataAfterLock==KErrLocked);
sl@0
   104
	INFO_PRINTF2(_L("Val of remDataAfterLock %d"), remDataAfterLock);
sl@0
   105
sl@0
   106
	TRAP(ret,testLockAndUnLock->UpdateDataTypesL());
sl@0
   107
	TEST(ret==KErrNone);
sl@0
   108
sl@0
   109
	iData->Unlock();
sl@0
   110
	TInt valAfterUnlock=iData->Locked();
sl@0
   111
	INFO_PRINTF2(_L("Val of Loc k %d"), valAfterUnlock);
sl@0
   112
	TEST(valAfterUnlock==0);
sl@0
   113
sl@0
   114
	TInt remDataAfterUnLock=testLockAndUnLock->RemoveData(iData);
sl@0
   115
	TEST(remDataAfterUnLock==KErrNone);
sl@0
   116
	INFO_PRINTF2(_L("Val of remDataAfterLock %d"), remDataAfterUnLock);
sl@0
   117
sl@0
   118
sl@0
   119
	CleanupStack::PopAndDestroy(testLockAndUnLock);
sl@0
   120
	}
sl@0
   121
/**
sl@0
   122
  Auxiliary Fn for Test Case ID T-MimeStep-testScanningMimeTheRecognizerL 
sl@0
   123
  
sl@0
   124
  This method is  used to verify the return values of Mimetype() and Confidence(), 
sl@0
   125
  When the recognizer is not added . And hence the values are default when the 
sl@0
   126
  Recognizers are not added. */
sl@0
   127
  
sl@0
   128
  
sl@0
   129
void CT_MimeStep::ChkConfAndMimeL(RFs &aIfs,const TUid &aUid)
sl@0
   130
{
sl@0
   131
	CTestDataRecognizerType *confAndMimeDataRec=CTestDataRecognizerType::NewDataRecogTypeL(aIfs);
sl@0
   132
	CleanupStack::PushL(confAndMimeDataRec);
sl@0
   133
	TRAPD(ret,iData=CApaDataRecognizerType::CreateDataRecognizerL(aUid));
sl@0
   134
	TEST(ret==KErrNone);
sl@0
   135
	TDataType dataType= iData->MimeType();
sl@0
   136
	TInt confidenceVal=iData->Confidence();
sl@0
   137
	TEST(dataType.Uid().iUid==0);
sl@0
   138
	TEST(confidenceVal==0);
sl@0
   139
	INFO_PRINTF2(_L("Val of confidence  %d"), confidenceVal);
sl@0
   140
	//New tests
sl@0
   141
	TInt bufSize = iData->PreferredBufSize();
sl@0
   142
	TEST(bufSize==0);
sl@0
   143
	INFO_PRINTF2(_L("Val of Preferred buffer size  %d"), bufSize);
sl@0
   144
	INFO_PRINTF1(_L("Testing default constructor of TDataTypeWithPriority"));
sl@0
   145
	TDataTypeWithPriority dataTypeWithPriority = TDataTypeWithPriority();
sl@0
   146
	CleanupStack::PopAndDestroy(confAndMimeDataRec);	
sl@0
   147
}
sl@0
   148
sl@0
   149
sl@0
   150
/**
sl@0
   151
  Auxiliary Fn for Test Case ID T-MimeStep-testScanningMimeTheRecognizerL
sl@0
   152
 
sl@0
   153
  This function checks a return value, and prints it in an Error return value.
sl@0
   154
  
sl@0
   155
*/
sl@0
   156
void CT_MimeStep::DoTest(TInt aReturnValue)
sl@0
   157
	{
sl@0
   158
	if (aReturnValue!=KErrNone)
sl@0
   159
INFO_PRINTF2(_L("\nError: %D\n"),aReturnValue);
sl@0
   160
	TEST(aReturnValue==KErrNone);
sl@0
   161
	}
sl@0
   162
sl@0
   163
sl@0
   164
/**
sl@0
   165
  Auxiliary Fn for Test Case ID T-MimeStep-testScanningMimeTheRecognizerL
sl@0
   166
 
sl@0
   167
  This function checks the integrity of a Recognizer.
sl@0
   168
  
sl@0
   169
*/
sl@0
   170
void CT_MimeStep::testRecognizer(const CApaScanningDataRecognizer::TRecognizer& aRec)
sl@0
   171
	{
sl@0
   172
	_LIT(KRecText,"RECTXT");
sl@0
   173
	_LIT(KRecWeb,"RECWEB");
sl@0
   174
	_LIT(KRecApp2,"RECAPP2");
sl@0
   175
	_LIT(KRecJar,"RECJAR");
sl@0
   176
	_LIT(KBookMarkRec,"EBOOKMARKREC");
sl@0
   177
	_LIT(KRecMda,"RECMDA");
sl@0
   178
	_LIT(KRecOffice,"RECOFFICE");
sl@0
   179
	_LIT(KRecWap,"RECWAP");
sl@0
   180
	_LIT(KRVersit,"RVERSIT");
sl@0
   181
	_LIT(KWebUrlRec,"WEBURLREC");
sl@0
   182
	_LIT(TTestEcomDataRec,"TTESTECOMDATAREC");
sl@0
   183
		
sl@0
   184
	if (aRec.iUid.iUid==0x100012FB)
sl@0
   185
		{
sl@0
   186
		TEST(aRec.iDrive==25);
sl@0
   187
		TEST(aRec.Name().CompareF(KRecText)==0);
sl@0
   188
		}
sl@0
   189
	else if (aRec.iUid.iUid==0x10001315)
sl@0
   190
		{
sl@0
   191
		TEST(aRec.iDrive==25);
sl@0
   192
		TEST(aRec.Name().CompareF(KRecWeb)==0);
sl@0
   193
		}
sl@0
   194
	else if (aRec.iUid.iUid==0x1000415F)
sl@0
   195
		{
sl@0
   196
		TEST(aRec.iDrive==25);
sl@0
   197
		TEST(aRec.Name().CompareF(KRecApp2)==0);
sl@0
   198
		}
sl@0
   199
	else if (aRec.iUid.iUid==0x1000967A)
sl@0
   200
		{
sl@0
   201
		TEST(aRec.iDrive==25);
sl@0
   202
		TEST(aRec.Name().CompareF(KRecJar)==0);
sl@0
   203
		}
sl@0
   204
	else if (aRec.iUid.iUid==0x10008ED4)
sl@0
   205
		{
sl@0
   206
		TEST(aRec.iDrive==25);
sl@0
   207
		TEST(aRec.Name().CompareF(KBookMarkRec)==0);
sl@0
   208
		}
sl@0
   209
	else if (aRec.iUid.iUid==0x10005617)
sl@0
   210
		{
sl@0
   211
		TEST(aRec.iDrive==25);
sl@0
   212
		TEST(aRec.Name().CompareF(KRecMda)==0);
sl@0
   213
		}
sl@0
   214
	else if (aRec.iUid.iUid==0x10008A2F)
sl@0
   215
		{
sl@0
   216
		TEST(aRec.iDrive==25);
sl@0
   217
		TEST(aRec.Name().CompareF(KRecOffice)==0);
sl@0
   218
		}
sl@0
   219
	else if (aRec.iUid.iUid==0x1000515E)
sl@0
   220
		{
sl@0
   221
		TEST(aRec.iDrive==25);
sl@0
   222
		TEST(aRec.Name().CompareF(KRecWap)==0);
sl@0
   223
		}
sl@0
   224
	else if (aRec.iUid.iUid==0x100047EB)
sl@0
   225
		{
sl@0
   226
		TEST(aRec.iDrive==25);
sl@0
   227
		TEST(aRec.Name().CompareF(KRVersit)==0);
sl@0
   228
		}
sl@0
   229
	else if (aRec.iUid.iUid==0x100064DE)
sl@0
   230
		{
sl@0
   231
		TEST(aRec.iDrive==25);
sl@0
   232
		TEST(aRec.Name().CompareF(KWebUrlRec)==0);
sl@0
   233
		}
sl@0
   234
	else if (aRec.iUid==KLeavingRecogniserUid)
sl@0
   235
		{
sl@0
   236
INFO_PRINTF1(_L("Testing a recogniser(TLEAVINGRECOGNIZER) with >12 chars length"));
sl@0
   237
		TEST(aRec.iDrive==25);
sl@0
   238
		TEST(aRec.Name().CompareF(KLeavingRecognizer)==0);
sl@0
   239
		}
sl@0
   240
	else if(aRec.iUid.iUid==0x101F7DA0)
sl@0
   241
		{
sl@0
   242
		TEST(aRec.Name().CompareF(KRecText)==0);
sl@0
   243
		}
sl@0
   244
	else if(aRec.iUid.iUid==0x101F7D9F)
sl@0
   245
		{
sl@0
   246
		TEST(aRec.Name().CompareF(KRecApp2)==0);
sl@0
   247
		}
sl@0
   248
	else if(aRec.iUid==KTestEcomDataRecognizerUid)
sl@0
   249
		{
sl@0
   250
INFO_PRINTF1(_L("Testing the presence of ecom style TTESTECOMDATAREC recognizer"));
sl@0
   251
		TEST(aRec.Name().CompareF(TTestEcomDataRec)==0);
sl@0
   252
		}
sl@0
   253
	}
sl@0
   254
sl@0
   255
sl@0
   256
 /**
sl@0
   257
   @SYMTestCaseID		T-MimeStep-testScanningMimeTheRecognizerL
sl@0
   258
  
sl@0
   259
   @SYMPREQ			
sl@0
   260
  
sl@0
   261
   @SYMTestCaseDesc 	Tests the Scanning File-Recognizer
sl@0
   262
  
sl@0
   263
   @SYMTestPriority 	High
sl@0
   264
  
sl@0
   265
   @SYMTestStatus 		Implemented
sl@0
   266
   
sl@0
   267
   @SYMTestActions  	The test verifies the Scannig File-Recognizer by testing
sl@0
   268
   the getter and setter functions. It creates a temporal list of recognizers to
sl@0
   269
   check the getter function, and then goes through the whole list of recognizers 
sl@0
   270
   testing each one.\n
sl@0
   271
   Also, the setter function is checked, by adding a recognizer that's already
sl@0
   272
   added, and adding one that doesn't exist, and verifying that correct return 
sl@0
   273
   value. Finally, it is checked if specific recognizers are loaded or not.\n
sl@0
   274
   This test Also checks for the functionality of the Locking and Unlocking 
sl@0
   275
   Mechanism of the recognizer and checks that the When the recognizers are not 
sl@0
   276
   added in CAPARecognizertype class , The properties of the Recognizer will be 
sl@0
   277
   the defaulted.
sl@0
   278
   API Calls:\n
sl@0
   279
   CApaScanningDataRecognizer::NewL(RFs& aFs) \n
sl@0
   280
   CApaScanningDataRecognizer::TRecognizer(HBufC* aName) \n
sl@0
   281
   CApaScanningDataRecognizer::RecognizerListLC() \n
sl@0
   282
   CApaScanningDataRecognizer::RecognizerCount() \n
sl@0
   283
   CApaScanningDataRecognizer::UpdateCounter() const \n
sl@0
   284
   CApaScanningDataRecognizer::SetRecognizerL() \n
sl@0
   285
   CApaScanningDataRecognizer::SetEcomRecognizerL() \n
sl@0
   286
   CApaDataRecognizerType::MimeType() \n
sl@0
   287
   CApaDataRecognizerType::Confidence() \n
sl@0
   288
   CApaDataRecognizerType::Lock() \n
sl@0
   289
   CApaDataRecognizerType::Unlock() \n
sl@0
   290
   @SYMTestExpectedResults Test should complete without any panic.
sl@0
   291
   
sl@0
   292
 */
sl@0
   293
void CT_MimeStep::testScanningMimeTheRecognizerL()
sl@0
   294
	{
sl@0
   295
INFO_PRINTF1(_L("Testing the Scanning File-Recognizer"));
sl@0
   296
	//
sl@0
   297
	// construct - this scans for TheRecognizer plug-ins
sl@0
   298
	TRAPD(ret, iRecognizer=CApaScanningDataRecognizer::NewL(iFs) );
sl@0
   299
		DoTest(ret);
sl@0
   300
		TEST(iRecognizer->RecognizerCount()>=3);
sl@0
   301
		TEST(iRecognizer->UpdateCounter()>=3);
sl@0
   302
	//
sl@0
   303
INFO_PRINTF1(_L("Testing the getter and setter functions"));
sl@0
   304
	//
sl@0
   305
	// check the getter function
sl@0
   306
	CApaScanningDataRecognizer::CRecognizerArray* tempListOfRecognizers = iRecognizer->RecognizerListLC();
sl@0
   307
	TInt listCount = tempListOfRecognizers->Count();
sl@0
   308
sl@0
   309
	for (TInt ii=0;ii<listCount;ii++)
sl@0
   310
		{
sl@0
   311
		testRecognizer((*tempListOfRecognizers)[ii]);
sl@0
   312
		}
sl@0
   313
sl@0
   314
	CleanupStack::PopAndDestroy(1); // tmpListOfRecogniszers
sl@0
   315
	
sl@0
   316
	//New test
sl@0
   317
	INFO_PRINTF1(_L("Testing index([]) operator"));
sl@0
   318
	const CApaScanningDataRecognizer::TRecognizer& testDataRecognizer=(*iRecognizer)[0];
sl@0
   319
	TUid uid1 =  testDataRecognizer.iUid;
sl@0
   320
	TUid uid2 = ((*iRecognizer)[0]).iUid;
sl@0
   321
	TEST(uid1==uid2);
sl@0
   322
//for testing ecom style plugin
sl@0
   323
INFO_PRINTF1(_L("Testing the ecom style TTESTECOMDATAREC recognizer is loaded or not"));
sl@0
   324
	CApaScanningDataRecognizer::TRecognizer testEcomDataRecognizer;
sl@0
   325
	testEcomDataRecognizer.iUid=KTestEcomDataRecognizerUid;
sl@0
   326
	testEcomDataRecognizer.iDrive=25;
sl@0
   327
	TRAP(ret,iRecognizer->SetEcomRecognizerL(testEcomDataRecognizer));
sl@0
   328
		TEST(ret==KErrNone);
sl@0
   329
// for testing Lock() ,Unlock of the recognizers.		
sl@0
   330
INFO_PRINTF1(_L("Test Confidence and MimeType APIs of CApaDataRecognizerType "));
sl@0
   331
	TRAP(ret,ChkConfAndMimeL(iFs,testEcomDataRecognizer.iUid));
sl@0
   332
		TEST(ret==KErrNone);
sl@0
   333
			
sl@0
   334
INFO_PRINTF1(_L("Test Lock And Unlock APIs of CApaDataRecognizerType "));
sl@0
   335
	TRAP(ret,ChkLockAndUnlockL(iFs));
sl@0
   336
		TEST(ret==KErrNone);
sl@0
   337
sl@0
   338
INFO_PRINTF1(_L("Testing the TECOMLEAVINGRECOGNIZER recogniser is loaded or not"));
sl@0
   339
	CApaScanningDataRecognizer::TRecognizer ecomLeavingRecognizer;
sl@0
   340
	ecomLeavingRecognizer.iUid.iUid = 0x10203630;
sl@0
   341
	ecomLeavingRecognizer.iDrive = 25;
sl@0
   342
	TRAP(ret,iRecognizer->SetEcomRecognizerL(ecomLeavingRecognizer));
sl@0
   343
		TEST(ret==KErrNone);
sl@0
   344
		TEST(iRecognizer->UpdateCounter()>=3);
sl@0
   345
	}
sl@0
   346
sl@0
   347
sl@0
   348
 /**
sl@0
   349
   @SYMTestCaseID		T-MimeStep-testTDataTypeL
sl@0
   350
  
sl@0
   351
   @SYMPREQ			
sl@0
   352
  
sl@0
   353
   @SYMTestCaseDesc 	Test TDataType structure by creating new automatic variables
sl@0
   354
  
sl@0
   355
   @SYMTestPriority 	High
sl@0
   356
  
sl@0
   357
   @SYMTestStatus 		Implemented
sl@0
   358
   
sl@0
   359
   @SYMTestActions  	The test creates new TDataType automatic variables. 
sl@0
   360
   It creates a first TDataType using the constructor taking a UID. The data 
sl@0
   361
   type must be  a native Symbian data type, with an associated UID equal 
sl@0
   362
   to the original UID from which the UID was constructed.\n
sl@0
   363
   A second TDataType is created using a pointer descriptor to the data 
sl@0
   364
   type previously created. Also, the data type must be a native Symbian data 
sl@0
   365
   type, with the same associated UID than the previously data type created.\n
sl@0
   366
   API Calls:\n
sl@0
   367
   TDataType::TDataType() \n
sl@0
   368
   TDataType::TDataType(const TDesC8& aDataType) \n
sl@0
   369
   TDataType::IsNative() \n
sl@0
   370
   TDataType::Uid() \n
sl@0
   371
  
sl@0
   372
   @SYMTestExpectedResults Test should complete without any panic.
sl@0
   373
  
sl@0
   374
 */
sl@0
   375
void CT_MimeStep::testTDataTypeL()
sl@0
   376
// check TDataType constructors
sl@0
   377
	{
sl@0
   378
	TUid uid={0x12345678};
sl@0
   379
	TDataType dataType(uid);
sl@0
   380
	TEST(dataType.IsNative());
sl@0
   381
	TEST(dataType.Uid()==uid);
sl@0
   382
	TDataType secondType(dataType.Des8());
sl@0
   383
	TEST(secondType==dataType);
sl@0
   384
	TEST(secondType.IsNative());
sl@0
   385
	TEST(secondType.Uid()==uid);
sl@0
   386
	}
sl@0
   387
sl@0
   388
sl@0
   389
 /**
sl@0
   390
   @SYMTestCaseID		T-MimeStep-testRecognizersL
sl@0
   391
  
sl@0
   392
   @SYMPREQ			
sl@0
   393
  
sl@0
   394
   @SYMTestCaseDesc 	Tests file recognizers using RecognizerL function
sl@0
   395
  
sl@0
   396
   @SYMTestPriority 	High
sl@0
   397
  
sl@0
   398
   @SYMTestStatus 		Implemented
sl@0
   399
   
sl@0
   400
   @SYMTestActions  	The test uses the RecognizeL function to recognize the
sl@0
   401
   data type of the data in the files, corresponding to three types of file formats:\n
sl@0
   402
   (1) .text file, containing plain text. The recognized data type must be 
sl@0
   403
   equal to a plain text TDataType. When no TDataType is defined, the error must 
sl@0
   404
   be propagated accordingly.\n
sl@0
   405
   (2) .txt file, containing plain text. The recognized data type must be equal to
sl@0
   406
   a plain text TDataType.\n
sl@0
   407
   (3) Word file (.doc format). The recognized data type must be equal to
sl@0
   408
   a word file TDataType.\n
sl@0
   409
   API Calls:\n	
sl@0
   410
   CApaScanningDataRecognizer::RecognizeL(const TDesC& aName, const TDesC8& aBuffer)\n
sl@0
   411
   
sl@0
   412
   @SYMTestExpectedResults Test should complete without any panic.
sl@0
   413
   
sl@0
   414
 */
sl@0
   415
void CT_MimeStep::testRecognizersL()
sl@0
   416
	{
sl@0
   417
	//
sl@0
   418
	// do other stuff...
sl@0
   419
	
sl@0
   420
INFO_PRINTF1(_L("Testing the text file recognizer"));
sl@0
   421
	CArrayFixFlat<TDataType>* array=new(ELeave) CArrayFixFlat<TDataType>(5);
sl@0
   422
	CleanupStack::PushL(array);
sl@0
   423
	iRecognizer->DataTypeL(*array);
sl@0
   424
sl@0
   425
	TInt minNumDataTypes = 1;	// txt/plain
sl@0
   426
	minNumDataTypes++;			// dodgy/app
sl@0
   427
sl@0
   428
	TEST(array->Count()>=minNumDataTypes);
sl@0
   429
	CleanupStack::PopAndDestroy(); // array
sl@0
   430
	// I don't know what order these will be in - I can't test them
sl@0
   431
sl@0
   432
	TInt bufSize=iRecognizer->PreferredBufSize();
sl@0
   433
	HBufC8* buf=HBufC8::NewLC(bufSize);
sl@0
   434
	RFile rfile;
sl@0
   435
	TInt err=rfile.Open(iFs,KTextFile,EFileShareReadersOnly);
sl@0
   436
	TEST(err==KErrNone);
sl@0
   437
	TPtr8 des=buf->Des();
sl@0
   438
	if (err==KErrNone)
sl@0
   439
		{
sl@0
   440
		err=rfile.Read(des);
sl@0
   441
		if (err!=KErrNone)
sl@0
   442
			des.SetLength(0);
sl@0
   443
		}
sl@0
   444
	rfile.Close();
sl@0
   445
	TDataType textplain(KTextPlainData);
sl@0
   446
	// recognizes the plain text
sl@0
   447
	TEST(iRecognizer->RecognizeL(KTextFile, des).iDataType==textplain);
sl@0
   448
	// test by passing a empty file name
sl@0
   449
	TEST(iRecognizer->RecognizeL(TPtrC(), des).iDataType==textplain);
sl@0
   450
sl@0
   451
	//Test the propagation of error (leave) occured in a recognizer, 
sl@0
   452
	//if there is no probable data type matched.
sl@0
   453
	// There is a V1 version and a V2 (ECom) version of this recognizer.
sl@0
   454
	INFO_PRINTF1(_L("Propagates error if a recognizer leaves with no probable data type found"));
sl@0
   455
	TDataType dataType;
sl@0
   456
	des.SetLength(0);
sl@0
   457
	TRAPD(ret,dataType=iRecognizer->RecognizeL(KTextFile, des).iDataType);
sl@0
   458
	TEST(dataType==TDataType());
sl@0
   459
	INFO_PRINTF2(_L("Propagated error:%d, it should should be equal to KTestDataRecognizerError(-420)"), ret);
sl@0
   460
	TEST(ret==KTestDataRecognizerError);
sl@0
   461
sl@0
   462
	err=rfile.Open(iFs,KTxtFile,EFileShareReadersOnly);
sl@0
   463
	TEST(err==KErrNone);
sl@0
   464
	des=buf->Des();
sl@0
   465
	if (err==KErrNone)
sl@0
   466
		{
sl@0
   467
		err=rfile.Read(des);
sl@0
   468
		if (err!=KErrNone)
sl@0
   469
			des.SetLength(0);
sl@0
   470
		}
sl@0
   471
	rfile.Close();
sl@0
   472
	
sl@0
   473
	TRAP(ret,dataType=iRecognizer->RecognizeL(KTxtFile, des).iDataType);
sl@0
   474
	TEST(dataType==textplain);
sl@0
   475
	TEST(err==KErrNone);
sl@0
   476
	
sl@0
   477
	des.SetLength(0);
sl@0
   478
	TRAP(ret,dataType=iRecognizer->RecognizeL(KTxtFile, des).iDataType);
sl@0
   479
	TEST(dataType==textplain);
sl@0
   480
	TEST(err==KErrNone);
sl@0
   481
sl@0
   482
	INFO_PRINTF1(_L("Testing the EIKON app recognizer"));
sl@0
   483
	des.SetLength(0);
sl@0
   484
	err=rfile.Open(iFs,KWordFile,EFileShareReadersOnly);
sl@0
   485
	TEST(err==KErrNone);
sl@0
   486
	des=buf->Des();
sl@0
   487
	if (err==KErrNone)
sl@0
   488
		{
sl@0
   489
		err=rfile.Read(des);
sl@0
   490
		if (err!=KErrNone)
sl@0
   491
			des.SetLength(0);
sl@0
   492
		}
sl@0
   493
sl@0
   494
	rfile.Close();
sl@0
   495
	TRAP(ret,dataType=iRecognizer->RecognizeL(KWordFile, des).iDataType);
sl@0
   496
		TEST(dataType==TDataType(KWordAppUid));
sl@0
   497
		TEST(err==KErrNone);
sl@0
   498
	CleanupStack::PopAndDestroy(buf); // buf
sl@0
   499
sl@0
   500
	delete iRecognizer;
sl@0
   501
	}
sl@0
   502
sl@0
   503
CT_MimeStep::~CT_MimeStep()
sl@0
   504
/**
sl@0
   505
   Destructor
sl@0
   506
 */
sl@0
   507
	{
sl@0
   508
	}
sl@0
   509
sl@0
   510
CT_MimeStep::CT_MimeStep()
sl@0
   511
/**
sl@0
   512
   Constructor
sl@0
   513
 */
sl@0
   514
	{
sl@0
   515
	// Call base class method to set up the human readable name for logging
sl@0
   516
	SetTestStepName(KT_MimeStep);
sl@0
   517
	}
sl@0
   518
sl@0
   519
sl@0
   520
TVerdict CT_MimeStep::doTestStepL()
sl@0
   521
	{
sl@0
   522
	INFO_PRINTF1(_L("Test Started - Testing the APMIME dll"));
sl@0
   523
	
sl@0
   524
	// set up the directory structure
sl@0
   525
	User::LeaveIfError(iFs.Connect());
sl@0
   526
	
sl@0
   527
sl@0
   528
	INFO_PRINTF1(_L("Create token file for deceptive leaving recognizer activation"));
sl@0
   529
	RFile file;
sl@0
   530
	CleanupClosePushL(file);
sl@0
   531
	TInt r = iFs.MkDirAll(KDeceptiveRecognizerToken);
sl@0
   532
	TEST(r == KErrNone || r == KErrAlreadyExists);
sl@0
   533
	TEST(file.Create(iFs, KDeceptiveRecognizerToken, EFileWrite|EFileShareExclusive) == KErrNone);
sl@0
   534
	CleanupStack::PopAndDestroy(&file);
sl@0
   535
sl@0
   536
	// run the testcode (inside an alloc heaven harness)
sl@0
   537
 	__UHEAP_MARK;
sl@0
   538
sl@0
   539
	CActiveScheduler* pS=new(ELeave) CActiveScheduler;
sl@0
   540
	TEST(pS!=NULL);
sl@0
   541
	CActiveScheduler::Install(pS);
sl@0
   542
	TRAP(r,CT_MimeStep::testScanningMimeTheRecognizerL());
sl@0
   543
	TEST(r==KErrNone);
sl@0
   544
	TRAP(r,CT_MimeStep::testRecognizersL());
sl@0
   545
	TEST(r==KErrNone);
sl@0
   546
	TRAP(r,CT_MimeStep::testTDataTypeL());
sl@0
   547
	TEST(r==KErrNone);
sl@0
   548
sl@0
   549
	delete pS;
sl@0
   550
	REComSession::FinalClose();
sl@0
   551
	__UHEAP_MARKEND;
sl@0
   552
	
sl@0
   553
sl@0
   554
	// Removes token file for deceptive leaving recognizer
sl@0
   555
	INFO_PRINTF1(_L("Remove token file for deceptive leaving recognizer deactivation"));
sl@0
   556
	TEST(iFs.Delete(KDeceptiveRecognizerToken) == KErrNone);
sl@0
   557
	
sl@0
   558
	iFs.Close();
sl@0
   559
sl@0
   560
	INFO_PRINTF1(_L("Test Finished"));
sl@0
   561
	return TestStepResult();
sl@0
   562
	}
sl@0
   563
sl@0
   564