os/ossrv/lowlevellibsandfws/pluginfw/Framework/DiscovererTest/t_discoverer.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) 2004-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
// This file contains test classes and their implementations
sl@0
    15
// to test production class CDiscoverer. Where necessary stubs
sl@0
    16
// are implemented to help in writing test harness using RTest.
sl@0
    17
// 
sl@0
    18
//
sl@0
    19
sl@0
    20
#include "Discoverer.h"
sl@0
    21
#include "EComErrorCodes.h"
sl@0
    22
#include "ImplementationInformation.h"
sl@0
    23
#include "DiscovererObserver.h"
sl@0
    24
#include "../EcomTestUtils/EcomTestUtils.h"
sl@0
    25
#include "EComUidCodes.h"
sl@0
    26
#include "RegistryData.h"
sl@0
    27
#include "DriveInfo.h"
sl@0
    28
sl@0
    29
#include <ecom/ecompanics.h>
sl@0
    30
#include <e32test.h>
sl@0
    31
#include <bautils.h>
sl@0
    32
#include <s32file.h>
sl@0
    33
#include <barsread2.h>
sl@0
    34
#include <e32uid.h>
sl@0
    35
#include <startup.hrh>
sl@0
    36
#include "baspi.h"
sl@0
    37
#include <sacls.h>
sl@0
    38
sl@0
    39
sl@0
    40
//New RSC based plugins
sl@0
    41
_LIT(KNewResourceFileName,		 		"C:\\resource\\plugins\\EComExample5.rsc");
sl@0
    42
_LIT(KNewExampleDllFileName,	 		"C:\\sys\\bin\\EComExample5.dll");
sl@0
    43
_LIT(KNewResourceFileNameOnZ,   		"z:\\RAMOnly\\EComExample5.rsc");
sl@0
    44
_LIT(KNewExampleDllFileNameOnZ, 		"z:\\RAMOnly\\EComExample5.dll");
sl@0
    45
_LIT(KNewExampleDllFileNameOnly,		"EComExample5.dll");
sl@0
    46
_LIT(KNewResourceSearchPath,			"\\resource\\plugins\\*");
sl@0
    47
//PlugIn3 RSC based plugins
sl@0
    48
_LIT(KPlugIn3ResourceFileName,		 		"C:\\resource\\plugins\\EComExample12.rsc");
sl@0
    49
_LIT(KPlugIn3ExampleDllFileName,	 		"C:\\sys\\bin\\EComExample12.dll");
sl@0
    50
_LIT(KPlugIn3ResourceFileNameOnZ,   		"z:\\RAMOnly\\EComExample12.rsc");
sl@0
    51
_LIT(KPlugIn3ExampleDllFileNameOnZ, 		"z:\\RAMOnly\\EComExample12.dll");
sl@0
    52
_LIT(KPlugIn3ExampleDllFileNameOnly,		"EComExample12.dll");
sl@0
    53
sl@0
    54
//Old DLL based plugins
sl@0
    55
sl@0
    56
// spi test file
sl@0
    57
_LIT(KEComSpiTestFilePathAndName, "Z:\\Test\\Data\\EcomTest.spi");
sl@0
    58
_LIT(KEComSpiTestFilePlugIn3PathAndName, "Z:\\Test\\Data\\EcomTestType3.spi");
sl@0
    59
// file name detremined from example spi file
sl@0
    60
_LIT(KEComSpiTestFileDllPathAndName, "Z:\\sys\\bin\\EComExample5.dll");
sl@0
    61
_LIT(KEComSpiTestFilePlugIn3DllPathAndName, "Z:\\sys\\bin\\EComExample12.dll");
sl@0
    62
sl@0
    63
// spi file
sl@0
    64
_LIT(KEComSPIFilePathAndName, "Z:\\private\\10009D8F\\Ecom.spi");
sl@0
    65
sl@0
    66
const TInt KOneSecond = 1000000;
sl@0
    67
sl@0
    68
LOCAL_D RFs	TheFs;
sl@0
    69
sl@0
    70
LOCAL_D RTest test(_L("t_discoverer.exe"));
sl@0
    71
sl@0
    72
LOCAL_D CTrapCleanup* 	  TheTrapCleanup 	 = NULL;
sl@0
    73
sl@0
    74
LOCAL_D CActiveScheduler* TheActiveScheduler = NULL;
sl@0
    75
sl@0
    76
// Used for supressing warning in OOM tests
sl@0
    77
#define __UNUSED_VAR(var) var = var
sl@0
    78
sl@0
    79
// Used for OOM test
sl@0
    80
#define TEST_OOM_ERR if(err == KErrNoMemory) User::Leave(err)
sl@0
    81
sl@0
    82
/**
sl@0
    83
Stub classes are provided to act as replacement members for the class
sl@0
    84
under test. This ensures the test class is constructed correctly and its
sl@0
    85
behaviour is also correct within the context of the test. It allows the
sl@0
    86
class to be tested in isolation. Other tests are available that test the
sl@0
    87
interoperability of the class
sl@0
    88
*/
sl@0
    89
class CObserverStub : public CBase, public MDiscovererObserver
sl@0
    90
{
sl@0
    91
public:
sl@0
    92
	enum OSState
sl@0
    93
		{
sl@0
    94
		OSS_Undefined,
sl@0
    95
		OSS_NoPlugins,
sl@0
    96
		OSS_CriticalPlugins,
sl@0
    97
		OSS_DiscoverNonCriticalPlugins,
sl@0
    98
		OSS_AllPlugins
sl@0
    99
		};
sl@0
   100
	static CObserverStub* NewL();
sl@0
   101
	virtual ~CObserverStub();
sl@0
   102
sl@0
   103
	// Inherited from MDiscovererObserver
sl@0
   104
	virtual void DiscoveriesBegin();
sl@0
   105
	virtual void RegisterDiscoveryL(const TDriveName& aDrive,CPluginBase*& aDirEntry,TBool aDatFileExists);
sl@0
   106
	virtual void DiscoveriesComplete(TBool aSuccessful, TPluginProcessingTypeIdentifier aProcessingType);
sl@0
   107
	virtual void DriveRemovedL(TDriveUnit aDrive);
sl@0
   108
	virtual void DriveReinstatedL(TDriveUnit aDrive);
sl@0
   109
	virtual void DriveIsSpiBasedL(const TDriveUnit& /*aDrive*/){}
sl@0
   110
	virtual TBool NotifiedWithErrorCode(TInt aError);
sl@0
   111
	virtual TBool IsAnyDllRegisteredWithDriveL(const TDriveUnit aDrive) const;
sl@0
   112
	virtual void SetDiscoveryFlagL(const TDriveUnit &aDrive);
sl@0
   113
	virtual void LanguageChangedL(TBool& aLanguageChanged);
sl@0
   114
sl@0
   115
sl@0
   116
	// Result verifing methods
sl@0
   117
	TBool IsDriveMounted(const TDriveUnit aDrive);
sl@0
   118
	TBool IsEntryProcessed(CPluginBase*& aDirEntry);
sl@0
   119
	//TBool IsSpiEntryProcessed(const TEntry& aEntry);
sl@0
   120
	TBool IsDiscoveriesCompleteSuccessfully();
sl@0
   121
	void SetDiscoverer(CDiscoverer* aDiscoverer);
sl@0
   122
	OSState GetState();
sl@0
   123
sl@0
   124
private:
sl@0
   125
	CObserverStub();
sl@0
   126
sl@0
   127
private:
sl@0
   128
	/** Base class ecom entry */
sl@0
   129
	CPluginBase* iEntryBase;
sl@0
   130
sl@0
   131
	/** Information of the dll which contains interface implementations */
sl@0
   132
	//TEComEntryDetails		iEntry;
sl@0
   133
sl@0
   134
	/** Information of the spi file which contains interface implementations */
sl@0
   135
	//TEComSpiResourceEntryDetails		iSpiEntry;
sl@0
   136
sl@0
   137
	/** iDriveUnit is drive mounted */
sl@0
   138
	TDriveUnit	iDriveUnit;
sl@0
   139
sl@0
   140
	/** Flag to indicate whether iDriveUnit is mounted or not */
sl@0
   141
	TBool		iDriveMounted;
sl@0
   142
sl@0
   143
	/** Flag to indicate whether iEntry is processed or not */
sl@0
   144
	TBool		iEntryProcessed;
sl@0
   145
sl@0
   146
	/** Flag to indicate whether iSpiEntry is processed or not */
sl@0
   147
	TBool		iSpiEntryProcessed;
sl@0
   148
sl@0
   149
	/** Flag to indicate whether Discovery process is Complete or not */
sl@0
   150
	TBool		iDiscoveriesComplete;
sl@0
   151
sl@0
   152
	/** The current start-up state of this object */
sl@0
   153
	OSState     iState;
sl@0
   154
sl@0
   155
	/** A reference to the CDiscoverer object that this class is observing*/
sl@0
   156
	CDiscoverer* iDiscoverer;
sl@0
   157
};  // End of CObserverStub declaration
sl@0
   158
sl@0
   159
sl@0
   160
/**
sl@0
   161
The TDiscoverer_StateAccessor class allows to access the private and protected
sl@0
   162
members of production code class CDiscoverer, as its a friend class.
sl@0
   163
*/
sl@0
   164
class TDiscoverer_StateAccessor
sl@0
   165
	{
sl@0
   166
public:
sl@0
   167
sl@0
   168
	// Auxiliary functions that provide access to
sl@0
   169
	// CDiscoverer private/protected members
sl@0
   170
	void ScanDirectoryL(CDiscoverer& aDiscoverer, TDriveUnit aDriveUnit);
sl@0
   171
	void ScanDirectoryCancel(CDiscoverer& aDiscoverer);
sl@0
   172
	void CompleteNotificationProcessing(CDiscoverer& aDiscoverer);
sl@0
   173
	void ValidateEntryL(CDiscoverer& aDiscoverer,
sl@0
   174
						const TEntry& aEntry,
sl@0
   175
						const TDriveName& aDriveName,
sl@0
   176
						CPluginBase*& aEntryToFill,
sl@0
   177
						TBool aIsRO);
sl@0
   178
	void ValidateEntryL(CDiscoverer& aDiscoverer,
sl@0
   179
						RResourceArchive& aRscArchive,
sl@0
   180
						CPluginBase*& aEntryToFill);
sl@0
   181
	void ProcessEntryL(CDiscoverer& aDiscoverer,const TDriveName& aDrive, CPluginBase*& aEntry, TBool aDatFileExists);
sl@0
   182
	void DriveMountedL(CDiscoverer& aDiscoverer, const TDriveUnit aDrive);
sl@0
   183
	void DriveUnmountedL(CDiscoverer& aDiscoverer, const TDriveUnit aDrive);
sl@0
   184
	void SwiChangeNotificationL(CDiscoverer& aDiscoverer, TInt aSwiOperation);
sl@0
   185
	void IdleScanningTimerRunErrorL(CDiscoverer& aDiscoverer, TInt aError);
sl@0
   186
	void DirChangeNotifierRunErrorL(CDiscoverer& aDiscoverer, TInt aError);
sl@0
   187
	void SwiChangeNotifierRunError(CDiscoverer& aDiscoverer, TInt aError);
sl@0
   188
sl@0
   189
	// Verification functions to check the state of CDiscoverer object against tests
sl@0
   190
	TBool IsDriveMounted(CDiscoverer& aDiscoverer, const TDriveUnit aDrive);
sl@0
   191
	TBool IsDiscovererActive(CDiscoverer& aDiscoverer);
sl@0
   192
	TBool IsDirectoryScanCancelled(CDiscoverer& aDiscoverer);
sl@0
   193
	TBool IsScanDirectoryComplete(CDiscoverer& aDiscoverer);
sl@0
   194
	TBool IsScanDirectoryPending(CDiscoverer& aDiscoverer, TDriveUnit aDrive);
sl@0
   195
	TUint PendingDriveListCount(CDiscoverer& aDiscoverer);
sl@0
   196
	CDiscoverer::TDiscovererState State(CDiscoverer& aDiscoverer);
sl@0
   197
	CObserverStub::OSState GetDiscovererObserverState(CDiscoverer& aDiscoverer);
sl@0
   198
	void ScanDriveL(CDiscoverer& aDiscoverer, TDriveUnit aDrive,  TBool aIsRO);
sl@0
   199
	void LanguageChangedL(CDiscoverer& aDiscoverer);
sl@0
   200
	};
sl@0
   201
sl@0
   202
/**
sl@0
   203
Scans plugin directories
sl@0
   204
sl@0
   205
@param		aDiscoverer The CDiscoverer class object under test
sl@0
   206
@return		void
sl@0
   207
*/
sl@0
   208
void TDiscoverer_StateAccessor::ScanDirectoryL(CDiscoverer& aDiscoverer, TDriveUnit aDriveUnit)
sl@0
   209
	{
sl@0
   210
	aDiscoverer.RediscoveryScanDirectoryL(aDriveUnit);
sl@0
   211
	}
sl@0
   212
sl@0
   213
/**
sl@0
   214
Stops scanning of the plugin directories
sl@0
   215
sl@0
   216
@param		aDiscoverer The CDiscoverer class object under test
sl@0
   217
*/
sl@0
   218
void TDiscoverer_StateAccessor::ScanDirectoryCancel(CDiscoverer& aDiscoverer)
sl@0
   219
	{
sl@0
   220
	aDiscoverer.ScanDirectoryCancel();
sl@0
   221
	}
sl@0
   222
sl@0
   223
/**
sl@0
   224
Signals that the directory change has been fully processed.
sl@0
   225
sl@0
   226
@param		aDiscoverer The CDiscoverer class object under test
sl@0
   227
*/
sl@0
   228
void TDiscoverer_StateAccessor::CompleteNotificationProcessing(CDiscoverer& aDiscoverer)
sl@0
   229
	{
sl@0
   230
	aDiscoverer.CompleteNotificationProcessing();
sl@0
   231
	}
sl@0
   232
sl@0
   233
/**
sl@0
   234
Verifies that the discovered entry is valid.
sl@0
   235
Used to test the Interface Implementation Collection entry
sl@0
   236
sl@0
   237
@param		aDiscoverer The CDiscoverer class object under test
sl@0
   238
@param		aEntry The plugin name
sl@0
   239
@param		aDriveName The drive containing the entry
sl@0
   240
@param		aEntryToFill On return points to complete
sl@0
   241
			plugin file name(with path) i.e. aPath + aEntry
sl@0
   242
*/
sl@0
   243
void TDiscoverer_StateAccessor::ValidateEntryL(CDiscoverer& aDiscoverer,
sl@0
   244
											   const TEntry& aEntry,
sl@0
   245
											   const TDriveName& aDriveName,
sl@0
   246
											   CPluginBase*& aEntryToFill,
sl@0
   247
											   TBool aIsRO)
sl@0
   248
	{
sl@0
   249
	aDiscoverer.ValidateEntryL(aEntry, aDriveName, aEntryToFill, aIsRO);
sl@0
   250
	}
sl@0
   251
sl@0
   252
/**
sl@0
   253
Verifies that the discovered entry is valid.
sl@0
   254
Used to test the Interface Implementation Collection entry
sl@0
   255
sl@0
   256
@param		aDiscoverer The CDiscoverer class object under test
sl@0
   257
@param		aRscArchive reference to the resource archive
sl@0
   258
@param		aEntryToFill On return points to complete
sl@0
   259
			plugin file name(with path) i.e. aPath + aEntry
sl@0
   260
*/
sl@0
   261
void TDiscoverer_StateAccessor::ValidateEntryL(CDiscoverer& aDiscoverer,
sl@0
   262
											RResourceArchive& aRscArchive,
sl@0
   263
											CPluginBase*& aEntryToFill)
sl@0
   264
	{
sl@0
   265
	aDiscoverer.ValidateEntryL(aRscArchive,aEntryToFill);
sl@0
   266
	}
sl@0
   267
/**
sl@0
   268
Registers an Interface Implementation Collection
sl@0
   269
sl@0
   270
@param		aDiscoverer The CDiscoverer class object under test
sl@0
   271
@param		aEntry This is the plugin name that needs to be registered
sl@0
   272
*/
sl@0
   273
void TDiscoverer_StateAccessor::ProcessEntryL(CDiscoverer& aDiscoverer,const TDriveName& aDrive,
sl@0
   274
										  CPluginBase*& aEntry, TBool aDatFileExists)
sl@0
   275
	{
sl@0
   276
	aDiscoverer.ProcessEntryL(aDrive,aEntry,aDatFileExists);
sl@0
   277
	}
sl@0
   278
sl@0
   279
/**
sl@0
   280
Notifies the discoverer of an SWI operation change
sl@0
   281
sl@0
   282
@param		aDiscoverer The CDiscoverer class object under test
sl@0
   283
@param		aSwiOperation This new SWI state
sl@0
   284
*/
sl@0
   285
void TDiscoverer_StateAccessor::SwiChangeNotificationL(CDiscoverer& aDiscoverer, TInt aSwiOperation)
sl@0
   286
	{
sl@0
   287
	aDiscoverer.SwiChangeNotificationL(aSwiOperation);
sl@0
   288
	}
sl@0
   289
sl@0
   290
/**
sl@0
   291
Signals that a drive is available
sl@0
   292
sl@0
   293
@param		aDiscoverer The CDiscoverer class object under test
sl@0
   294
@param		aDrive Drive that needs to be mounted
sl@0
   295
*/
sl@0
   296
void TDiscoverer_StateAccessor::DriveMountedL(CDiscoverer& aDiscoverer,
sl@0
   297
											  const TDriveUnit aDrive)
sl@0
   298
	{
sl@0
   299
	aDiscoverer.DriveMountedL(aDrive);
sl@0
   300
	}
sl@0
   301
sl@0
   302
/**
sl@0
   303
Signals that a drive is unavailable
sl@0
   304
sl@0
   305
@param		aDiscoverer The CDiscoverer class object under test
sl@0
   306
@param		aDrive Drive that needs to be unmounted/removed
sl@0
   307
*/
sl@0
   308
void TDiscoverer_StateAccessor::DriveUnmountedL(CDiscoverer& aDiscoverer,
sl@0
   309
												const TDriveUnit aDrive)
sl@0
   310
	{
sl@0
   311
	aDiscoverer.DriveUnmountedL(aDrive);
sl@0
   312
	}
sl@0
   313
sl@0
   314
/**
sl@0
   315
Checks whether CDiscoverer object has successfully completed with
sl@0
   316
the scanning of the plugin directories on all drives
sl@0
   317
sl@0
   318
@param		aDiscoverer The CDiscoverer class object under test
sl@0
   319
@return		true if notification has been processed on all drives.
sl@0
   320
			false if there is notification processing pending on any drive
sl@0
   321
*/
sl@0
   322
TBool TDiscoverer_StateAccessor::IsScanDirectoryComplete(CDiscoverer& aDiscoverer)
sl@0
   323
	{
sl@0
   324
	// check state of discoverer to see if all pending drives have been scanned.
sl@0
   325
	return(aDiscoverer.State() == CDiscoverer::EDisc_AllPluginsDisc);
sl@0
   326
	}
sl@0
   327
sl@0
   328
/**
sl@0
   329
Checks whether a notification has been signaled but not processed on specified drive.
sl@0
   330
sl@0
   331
Error Condition	: Leaves with KErrNotFound if the drive is not registered.
sl@0
   332
@param		aDiscoverer The CDiscoverer class object under test
sl@0
   333
@param		aDrive The drive to check
sl@0
   334
@return		true if notification has been processed on the specified drive.
sl@0
   335
			false if notification processing is pending
sl@0
   336
*/
sl@0
   337
TBool TDiscoverer_StateAccessor::IsScanDirectoryPending(CDiscoverer& aDiscoverer, TDriveUnit aDrive)
sl@0
   338
	{
sl@0
   339
	if(aDiscoverer.iScanningTimer->iPendingDriveList.Find(aDrive)!=KErrNotFound)
sl@0
   340
		{
sl@0
   341
		return ETrue;
sl@0
   342
		}
sl@0
   343
	else
sl@0
   344
		{
sl@0
   345
		return EFalse;
sl@0
   346
		}
sl@0
   347
	}
sl@0
   348
sl@0
   349
/**
sl@0
   350
Checks the current count of drives in the list waiting for processing.
sl@0
   351
sl@0
   352
@param		aDiscoverer The CDiscoverer class object under test
sl@0
   353
@return		TUint
sl@0
   354
*/
sl@0
   355
TUint TDiscoverer_StateAccessor::PendingDriveListCount(CDiscoverer& aDiscoverer)
sl@0
   356
	{
sl@0
   357
	return(aDiscoverer.iScanningTimer->iPendingDriveList.Count());
sl@0
   358
	}
sl@0
   359
sl@0
   360
/**
sl@0
   361
Checks that CDiscoverer object is not scanning the plugin directories.
sl@0
   362
sl@0
   363
@param		aDiscoverer The CDiscoverer class object under test
sl@0
   364
@return		true if plugin dirctory scanning is stopped.
sl@0
   365
*/
sl@0
   366
TBool TDiscoverer_StateAccessor::IsDirectoryScanCancelled(CDiscoverer& aDiscoverer)
sl@0
   367
	{
sl@0
   368
	if(!aDiscoverer.iDirScanner)
sl@0
   369
		{
sl@0
   370
		return ETrue;
sl@0
   371
		}
sl@0
   372
	return EFalse;
sl@0
   373
	}
sl@0
   374
sl@0
   375
/**
sl@0
   376
Checks that CDiscoverer object is currently activated for the plugin dir scanning
sl@0
   377
sl@0
   378
@param		aDiscoverer The CDiscoverer class object under test
sl@0
   379
@return		true if Discoverer object is tracking changes in the plugin directories in each drive.
sl@0
   380
*/
sl@0
   381
TBool TDiscoverer_StateAccessor::IsDiscovererActive(CDiscoverer& aDiscoverer)
sl@0
   382
	{
sl@0
   383
	//Return ETrue if both iScanningTimer & directory notifier(s) are active
sl@0
   384
	TBool isActive = ETrue;
sl@0
   385
sl@0
   386
	  for(TInt index = 0; index <aDiscoverer.iRscDirNotifierList.Count(); index++)
sl@0
   387
	  	{
sl@0
   388
	  	if(!(aDiscoverer.iRscDirNotifierList[index]&& aDiscoverer.iRscDirNotifierList[index]->IsActive()))
sl@0
   389
			{
sl@0
   390
			// iRscDirNotifierList should be active, as each active object on list is constantly
sl@0
   391
			// looking for changes in the plugin directories in each drive.
sl@0
   392
			isActive = EFalse;
sl@0
   393
			break;
sl@0
   394
			}
sl@0
   395
		}
sl@0
   396
	return isActive;
sl@0
   397
	}
sl@0
   398
sl@0
   399
/**
sl@0
   400
Verifies whether given drive is registered
sl@0
   401
sl@0
   402
@param		aDiscoverer The CDiscoverer class object under test
sl@0
   403
@param		aDrive Drive that needs to be verified for registration
sl@0
   404
@return		return true if given drive is installed
sl@0
   405
*/
sl@0
   406
TBool TDiscoverer_StateAccessor::IsDriveMounted(CDiscoverer& aDiscoverer,
sl@0
   407
												const TDriveUnit aDrive)
sl@0
   408
	{
sl@0
   409
	TBool isMounted = ETrue;
sl@0
   410
	if(aDiscoverer.iDrivesDiscovered.Find(aDrive) == KErrNotFound)
sl@0
   411
		{
sl@0
   412
		isMounted = EFalse;
sl@0
   413
		}
sl@0
   414
	return isMounted;
sl@0
   415
	}
sl@0
   416
sl@0
   417
/**
sl@0
   418
Scans plugin directories
sl@0
   419
sl@0
   420
@param		aDiscoverer The CDiscoverer class object under test
sl@0
   421
@param 		aDrive	The drive which is scanned
sl@0
   422
@param		aIsRO	Whether the drive is ready-only
sl@0
   423
@return		true if plugin directorie in each drive get scaned successfully
sl@0
   424
*/
sl@0
   425
void TDiscoverer_StateAccessor::ScanDriveL(CDiscoverer& aDiscoverer, TDriveUnit aDrive,  TBool aIsRO)
sl@0
   426
	{
sl@0
   427
	return aDiscoverer.iDirScanner->ScanDriveL(aDrive, aIsRO);
sl@0
   428
	}
sl@0
   429
void TDiscoverer_StateAccessor::LanguageChangedL(CDiscoverer& aDiscoverer)
sl@0
   430
	{
sl@0
   431
	aDiscoverer.LanguageChangeNotificationL();
sl@0
   432
	}
sl@0
   433
/**
sl@0
   434
Retrieve the object's current state.
sl@0
   435
sl@0
   436
@param		aDiscoverer The CDiscoverer class object under test
sl@0
   437
@return 	TDiscovererState the current state of the CDiscoverer
sl@0
   438
class object under test
sl@0
   439
*/
sl@0
   440
CDiscoverer::TDiscovererState TDiscoverer_StateAccessor::State(CDiscoverer& aDiscoverer)
sl@0
   441
	{
sl@0
   442
	return aDiscoverer.State();
sl@0
   443
	}
sl@0
   444
sl@0
   445
CObserverStub::OSState TDiscoverer_StateAccessor::GetDiscovererObserverState(CDiscoverer& aDiscoverer)
sl@0
   446
	{
sl@0
   447
	CObserverStub* discovererObserver =
sl@0
   448
		static_cast<CObserverStub*>(&aDiscoverer.iDiscovererObserver);
sl@0
   449
	return discovererObserver->GetState();
sl@0
   450
	}
sl@0
   451
sl@0
   452
/**
sl@0
   453
Call the CIdleScanningTimer RunError funtion
sl@0
   454
sl@0
   455
@param		aDiscoverer The CDiscoverer class object under test
sl@0
   456
@param 		aError The error code to pass to the RunError function
sl@0
   457
*/
sl@0
   458
void TDiscoverer_StateAccessor::IdleScanningTimerRunErrorL(CDiscoverer& aDiscoverer, TInt aError)
sl@0
   459
	{
sl@0
   460
	aDiscoverer.iScanningTimer->RunError(aError);
sl@0
   461
	}
sl@0
   462
sl@0
   463
/**
sl@0
   464
Call the CDirChangeNotifier RunError funtion
sl@0
   465
sl@0
   466
@param		aDiscoverer The CDiscoverer class object under test
sl@0
   467
@param 		aError The error code to pass to the RunError function
sl@0
   468
*/
sl@0
   469
void TDiscoverer_StateAccessor::DirChangeNotifierRunErrorL(CDiscoverer& aDiscoverer, TInt aError)
sl@0
   470
	{
sl@0
   471
	aDiscoverer.iRscDirNotifierList[0]->RunError(aError);
sl@0
   472
	}
sl@0
   473
sl@0
   474
/**
sl@0
   475
Call the CSwiChangeNotifier RunError funtion
sl@0
   476
sl@0
   477
@param		aDiscoverer The CDiscoverer class object under test
sl@0
   478
@param 		aError The error code to pass to the RunError function
sl@0
   479
*/
sl@0
   480
void TDiscoverer_StateAccessor::SwiChangeNotifierRunError(CDiscoverer& aDiscoverer, TInt aError)
sl@0
   481
	{
sl@0
   482
	aDiscoverer.iSwiChangeNotifier->RunError(aError);
sl@0
   483
	}
sl@0
   484
sl@0
   485
/**
sl@0
   486
Creates an instance of CObserverStub class.
sl@0
   487
sl@0
   488
@return		The new'ed object.
sl@0
   489
*/
sl@0
   490
CObserverStub* CObserverStub::NewL()
sl@0
   491
	{
sl@0
   492
	return new(ELeave) CObserverStub();
sl@0
   493
	}
sl@0
   494
sl@0
   495
/**
sl@0
   496
Destructor
sl@0
   497
sl@0
   498
@post		This object is properly destroyed.
sl@0
   499
*/
sl@0
   500
CObserverStub::~CObserverStub()
sl@0
   501
	{
sl@0
   502
	// do nothing;
sl@0
   503
	}
sl@0
   504
sl@0
   505
/**
sl@0
   506
Default constructor.
sl@0
   507
sl@0
   508
@post		The object is properly constructed.
sl@0
   509
*/
sl@0
   510
CObserverStub::CObserverStub()
sl@0
   511
				:CBase(),
sl@0
   512
				iDriveUnit(EDriveC),
sl@0
   513
				iDriveMounted(EFalse),
sl@0
   514
				iEntryProcessed(EFalse),
sl@0
   515
				iSpiEntryProcessed(EFalse),
sl@0
   516
				iDiscoveriesComplete(EFalse),
sl@0
   517
				iState(OSS_NoPlugins)
sl@0
   518
	{
sl@0
   519
	// do nothing;
sl@0
   520
	}
sl@0
   521
sl@0
   522
/**
sl@0
   523
MDiscovererObserver callback method, to signal that a discovery
sl@0
   524
session is starting.
sl@0
   525
*/
sl@0
   526
void CObserverStub::DiscoveriesBegin()
sl@0
   527
	{
sl@0
   528
	iDiscoveriesComplete = EFalse;
sl@0
   529
	}
sl@0
   530
sl@0
   531
void CObserverStub::SetDiscoveryFlagL(const TDriveUnit & /*aDrive*/)
sl@0
   532
	{
sl@0
   533
	iDiscoveriesComplete = ETrue;
sl@0
   534
	}
sl@0
   535
/**
sl@0
   536
MDiscovererObserver callback method to register an Ecom Spi file.
sl@0
   537
sl@0
   538
@param		aEntry The Ecom file  that needs to be registered
sl@0
   539
*/
sl@0
   540
void CObserverStub::RegisterDiscoveryL(const TDriveName& /* aDriveName */,CPluginBase*& aEntry,TBool /* aDatFileExists*/)
sl@0
   541
	{
sl@0
   542
	iEntryBase = aEntry;
sl@0
   543
	iSpiEntryProcessed = ETrue;
sl@0
   544
	}
sl@0
   545
sl@0
   546
/**
sl@0
   547
MDiscovererObserver callback method, to signal that a discovery
sl@0
   548
session is complete.
sl@0
   549
sl@0
   550
@param		aSuccessful Indicates discoveries process completed successfully or not
sl@0
   551
@param		aProcessingType indicates the type of processing for plugins
sl@0
   552
			for ensuring that plugins are not processed multiple times
sl@0
   553
			during start-up phase
sl@0
   554
*/
sl@0
   555
void CObserverStub::DiscoveriesComplete(TBool aSuccessful, TPluginProcessingTypeIdentifier aProcessingType)
sl@0
   556
	{
sl@0
   557
	iDiscoveriesComplete = aSuccessful;
sl@0
   558
sl@0
   559
	switch(iState)
sl@0
   560
		{
sl@0
   561
		case OSS_NoPlugins:
sl@0
   562
			if(aProcessingType == EPluginProcessingTypeCriticalOnly &&
sl@0
   563
			   iDiscoverer->State() == CDiscoverer::EDisc_CriticalPluginsDisc)
sl@0
   564
				{
sl@0
   565
				iState = OSS_CriticalPlugins;
sl@0
   566
				}
sl@0
   567
			else if(aProcessingType == EPluginProcessingTypeAll &&
sl@0
   568
				    iDiscoverer->State() == CDiscoverer::EDisc_AllPluginsDisc)
sl@0
   569
				{
sl@0
   570
				iState = OSS_AllPlugins;
sl@0
   571
				}
sl@0
   572
			break;
sl@0
   573
		case OSS_CriticalPlugins:
sl@0
   574
			if(aProcessingType == EPluginProcessingTypeNonCriticalOnly &&
sl@0
   575
			   iDiscoverer->State() == CDiscoverer::EDisc_AllPluginsDisc)
sl@0
   576
				{
sl@0
   577
				iState = OSS_AllPlugins;
sl@0
   578
				}
sl@0
   579
			break;
sl@0
   580
		}
sl@0
   581
	}
sl@0
   582
sl@0
   583
/**
sl@0
   584
Verifies whether given plugin entry is registered
sl@0
   585
sl@0
   586
@param		aDirEntry The Ecom plugin that to be checked for registration.
sl@0
   587
@return		true if given plugin is registered
sl@0
   588
*/
sl@0
   589
TBool CObserverStub::IsEntryProcessed(CPluginBase*& aDirEntry)
sl@0
   590
	{
sl@0
   591
	if(iEntryProcessed && (iEntryBase->iDllThirdUid == aDirEntry->iDllThirdUid))
sl@0
   592
		{
sl@0
   593
		return ETrue;
sl@0
   594
		}
sl@0
   595
sl@0
   596
	return EFalse;
sl@0
   597
	}
sl@0
   598
sl@0
   599
/**
sl@0
   600
MDiscovererObserver callback method, to signal that a Drive
sl@0
   601
is removed/dismounted.
sl@0
   602
sl@0
   603
@param		aDrive The drive that is removed.
sl@0
   604
*/
sl@0
   605
void CObserverStub::DriveRemovedL(TDriveUnit aDrive)
sl@0
   606
	{
sl@0
   607
	iDriveMounted = EFalse;
sl@0
   608
	iDriveUnit = aDrive;
sl@0
   609
	}
sl@0
   610
sl@0
   611
/**
sl@0
   612
MDiscovererObserver callback method, to signal that a Drive
sl@0
   613
is reinstalled.
sl@0
   614
sl@0
   615
@param		aDrive The drive that is available now.
sl@0
   616
*/
sl@0
   617
void CObserverStub::DriveReinstatedL(TDriveUnit aDrive)
sl@0
   618
	{
sl@0
   619
	iDriveMounted = ETrue;
sl@0
   620
	iDriveUnit = aDrive;
sl@0
   621
	}
sl@0
   622
sl@0
   623
/**
sl@0
   624
MDiscovererObserver callback method, to signal that
sl@0
   625
during a discovery session an error has occured.
sl@0
   626
sl@0
   627
@param		aError The notification error code.
sl@0
   628
@return		true if aError is one of the acceptable error codes
sl@0
   629
*/
sl@0
   630
TBool CObserverStub::NotifiedWithErrorCode(TInt aError)
sl@0
   631
	{
sl@0
   632
	// Test the safe error codes
sl@0
   633
	return (aError == KErrNotReady ||		// Drive removed
sl@0
   634
			aError == KErrPathNotFound);	// Directory deleted
sl@0
   635
	}
sl@0
   636
sl@0
   637
/**
sl@0
   638
MDiscovererObserver callback method,to retrieve the drive unit's DAT
sl@0
   639
file infor.
sl@0
   640
sl@0
   641
@param 		aDrive the identifier of the drive to retrieve DAT file infor from.
sl@0
   642
@return		ETrue if DAT file exists on the drive unit, otherwise EFlase.
sl@0
   643
sl@0
   644
*/
sl@0
   645
TBool CObserverStub::IsAnyDllRegisteredWithDriveL(const TDriveUnit /*aDrive*/) const
sl@0
   646
	{
sl@0
   647
	// To pass the build always returns EFalse to mean no Dll is discovered in the drive,
sl@0
   648
	// it is not used in this test.
sl@0
   649
	return EFalse;
sl@0
   650
	}
sl@0
   651
sl@0
   652
/**
sl@0
   653
Verification method that checks whether given drive is available
sl@0
   654
sl@0
   655
@param		aDrive The drive that to be checked.
sl@0
   656
@return		true if given drive is registered
sl@0
   657
*/
sl@0
   658
TBool CObserverStub::IsDriveMounted(const TDriveUnit aDrive)
sl@0
   659
	{
sl@0
   660
	TBool mounted = EFalse;
sl@0
   661
	if(iDriveMounted && (aDrive == iDriveUnit))
sl@0
   662
		{
sl@0
   663
		mounted = ETrue;
sl@0
   664
		}
sl@0
   665
	return mounted;
sl@0
   666
	}
sl@0
   667
sl@0
   668
/**
sl@0
   669
Verification method that checks whether discovery process is completed successfully
sl@0
   670
sl@0
   671
@return		true if discovery process is completed successfully
sl@0
   672
*/
sl@0
   673
TBool CObserverStub::IsDiscoveriesCompleteSuccessfully()
sl@0
   674
	{
sl@0
   675
	return iDiscoveriesComplete;
sl@0
   676
	}
sl@0
   677
sl@0
   678
/**
sl@0
   679
Returns the current start-up state of this object
sl@0
   680
sl@0
   681
@return	    The current start-up state of this object
sl@0
   682
*/
sl@0
   683
CObserverStub::OSState CObserverStub::GetState()
sl@0
   684
	{
sl@0
   685
	return iState;
sl@0
   686
	}
sl@0
   687
sl@0
   688
void CObserverStub::SetDiscoverer(CDiscoverer* aDiscoverer)
sl@0
   689
	{
sl@0
   690
	iDiscoverer = aDiscoverer;
sl@0
   691
	}
sl@0
   692
sl@0
   693
void CObserverStub::LanguageChangedL(TBool& aLanguageChanged)
sl@0
   694
	{
sl@0
   695
	aLanguageChanged = EFalse;
sl@0
   696
	}
sl@0
   697
class CDiscovererTestShutdown : public CTimer
sl@0
   698
	{
sl@0
   699
public:
sl@0
   700
	inline CDiscovererTestShutdown();
sl@0
   701
	inline void ConstructL();
sl@0
   702
	inline void StartAfter(TTimeIntervalMicroSeconds32 aTimeInterval);
sl@0
   703
sl@0
   704
private:
sl@0
   705
	void RunL();
sl@0
   706
	};
sl@0
   707
sl@0
   708
inline CDiscovererTestShutdown::CDiscovererTestShutdown()
sl@0
   709
:CTimer(EPriorityHigh)// Priority set higher than CIdleScanningTimer
sl@0
   710
	{
sl@0
   711
	CActiveScheduler::Add(this);
sl@0
   712
	}
sl@0
   713
sl@0
   714
inline void CDiscovererTestShutdown::ConstructL()
sl@0
   715
	{
sl@0
   716
	CTimer::ConstructL();
sl@0
   717
	}
sl@0
   718
sl@0
   719
inline void CDiscovererTestShutdown::StartAfter(TTimeIntervalMicroSeconds32 aTimeInterval)
sl@0
   720
	{
sl@0
   721
	After(aTimeInterval);
sl@0
   722
	}
sl@0
   723
void CDiscovererTestShutdown::RunL()
sl@0
   724
	{
sl@0
   725
	CActiveScheduler::Stop();
sl@0
   726
	}
sl@0
   727
sl@0
   728
/**
sl@0
   729
Test class for object CDiscoverer.
sl@0
   730
This class provides the parameters and behaviour that
sl@0
   731
allows this class to behave normally under a test
sl@0
   732
scenario.
sl@0
   733
*/
sl@0
   734
class CDiscovererTest : public CBase
sl@0
   735
	{
sl@0
   736
public:
sl@0
   737
	static CDiscovererTest* NewL();
sl@0
   738
	virtual ~CDiscovererTest();
sl@0
   739
sl@0
   740
	void ResumeSuspendTestL();
sl@0
   741
	void DriveMountUnmountTestL();
sl@0
   742
	void ProcessEntryTestL();
sl@0
   743
	void ProcessSpiEntryTestL();
sl@0
   744
	void ValidateSpiEntryTestL();
sl@0
   745
	void ValidateSpiPluginsTestL();
sl@0
   746
	void ValidateEntryTestL();
sl@0
   747
	void ProcessEntryPlugIn3TestL();
sl@0
   748
	void ProcessSpiEntryPlugIn3TestL();
sl@0
   749
	void ValidateSpiEntryPlugIn3TestL();
sl@0
   750
	void ValidateEntryPlugIn3TestL();
sl@0
   751
	void ScanDirectoryIncrementTestL();
sl@0
   752
	void ScanDirectoryTestL();
sl@0
   753
	void ScanDirectoryCancelTestL();
sl@0
   754
	void StagedDiscoveryStateTransitionTestL();
sl@0
   755
	void AllAtOnceDiscoveryStateTransitionTestL();
sl@0
   756
	void MultipleNotificationProcessingTestL();
sl@0
   757
	void SWINotificationProcessingTestL();
sl@0
   758
	void IdleScanningTimerRunErrorL();
sl@0
   759
	void DirChangeNotifierRunErrorL();
sl@0
   760
	void SwiChangeNotifierRunError();
sl@0
   761
	void LanguageChangedNotificationTestL();
sl@0
   762
sl@0
   763
private:
sl@0
   764
	CDiscovererTest();
sl@0
   765
	void ConstructL();
sl@0
   766
sl@0
   767
public:
sl@0
   768
	/** The instance of the class under test */
sl@0
   769
	CDiscoverer* iDiscoverer;
sl@0
   770
sl@0
   771
	/** The instance of the state accessor interface */
sl@0
   772
	TDiscoverer_StateAccessor* iStateAccessor;
sl@0
   773
sl@0
   774
	/** The instance of the observer stub of the CDiscoverer */
sl@0
   775
	CObserverStub* iDiscovererObserver;
sl@0
   776
sl@0
   777
	/** Unique Id of the ECOM dll */
sl@0
   778
	TUid		iDllUid;
sl@0
   779
sl@0
   780
	/** The drive on which interface implementations can be found */
sl@0
   781
	TDriveUnit	iDriveUnit;
sl@0
   782
sl@0
   783
	/** Information on a dll which contains interface implementations */
sl@0
   784
	TEntry		iDllEntry;
sl@0
   785
sl@0
   786
	/** A shutdown timer to manipulate the Active Scheduler of testing server */
sl@0
   787
	CDiscovererTestShutdown	iShutdown;
sl@0
   788
sl@0
   789
	CEComCachedDriveInfo* iCachedDriveInfo;
sl@0
   790
	};
sl@0
   791
sl@0
   792
/**
sl@0
   793
Standardised safe construction which
sl@0
   794
leaves nothing on the cleanup stack.
sl@0
   795
sl@0
   796
@post			CDiscovererTest is fully constructed and initialised
sl@0
   797
@return			The new'ed object.
sl@0
   798
*/
sl@0
   799
CDiscovererTest* CDiscovererTest::NewL()
sl@0
   800
	{
sl@0
   801
	CDiscovererTest* self = new (ELeave) CDiscovererTest();
sl@0
   802
	CleanupStack::PushL( self );
sl@0
   803
	self->ConstructL();
sl@0
   804
	CleanupStack::Pop(self);
sl@0
   805
	return self;
sl@0
   806
	}
sl@0
   807
sl@0
   808
/**
sl@0
   809
Default constructor.
sl@0
   810
sl@0
   811
@post	The object is properly constructed.
sl@0
   812
*/
sl@0
   813
CDiscovererTest::CDiscovererTest()
sl@0
   814
				:CBase(),
sl@0
   815
				 iDriveUnit(EDriveC)
sl@0
   816
	{
sl@0
   817
	TUid uid1 = {0};
sl@0
   818
	TUid uid2 = {0};
sl@0
   819
sl@0
   820
	iDllUid.iUid	= 0x10009DB6; // Dll Uid for EComRomOnlyExampleOnC.dll
sl@0
   821
	iDllEntry.iType = TUidType(uid1, uid2, iDllUid);
sl@0
   822
	}
sl@0
   823
sl@0
   824
/**
sl@0
   825
Destructor.
sl@0
   826
sl@0
   827
@post		This object is properly destroyed.
sl@0
   828
*/
sl@0
   829
CDiscovererTest::~CDiscovererTest()
sl@0
   830
	{
sl@0
   831
	delete iDiscoverer;
sl@0
   832
	delete iStateAccessor;
sl@0
   833
	delete iDiscovererObserver;
sl@0
   834
	delete iCachedDriveInfo;
sl@0
   835
	}
sl@0
   836
sl@0
   837
/**
sl@0
   838
Standardized 2nd(Initialization) phase of two phase construction.
sl@0
   839
Creates supporting class objects for the execution of test.
sl@0
   840
sl@0
   841
@post			CDiscovererTest is fully constructed.
sl@0
   842
*/
sl@0
   843
void CDiscovererTest::ConstructL()
sl@0
   844
	{
sl@0
   845
	iStateAccessor		= new(ELeave) TDiscoverer_StateAccessor;
sl@0
   846
	iDiscovererObserver	= CObserverStub::NewL();
sl@0
   847
	iDiscoverer			= CDiscoverer::NewL(*iDiscovererObserver, TheFs);
sl@0
   848
	iDiscovererObserver->SetDiscoverer(iDiscoverer);
sl@0
   849
	iShutdown.ConstructL();
sl@0
   850
	iCachedDriveInfo = CEComCachedDriveInfo::NewL(TheFs);
sl@0
   851
	}
sl@0
   852
sl@0
   853
/**
sl@0
   854
The test executes by first suspending the discoverer then by
sl@0
   855
resuming it.
sl@0
   856
sl@0
   857
@SYMTestCaseID          SYSLIB-ECOM-CT-0716
sl@0
   858
@SYMTestCaseDesc	    Tests for resuming and suspending Discoverer
sl@0
   859
@SYMTestPriority 	    High
sl@0
   860
@SYMTestActions  	    Suspend if Discoverer is active and then resume. Check for the error conditions(OOM)
sl@0
   861
@SYMTestExpectedResults The test must not fail.
sl@0
   862
@SYMREQ                 REQ0000
sl@0
   863
*/
sl@0
   864
void CDiscovererTest::ResumeSuspendTestL()
sl@0
   865
	{
sl@0
   866
	test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0716 "));
sl@0
   867
	// Perform an initial discovery and start the notifiers.
sl@0
   868
	iDiscoverer->ProcessSSAEventL(EStartupStateNonCritical);
sl@0
   869
sl@0
   870
	TBool isDiscActive = iStateAccessor->IsDiscovererActive(*iDiscoverer);
sl@0
   871
	// Notifiers should be active.
sl@0
   872
	test(isDiscActive);
sl@0
   873
sl@0
   874
	TInt err = iDiscoverer->Suspend();
sl@0
   875
	TEST_OOM_ERR;
sl@0
   876
	test(err == KErrNone);
sl@0
   877
sl@0
   878
	// Notifiers should still be active.
sl@0
   879
	isDiscActive = iStateAccessor->IsDiscovererActive(*iDiscoverer);
sl@0
   880
	test(isDiscActive);
sl@0
   881
sl@0
   882
	// Test that there are no drives pending a scan before we copy the plugin.
sl@0
   883
	test(!iStateAccessor->IsScanDirectoryPending(*iDiscoverer, EDriveC));
sl@0
   884
sl@0
   885
	// Raise a plugin change notification on C: drive. This simulates a plugin being copied.
sl@0
   886
	iDiscoverer->ProcessDNEventL(CDiscoverer::EPluginsModified, EDriveC);
sl@0
   887
	iDiscoverer->ProcessDNEventL(CDiscoverer::EPluginsRediscover, EDriveC);
sl@0
   888
sl@0
   889
	// Test that the drive we copied the plugin to still has a scan pending.
sl@0
   890
	test(iStateAccessor->IsScanDirectoryPending(*iDiscoverer, EDriveC));
sl@0
   891
sl@0
   892
	isDiscActive = iStateAccessor->IsDiscovererActive(*iDiscoverer);
sl@0
   893
	// Notifiers should still be active.
sl@0
   894
	test(isDiscActive);
sl@0
   895
sl@0
   896
	// Start Active Scheduler and shut it down in 3 secs, it will launch RunL of timer to process
sl@0
   897
	// all pending notification.
sl@0
   898
	iShutdown.StartAfter(KOneSecond * 3);
sl@0
   899
	CActiveScheduler::Start();
sl@0
   900
sl@0
   901
	// Check that notifications have not been processed.
sl@0
   902
	test(!iStateAccessor->IsScanDirectoryComplete(*iDiscoverer));
sl@0
   903
sl@0
   904
	err = iDiscoverer->Resume();
sl@0
   905
	TEST_OOM_ERR;
sl@0
   906
	test(err == KErrNone);
sl@0
   907
sl@0
   908
	isDiscActive = iStateAccessor->IsDiscovererActive(*iDiscoverer);
sl@0
   909
	// Notifiers should still be active.
sl@0
   910
	test(isDiscActive);
sl@0
   911
sl@0
   912
	// Start Active Scheduler and shut it down in 3 secs, it will launch RunL of timer to process
sl@0
   913
	// all pending notification.
sl@0
   914
	iShutdown.StartAfter(KOneSecond * 3);
sl@0
   915
	CActiveScheduler::Start();
sl@0
   916
sl@0
   917
	// Check if notifications have been processed on all drives.
sl@0
   918
	test(iStateAccessor->IsScanDirectoryComplete(*iDiscoverer));
sl@0
   919
	}
sl@0
   920
sl@0
   921
/**
sl@0
   922
The test executes by first making the test drive unmounted and
sl@0
   923
then testing for Mount and Unmount.
sl@0
   924
sl@0
   925
@SYMTestCaseID          SYSLIB-ECOM-CT-0717
sl@0
   926
@SYMTestCaseDesc	    Tests for drive mount and unmount
sl@0
   927
@SYMTestPriority 	    High
sl@0
   928
@SYMTestActions  	    First remove the drive if its already there, then test for Mount then for unmount
sl@0
   929
@SYMTestExpectedResults The test must not fail.
sl@0
   930
@SYMREQ                 REQ0000
sl@0
   931
*/
sl@0
   932
void CDiscovererTest::DriveMountUnmountTestL()
sl@0
   933
	{
sl@0
   934
	test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0717 "));
sl@0
   935
	TInt err;
sl@0
   936
	TDriveUnit drive(EDriveC);
sl@0
   937
	//First remove the drive if its already there, then test for Mount then for unmount
sl@0
   938
	if(iStateAccessor->IsDriveMounted(*iDiscoverer, drive))
sl@0
   939
		{
sl@0
   940
		TRAP(err, iStateAccessor->DriveUnmountedL(*iDiscoverer, drive));
sl@0
   941
		TEST_OOM_ERR;
sl@0
   942
		test(err == KErrNone);
sl@0
   943
		}
sl@0
   944
sl@0
   945
	// Drive should not be present
sl@0
   946
	test(!iStateAccessor->IsDriveMounted(*iDiscoverer, drive));
sl@0
   947
sl@0
   948
	// Test Mount
sl@0
   949
	TRAP(err, iStateAccessor->DriveMountedL(*iDiscoverer, drive));
sl@0
   950
	TEST_OOM_ERR;
sl@0
   951
	test(err == KErrNone);
sl@0
   952
sl@0
   953
	// CDiscoverer->DriveMountedL/DriveUnmountedL updates both itself and
sl@0
   954
	// DiscovererObserver class for Mount/Unmount of drives. So testing for both
sl@0
   955
	test(iStateAccessor->IsDriveMounted(*iDiscoverer, drive));
sl@0
   956
	test(iDiscovererObserver->IsDriveMounted(drive));
sl@0
   957
sl@0
   958
	// Test Unmount
sl@0
   959
	TRAP(err, iStateAccessor->DriveUnmountedL(*iDiscoverer, drive));
sl@0
   960
	TEST_OOM_ERR;
sl@0
   961
	test(err == KErrNone );
sl@0
   962
sl@0
   963
	// CDiscoverer->DriveMountedL/DriveUnmountedL updates both itself and
sl@0
   964
	// DiscovererObserver class for Mount/Unmount of drives. So testing for both
sl@0
   965
	test(!iStateAccessor->IsDriveMounted(*iDiscoverer, drive));
sl@0
   966
	test(!iDiscovererObserver->IsDriveMounted(drive));
sl@0
   967
	}
sl@0
   968
sl@0
   969
sl@0
   970
/**
sl@0
   971
@SYMTestCaseID          SYSLIB-ECOM-UT-3559
sl@0
   972
@SYMTestCaseDesc	    Tests for process entry of PLUGIN3 type.
sl@0
   973
@SYMTestPriority 	    High
sl@0
   974
@SYMTestActions  	    Call CDiscoverer::ProcessEntryL().
sl@0
   975
@SYMTestExpectedResults The entry is registered successfully and no leave occurred.
sl@0
   976
@SYMEC	                EC43
sl@0
   977
*/
sl@0
   978
void CDiscovererTest::ProcessEntryPlugIn3TestL()
sl@0
   979
	{
sl@0
   980
	test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-UT-3559 "));
sl@0
   981
	CPluginBase* entryBase = NULL;
sl@0
   982
	TInt err = KErrNone;
sl@0
   983
sl@0
   984
	//This part refers to testing of the entry containing the RSC
sl@0
   985
	_LIT(KExampleRscFileNameOnly,"EComExample12.rsc");
sl@0
   986
	TDriveName driveName1(iDriveUnit.Name());
sl@0
   987
	TParse path1;
sl@0
   988
	path1.Set(KNewResourceSearchPath(),NULL,&driveName1);
sl@0
   989
	//Creating a entry that represents the Rsc disovered during scanning of \\resource\\plugins
sl@0
   990
	TEntry rscEntry;
sl@0
   991
	rscEntry.iName = KExampleRscFileNameOnly;
sl@0
   992
	rscEntry.iType = TUidType(KNullUid,KUidInterfaceImplementationCollectionInfo,KNullUid);
sl@0
   993
	entryBase = CSecurePlugin::NewL(TheFs,rscEntry,driveName1, EFalse);
sl@0
   994
	CleanupStack::PushL(entryBase);
sl@0
   995
sl@0
   996
	// ProcessEntryL() updates entryToFill with information on a rsc specified by the other params.
sl@0
   997
	TRAP(err, iStateAccessor->ProcessEntryL(*iDiscoverer,driveName1,entryBase,ETrue));
sl@0
   998
	TEST_OOM_ERR;
sl@0
   999
	test(err == KErrNone);
sl@0
  1000
	CleanupStack::PopAndDestroy(entryBase);
sl@0
  1001
	}
sl@0
  1002
sl@0
  1003
/**
sl@0
  1004
@SYMTestCaseID			SYSLIB-ECOM-UT-3560
sl@0
  1005
@SYMTestCaseDesc 		Check that the ProcessEntryL for spi data works correctly when using PLUGIN3 entries in the spi file.
sl@0
  1006
@SYMTestPriority 		High
sl@0
  1007
@SYMTestActions  		Call CDiscoverer::ProcessEntryL().
sl@0
  1008
@SYMTestExpectedResults ecomtesttype3.spi is processed successfully and no leave occurred.
sl@0
  1009
@SYMEC					EC43
sl@0
  1010
*/
sl@0
  1011
void CDiscovererTest::ProcessSpiEntryPlugIn3TestL()
sl@0
  1012
	{
sl@0
  1013
	test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-UT-3560 "));
sl@0
  1014
	TEntry spiEntry;
sl@0
  1015
	test(TheFs.Entry(KEComSpiTestFilePlugIn3PathAndName, spiEntry) == KErrNone);
sl@0
  1016
	TParse spiPath;
sl@0
  1017
	spiPath.Set(KEComSpiTestFilePlugIn3PathAndName, NULL, NULL);
sl@0
  1018
sl@0
  1019
	RResourceArchive resourceArchive;
sl@0
  1020
	resourceArchive.OpenL(TheFs, KEComSpiTestFilePlugIn3PathAndName);
sl@0
  1021
	CleanupClosePushL(resourceArchive);
sl@0
  1022
sl@0
  1023
	// check SPI file type
sl@0
  1024
	TUid type = resourceArchive.Type();
sl@0
  1025
	test(type == KEcomSpiFileTypeUid);
sl@0
  1026
sl@0
  1027
	// there is only 1 resource file
sl@0
  1028
	while(!resourceArchive.End())
sl@0
  1029
		{
sl@0
  1030
		CPluginBase* entry = CSpiPlugin::NewL(resourceArchive);
sl@0
  1031
		CleanupStack::PushL(entry);
sl@0
  1032
sl@0
  1033
		TRAPD(err, iStateAccessor->ProcessEntryL(*iDiscoverer,spiPath.Drive(), entry,ETrue));
sl@0
  1034
		TEST_OOM_ERR;
sl@0
  1035
		test(err == KErrNone);
sl@0
  1036
sl@0
  1037
		CleanupStack::PopAndDestroy(entry);
sl@0
  1038
		entry = NULL;
sl@0
  1039
		}
sl@0
  1040
	CleanupStack::PopAndDestroy(&resourceArchive);
sl@0
  1041
	}
sl@0
  1042
/**
sl@0
  1043
@SYMTestCaseID          SYSLIB-ECOM-UT-3561
sl@0
  1044
@SYMTestCaseDesc	    Tests for the reference of the entry containing the DLL of PLUGIN3 type.
sl@0
  1045
@SYMTestPriority 	    High
sl@0
  1046
@SYMTestActions  	    Call CDiscoverer::ValidateEntryL(). Check the entry returned.
sl@0
  1047
@SYMTestExpectedResults The entry is validated successfully and no leave occurred.
sl@0
  1048
@SYMEC	                EC43
sl@0
  1049
*/
sl@0
  1050
void CDiscovererTest::ValidateEntryPlugIn3TestL()
sl@0
  1051
	{
sl@0
  1052
	test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-UT-3561 "));
sl@0
  1053
	TInt err = KErrNone;
sl@0
  1054
sl@0
  1055
	//This part refers to testing of the entry containing the RSC
sl@0
  1056
	_LIT(KExampleRscFileNameOnly,"EComExample12.rsc");
sl@0
  1057
	TDriveName driveName1(iDriveUnit.Name());
sl@0
  1058
	CPluginBase *entryToFill1 = NULL;
sl@0
  1059
	//Creating an entry that represents the Rsc disovered during scanning of \\resource\\plugins
sl@0
  1060
	TEntry rscEntry;
sl@0
  1061
	rscEntry.iName = KExampleRscFileNameOnly;
sl@0
  1062
	rscEntry.iType = TUidType(KNullUid,KUidInterfaceImplementationCollectionInfo,KNullUid);
sl@0
  1063
sl@0
  1064
	TUid dllUid1 = {KDynamicLibraryUidValue};
sl@0
  1065
	TUid example12Uid = {0x10009E3E};
sl@0
  1066
	TUidType dllUidType = TUidType(dllUid1,KUidInterfaceImplementationCollection,example12Uid);
sl@0
  1067
sl@0
  1068
	//Now call ValidateEntryL() with this entry containg the rsc
sl@0
  1069
	TRAP(err,iStateAccessor->ValidateEntryL(*iDiscoverer,rscEntry,driveName1,entryToFill1, EFalse));
sl@0
  1070
	TEST_OOM_ERR;
sl@0
  1071
	test(err == KErrNone);
sl@0
  1072
	test(entryToFill1->iDllThirdUid == dllUidType[2]);
sl@0
  1073
	TParse dllParse;
sl@0
  1074
	dllParse.Set(KPlugIn3ExampleDllFileName,NULL,NULL);
sl@0
  1075
	test(entryToFill1->iDllName->CompareF(dllParse.NameAndExt()) == 0);
sl@0
  1076
sl@0
  1077
	delete entryToFill1;
sl@0
  1078
	}
sl@0
  1079
sl@0
  1080
/**
sl@0
  1081
@SYMTestCaseID			SYSLIB-ECOM-UT-3562
sl@0
  1082
@SYMTestCaseDesc 		Check that the ValidateEntryL for spi data works correctly when using PLUGIN3 entries in the spi file.
sl@0
  1083
@SYMTestPriority 		High
sl@0
  1084
@SYMTestActions  		Call CDiscoverer::ValidateEntryL(). Check the entry returned.
sl@0
  1085
@SYMTestExpectedResults ecomtesttype3.spi file is validated successfully and no leave occurred.
sl@0
  1086
@SYMEC					EC43
sl@0
  1087
*/
sl@0
  1088
void CDiscovererTest::ValidateSpiEntryPlugIn3TestL()
sl@0
  1089
	{
sl@0
  1090
	test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-UT-3562 "));
sl@0
  1091
	TEntry spiEntry;
sl@0
  1092
	test(TheFs.Entry(KEComSpiTestFilePlugIn3PathAndName, spiEntry) == KErrNone);
sl@0
  1093
	TParse spiPath;
sl@0
  1094
	spiPath.Set(KEComSpiTestFilePlugIn3PathAndName, NULL, NULL);
sl@0
  1095
sl@0
  1096
	TEntry TestEntry;
sl@0
  1097
	TUid uid1 = {0x10000079};
sl@0
  1098
	TUid uid2 = {0x10009D93};
sl@0
  1099
	TUid uid3 = {0x10009E3E}; // Uid for EComExample12.dll
sl@0
  1100
	TestEntry.iType = TUidType(uid1, uid2, uid3);
sl@0
  1101
	TestEntry.iName = KPlugIn3ExampleDllFileNameOnly;
sl@0
  1102
sl@0
  1103
	RResourceArchive resourceArchive;
sl@0
  1104
	resourceArchive.OpenL(TheFs, KEComSpiTestFilePlugIn3PathAndName);
sl@0
  1105
	CleanupClosePushL(resourceArchive);
sl@0
  1106
sl@0
  1107
	// check SPI file type
sl@0
  1108
	TUid type = resourceArchive.Type();
sl@0
  1109
	test(type == KEcomSpiFileTypeUid);
sl@0
  1110
sl@0
  1111
	// there is only 1 resource file
sl@0
  1112
	while(!resourceArchive.End())
sl@0
  1113
		{
sl@0
  1114
		CPluginBase* entryToFill = NULL;
sl@0
  1115
		TRAPD(err, iStateAccessor->ValidateEntryL(*iDiscoverer,resourceArchive,entryToFill));
sl@0
  1116
		CleanupStack::PushL(entryToFill);
sl@0
  1117
sl@0
  1118
		TEST_OOM_ERR;
sl@0
  1119
		test(err == KErrNone);
sl@0
  1120
		test(entryToFill->iDllThirdUid == TestEntry.iType[2]);
sl@0
  1121
sl@0
  1122
		TFileName name1(KEComSpiTestFilePlugIn3DllPathAndName);
sl@0
  1123
		TFileName name2(*(entryToFill->iDllName));
sl@0
  1124
		name1.LowerCase();
sl@0
  1125
		name2.LowerCase();
sl@0
  1126
		TParse dllparse;
sl@0
  1127
		dllparse.Set(name1,NULL,NULL);
sl@0
  1128
		test(dllparse.NameAndExt()== name2);
sl@0
  1129
sl@0
  1130
		CleanupStack::PopAndDestroy(entryToFill); // resourceFile, resourceName, entryToFill
sl@0
  1131
		entryToFill = NULL;
sl@0
  1132
		}
sl@0
  1133
	CleanupStack::PopAndDestroy(&resourceArchive);
sl@0
  1134
	}
sl@0
  1135
sl@0
  1136
/**
sl@0
  1137
The test executes by Registering an Interface Implementation Collection
sl@0
  1138
and later verifing it
sl@0
  1139
sl@0
  1140
@SYMTestCaseID          SYSLIB-ECOM-CT-0718
sl@0
  1141
@SYMTestCaseDesc	    Tests for process entry.
sl@0
  1142
@SYMTestPriority 	    High
sl@0
  1143
@SYMTestActions  	    Register an interface implementation collection and later verifies it.
sl@0
  1144
                        Check for OOM error.
sl@0
  1145
@SYMTestExpectedResults The test must not fail.
sl@0
  1146
@SYMREQ                 REQ0000
sl@0
  1147
*/
sl@0
  1148
void CDiscovererTest::ProcessEntryTestL()
sl@0
  1149
	{
sl@0
  1150
	test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0718 "));
sl@0
  1151
	CPluginBase* entryBase=NULL;
sl@0
  1152
	TInt err=KErrNone;
sl@0
  1153
sl@0
  1154
	//This part refers to testing of the entry containing the RSC
sl@0
  1155
	_LIT(KExampleRscFileNameOnly,"EComExample5.rsc");
sl@0
  1156
	TDriveName driveName1(iDriveUnit.Name());
sl@0
  1157
	TParse path1;
sl@0
  1158
	path1.Set(KNewResourceSearchPath(),NULL,&driveName1);
sl@0
  1159
	//Creating a entry that represents the Rsc disovered during scanning of \\resource\\plugins
sl@0
  1160
	TEntry rscEntry;
sl@0
  1161
	rscEntry.iName=KExampleRscFileNameOnly;
sl@0
  1162
	rscEntry.iType=TUidType(KNullUid,KUidInterfaceImplementationCollectionInfo,KNullUid);
sl@0
  1163
	TUid dllUid1 = {KDynamicLibraryUidValue};
sl@0
  1164
	TUid example5Uid={0x101F847B};
sl@0
  1165
	TUidType dllUidType=TUidType(dllUid1,KUidInterfaceImplementationCollection,example5Uid);
sl@0
  1166
	entryBase=CSecurePlugin::NewL(TheFs,rscEntry,driveName1, EFalse);
sl@0
  1167
	CleanupStack::PushL(entryBase);
sl@0
  1168
sl@0
  1169
	// ProcessEntryL() updates entryToFill with information on a rsc specified by the other params.
sl@0
  1170
	TRAP(err, iStateAccessor->ProcessEntryL(*iDiscoverer,driveName1,entryBase,ETrue));
sl@0
  1171
	TEST_OOM_ERR;
sl@0
  1172
	test(err == KErrNone);
sl@0
  1173
	CleanupStack::PopAndDestroy(entryBase);
sl@0
  1174
	entryBase=NULL;
sl@0
  1175
sl@0
  1176
	}
sl@0
  1177
sl@0
  1178
/**
sl@0
  1179
@SYMTestCaseID		SYSLIB-ECOM-CT-0091
sl@0
  1180
@SYMTestCaseDesc 	Check that the ProcessEntryL for spi data works correctly.
sl@0
  1181
@SYMTestPriority 	High
sl@0
  1182
@SYMTestActions  	Ensure ecomtest.spi can be processed successfully
sl@0
  1183
					and no leave occurred.
sl@0
  1184
@SYMTestExpectedResults The test must not fail.
sl@0
  1185
@SYMREQ REQ3655
sl@0
  1186
*/
sl@0
  1187
void CDiscovererTest::ProcessSpiEntryTestL()
sl@0
  1188
	{
sl@0
  1189
	test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0091 "));
sl@0
  1190
	TEntry spiEntry;
sl@0
  1191
	test(TheFs.Entry(KEComSpiTestFilePathAndName, spiEntry) == KErrNone);
sl@0
  1192
	TParse spiPath;
sl@0
  1193
	spiPath.Set(KEComSpiTestFilePathAndName, NULL, NULL);
sl@0
  1194
sl@0
  1195
	RResourceArchive resourceArchive;
sl@0
  1196
	resourceArchive.OpenL(TheFs, KEComSpiTestFilePathAndName);
sl@0
  1197
	CleanupClosePushL(resourceArchive);
sl@0
  1198
sl@0
  1199
	// check SPI file type
sl@0
  1200
	TUid type = resourceArchive.Type();
sl@0
  1201
	test(type == KEcomSpiFileTypeUid);
sl@0
  1202
sl@0
  1203
	// there is only 1 resource file
sl@0
  1204
	while(!resourceArchive.End())
sl@0
  1205
		{
sl@0
  1206
		CPluginBase* entry = CSpiPlugin::NewL(resourceArchive);
sl@0
  1207
		CleanupStack::PushL(entry);
sl@0
  1208
sl@0
  1209
		TRAPD(err, iStateAccessor->ProcessEntryL(*iDiscoverer,spiPath.Drive(), entry,ETrue));
sl@0
  1210
		TEST_OOM_ERR;
sl@0
  1211
		test(err == KErrNone);
sl@0
  1212
sl@0
  1213
		CleanupStack::PopAndDestroy(entry);
sl@0
  1214
		entry = NULL;
sl@0
  1215
		}
sl@0
  1216
	CleanupStack::PopAndDestroy(&resourceArchive);
sl@0
  1217
	}
sl@0
  1218
/**
sl@0
  1219
The test executes by checking whether discovered plugin entry is valid
sl@0
  1220
sl@0
  1221
@SYMTestCaseID          SYSLIB-ECOM-CT-0719
sl@0
  1222
@SYMTestCaseDesc	    Tests for plugin that resides on C drive
sl@0
  1223
@SYMTestPriority 	    High
sl@0
  1224
@SYMTestActions  	    Tests for the reference of the entry containing in the DLL
sl@0
  1225
                        Check for OOM error.
sl@0
  1226
@SYMTestExpectedResults The test must not fail.
sl@0
  1227
@SYMREQ                 REQ0000
sl@0
  1228
*/
sl@0
  1229
void CDiscovererTest::ValidateEntryTestL()
sl@0
  1230
	{
sl@0
  1231
	test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0719 "));
sl@0
  1232
	TInt err=KErrNone;
sl@0
  1233
sl@0
  1234
	//This part refers to testing of the entry containing the RSC
sl@0
  1235
	_LIT(KExampleRscFileNameOnly,"EComExample5.rsc");
sl@0
  1236
	TDriveName driveName1(iDriveUnit.Name());
sl@0
  1237
	TParse path1;
sl@0
  1238
	CPluginBase *entryToFill1 = NULL;
sl@0
  1239
	path1.Set(KNewResourceSearchPath(),NULL,&driveName1);
sl@0
  1240
	//Creating a entry that represents the Rsc disovered during scanning of \\resource\\plugins
sl@0
  1241
	TEntry rscEntry;
sl@0
  1242
	rscEntry.iName=KExampleRscFileNameOnly;
sl@0
  1243
	rscEntry.iType=TUidType(KNullUid,KUidInterfaceImplementationCollectionInfo,KNullUid);
sl@0
  1244
sl@0
  1245
	TUid dllUid1 = {KDynamicLibraryUidValue};
sl@0
  1246
	TUid example5Uid={0x101F847B};
sl@0
  1247
	TUidType dllUidType=TUidType(dllUid1,KUidInterfaceImplementationCollection,example5Uid);
sl@0
  1248
sl@0
  1249
	//Now call ValidateEntryL() with this entry containg the rsc
sl@0
  1250
	TRAP(err,iStateAccessor->ValidateEntryL(*iDiscoverer,rscEntry,driveName1,entryToFill1, EFalse));
sl@0
  1251
	TEST_OOM_ERR;
sl@0
  1252
	test(err==KErrNone);
sl@0
  1253
	test(entryToFill1->iDllThirdUid==dllUidType[2]);
sl@0
  1254
	TParse dllParse;
sl@0
  1255
	dllParse.Set(KNewExampleDllFileName,NULL,NULL);
sl@0
  1256
	test(entryToFill1->iDllName->CompareF(dllParse.NameAndExt())==0);
sl@0
  1257
sl@0
  1258
	delete entryToFill1;
sl@0
  1259
	}
sl@0
  1260
sl@0
  1261
/**
sl@0
  1262
@SYMTestCaseID		SYSLIB-ECOM-CT-0092
sl@0
  1263
@SYMTestCaseDesc 	Check that the ValidateEntryL for spi data works correctly.
sl@0
  1264
@SYMTestPriority 	High
sl@0
  1265
@SYMTestActions  	Ensure ecomtest.spi can be validated successfully
sl@0
  1266
					and no leave occurred.
sl@0
  1267
@SYMTestExpectedResults The test must not fail.
sl@0
  1268
@SYMREQ REQ3655
sl@0
  1269
*/
sl@0
  1270
void CDiscovererTest::ValidateSpiEntryTestL()
sl@0
  1271
	{
sl@0
  1272
	test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0092 "));
sl@0
  1273
	TEntry spiEntry;
sl@0
  1274
	test(TheFs.Entry(KEComSpiTestFilePathAndName, spiEntry) == KErrNone);
sl@0
  1275
	TParse spiPath;
sl@0
  1276
	spiPath.Set(KEComSpiTestFilePathAndName, NULL, NULL);
sl@0
  1277
sl@0
  1278
	TEntry TestEntry;
sl@0
  1279
	TUid uid1 = {0x10000079};
sl@0
  1280
	TUid uid2 = {0x10009D8D};
sl@0
  1281
	TUid	 uid3 = {0x101F847B}; // Uid for EComExample5.dll
sl@0
  1282
	TestEntry.iType = TUidType(uid1, uid2, uid3);
sl@0
  1283
	TestEntry.iName = KNewExampleDllFileNameOnly;
sl@0
  1284
sl@0
  1285
	RResourceArchive resourceArchive;
sl@0
  1286
	resourceArchive.OpenL(TheFs, KEComSpiTestFilePathAndName);
sl@0
  1287
	CleanupClosePushL(resourceArchive);
sl@0
  1288
sl@0
  1289
	// check SPI file type
sl@0
  1290
	TUid type = resourceArchive.Type();
sl@0
  1291
	test(type == KEcomSpiFileTypeUid);
sl@0
  1292
sl@0
  1293
	// there is only 1 resource file
sl@0
  1294
	while(!resourceArchive.End())
sl@0
  1295
		{
sl@0
  1296
		CPluginBase* entryToFill = NULL;
sl@0
  1297
		TRAPD(err, iStateAccessor->ValidateEntryL(*iDiscoverer,resourceArchive,entryToFill));
sl@0
  1298
		CleanupStack::PushL(entryToFill);
sl@0
  1299
sl@0
  1300
		TEST_OOM_ERR;
sl@0
  1301
		test(err == KErrNone);
sl@0
  1302
		test(entryToFill->iDllThirdUid == TestEntry.iType[2]);
sl@0
  1303
sl@0
  1304
		TFileName name1(KEComSpiTestFileDllPathAndName);
sl@0
  1305
		TFileName name2(*(entryToFill->iDllName));
sl@0
  1306
		name1.LowerCase();
sl@0
  1307
		name2.LowerCase();
sl@0
  1308
		TParse dllparse;
sl@0
  1309
		dllparse.Set(name1,NULL,NULL);
sl@0
  1310
		test(dllparse.NameAndExt()== name2);
sl@0
  1311
sl@0
  1312
		CleanupStack::PopAndDestroy(entryToFill); // resourceFile, resourceName, entryToFill
sl@0
  1313
		entryToFill = NULL;
sl@0
  1314
		}
sl@0
  1315
	CleanupStack::PopAndDestroy(&resourceArchive);
sl@0
  1316
	}
sl@0
  1317
sl@0
  1318
/**
sl@0
  1319
@SYMTestCaseID		SYSLIB-ECOM-CT-0093
sl@0
  1320
@SYMTestCaseDesc 	Check that there is DLL for each resource in SPI file
sl@0
  1321
@SYMTestPriority 	High
sl@0
  1322
@SYMTestActions  	Ensure ecom.spi contents i.e, rsc, actually exist on drive
sl@0
  1323
@SYMTestExpectedResults The test must not fail.
sl@0
  1324
@SYMREQ REQ3655
sl@0
  1325
*/
sl@0
  1326
void CDiscovererTest::ValidateSpiPluginsTestL()
sl@0
  1327
	{
sl@0
  1328
	test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0093 "));
sl@0
  1329
	__UHEAP_MARK;
sl@0
  1330
sl@0
  1331
	TEntry spiEntry;
sl@0
  1332
	TBool err = TheFs.Entry(KEComSPIFilePathAndName, spiEntry);
sl@0
  1333
	// It is possible for ecom.spi file not to exist. If it does not then no testing can be done.
sl@0
  1334
	if(err != KErrNone)
sl@0
  1335
		return;
sl@0
  1336
sl@0
  1337
	TParse spiPath;
sl@0
  1338
	spiPath.Set(KEComSPIFilePathAndName, NULL, NULL);
sl@0
  1339
sl@0
  1340
	//To read the SPI file
sl@0
  1341
	RResourceArchive resourceArchive;
sl@0
  1342
	resourceArchive.OpenL(TheFs, KEComSPIFilePathAndName);
sl@0
  1343
	CleanupClosePushL(resourceArchive);
sl@0
  1344
	CRegistryData::CDriveData* driveData = NULL;
sl@0
  1345
	//Check spi file type
sl@0
  1346
	TUid spiType = resourceArchive.Type();
sl@0
  1347
	test(spiType == KEcomSpiFileTypeUid);
sl@0
  1348
sl@0
  1349
	while(!resourceArchive.End())
sl@0
  1350
		{
sl@0
  1351
		CPluginBase* entryToFill = NULL;
sl@0
  1352
		TRAPD(err, iStateAccessor->ValidateEntryL(*iDiscoverer,resourceArchive,entryToFill));
sl@0
  1353
		CleanupStack::PushL(entryToFill);
sl@0
  1354
sl@0
  1355
		TEST_OOM_ERR;
sl@0
  1356
		test(err == KErrNone);
sl@0
  1357
sl@0
  1358
		CRegistryData::CDllData * dllData=CRegistryData::CDllData::NewLC(*(entryToFill->iDllName),entryToFill->iDllModifiedTime,entryToFill->iDllSecondUid, entryToFill->iDllThirdUid,driveData);
sl@0
  1359
sl@0
  1360
		TBool successful=dllData->ProcessSecurityCheckL();
sl@0
  1361
		if(!successful)
sl@0
  1362
		{
sl@0
  1363
			_LIT(KMessage,"ERROR: Plugin SID Mismatch ERROR for %S.");
sl@0
  1364
			RDebug::Print(KMessage, entryToFill->iDllName);
sl@0
  1365
		}
sl@0
  1366
		test(successful);
sl@0
  1367
sl@0
  1368
		CleanupStack::PopAndDestroy(dllData);
sl@0
  1369
		CleanupStack::PopAndDestroy(entryToFill);
sl@0
  1370
		entryToFill=NULL;
sl@0
  1371
		}
sl@0
  1372
sl@0
  1373
		CleanupStack::PopAndDestroy(&resourceArchive);
sl@0
  1374
	__UHEAP_MARKEND;
sl@0
  1375
	}
sl@0
  1376
sl@0
  1377
sl@0
  1378
/**
sl@0
  1379
Scans plugin directories and verifies successfull completion
sl@0
  1380
sl@0
  1381
@SYMTestCaseID          SYSLIB-ECOM-CT-0720
sl@0
  1382
@SYMTestCaseDesc	    Tests for scanning plugin directories and verifies successfull completion
sl@0
  1383
@SYMTestPriority 	    High
sl@0
  1384
@SYMTestActions  	    Scans registered plugin directories from A to Z drive
sl@0
  1385
@SYMTestExpectedResults The test must not fail.
sl@0
  1386
@SYMREQ                 REQ0000
sl@0
  1387
*/
sl@0
  1388
void CDiscovererTest::ScanDirectoryIncrementTestL()
sl@0
  1389
	{
sl@0
  1390
	test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0720 "));
sl@0
  1391
	TInt err;
sl@0
  1392
	// Scans registered plugin directories from A to Z drive
sl@0
  1393
	TEComCachedDriveInfoIterator iter(*iCachedDriveInfo);
sl@0
  1394
	for(iter.Last(); iter.InRange(); iter.Prev())
sl@0
  1395
		{
sl@0
  1396
		TRAP(err, iStateAccessor->ScanDirectoryL(*iDiscoverer,iter.DriveNumber()));
sl@0
  1397
		TEST_OOM_ERR;
sl@0
  1398
		test(err == KErrNone);
sl@0
  1399
		}
sl@0
  1400
	// After successful completion of ScanDirectoryL, DiscovererObserver is updated
sl@0
  1401
	// with DiscoveriesComplete successful
sl@0
  1402
	// DiscovererObserver is a stub class used in place of CRegistrar. Flags are used for the
sl@0
  1403
	// successfull execution of API
sl@0
  1404
	test(iDiscovererObserver->IsDiscoveriesCompleteSuccessfully());
sl@0
  1405
	}
sl@0
  1406
sl@0
  1407
/**
sl@0
  1408
Stops scaning of plugin directories
sl@0
  1409
sl@0
  1410
@SYMTestCaseID          SYSLIB-ECOM-CT-0722
sl@0
  1411
@SYMTestCaseDesc	    Tests for stopping of scanning plugin directories
sl@0
  1412
@SYMTestPriority 	    High
sl@0
  1413
@SYMTestActions  	    Stops scaning of plugin directories. Check for OOM error.
sl@0
  1414
@SYMTestExpectedResults The test must not fail.
sl@0
  1415
@SYMREQ                 REQ0000
sl@0
  1416
*/
sl@0
  1417
void CDiscovererTest::ScanDirectoryCancelTestL()
sl@0
  1418
	{
sl@0
  1419
	test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0722 "));
sl@0
  1420
	TRAPD(err, iStateAccessor->ScanDirectoryCancel(*iDiscoverer));
sl@0
  1421
	TEST_OOM_ERR;
sl@0
  1422
	test(err == KErrNone);
sl@0
  1423
	test(iStateAccessor->IsDirectoryScanCancelled(*iDiscoverer));
sl@0
  1424
	}
sl@0
  1425
sl@0
  1426
/**
sl@0
  1427
Scaning of plugin directories in Z: drive and C:drive, check these two drives is in drive list
sl@0
  1428
sl@0
  1429
@SYMTestCaseID          SYSLIB-ECOM-UT-1859
sl@0
  1430
@SYMTestCaseDesc	    Tests for scanning plugin directories in specific drives.
sl@0
  1431
@SYMTestPriority 	    High
sl@0
  1432
@SYMTestActions  	    scaning of plugin directories. Check for OOM error.
sl@0
  1433
@SYMTestExpectedResults The test must not fail.
sl@0
  1434
@SYMDEF                 DEF088454
sl@0
  1435
*/
sl@0
  1436
sl@0
  1437
void CDiscovererTest::ScanDirectoryTestL()
sl@0
  1438
	{
sl@0
  1439
	test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-UT-1859 "));
sl@0
  1440
	EComPerformance::ResetEComPerfTimeRecords();
sl@0
  1441
sl@0
  1442
	// Do scan on specific drive
sl@0
  1443
	TRAPD(err, iStateAccessor->ScanDriveL(*iDiscoverer, EDriveZ, ETrue));
sl@0
  1444
	TEST_OOM_ERR;
sl@0
  1445
	test(err == KErrNone);
sl@0
  1446
sl@0
  1447
	TRAP(err, iStateAccessor->ScanDriveL(*iDiscoverer, EDriveC, EFalse));
sl@0
  1448
	TEST_OOM_ERR;
sl@0
  1449
	test(err == KErrNone);
sl@0
  1450
sl@0
  1451
	// Test record information correct
sl@0
  1452
	test(EComPerformance::iEComPerfTimeRecordCount == 4);
sl@0
  1453
	test(EComPerformance::iEComPerfTimeRecords[0].iType == ECDiscovererRediscoveryScanDirectoryL);
sl@0
  1454
	test(EComPerformance::iEComPerfTimeRecords[0].iInfo == EDriveZ);
sl@0
  1455
	test(EComPerformance::iEComPerfTimeRecords[1].iType == ECDiscovererRediscoveryScanDirectoryL);
sl@0
  1456
	test(EComPerformance::iEComPerfTimeRecords[1].iInfo == EDriveZ);
sl@0
  1457
sl@0
  1458
	test(EComPerformance::iEComPerfTimeRecords[2].iType == ECDiscovererRediscoveryScanDirectoryL);
sl@0
  1459
	test(EComPerformance::iEComPerfTimeRecords[2].iInfo == EDriveC);
sl@0
  1460
	test(EComPerformance::iEComPerfTimeRecords[3].iType == ECDiscovererRediscoveryScanDirectoryL);
sl@0
  1461
	test(EComPerformance::iEComPerfTimeRecords[3].iInfo == EDriveC);
sl@0
  1462
	}
sl@0
  1463
sl@0
  1464
/**
sl@0
  1465
@SYMTestCaseID		SYSLIB-ECOM-CT-0185
sl@0
  1466
@SYMTestCaseDesc 	Check that SSA related states transition as expected when discovery is staged
sl@0
  1467
@SYMTestPriority 	High
sl@0
  1468
@SYMTestActions  	Use CDiscoverer::ProcessSSAEventL to start discovery in stages i.e. rom only
sl@0
  1469
then non rom only. Check that the
sl@0
  1470
CDiscoverer state is transitioning correctly at every step.
sl@0
  1471
@SYMTestExpectedResults The test must not fail.
sl@0
  1472
@SYMREQ REQ3655
sl@0
  1473
*/
sl@0
  1474
void CDiscovererTest::StagedDiscoveryStateTransitionTestL()
sl@0
  1475
	{
sl@0
  1476
	test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0185 "));
sl@0
  1477
	//After construction check that:
sl@0
  1478
	//- current state is EDisc_NoPluginsDisc
sl@0
  1479
	//- registry is empty. i.e. no plugins discovered
sl@0
  1480
	test(iStateAccessor->State(*iDiscoverer) == CDiscoverer::EDisc_NoPluginsDisc);
sl@0
  1481
sl@0
  1482
	//Call ProcessSSAEvent with state set to various states that will
sl@0
  1483
	//not cause a transition. Check that:
sl@0
  1484
	//- current state has not changed
sl@0
  1485
	iDiscoverer->ProcessSSAEventL(EStartupStateUndefined);
sl@0
  1486
	test(iStateAccessor->State(*iDiscoverer) == CDiscoverer::EDisc_NoPluginsDisc);
sl@0
  1487
sl@0
  1488
	//Call ProcessSSAEventL with EStartupStateCriticalStatic state.
sl@0
  1489
	//Check that
sl@0
  1490
	//- current state is EDisc_CriticalPluginsDisc
sl@0
  1491
	//- discoverer observer has processed RO plugins
sl@0
  1492
	iDiscoverer->ProcessSSAEventL(EStartupStateCriticalStatic);
sl@0
  1493
	test(iStateAccessor->GetDiscovererObserverState(*iDiscoverer) == CObserverStub::OSS_CriticalPlugins);
sl@0
  1494
	test(iStateAccessor->State(*iDiscoverer) == CDiscoverer::EDisc_CriticalPluginsDisc);
sl@0
  1495
sl@0
  1496
	//Call ProcessSSAEvent with state set to various states that will
sl@0
  1497
	//not cause a transition. Check that:
sl@0
  1498
	//- current state has not changed
sl@0
  1499
	iDiscoverer->ProcessSSAEventL(EStartupStateUndefined);
sl@0
  1500
	test(iStateAccessor->State(*iDiscoverer) == CDiscoverer::EDisc_CriticalPluginsDisc);
sl@0
  1501
	iDiscoverer->ProcessSSAEventL(EStartupStateCriticalStatic);
sl@0
  1502
	test(iStateAccessor->State(*iDiscoverer) == CDiscoverer::EDisc_CriticalPluginsDisc);
sl@0
  1503
sl@0
  1504
	//Call ProcessSSAEventL with EStartupStateNonCritical state. Check that
sl@0
  1505
	//- current state is EDisc_AllPluginsDisc
sl@0
  1506
	//- discoverer observer has processed non-RO plugins
sl@0
  1507
	iDiscoverer->ProcessSSAEventL(EStartupStateNonCritical);
sl@0
  1508
	test(iStateAccessor->GetDiscovererObserverState(*iDiscoverer) == CObserverStub::OSS_AllPlugins);
sl@0
  1509
	test(iStateAccessor->State(*iDiscoverer) == CDiscoverer::EDisc_AllPluginsDisc);
sl@0
  1510
sl@0
  1511
	//Call ProcessSSAEvent with state set to various states that will
sl@0
  1512
	//not cause a transition. Check that:
sl@0
  1513
	//- current state has not changed
sl@0
  1514
	iDiscoverer->ProcessSSAEventL(EStartupStateUndefined);
sl@0
  1515
	test(iStateAccessor->State(*iDiscoverer) == CDiscoverer::EDisc_AllPluginsDisc);
sl@0
  1516
	iDiscoverer->ProcessSSAEventL(EStartupStateCriticalStatic);
sl@0
  1517
	test(iStateAccessor->State(*iDiscoverer) == CDiscoverer::EDisc_AllPluginsDisc);
sl@0
  1518
	iDiscoverer->ProcessSSAEventL(EStartupStateCriticalDynamic);
sl@0
  1519
	test(iStateAccessor->State(*iDiscoverer) == CDiscoverer::EDisc_AllPluginsDisc);
sl@0
  1520
	iDiscoverer->ProcessSSAEventL(EStartupStateNonCritical);
sl@0
  1521
	test(iStateAccessor->State(*iDiscoverer) == CDiscoverer::EDisc_AllPluginsDisc);
sl@0
  1522
sl@0
  1523
	//Call ProcessDNEventL to indicate that current set of plugins is dirty.
sl@0
  1524
	//Check that:
sl@0
  1525
	//- current state is EDisc_PluginsDirty
sl@0
  1526
	iDiscoverer->ProcessDNEventL(CDiscoverer::EPluginsModified, EDriveC);
sl@0
  1527
	test(iStateAccessor->State(*iDiscoverer) == CDiscoverer::EDisc_PluginsDirty);
sl@0
  1528
sl@0
  1529
	//Call ProcessDNEventL to indicate that a rediscovery should take place.
sl@0
  1530
	//Check that:
sl@0
  1531
	//- current state is EDisc_AllPluginsDisc
sl@0
  1532
	iDiscoverer->ProcessDNEventL(CDiscoverer::EPluginsRediscover, EDriveC);
sl@0
  1533
	iStateAccessor->CompleteNotificationProcessing(*iDiscoverer);
sl@0
  1534
	test(iStateAccessor->State(*iDiscoverer) == CDiscoverer::EDisc_AllPluginsDisc);
sl@0
  1535
	}
sl@0
  1536
sl@0
  1537
/**
sl@0
  1538
@SYMTestCaseID		SYSLIB-ECOM-CT-0186
sl@0
  1539
@SYMTestCaseDesc 	Check that SSA related states transition as expected when discovery is all at once
sl@0
  1540
@SYMTestPriority 	High
sl@0
  1541
@SYMTestActions  	Use CDiscoverer::ProcessSSAEventL to start discovery all at once. Check that the
sl@0
  1542
CDiscoverer state is transitioning correctly at every step.
sl@0
  1543
@SYMTestExpectedResults The test must not fail.
sl@0
  1544
@SYMREQ REQ3655
sl@0
  1545
*/
sl@0
  1546
void CDiscovererTest::AllAtOnceDiscoveryStateTransitionTestL()
sl@0
  1547
	{
sl@0
  1548
	test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0186 "));
sl@0
  1549
	//After construction check that:
sl@0
  1550
	//- current state is EDisc_NoPluginsDisc
sl@0
  1551
	//- registry is empty. i.e. no plugins discovered
sl@0
  1552
	test(iStateAccessor->State(*iDiscoverer) == CDiscoverer::EDisc_NoPluginsDisc);
sl@0
  1553
sl@0
  1554
	//Call ProcessSSAEvent with state set to various states that will
sl@0
  1555
	//not cause a transition. Check that:
sl@0
  1556
	//- current state has not changed
sl@0
  1557
	iDiscoverer->ProcessSSAEventL(EStartupStateUndefined);
sl@0
  1558
	test(iStateAccessor->State(*iDiscoverer) == CDiscoverer::EDisc_NoPluginsDisc);
sl@0
  1559
sl@0
  1560
	//Call ProcessSSAEventL with EStartupStateNonCritical state. Check that
sl@0
  1561
	//- current state is EDisc_AllPluginsDisc
sl@0
  1562
	//- discoverer observer has processed non-RO plugins
sl@0
  1563
	iDiscoverer->ProcessSSAEventL(EStartupStateNonCritical);
sl@0
  1564
	test(iStateAccessor->GetDiscovererObserverState(*iDiscoverer) == CObserverStub::OSS_AllPlugins);
sl@0
  1565
	test(iStateAccessor->State(*iDiscoverer) == CDiscoverer::EDisc_AllPluginsDisc);
sl@0
  1566
sl@0
  1567
	//Call ProcessSSAEvent with state set to various states that will
sl@0
  1568
	//not cause a transition. Check that:
sl@0
  1569
	//- current state has not changed
sl@0
  1570
	iDiscoverer->ProcessSSAEventL(EStartupStateUndefined);
sl@0
  1571
	test(iStateAccessor->State(*iDiscoverer) == CDiscoverer::EDisc_AllPluginsDisc);
sl@0
  1572
	iDiscoverer->ProcessSSAEventL(EStartupStateCriticalStatic);
sl@0
  1573
	test(iStateAccessor->State(*iDiscoverer) == CDiscoverer::EDisc_AllPluginsDisc);
sl@0
  1574
	iDiscoverer->ProcessSSAEventL(EStartupStateCriticalDynamic);
sl@0
  1575
	test(iStateAccessor->State(*iDiscoverer) == CDiscoverer::EDisc_AllPluginsDisc);
sl@0
  1576
	iDiscoverer->ProcessSSAEventL(EStartupStateNonCritical);
sl@0
  1577
	test(iStateAccessor->State(*iDiscoverer) == CDiscoverer::EDisc_AllPluginsDisc);
sl@0
  1578
sl@0
  1579
	//Call ProcessDNEventL to indicate that current set of plugins is dirty.
sl@0
  1580
	//Check that:
sl@0
  1581
	//- current state is EDisc_PluginsDirty
sl@0
  1582
	iDiscoverer->ProcessDNEventL(CDiscoverer::EPluginsModified, EDriveC);
sl@0
  1583
	test(iStateAccessor->State(*iDiscoverer) == CDiscoverer::EDisc_PluginsDirty);
sl@0
  1584
sl@0
  1585
	//Call ProcessDNEventL to indicate that a rediscovery should take place.
sl@0
  1586
	//Check that:
sl@0
  1587
	//- current state is EDisc_AllPluginsDisc
sl@0
  1588
	iDiscoverer->ProcessDNEventL(CDiscoverer::EPluginsRediscover, EDriveC);
sl@0
  1589
	iStateAccessor->CompleteNotificationProcessing(*iDiscoverer);
sl@0
  1590
	test(iStateAccessor->State(*iDiscoverer) == CDiscoverer::EDisc_AllPluginsDisc);
sl@0
  1591
	}
sl@0
  1592
sl@0
  1593
/**
sl@0
  1594
@SYMTestCaseID          SYSLIB-ECOM-UT-1796
sl@0
  1595
@SYMTestCaseDesc	    Tests multiple notification processing for
sl@0
  1596
						"INC087110: ECOM rescanning code could miss a drive?" and
sl@0
  1597
						"DEF088454: [PCB] ECOM CDiscoverer::CIdleScanningTimer::RunL() Performs Unnecessary Tasks"
sl@0
  1598
@SYMTestPriority 	    High
sl@0
  1599
@SYMTestActions  	    Create multiple notification request on both single drive and multiple drives.
sl@0
  1600
						Check if the notifications are ONLY processed on corresponding drive(s) by timer.
sl@0
  1601
						Check the notifications are processed properly by timer.
sl@0
  1602
						Check the state of discoverer was set correctly on completion.
sl@0
  1603
@SYMTestExpectedResults The test must not fail.
sl@0
  1604
@SYMDEF                 INC087110, DEF088454
sl@0
  1605
*/
sl@0
  1606
void CDiscovererTest::MultipleNotificationProcessingTestL()
sl@0
  1607
	{
sl@0
  1608
	test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-UT-1796 "));
sl@0
  1609
	TBool pending = EFalse;
sl@0
  1610
sl@0
  1611
	// Multiple notification on single drive:
sl@0
  1612
	iDiscoverer->ProcessSSAEventL(EStartupStateNonCritical);
sl@0
  1613
	// Raise multiple notification on C: drive
sl@0
  1614
	for(TInt num = 0; num < 10; ++num)
sl@0
  1615
		{
sl@0
  1616
		iDiscoverer->ProcessDNEventL(CDiscoverer::EPluginsModified, EDriveC);
sl@0
  1617
		iDiscoverer->ProcessDNEventL(CDiscoverer::EPluginsRediscover, EDriveC);
sl@0
  1618
		}
sl@0
  1619
sl@0
  1620
	// Check only one pending drive in the list.
sl@0
  1621
	test(iStateAccessor->PendingDriveListCount(*iDiscoverer) == 1);
sl@0
  1622
	// Check the pending drive is C: drive
sl@0
  1623
	pending = iStateAccessor->IsScanDirectoryPending(*iDiscoverer, EDriveC);
sl@0
  1624
	test(pending);
sl@0
  1625
sl@0
  1626
	// Start Active Scheduler and shut it down in 3 secs, it will launch RunL of timer to process
sl@0
  1627
	// all pending notification.
sl@0
  1628
	iShutdown.StartAfter(KOneSecond * 3);
sl@0
  1629
	CActiveScheduler::Start();
sl@0
  1630
sl@0
  1631
	// Check if notifications have been processed on all drives.
sl@0
  1632
	test(iStateAccessor->IsScanDirectoryComplete(*iDiscoverer));
sl@0
  1633
sl@0
  1634
	// Multiple notification on multiple drives:
sl@0
  1635
	iDiscoverer->ProcessSSAEventL(EStartupStateNonCritical);
sl@0
  1636
	// Raise multiple notification on C: drive
sl@0
  1637
	for(TInt num = 0; num < 10; ++num)
sl@0
  1638
		{
sl@0
  1639
		iDiscoverer->ProcessDNEventL(CDiscoverer::EPluginsModified, EDriveC);
sl@0
  1640
		iDiscoverer->ProcessDNEventL(CDiscoverer::EPluginsRediscover, EDriveC);
sl@0
  1641
		}
sl@0
  1642
#if defined(__WINSCW__) // X: drive on emulator
sl@0
  1643
	// Raise multiple notification on X: drive
sl@0
  1644
	for(TInt num = 0; num < 10; ++num)
sl@0
  1645
		{
sl@0
  1646
		iDiscoverer->ProcessDNEventL(CDiscoverer::EPluginsModified, EDriveX);
sl@0
  1647
		iDiscoverer->ProcessDNEventL(CDiscoverer::EPluginsRediscover, EDriveX);
sl@0
  1648
		}
sl@0
  1649
sl@0
  1650
#else // E: drive on HW
sl@0
  1651
	// Raise multiple notification on E: drive
sl@0
  1652
	for(TInt num = 0; num < 10; ++num)
sl@0
  1653
		{
sl@0
  1654
		iDiscoverer->ProcessDNEventL(CDiscoverer::EPluginsModified, EDriveE);
sl@0
  1655
		iDiscoverer->ProcessDNEventL(CDiscoverer::EPluginsRediscover, EDriveE);
sl@0
  1656
		}
sl@0
  1657
#endif	// __WINSCW__
sl@0
  1658
sl@0
  1659
	// Check only one pending drive in the list.
sl@0
  1660
	test(iStateAccessor->PendingDriveListCount(*iDiscoverer) == 2);
sl@0
  1661
sl@0
  1662
	// Check the pending drive are C: and X: on emulator, or C: and E: on hardware.
sl@0
  1663
	pending = iStateAccessor->IsScanDirectoryPending(*iDiscoverer, EDriveC);
sl@0
  1664
	test(pending);
sl@0
  1665
#if defined(__WINSCW__) // X: drive on emulator
sl@0
  1666
	pending = iStateAccessor->IsScanDirectoryPending(*iDiscoverer, EDriveX);
sl@0
  1667
	test(pending);
sl@0
  1668
#else // E: drive on HW
sl@0
  1669
	pending = iStateAccessor->IsScanDirectoryPending(*iDiscoverer, EDriveE);
sl@0
  1670
	test(pending);
sl@0
  1671
#endif	// __WINSCW__
sl@0
  1672
sl@0
  1673
	// Start Active Scheduler and shut it down in 3 secs, it will launch RunL of timer to process
sl@0
  1674
	// all pending notification.
sl@0
  1675
	iShutdown.StartAfter(KOneSecond * 3);
sl@0
  1676
	CActiveScheduler::Start();
sl@0
  1677
sl@0
  1678
	// Check if notifications have been processed on all drives.
sl@0
  1679
	test(iStateAccessor->IsScanDirectoryComplete(*iDiscoverer));
sl@0
  1680
	}
sl@0
  1681
sl@0
  1682
/**
sl@0
  1683
@SYMTestCaseID          SYSLIB-ECOM-UT-3519
sl@0
  1684
@SYMTestCaseDesc	    Tests notification processing during SWI for
sl@0
  1685
						PDEF110201: Undesireable interaction between ECOM and SWI
sl@0
  1686
@SYMTestActions  	    Create notification request on  drives.
sl@0
  1687
						Check the notifications are not processed by timer if SWI in progress.
sl@0
  1688
						Check that timer processes pending notifications after SWI completes
sl@0
  1689
@SYMTestExpectedResults The test must not fail.
sl@0
  1690
@SYMDEF                 PDEF110201
sl@0
  1691
*/
sl@0
  1692
void CDiscovererTest::SWINotificationProcessingTestL()
sl@0
  1693
	{
sl@0
  1694
	test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-UT-3519 "));
sl@0
  1695
sl@0
  1696
	//Begin SWI
sl@0
  1697
	iStateAccessor->SwiChangeNotificationL(*iDiscoverer,ESASwisInstall);
sl@0
  1698
sl@0
  1699
	iDiscoverer->ProcessSSAEventL(EStartupStateNonCritical);
sl@0
  1700
sl@0
  1701
	// Raise a notification on C: drive
sl@0
  1702
	iDiscoverer->ProcessDNEventL(CDiscoverer::EPluginsModified, EDriveC);
sl@0
  1703
	iDiscoverer->ProcessDNEventL(CDiscoverer::EPluginsRediscover, EDriveC);
sl@0
  1704
sl@0
  1705
	// Start Active Scheduler and shut it down in 3 secs, it will launch RunL of timer to process
sl@0
  1706
	// all pending notification.
sl@0
  1707
	iShutdown.StartAfter(KOneSecond * 3);
sl@0
  1708
	CActiveScheduler::Start();
sl@0
  1709
sl@0
  1710
	// Check that notifications have NOT been processed as SWI is in progress
sl@0
  1711
	test(!iStateAccessor->IsScanDirectoryComplete(*iDiscoverer));
sl@0
  1712
sl@0
  1713
	//complete SWI
sl@0
  1714
	iStateAccessor->SwiChangeNotificationL(*iDiscoverer,ESASwisUninstall);
sl@0
  1715
sl@0
  1716
sl@0
  1717
#if defined(__WINSCW__) // X: drive on emulator
sl@0
  1718
	// Raise  notification on X: drive
sl@0
  1719
	iDiscoverer->ProcessDNEventL(CDiscoverer::EPluginsModified, EDriveX);
sl@0
  1720
	iDiscoverer->ProcessDNEventL(CDiscoverer::EPluginsRediscover, EDriveX);
sl@0
  1721
#else // E: drive on HW
sl@0
  1722
	// Raise notification on E: drive
sl@0
  1723
	iDiscoverer->ProcessDNEventL(CDiscoverer::EPluginsModified, EDriveE);
sl@0
  1724
	iDiscoverer->ProcessDNEventL(CDiscoverer::EPluginsRediscover, EDriveE);
sl@0
  1725
#endif	// __WINSCW__
sl@0
  1726
sl@0
  1727
	// Start Active Scheduler and shut it down in 3 secs, it will launch RunL of timer to process
sl@0
  1728
	// all pending notification.
sl@0
  1729
	iShutdown.StartAfter(KOneSecond * 3);
sl@0
  1730
	CActiveScheduler::Start();
sl@0
  1731
sl@0
  1732
	// Check that notifications have NOT been processed as SWI is not finished
sl@0
  1733
	test(!iStateAccessor->IsScanDirectoryComplete(*iDiscoverer));
sl@0
  1734
sl@0
  1735
	//finalise SWI
sl@0
  1736
	iStateAccessor->SwiChangeNotificationL(*iDiscoverer,ESASwisNone);
sl@0
  1737
sl@0
  1738
	// Start Active Scheduler and shut it down in 3 secs, it will launch RunL of timer to process
sl@0
  1739
	// all pending notification.
sl@0
  1740
	iShutdown.StartAfter(KOneSecond * 3);
sl@0
  1741
	CActiveScheduler::Start();
sl@0
  1742
sl@0
  1743
	// Check that notifications have been processed on all drives
sl@0
  1744
	test(iStateAccessor->IsScanDirectoryComplete(*iDiscoverer));
sl@0
  1745
sl@0
  1746
	//Begin SWI
sl@0
  1747
	iStateAccessor->SwiChangeNotificationL(*iDiscoverer,ESASwisInstall);
sl@0
  1748
sl@0
  1749
	iDiscoverer->ProcessSSAEventL(EStartupStateNonCritical);
sl@0
  1750
sl@0
  1751
	// Raise a notification
sl@0
  1752
	iDiscoverer->ProcessDNEventL(CDiscoverer::EPluginsModified,EDriveC);
sl@0
  1753
	iDiscoverer->ProcessDNEventL(CDiscoverer::EPluginsRediscover,EDriveC);
sl@0
  1754
sl@0
  1755
	// Start Active Scheduler and shut it down in 3 secs, it will launch RunL of timer to process
sl@0
  1756
	// all pending notification.
sl@0
  1757
	iShutdown.StartAfter(KOneSecond * 3);
sl@0
  1758
	CActiveScheduler::Start();
sl@0
  1759
sl@0
  1760
	// Check that notifications have NOT been processed as SWI is in progress
sl@0
  1761
	test(!iStateAccessor->IsScanDirectoryComplete(*iDiscoverer));
sl@0
  1762
sl@0
  1763
	//Simulate an error in reading the P&S Variable - This should reset the
sl@0
  1764
	//SWI state to ESASwisNone in the same way as completing SWI
sl@0
  1765
	iStateAccessor->SwiChangeNotifierRunError(*iDiscoverer,KErrNotFound);
sl@0
  1766
sl@0
  1767
	// Start Active Scheduler and shut it down in 3 secs, it will launch RunL of timer to process
sl@0
  1768
	// all pending notification.
sl@0
  1769
	iShutdown.StartAfter(KOneSecond * 3);
sl@0
  1770
	CActiveScheduler::Start();
sl@0
  1771
sl@0
  1772
	// Check that notifications have been processed on all drives
sl@0
  1773
	test(iStateAccessor->IsScanDirectoryComplete(*iDiscoverer));
sl@0
  1774
	}
sl@0
  1775
sl@0
  1776
/**
sl@0
  1777
Call the TDiscoverer_StateAccessor::IdleScanningTimerRunErrorL funtion
sl@0
  1778
passing in a reference to the CDiscoverer object and the error code
sl@0
  1779
to be passed to the CIdleScanningTimer::RunError function
sl@0
  1780
*/
sl@0
  1781
void CDiscovererTest::IdleScanningTimerRunErrorL()
sl@0
  1782
	{
sl@0
  1783
	iStateAccessor->IdleScanningTimerRunErrorL(*iDiscoverer, EEComPanic_CDiscoverer_CIdleScanningTimer_RunError);
sl@0
  1784
	}
sl@0
  1785
sl@0
  1786
/**
sl@0
  1787
Call the TDiscoverer_StateAccessor::IdleScanningTimerRunErrorL funtion
sl@0
  1788
passing in a reference to the CDiscoverer object and the error code
sl@0
  1789
to be passed to the CDirChangeNotifier::RunError function
sl@0
  1790
*/
sl@0
  1791
void CDiscovererTest::DirChangeNotifierRunErrorL()
sl@0
  1792
	{
sl@0
  1793
	iStateAccessor->DirChangeNotifierRunErrorL(*iDiscoverer, EEComPanic_CDiscoverer_CDirChangeNotifier_RunError);
sl@0
  1794
	}
sl@0
  1795
sl@0
  1796
/**
sl@0
  1797
Call the TDiscoverer_StateAccessor::IdleScanningTimerRunErrorL funtion
sl@0
  1798
passing in a reference to the CDiscoverer object and the error code
sl@0
  1799
to be passed to the CSwiChangeNotifier::RunError function
sl@0
  1800
*/
sl@0
  1801
void CDiscovererTest::SwiChangeNotifierRunError()
sl@0
  1802
	{
sl@0
  1803
	iStateAccessor->SwiChangeNotifierRunError(*iDiscoverer, KErrNoMemory);
sl@0
  1804
	}
sl@0
  1805
/**
sl@0
  1806
@SYMTestCaseID          SYSLIB-ECOM-UT-3172
sl@0
  1807
@SYMTestCaseDesc	    Tests language switch notification processing for
sl@0
  1808
						"CR0902: Enable Dynamic Language Switching in APPARC, ECOM and EIKSTD"
sl@0
  1809
@SYMTestPriority 	    High
sl@0
  1810
@SYMTestActions  	    Call ProcessSSAEventL with EStartupStateNonCritical state.
sl@0
  1811
						Call DriveMountedL to build up drives in system.
sl@0
  1812
						Call LanguageChangedL to raise multiple notification on all drives in system.
sl@0
  1813
						Check if the notifications are processed on all drive(s) by timer.
sl@0
  1814
						Check the notifications are processed properly by timer.
sl@0
  1815
						Check the state of discoverer was set correctly on completion.
sl@0
  1816
@SYMTestExpectedResults The test must not fail.
sl@0
  1817
@SYMDEF                 CR0902
sl@0
  1818
*/
sl@0
  1819
void CDiscovererTest::LanguageChangedNotificationTestL()
sl@0
  1820
	{
sl@0
  1821
	test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-UT-3172 "));
sl@0
  1822
	TBool pending = EFalse;
sl@0
  1823
sl@0
  1824
	//Call ProcessSSAEventL with EStartupStateNonCritical state
sl@0
  1825
	iDiscoverer->ProcessSSAEventL(EStartupStateNonCritical);
sl@0
  1826
sl@0
  1827
	if(iStateAccessor->IsDriveMounted(*iDiscoverer, EDriveK))
sl@0
  1828
		{
sl@0
  1829
		TRAPD(err, iStateAccessor->DriveUnmountedL(*iDiscoverer, EDriveK));
sl@0
  1830
		TEST_OOM_ERR;
sl@0
  1831
		test(err == KErrNone);
sl@0
  1832
		}
sl@0
  1833
sl@0
  1834
	// Mount drives on system
sl@0
  1835
	TRAPD(err, iStateAccessor->DriveMountedL(*iDiscoverer, EDriveZ));
sl@0
  1836
	TEST_OOM_ERR;
sl@0
  1837
	test(err == KErrNone);
sl@0
  1838
sl@0
  1839
	TRAP(err, iStateAccessor->DriveMountedL(*iDiscoverer, EDriveC));
sl@0
  1840
	TEST_OOM_ERR;
sl@0
  1841
	test(err == KErrNone);
sl@0
  1842
sl@0
  1843
#if defined(__WINSCW__) // X: drive on emulator
sl@0
  1844
	TRAP(err, iStateAccessor->DriveMountedL(*iDiscoverer, EDriveX));
sl@0
  1845
	TEST_OOM_ERR;
sl@0
  1846
	test(err == KErrNone);
sl@0
  1847
#else // E: drive on HW
sl@0
  1848
	TRAP(err, iStateAccessor->DriveMountedL(*iDiscoverer, EDriveE));
sl@0
  1849
	TEST_OOM_ERR;
sl@0
  1850
	test(err == KErrNone);
sl@0
  1851
#endif
sl@0
  1852
sl@0
  1853
	// Multiple notification on all drives:
sl@0
  1854
	iStateAccessor->LanguageChangedL(*iDiscoverer);
sl@0
  1855
sl@0
  1856
	// Check three pending drive in the list.
sl@0
  1857
	test(iStateAccessor->PendingDriveListCount(*iDiscoverer) == 3);
sl@0
  1858
	// Check the pending drive is Z: drive
sl@0
  1859
	pending = iStateAccessor->IsScanDirectoryPending(*iDiscoverer, EDriveZ);
sl@0
  1860
	test(pending);
sl@0
  1861
sl@0
  1862
	// Check the pending drive is C: drive
sl@0
  1863
	pending = iStateAccessor->IsScanDirectoryPending(*iDiscoverer, EDriveC);
sl@0
  1864
	test(pending);
sl@0
  1865
sl@0
  1866
#if defined(__WINSCW__) // X: drive on emulator
sl@0
  1867
	pending = iStateAccessor->IsScanDirectoryPending(*iDiscoverer, EDriveX);
sl@0
  1868
	test(pending);
sl@0
  1869
#else // E: drive on HW
sl@0
  1870
	pending = iStateAccessor->IsScanDirectoryPending(*iDiscoverer, EDriveE);
sl@0
  1871
	test(pending);
sl@0
  1872
#endif	// __WINSCW__
sl@0
  1873
sl@0
  1874
	// Start Active Scheduler and shut it down in 3 secs, it will launch RunL of timer to process
sl@0
  1875
	// all pending notification.
sl@0
  1876
	iShutdown.StartAfter(KOneSecond * 3);
sl@0
  1877
	CActiveScheduler::Start();
sl@0
  1878
sl@0
  1879
	// Check if notifications have been processed on all drives.
sl@0
  1880
	test(iStateAccessor->IsScanDirectoryComplete(*iDiscoverer));
sl@0
  1881
sl@0
  1882
	}
sl@0
  1883
sl@0
  1884
/**
sl@0
  1885
@SYMTestCaseID          SYSLIB-ECOM-CT-0723
sl@0
  1886
@SYMTestCaseDesc	    Tests the creation and deletion of CDiscoverer
sl@0
  1887
@SYMTestPriority 	    High
sl@0
  1888
@SYMTestActions  	    Create and delete CDiscoverer object,checks for open handles
sl@0
  1889
@SYMTestExpectedResults The test must not fail.
sl@0
  1890
@SYMREQ                 REQ0000
sl@0
  1891
*/
sl@0
  1892
LOCAL_C void CreateDeleteTestL()
sl@0
  1893
	{
sl@0
  1894
	test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0723 CreateDeleteTestL "));
sl@0
  1895
	//
sl@0
  1896
	// Tests the Creating and deletion of CDiscoverer
sl@0
  1897
	// ------------------------------------------------------------------
sl@0
  1898
	//
sl@0
  1899
	// Set up for heap leak checking
sl@0
  1900
	__UHEAP_MARK;
sl@0
  1901
sl@0
  1902
	//Check Thread handles leak
sl@0
  1903
	TInt startProcessHandleCount = 0;
sl@0
  1904
	TInt startThreadHandleCount = 0;
sl@0
  1905
	TInt endProcessHandleCount = 0;
sl@0
  1906
	TInt endThreadHandleCount = 0;
sl@0
  1907
sl@0
  1908
	RThread rThread;
sl@0
  1909
	rThread.HandleCount(startProcessHandleCount, startThreadHandleCount);
sl@0
  1910
sl@0
  1911
	//START CREATE DELETE TEST//
sl@0
  1912
sl@0
  1913
	CDiscovererTest* discTest = CDiscovererTest::NewL();
sl@0
  1914
sl@0
  1915
	test(discTest != NULL);
sl@0
  1916
sl@0
  1917
	delete discTest;
sl@0
  1918
sl@0
  1919
	//END CREATE DELETE TEST//
sl@0
  1920
sl@0
  1921
	// Check for open handles
sl@0
  1922
	rThread.HandleCount(endProcessHandleCount, endThreadHandleCount);
sl@0
  1923
	test(startThreadHandleCount == endThreadHandleCount);
sl@0
  1924
sl@0
  1925
	//Test ends
sl@0
  1926
	__UHEAP_MARKEND;
sl@0
  1927
	}
sl@0
  1928
sl@0
  1929
/**
sl@0
  1930
@SYMTestCaseID          SYSLIB-ECOM-CT-0724
sl@0
  1931
@SYMTestCaseDesc	    OOM test for create and delete of CDiscoverer.
sl@0
  1932
@SYMTestPriority 	    High
sl@0
  1933
@SYMTestActions  	    Create and delete CDiscoverer object,checks for any memory leak.
sl@0
  1934
@SYMTestExpectedResults The test must not fail.
sl@0
  1935
@SYMREQ                 REQ0000
sl@0
  1936
*/
sl@0
  1937
LOCAL_C void OOMCreateDeleteTest()
sl@0
  1938
	{
sl@0
  1939
	test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0724 OOM CreateDeleteTest "));
sl@0
  1940
	TInt err;
sl@0
  1941
	TInt failAt = 1;
sl@0
  1942
	__UNUSED_VAR(failAt);
sl@0
  1943
sl@0
  1944
	CDiscovererTest* discTest = NULL;
sl@0
  1945
sl@0
  1946
	do
sl@0
  1947
		{
sl@0
  1948
		__UHEAP_MARK;
sl@0
  1949
  		// find out the number of open handles
sl@0
  1950
		TInt startProcessHandleCount;
sl@0
  1951
		TInt startThreadHandleCount;
sl@0
  1952
		RThread().HandleCount(startProcessHandleCount, startThreadHandleCount);
sl@0
  1953
sl@0
  1954
		__UHEAP_SETFAIL(RHeap::EDeterministic, failAt++);
sl@0
  1955
sl@0
  1956
		TRAP(err, discTest = CDiscovererTest::NewL());
sl@0
  1957
sl@0
  1958
		__UHEAP_SETFAIL(RHeap::ENone, 0);
sl@0
  1959
sl@0
  1960
		delete discTest;
sl@0
  1961
		discTest = NULL;
sl@0
  1962
sl@0
  1963
		// check that no handles have leaked
sl@0
  1964
		TInt endProcessHandleCount;
sl@0
  1965
		TInt endThreadHandleCount;
sl@0
  1966
		RThread().HandleCount(endProcessHandleCount, endThreadHandleCount);
sl@0
  1967
sl@0
  1968
		test(startProcessHandleCount == endProcessHandleCount);
sl@0
  1969
		test(startThreadHandleCount  == endThreadHandleCount);
sl@0
  1970
sl@0
  1971
		__UHEAP_MARKEND;
sl@0
  1972
		}
sl@0
  1973
	while(err == KErrNoMemory);
sl@0
  1974
sl@0
  1975
	test.Printf(_L("- Succeeded at heap failure rate of %i\n"), failAt);
sl@0
  1976
	test(err == KErrNone);
sl@0
  1977
	}
sl@0
  1978
sl@0
  1979
// Type definition for pointer to member function.
sl@0
  1980
// Used in calling the CDiscovererTest member function for testing.
sl@0
  1981
typedef void (CDiscovererTest::*ClassFuncPtrL) (void);
sl@0
  1982
sl@0
  1983
/**
sl@0
  1984
@SYMTestCaseID          SYSLIB-ECOM-CT-0725
sl@0
  1985
@SYMTestCaseDesc	    Function to call all test functions
sl@0
  1986
@SYMTestPriority 	    High
sl@0
  1987
@SYMTestActions  	    Calls up test function of CDiscovererTest.
sl@0
  1988
@SYMTestExpectedResults The test must not fail.
sl@0
  1989
@SYMREQ                 REQ0000
sl@0
  1990
*/
sl@0
  1991
/**
sl@0
  1992
Wrapper function to call all test functions
sl@0
  1993
sl@0
  1994
@param		testFunc pointer to test function
sl@0
  1995
@param		aTestDesc test function name
sl@0
  1996
*/
sl@0
  1997
LOCAL_C void DoBasicTestL(ClassFuncPtrL testFuncL, const TDesC& aTestDesc)
sl@0
  1998
	{
sl@0
  1999
	test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0725 "));
sl@0
  2000
	test.Next(aTestDesc);
sl@0
  2001
sl@0
  2002
	__UHEAP_MARK;
sl@0
  2003
  	// find out the number of open handles
sl@0
  2004
	TInt startProcessHandleCount;
sl@0
  2005
	TInt startThreadHandleCount;
sl@0
  2006
	RThread().HandleCount(startProcessHandleCount, startThreadHandleCount);
sl@0
  2007
sl@0
  2008
	CDiscovererTest* discTest = CDiscovererTest::NewL();
sl@0
  2009
	CleanupStack::PushL(discTest);
sl@0
  2010
sl@0
  2011
	(discTest->*testFuncL)();
sl@0
  2012
sl@0
  2013
	CleanupStack::PopAndDestroy(discTest);
sl@0
  2014
sl@0
  2015
	// check that no handles have leaked
sl@0
  2016
	TInt endProcessHandleCount;
sl@0
  2017
	TInt endThreadHandleCount;
sl@0
  2018
	RThread().HandleCount(endProcessHandleCount, endThreadHandleCount);
sl@0
  2019
sl@0
  2020
	test(startProcessHandleCount == endProcessHandleCount);
sl@0
  2021
	test(startThreadHandleCount  == endThreadHandleCount);
sl@0
  2022
sl@0
  2023
	__UHEAP_MARKEND;
sl@0
  2024
	}
sl@0
  2025
sl@0
  2026
/**
sl@0
  2027
Utility function to continually invoke a test function and cause memory allocation failures
sl@0
  2028
sl@0
  2029
@param		testFuncL pointer to OOM test function
sl@0
  2030
@param	 	tryCount specifies what value to start memory allocation failures at
sl@0
  2031
@param		increment how much to increase the point at which memory allocation will fail on each test attempt
sl@0
  2032
@param		stopCount the value of memory allocation failure to stop testing at
sl@0
  2033
*/
sl@0
  2034
TInt RunTestUnderOOMCondition(ClassFuncPtrL testFuncL, TInt tryCount, TInt increment, TInt stopCount)
sl@0
  2035
{
sl@0
  2036
	TInt err = KErrNone;
sl@0
  2037
sl@0
  2038
	do
sl@0
  2039
		{
sl@0
  2040
sl@0
  2041
		__UHEAP_MARK;
sl@0
  2042
  		// find out the number of open handles
sl@0
  2043
		TInt startProcessHandleCount;
sl@0
  2044
		TInt startThreadHandleCount;
sl@0
  2045
		RThread().HandleCount(startProcessHandleCount, startThreadHandleCount);
sl@0
  2046
sl@0
  2047
		CDiscovererTest* discTest = CDiscovererTest::NewL();
sl@0
  2048
		CleanupStack::PushL(discTest);
sl@0
  2049
sl@0
  2050
sl@0
  2051
		__UHEAP_SETFAIL(RHeap::EDeterministic, tryCount);
sl@0
  2052
		TRAP(err, (discTest->*testFuncL)());
sl@0
  2053
		__UHEAP_SETFAIL(RHeap::ENone, 0);
sl@0
  2054
sl@0
  2055
sl@0
  2056
		CleanupStack::PopAndDestroy(discTest);
sl@0
  2057
		discTest = NULL;
sl@0
  2058
sl@0
  2059
		// check that no handles have leaked
sl@0
  2060
		TInt endProcessHandleCount;
sl@0
  2061
		TInt endThreadHandleCount;
sl@0
  2062
		RThread().HandleCount(endProcessHandleCount, endThreadHandleCount);
sl@0
  2063
sl@0
  2064
		test(startProcessHandleCount == endProcessHandleCount);
sl@0
  2065
		test(startThreadHandleCount  == endThreadHandleCount);
sl@0
  2066
sl@0
  2067
		__UHEAP_MARKEND;
sl@0
  2068
sl@0
  2069
	 	tryCount = tryCount + increment;
sl@0
  2070
		} while((err == KErrNoMemory) && (tryCount != stopCount));
sl@0
  2071
sl@0
  2072
		tryCount = tryCount - increment;
sl@0
  2073
sl@0
  2074
sl@0
  2075
		if (err == KErrNoMemory)
sl@0
  2076
		{
sl@0
  2077
			// test has not yet been able to pass due to memory allocation failures.
sl@0
  2078
			return -1;
sl@0
  2079
		}
sl@0
  2080
sl@0
  2081
		test(err == KErrNone);
sl@0
  2082
sl@0
  2083
	 	// If enough memory has finally been allocated for the test to pass then return
sl@0
  2084
		// the memory allocation counter value.
sl@0
  2085
		test.Printf(_L("- server succeeded at heap failure rate of %i\n"), tryCount);
sl@0
  2086
		return tryCount;
sl@0
  2087
}
sl@0
  2088
sl@0
  2089
/**
sl@0
  2090
Wrapper function to call all OOM test functions
sl@0
  2091
sl@0
  2092
@param		testFuncL pointer to OOM test function
sl@0
  2093
@param		aTestDesc test function name
sl@0
  2094
*/
sl@0
  2095
LOCAL_C void DoOOMTestL(ClassFuncPtrL testFuncL, const TDesC& aTestDesc)
sl@0
  2096
	{
sl@0
  2097
	test.Next(aTestDesc);
sl@0
  2098
sl@0
  2099
	TInt startCount = 1;
sl@0
  2100
	TInt increment = 1;
sl@0
  2101
	TInt successRate = -1;
sl@0
  2102
	TInt stopCount = 256;
sl@0
  2103
sl@0
  2104
 	successRate = RunTestUnderOOMCondition(testFuncL, startCount, increment, stopCount);
sl@0
  2105
sl@0
  2106
 	// (INC115057)
sl@0
  2107
 	// When method CDiscoverer::CDirScanner::DoScanDriveL is encountered in a test hundreds
sl@0
  2108
 	// of plug-in files will be scanned. It takes in the order of 3-4000 memory allocation failure
sl@0
  2109
 	// loops (in techview context) before the scan is finished and the test can complete successfully.
sl@0
  2110
 	// This will take over an hour. Instead determine the approximate failure point by
sl@0
  2111
 	// testing with large increments between failures. Once a failure rate interval is found test
sl@0
  2112
 	// for OOM conditions running up to it.
sl@0
  2113
 	// This in effect means that we are checking OOM at the start and end of tests but skipping
sl@0
  2114
 	// the scanning of each and every plugin in the middle of the test.
sl@0
  2115
 	// (Note that CDiscoverer::CDirScanner::DoScanDriveL may return without leaving when it
sl@0
  2116
 	// can't allocate TFileName. In this case it seems to this function that the test is
sl@0
  2117
 	// successful. Therefore even if the successRate above indicates a pass the test is still
sl@0
  2118
 	// re-run below with larger memory allocation failure valued to make sure that the test does
sl@0
  2119
 	// in fact run to completion.
sl@0
  2120
sl@0
  2121
 		startCount = 256;
sl@0
  2122
 		increment = 256;
sl@0
  2123
 		stopCount = -1;
sl@0
  2124
 		successRate = RunTestUnderOOMCondition(testFuncL, startCount, increment, stopCount);
sl@0
  2125
 		test(successRate > 0);
sl@0
  2126
sl@0
  2127
 		if (successRate > 256)
sl@0
  2128
 		{
sl@0
  2129
 			startCount = successRate - 256;
sl@0
  2130
 			increment = 1;
sl@0
  2131
 			stopCount = -1;
sl@0
  2132
 			successRate = RunTestUnderOOMCondition(testFuncL, startCount, increment, stopCount);
sl@0
  2133
 		}
sl@0
  2134
sl@0
  2135
 	test(successRate > 0);
sl@0
  2136
	}
sl@0
  2137
sl@0
  2138
/**
sl@0
  2139
Creates and installs active scheduler for this thread and calls
sl@0
  2140
CDiscovererTest::IdleScanningTimerRunErrorL
sl@0
  2141
sl@0
  2142
@param		aDiscTest The CDiscovererTest object used to carry out the test
sl@0
  2143
*/
sl@0
  2144
LOCAL_C	void DoIdleScanningTimerRunErrorTestL(CDiscovererTest* aDiscTest)
sl@0
  2145
	{
sl@0
  2146
sl@0
  2147
	// create and install the active scheduler we need
sl@0
  2148
	CActiveScheduler* scheduler=new(ELeave) CActiveScheduler;
sl@0
  2149
	CleanupStack::PushL(scheduler);
sl@0
  2150
sl@0
  2151
	CActiveScheduler::Install(scheduler);
sl@0
  2152
sl@0
  2153
	aDiscTest->IdleScanningTimerRunErrorL();
sl@0
  2154
sl@0
  2155
	// Cleanup CDiscovererTest, TheFs and scheduler
sl@0
  2156
	CleanupStack::PopAndDestroy(scheduler);
sl@0
  2157
sl@0
  2158
	}
sl@0
  2159
/**
sl@0
  2160
Thread entry point for the test thread.  Creates a CTrapCleanup and
sl@0
  2161
calls  DoIdleScanningTimerRunErrorTestL to carry out the test
sl@0
  2162
sl@0
  2163
@param		aDiscTest The CDiscovererTest object used to carry out the test
sl@0
  2164
*/
sl@0
  2165
LOCAL_C TInt IdleScanningTimerRunErrorThreadEntry(TAny* aDiscTest)
sl@0
  2166
	{
sl@0
  2167
sl@0
  2168
	CTrapCleanup* tc = CTrapCleanup::New();
sl@0
  2169
sl@0
  2170
	CDiscovererTest *discTest = static_cast<CDiscovererTest*>(aDiscTest);
sl@0
  2171
sl@0
  2172
	TRAPD(err,DoIdleScanningTimerRunErrorTestL(discTest));
sl@0
  2173
sl@0
  2174
	delete tc;
sl@0
  2175
sl@0
  2176
	return err;
sl@0
  2177
sl@0
  2178
	}
sl@0
  2179
sl@0
  2180
sl@0
  2181
/**
sl@0
  2182
@SYMTestCaseID		SYSLIB-ECOM-CT-3165
sl@0
  2183
@SYMTestCaseDesc 	Check that the CIdleScanningTimer::RunError() works correctly.
sl@0
  2184
@SYMTestPriority 	High
sl@0
  2185
@SYMTestActions  	Create a new thread which will call RunError.  Wait for the
sl@0
  2186
					thread to exit and check the thread exit type and reason
sl@0
  2187
					to verify behaviour
sl@0
  2188
@SYMTestExpectedResults The test must not fail.
sl@0
  2189
@SYMDEF DEF094675
sl@0
  2190
*/
sl@0
  2191
LOCAL_C void IdleScanningTimer_RunErrorTest()
sl@0
  2192
	{
sl@0
  2193
	__UHEAP_MARK;
sl@0
  2194
sl@0
  2195
	test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-3165 CIdleScanningTimer RunError test "));
sl@0
  2196
sl@0
  2197
	_LIT(KStartThreadName,"CIdleScanningTimer RunError Thread");
sl@0
  2198
sl@0
  2199
	//Disable JIT so that the Panic doesn't bring up a dialog
sl@0
  2200
	//and stop the test
sl@0
  2201
	TBool jitEnabled = User::JustInTime();
sl@0
  2202
	User::SetJustInTime(EFalse);
sl@0
  2203
sl@0
  2204
	//Create a CDiscovererTest object to pass into the test thread
sl@0
  2205
	CDiscovererTest* discTest = CDiscovererTest::NewL();
sl@0
  2206
	CleanupStack::PushL(discTest);
sl@0
  2207
sl@0
  2208
	//Create a new thread to run the test
sl@0
  2209
	RThread testThread;
sl@0
  2210
	testThread.Create(KStartThreadName, IdleScanningTimerRunErrorThreadEntry,
sl@0
  2211
					KDefaultStackSize,KMinHeapSize,KMinHeapSize,discTest);
sl@0
  2212
	TRequestStatus status;
sl@0
  2213
	testThread.Logon(status);
sl@0
  2214
sl@0
  2215
sl@0
  2216
	testThread.Resume();
sl@0
  2217
sl@0
  2218
	//Wait for the thread to exit
sl@0
  2219
	User::WaitForRequest(status);
sl@0
  2220
sl@0
  2221
	//Obtain exit type and reason for test thread
sl@0
  2222
	TExitType exitType = testThread.ExitType();
sl@0
  2223
	TInt exitReason = testThread.ExitReason();
sl@0
  2224
sl@0
  2225
	//close the thread handle
sl@0
  2226
	testThread.Close();
sl@0
  2227
sl@0
  2228
	CleanupStack::PopAndDestroy(discTest);
sl@0
  2229
sl@0
  2230
	//Set JIT back to original state
sl@0
  2231
	User::SetJustInTime(jitEnabled);
sl@0
  2232
sl@0
  2233
	//Verify the exit reason and exit code
sl@0
  2234
	test(exitType == EExitPanic);
sl@0
  2235
	test(exitReason == EEComPanic_CDiscoverer_CIdleScanningTimer_RunError);
sl@0
  2236
sl@0
  2237
	__UHEAP_MARKEND;
sl@0
  2238
	}
sl@0
  2239
sl@0
  2240
/**
sl@0
  2241
Creates and installs active scheduler for this thread and calls
sl@0
  2242
CDiscovererTest::DirChangeNotifierRunErrorL
sl@0
  2243
sl@0
  2244
@param		aDiscTest The CDiscovererTest object used to carry out the test
sl@0
  2245
*/
sl@0
  2246
LOCAL_C void DoDirChangeNotifierRunErrorTestL(CDiscovererTest* aDiscTest)
sl@0
  2247
	{
sl@0
  2248
sl@0
  2249
	// create and install the active scheduler we need
sl@0
  2250
	CActiveScheduler* scheduler=new(ELeave) CActiveScheduler;
sl@0
  2251
	CleanupStack::PushL(scheduler);
sl@0
  2252
sl@0
  2253
	CActiveScheduler::Install(scheduler);
sl@0
  2254
sl@0
  2255
	//call the RunErrorL method which should panic
sl@0
  2256
	aDiscTest->DirChangeNotifierRunErrorL();
sl@0
  2257
sl@0
  2258
	// Cleanup CDiscovererTest, TheFs and scheduler
sl@0
  2259
	CleanupStack::PopAndDestroy(scheduler);
sl@0
  2260
sl@0
  2261
	}
sl@0
  2262
sl@0
  2263
/**
sl@0
  2264
Thread entry point for the test thread.  Creates a CTrapCleanup and
sl@0
  2265
calls  DoDirChangeNotifierRunErrorTestL to carry out the test
sl@0
  2266
sl@0
  2267
@param		aDiscTest The CDiscovererTest object used to carry out the test
sl@0
  2268
*/
sl@0
  2269
LOCAL_C TInt DirChangeNotifierRunErrorThreadEntry(TAny* aDiscTest)
sl@0
  2270
	{
sl@0
  2271
sl@0
  2272
	CTrapCleanup* tc = CTrapCleanup::New();
sl@0
  2273
sl@0
  2274
	CDiscovererTest *discTest = static_cast<CDiscovererTest*>(aDiscTest);
sl@0
  2275
sl@0
  2276
	TRAPD(err,DoDirChangeNotifierRunErrorTestL(discTest));
sl@0
  2277
sl@0
  2278
	delete tc;
sl@0
  2279
sl@0
  2280
	return err;
sl@0
  2281
sl@0
  2282
	}
sl@0
  2283
sl@0
  2284
/**
sl@0
  2285
@SYMTestCaseID		SYSLIB-ECOM-CT-3166
sl@0
  2286
@SYMTestCaseDesc 	Check that the CDirChangeNotifier::RunError() works correctly.
sl@0
  2287
@SYMTestPriority 	High
sl@0
  2288
@SYMTestActions  	Create a new thread which will call RunError.  Wait for the
sl@0
  2289
					thread to exit and check the thread exit type and reason
sl@0
  2290
					to verify behaviour
sl@0
  2291
@SYMTestExpectedResults The test must not fail.
sl@0
  2292
@SYMDEF DEF094675
sl@0
  2293
*/
sl@0
  2294
LOCAL_C void DirChangeNotifier_RunErrorTest()
sl@0
  2295
	{
sl@0
  2296
	__UHEAP_MARK;
sl@0
  2297
sl@0
  2298
	test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-3166 CDirChangeNotifier RunError test "));
sl@0
  2299
sl@0
  2300
	_LIT(KStartThreadName,"CDirChangeNotifier RunError Thread");
sl@0
  2301
sl@0
  2302
	//Disable JIT so that the Panic doesn't bring up a dialog
sl@0
  2303
	//and stop the test
sl@0
  2304
	TBool jitEnabled = User::JustInTime();
sl@0
  2305
	User::SetJustInTime(EFalse);
sl@0
  2306
sl@0
  2307
	//Create a CDiscovererTest object to pass into the test thread
sl@0
  2308
	CDiscovererTest* discTest = CDiscovererTest::NewL();
sl@0
  2309
	CleanupStack::PushL(discTest);
sl@0
  2310
sl@0
  2311
	//Create a new thread to run the test
sl@0
  2312
	RThread testThread;
sl@0
  2313
	testThread.Create(KStartThreadName, DirChangeNotifierRunErrorThreadEntry,
sl@0
  2314
					KDefaultStackSize,KMinHeapSize,KMinHeapSize,discTest);
sl@0
  2315
	TRequestStatus status;
sl@0
  2316
	testThread.Logon(status);
sl@0
  2317
	testThread.Resume();
sl@0
  2318
sl@0
  2319
	//Wait for the thread to exit
sl@0
  2320
	User::WaitForRequest(status);
sl@0
  2321
sl@0
  2322
	//Obtain exit type and reason for test thread
sl@0
  2323
	TExitType exitType = testThread.ExitType();
sl@0
  2324
	TInt exitReason = testThread.ExitReason();
sl@0
  2325
sl@0
  2326
	//close the thread handle
sl@0
  2327
	testThread.Close();
sl@0
  2328
sl@0
  2329
	CleanupStack::PopAndDestroy(discTest);
sl@0
  2330
sl@0
  2331
	//Set JIT back to original state
sl@0
  2332
	User::SetJustInTime(jitEnabled);
sl@0
  2333
sl@0
  2334
	//Verify the exit reason and exit code
sl@0
  2335
	test(exitType == EExitPanic);
sl@0
  2336
	test(exitReason == EEComPanic_CDiscoverer_CDirChangeNotifier_RunError);
sl@0
  2337
sl@0
  2338
	__UHEAP_MARKEND;
sl@0
  2339
	}
sl@0
  2340
sl@0
  2341
TInt DoTestsL()
sl@0
  2342
	{
sl@0
  2343
	__UHEAP_MARK;
sl@0
  2344
sl@0
  2345
	// Basic tests
sl@0
  2346
	CreateDeleteTestL();
sl@0
  2347
	DoBasicTestL(&CDiscovererTest::ResumeSuspendTestL, _L("ResumeSuspendTestL"));
sl@0
  2348
	DoBasicTestL(&CDiscovererTest::DriveMountUnmountTestL, _L("DriveMountUnmountTestL"));
sl@0
  2349
	DoBasicTestL(&CDiscovererTest::ProcessEntryTestL, _L("ProcessEntryTestL"));
sl@0
  2350
	DoBasicTestL(&CDiscovererTest::ValidateEntryTestL, _L("ValidateEntryTestL"));
sl@0
  2351
	DoBasicTestL(&CDiscovererTest::ProcessSpiEntryTestL, _L("ProcessSpiEntryTestL"));
sl@0
  2352
	DoBasicTestL(&CDiscovererTest::ValidateSpiEntryTestL, _L("ValidateSpiEntryTestL"));
sl@0
  2353
	DoBasicTestL(&CDiscovererTest::ProcessEntryPlugIn3TestL, _L("ProcessEntryPlugIn3TestL"));
sl@0
  2354
	DoBasicTestL(&CDiscovererTest::ValidateEntryPlugIn3TestL, _L("ValidateEntryPlugIn3TestL"));
sl@0
  2355
	DoBasicTestL(&CDiscovererTest::ProcessSpiEntryPlugIn3TestL, _L("ProcessSpiEntryPlugIn3TestL"));
sl@0
  2356
	DoBasicTestL(&CDiscovererTest::ValidateSpiEntryPlugIn3TestL, _L("ValidateSpiEntryPlugIn3TestL"));
sl@0
  2357
	DoBasicTestL(&CDiscovererTest::ValidateSpiPluginsTestL, _L("ValidateSpiPluginsTestL"));
sl@0
  2358
	DoBasicTestL(&CDiscovererTest::ScanDirectoryIncrementTestL, _L("ScanDirectoryIncrementTestL"));
sl@0
  2359
	DoBasicTestL(&CDiscovererTest::StagedDiscoveryStateTransitionTestL, _L("StagedDiscoveryStateTransitionTestL"));
sl@0
  2360
	DoBasicTestL(&CDiscovererTest::AllAtOnceDiscoveryStateTransitionTestL, _L("AllAtOnceDiscoveryStateTransitionTestL"));
sl@0
  2361
	DoBasicTestL(&CDiscovererTest::ScanDirectoryTestL, _L("ScanDirectoryTestL"));
sl@0
  2362
	DoBasicTestL(&CDiscovererTest::MultipleNotificationProcessingTestL, _L("MultipleNotificationProcessingTestL"));
sl@0
  2363
	DoBasicTestL(&CDiscovererTest::LanguageChangedNotificationTestL, _L("MLanguageChangedNotificationTestL"));
sl@0
  2364
	DoBasicTestL(&CDiscovererTest::SWINotificationProcessingTestL, _L("SWINotificationProcessingTestL"));
sl@0
  2365
sl@0
  2366
	//RunError tests
sl@0
  2367
	IdleScanningTimer_RunErrorTest();
sl@0
  2368
	DirChangeNotifier_RunErrorTest();
sl@0
  2369
sl@0
  2370
	// OOM tests
sl@0
  2371
	OOMCreateDeleteTest();
sl@0
  2372
	// This test is not performed because the error from the final memory allocation failures are not
sl@0
  2373
	// propagated back to the calling function and cannot be dealt with. Therefore
sl@0
  2374
	// this test does not complete. However the normal test is performed above.
sl@0
  2375
	//DoOOMTestL(&CDiscovererTest::ResumeSuspendTestL, _L("OOM ResumeSuspendTestL"));
sl@0
  2376
	DoOOMTestL(&CDiscovererTest::DriveMountUnmountTestL, _L("OOM DriveMountUnmountTestL"));
sl@0
  2377
	DoOOMTestL(&CDiscovererTest::ProcessEntryTestL, _L("OOM ProcessEntryTestL"));
sl@0
  2378
	DoOOMTestL(&CDiscovererTest::ProcessSpiEntryTestL, _L("OOM ProcessSpiEntryTestL"));
sl@0
  2379
	DoOOMTestL(&CDiscovererTest::ValidateSpiEntryTestL, _L("OOM ValidateSpiEntryTestL"));
sl@0
  2380
	DoOOMTestL(&CDiscovererTest::ValidateEntryTestL, _L("OOM ValidateEntryTestL"));
sl@0
  2381
	DoOOMTestL(&CDiscovererTest::ProcessEntryPlugIn3TestL, _L("OOM ProcessEntryPlugIn3TestL"));
sl@0
  2382
	DoOOMTestL(&CDiscovererTest::ProcessSpiEntryPlugIn3TestL, _L("OOM ProcessSpiEntryPlugIn3TestL"));
sl@0
  2383
	DoOOMTestL(&CDiscovererTest::ValidateSpiEntryPlugIn3TestL, _L("OOM ValidateSpiEntryPlugIn3TestL"));
sl@0
  2384
	DoOOMTestL(&CDiscovererTest::ValidateEntryPlugIn3TestL, _L("OOM ValidateEntryPlugIn3TestL"));
sl@0
  2385
	DoOOMTestL(&CDiscovererTest::ScanDirectoryIncrementTestL, _L("OOM ScanDirectoryIncrementTestL"));
sl@0
  2386
	DoOOMTestL(&CDiscovererTest::StagedDiscoveryStateTransitionTestL, _L("StagedDiscoveryStateTransitionTestL"));
sl@0
  2387
	DoOOMTestL(&CDiscovererTest::AllAtOnceDiscoveryStateTransitionTestL, _L("AllAtOnceDiscoveryStateTransitionTestL"));
sl@0
  2388
	DoOOMTestL(&CDiscovererTest::ScanDirectoryTestL, _L("OOM ScanDirectoryTestL"));
sl@0
  2389
	// This test is not performed because the error from the final memory allocation failures are not
sl@0
  2390
	// propagated back to the calling function and cannot be dealt with. Therefore
sl@0
  2391
	// this test does not complete. However the normal test is performed above.
sl@0
  2392
	//DoOOMTestL(&CDiscovererTest::MultipleNotificationProcessingTestL, _L("MultipleNotificationProcessingTestL"));
sl@0
  2393
	// This test is not performed because the error from the final memory allocation failures are not
sl@0
  2394
	// propagated back to the calling function and cannot be dealt with. Therefore
sl@0
  2395
	// this test does not complete. However the normal test is performed above.
sl@0
  2396
	//DoOOMTestL(&CDiscovererTest::SWINotificationProcessingTestL, _L("OOM SWINotificationProcessingTestL"));
sl@0
  2397
sl@0
  2398
	__UHEAP_MARKEND;
sl@0
  2399
	return KErrNone;
sl@0
  2400
	}
sl@0
  2401
sl@0
  2402
// Copy the Plugins to specific folder for testing purpose
sl@0
  2403
LOCAL_C void CopyPlugins()
sl@0
  2404
	{
sl@0
  2405
	TInt err=KErrNone;
sl@0
  2406
	TRAP(err, EComTestUtils::FileManCopyFileL(KNewResourceFileNameOnZ, KNewResourceFileName));
sl@0
  2407
	test(err==KErrNone);
sl@0
  2408
	TRAP(err, EComTestUtils::FileManCopyFileL(KNewExampleDllFileNameOnZ, KNewExampleDllFileName));
sl@0
  2409
	test(err==KErrNone);
sl@0
  2410
	TRAP(err, EComTestUtils::FileManCopyFileL(KPlugIn3ResourceFileNameOnZ, KPlugIn3ResourceFileName));
sl@0
  2411
	test(err==KErrNone);
sl@0
  2412
	TRAP(err, EComTestUtils::FileManCopyFileL(KPlugIn3ExampleDllFileNameOnZ, KPlugIn3ExampleDllFileName));
sl@0
  2413
	test(err==KErrNone);
sl@0
  2414
	}
sl@0
  2415
sl@0
  2416
// Deleting plugin from the RAM for cleanup purpose
sl@0
  2417
inline LOCAL_C void DeleteTestPlugin()
sl@0
  2418
	{
sl@0
  2419
	TInt err=KErrNone;
sl@0
  2420
	TRAP(err, EComTestUtils::FileManDeleteFileL(KNewResourceFileName));
sl@0
  2421
	TRAP(err, EComTestUtils::FileManDeleteFileL(KNewExampleDllFileName));
sl@0
  2422
	TRAP(err, EComTestUtils::FileManDeleteFileL(KPlugIn3ResourceFileName));
sl@0
  2423
	TRAP(err, EComTestUtils::FileManDeleteFileL(KPlugIn3ExampleDllFileName));
sl@0
  2424
	}
sl@0
  2425
sl@0
  2426
//
sl@0
  2427
//Initialise the Active Scheduler
sl@0
  2428
//
sl@0
  2429
LOCAL_C void SetupL()
sl@0
  2430
	{
sl@0
  2431
	// Construct and install the Active Scheduler. The Active Schedular is needed
sl@0
  2432
	// by components used by this test as they are ActiveObjects.
sl@0
  2433
	TheActiveScheduler = new(ELeave)CActiveScheduler;
sl@0
  2434
	CActiveScheduler::Install(TheActiveScheduler);
sl@0
  2435
	}
sl@0
  2436
sl@0
  2437
GLDEF_C TInt E32Main()
sl@0
  2438
	{
sl@0
  2439
	__UHEAP_MARK;
sl@0
  2440
sl@0
  2441
	test.Printf(_L("\n"));
sl@0
  2442
	test.Title();
sl@0
  2443
	test.Start(_L("Discoverer Tests."));
sl@0
  2444
sl@0
  2445
	TheTrapCleanup = CTrapCleanup::New();
sl@0
  2446
sl@0
  2447
	TRAPD(err, SetupL());
sl@0
  2448
	test(err == KErrNone);
sl@0
  2449
sl@0
  2450
	// Connect the file server instance
sl@0
  2451
	User::LeaveIfError(TheFs.Connect());
sl@0
  2452
sl@0
  2453
	CopyPlugins();
sl@0
  2454
sl@0
  2455
	// The reason for the folowing delay is:
sl@0
  2456
	// ECOM server could be already started. It means that when we copy some
sl@0
  2457
	// ECOM plugins from Z: to C: drive - ECOM server should look for and
sl@0
  2458
	// find the new ECOM plugins. The ECOM server uses for that an active object,
sl@0
  2459
	// which scans plugin directories. So the discovering service is asynchronous.
sl@0
  2460
	// We have to wait some time until it finishes.
sl@0
  2461
	// Otherwise ListImplementationsL could fail to find requested implementations.
sl@0
  2462
	User::After(KOneSecond * 3);
sl@0
  2463
sl@0
  2464
sl@0
  2465
	// Call the main tests
sl@0
  2466
	TRAP(err, DoTestsL());
sl@0
  2467
	test(err == KErrNone);
sl@0
  2468
sl@0
  2469
	// Cleanup files. If the cleanup fails that is no problem,
sl@0
  2470
	// as any subsequent tests will replace them. The only downside
sl@0
  2471
	// would be the disk not being tidied
sl@0
  2472
	DeleteTestPlugin();
sl@0
  2473
sl@0
  2474
	TheFs.Close();
sl@0
  2475
sl@0
  2476
	delete TheActiveScheduler;
sl@0
  2477
	delete TheTrapCleanup;
sl@0
  2478
sl@0
  2479
	test.End();
sl@0
  2480
	test.Close();
sl@0
  2481
sl@0
  2482
	__UHEAP_MARKEND;
sl@0
  2483
	return (KErrNone);
sl@0
  2484
	}
sl@0
  2485