os/ossrv/lowlevellibsandfws/pluginfw/Framework/DisableDrivesTest/t_disabledrives.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2007-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 CDiscoverer will not discover plug-ins on C: and E:
sl@0
    16
// if the two drives are disabled by the patchable constants.
sl@0
    17
// 
sl@0
    18
//
sl@0
    19
sl@0
    20
/**
sl@0
    21
 @file
sl@0
    22
 @internalComponent
sl@0
    23
*/
sl@0
    24
#include "RegistryData.h"
sl@0
    25
#include "Discoverer.h"
sl@0
    26
#include "ImplementationInformation.h"
sl@0
    27
#include "RegistryData.h"
sl@0
    28
#include "Registrar.h"
sl@0
    29
#include "RegistrarObserver.h"
sl@0
    30
#include "../EcomTestUtils/EcomTestUtils.h"
sl@0
    31
#include "DriveInfo.h"
sl@0
    32
#include "EComPatchDataConstantv2.h"
sl@0
    33
sl@0
    34
#include <e32test.h>
sl@0
    35
#include <f32file.h>
sl@0
    36
#include <bautils.h>
sl@0
    37
#include <startup.hrh>
sl@0
    38
sl@0
    39
_LIT (KDataDir, "C:\\private\\10009D8F\\ECom*");
sl@0
    40
sl@0
    41
// plugins to discover
sl@0
    42
_LIT(KNewResourceFileNameC, "C:\\resource\\plugins\\EComExample5.rsc");
sl@0
    43
_LIT(KNewDllFileNameC, "C:\\sys\\bin\\EComExample5.dll");
sl@0
    44
_LIT(KNewResourceFileNameZ, "z:\\RAMOnly\\EComExample5.rsc");
sl@0
    45
_LIT(KNewDllFileNameZ,"z:\\RAMOnly\\EComExample5.dll");
sl@0
    46
sl@0
    47
const TInt KOneSecond = 1000000;
sl@0
    48
sl@0
    49
LOCAL_D RTest test(_L("Disable drives"));
sl@0
    50
LOCAL_D RFs					TheFs;
sl@0
    51
LOCAL_D CTrapCleanup* 		TheTrapCleanup 		= NULL;
sl@0
    52
sl@0
    53
class CDerivedActiveScheduler;
sl@0
    54
LOCAL_D CDerivedActiveScheduler* TheActiveScheduler	= NULL;
sl@0
    55
sl@0
    56
LOCAL_D TInt oomStep;
sl@0
    57
sl@0
    58
//It is used by some test methods which are called two times:
sl@0
    59
//from normal test and from OOM test.
sl@0
    60
static void LeaveIfErrNoMemoryL(TInt aError)
sl@0
    61
	{
sl@0
    62
	if(aError == KErrNoMemory)
sl@0
    63
		{
sl@0
    64
		User::Leave(aError);
sl@0
    65
		}
sl@0
    66
	}
sl@0
    67
sl@0
    68
// Copies the Plugins to specific folder for testing purpose
sl@0
    69
LOCAL_C void CopyPlugins()
sl@0
    70
	{
sl@0
    71
	TInt err=KErrNone;
sl@0
    72
	TRAP(err, EComTestUtils::FileManCopyFileL(KNewResourceFileNameZ, KNewResourceFileNameC));
sl@0
    73
	test(err==KErrNone);
sl@0
    74
	TRAP(err, EComTestUtils::FileManCopyFileL(KNewDllFileNameZ, KNewDllFileNameC));
sl@0
    75
	test(err==KErrNone);
sl@0
    76
	}
sl@0
    77
sl@0
    78
// Deleting plugin from the RAM for cleanup purpose
sl@0
    79
LOCAL_C void DeleteTestPlugin(TAny* /* aUnused */)
sl@0
    80
	{
sl@0
    81
	TInt err=KErrNone;
sl@0
    82
	TRAP(err, EComTestUtils::FileManDeleteFileL(KNewResourceFileNameC));
sl@0
    83
	TRAP(err, EComTestUtils::FileManDeleteFileL(KNewDllFileNameC));
sl@0
    84
	}
sl@0
    85
sl@0
    86
// flags indicating a set of pre-conditions to fullfil before running
sl@0
    87
// CDisableDrivesTest.
sl@0
    88
enum TPreTestSetup
sl@0
    89
	{
sl@0
    90
	EPreTest_UnitializeCachedDriveInfo = 0x1,
sl@0
    91
	EPreTest_EnableAllDrives = 0x2,
sl@0
    92
	EPreTest_CopyPlugins = 0x4
sl@0
    93
	};
sl@0
    94
sl@0
    95
const TUint32 KStartupDiscoveryDrivesDisabledMask =
sl@0
    96
	EPreTest_UnitializeCachedDriveInfo | EPreTest_CopyPlugins;
sl@0
    97
sl@0
    98
const TUint32 KStartupDiscoveryDrivesEnabledMask =
sl@0
    99
	EPreTest_EnableAllDrives | EPreTest_CopyPlugins;
sl@0
   100
sl@0
   101
const TUint32 KRediscoveryDrivesDisabledMask =
sl@0
   102
	EPreTest_UnitializeCachedDriveInfo;
sl@0
   103
sl@0
   104
const TUint32 KRediscoveryDrivesEnabledMask =
sl@0
   105
	EPreTest_EnableAllDrives;
sl@0
   106
sl@0
   107
/**
sl@0
   108
TRegistryData_StateAccessor class allows access to private and protected
sl@0
   109
members of production code class CRegistryData, as its a friend class.
sl@0
   110
*/
sl@0
   111
class TRegistryData_StateAccessor
sl@0
   112
	{
sl@0
   113
public:
sl@0
   114
	TInt FindImplementation(CRegistryData& aRegistryData,
sl@0
   115
				const TUid aImplUid,
sl@0
   116
				const TUid aInterfaceUid,
sl@0
   117
				CRegistryData::CImplementationData*& aImplData) const;
sl@0
   118
	};
sl@0
   119
sl@0
   120
/** TRegistrar_StateAccessor class allows access to private members
sl@0
   121
of CRegistrar. */
sl@0
   122
class TRegistrar_StateAccessor
sl@0
   123
	{
sl@0
   124
	static void SetCompletedStateL(CRegistrar& aRegistrar,
sl@0
   125
								   TStartupStateIdentifier aKnownState);
sl@0
   126
	};
sl@0
   127
sl@0
   128
/** TDiscoverer_StateAccessor allows manipulation of CDiscoverer
sl@0
   129
private members. */
sl@0
   130
class TDiscoverer_StateAccessor
sl@0
   131
	{
sl@0
   132
	static void SetCompletedStateL(CDiscoverer& aDiscoverer,
sl@0
   133
								   CDiscoverer::TDiscovererState aState);
sl@0
   134
	};
sl@0
   135
sl@0
   136
/** TDriveInfo_StateAccessor class allows access to private members
sl@0
   137
of CEComCachedDriveInfo. */
sl@0
   138
class TDriveInfo_StateAccessor
sl@0
   139
	{
sl@0
   140
public:
sl@0
   141
	static void ClearCachedDriveInfo();
sl@0
   142
sl@0
   143
	static void SetDriveDisableMaskL(TUint32 aMask);
sl@0
   144
	};
sl@0
   145
sl@0
   146
/**
sl@0
   147
@return		KErrNone if found otherwise KErrNotFound
sl@0
   148
@param		aRegistryData The CRegistryData class object
sl@0
   149
@param		aImplUid The implementation to find.
sl@0
   150
@param		aInterfaceUid If greater than 0 the interface associated with the
sl@0
   151
			implementation to find.
sl@0
   152
@param		aImplData The found implementation data.
sl@0
   153
@pre 		CRegistrar is fully constructed
sl@0
   154
*/
sl@0
   155
TInt TRegistryData_StateAccessor::FindImplementation(CRegistryData& aRegistryData,
sl@0
   156
												const TUid aImplUid,
sl@0
   157
												const TUid aInterfaceUid,
sl@0
   158
												CRegistryData::CImplementationData*& aImplData) const
sl@0
   159
	{
sl@0
   160
	return aRegistryData.FindImplementation(aImplUid, aInterfaceUid, aImplData);
sl@0
   161
	}
sl@0
   162
sl@0
   163
/** Mark the static drive info array uninitialized. Then the
sl@0
   164
next instantiation of CEComCachedDriveInfo will need to setup
sl@0
   165
the drive info again.
sl@0
   166
*/
sl@0
   167
void TDriveInfo_StateAccessor::ClearCachedDriveInfo()
sl@0
   168
	{
sl@0
   169
	CEComCachedDriveInfo::iInitialized = EFalse;
sl@0
   170
	}
sl@0
   171
sl@0
   172
/** Instantiate a CEComCachedDriveInfo object with a special drive
sl@0
   173
mask. The object is destroyed right away but the static drive info
sl@0
   174
array is fixed to the special mask.
sl@0
   175
@param aMask the drive disable mask to set.
sl@0
   176
*/
sl@0
   177
void TDriveInfo_StateAccessor::SetDriveDisableMaskL(TUint32 aMask)
sl@0
   178
	{
sl@0
   179
	// Set this bool to false otherwise ConstructL will do nothing.
sl@0
   180
	CEComCachedDriveInfo::iInitialized = EFalse;
sl@0
   181
sl@0
   182
	CEComCachedDriveInfo* ptr = new (ELeave) CEComCachedDriveInfo();
sl@0
   183
	CleanupStack::PushL(ptr);
sl@0
   184
	ptr->ConstructL(TheFs, aMask);
sl@0
   185
	CleanupStack::PopAndDestroy();
sl@0
   186
	}
sl@0
   187
sl@0
   188
/** Need a CActive to wait for CDiscoverer dir change notifiers. */
sl@0
   189
class CSimpleTimer : public CTimer
sl@0
   190
	{
sl@0
   191
public:
sl@0
   192
	inline CSimpleTimer(TInt aPriority);
sl@0
   193
	inline void ConstructL();
sl@0
   194
	inline void StartTimer(TTimeIntervalMicroSeconds32 aTimeInterval);
sl@0
   195
sl@0
   196
private:
sl@0
   197
	void RunL();
sl@0
   198
	};
sl@0
   199
sl@0
   200
inline CSimpleTimer::CSimpleTimer(TInt aPriority)
sl@0
   201
	: CTimer(aPriority)
sl@0
   202
	{
sl@0
   203
	CActiveScheduler::Add(this);
sl@0
   204
	}
sl@0
   205
sl@0
   206
inline void CSimpleTimer::ConstructL()
sl@0
   207
	{
sl@0
   208
	CTimer::ConstructL();
sl@0
   209
	}
sl@0
   210
sl@0
   211
inline void CSimpleTimer::StartTimer(TTimeIntervalMicroSeconds32 aTimeInterval)
sl@0
   212
	{
sl@0
   213
	After(aTimeInterval);
sl@0
   214
	}
sl@0
   215
sl@0
   216
void CSimpleTimer::RunL()
sl@0
   217
	{
sl@0
   218
	CActiveScheduler::Stop();
sl@0
   219
	}
sl@0
   220
sl@0
   221
/** Avoid E32User::Case 47 panic in OOM test */
sl@0
   222
class CDerivedActiveScheduler : public CActiveScheduler
sl@0
   223
	{
sl@0
   224
public:
sl@0
   225
	virtual void Error(TInt aError) const;
sl@0
   226
	};
sl@0
   227
sl@0
   228
void CDerivedActiveScheduler::Error(TInt aError) const
sl@0
   229
	{
sl@0
   230
	Halt(aError);
sl@0
   231
	}
sl@0
   232
sl@0
   233
/**
sl@0
   234
The implementation of the abstract Registrar Observer class,
sl@0
   235
used for recieving notifications of registry changes.
sl@0
   236
Stub class(for CEComServer) used for the creation of CRegistrar class object.
sl@0
   237
CEComServer class acts as observer for CRegistrar.
sl@0
   238
*/
sl@0
   239
class CTestRegistrarObserver : public MRegistrarObserver // codescanner::missingcclass
sl@0
   240
	{
sl@0
   241
public:
sl@0
   242
	// This function is used by RegistrarObserver (i.e.CEComServer) to notify its
sl@0
   243
	// clients(REComSession objects) that some change has happened in Registry.
sl@0
   244
	// Here we have no clients to notify, so no implementaion.
sl@0
   245
	void Notification( TInt /*aNotification*/ ) {}
sl@0
   246
	};
sl@0
   247
sl@0
   248
/**
sl@0
   249
Test class for object CRegistrar.
sl@0
   250
This class provides the parameters and behaviour that
sl@0
   251
allows this class to behave normally under a test
sl@0
   252
scenario.
sl@0
   253
*/
sl@0
   254
class CDisableDrivesTest : public CBase
sl@0
   255
	{
sl@0
   256
public:
sl@0
   257
	static CDisableDrivesTest* NewL(TBool aDrivesEnabled);
sl@0
   258
	virtual ~CDisableDrivesTest();
sl@0
   259
	void startupDiscoveryL();
sl@0
   260
	void RediscoveryL();
sl@0
   261
sl@0
   262
private:
sl@0
   263
	CDisableDrivesTest(TBool aDrivesEnabled);
sl@0
   264
	void ConstructL();
sl@0
   265
	void WaitForDiscovererAOL();
sl@0
   266
sl@0
   267
public:
sl@0
   268
	/** The instance of the class under test */
sl@0
   269
	CRegistrar* iRegistrar;
sl@0
   270
sl@0
   271
	/** The instance of the State Accessor class */
sl@0
   272
	TRegistrar_StateAccessor* iStateAccessor;
sl@0
   273
sl@0
   274
	/** The registry data instance required to construct a CRegistrar object */
sl@0
   275
	CRegistryData* iRegistryData;
sl@0
   276
sl@0
   277
	/** The instance of the Registry Data State Accessor class */
sl@0
   278
	TRegistryData_StateAccessor* iRegistryDataStateAccessor;
sl@0
   279
sl@0
   280
	/** The instance of the observer of CRegistrar class */
sl@0
   281
	MRegistrarObserver* iRegistrarObserver;
sl@0
   282
sl@0
   283
	/** The destination for the data discovered during a parse */
sl@0
   284
	CRegistryData::CDllData* iDllData;
sl@0
   285
sl@0
   286
	/** Unique Id of the ECOM dll */
sl@0
   287
	TUid    iDllUid;
sl@0
   288
sl@0
   289
	/** Unique Id of an interface implementation */
sl@0
   290
	TUid	iImplementationUid;
sl@0
   291
sl@0
   292
	/** Unique Id of an interface */
sl@0
   293
	TUid	iInterfaceUid;
sl@0
   294
sl@0
   295
	/** The drive on which interface implementations can be found */
sl@0
   296
	TDriveUnit	iDriveUnit;
sl@0
   297
sl@0
   298
	/** Ecom plugin which contains interface implementations. Used in Registration APIs.*/
sl@0
   299
	TEntry		iDllEntry;
sl@0
   300
sl@0
   301
	TBool		iDrivesEnabled;
sl@0
   302
	};
sl@0
   303
sl@0
   304
/**
sl@0
   305
Standardised safe construction which
sl@0
   306
leaves nothing on the cleanup stack.
sl@0
   307
sl@0
   308
@post		CDisableDrivesTest is fully constructed and initialised.
sl@0
   309
*/
sl@0
   310
CDisableDrivesTest* CDisableDrivesTest::NewL(TBool aDrivesEnabled)
sl@0
   311
	{
sl@0
   312
	CDisableDrivesTest* self = new (ELeave) CDisableDrivesTest(aDrivesEnabled);
sl@0
   313
	CleanupStack::PushL(self);
sl@0
   314
	self->ConstructL();
sl@0
   315
	CleanupStack::Pop(self);
sl@0
   316
	return self;
sl@0
   317
	}
sl@0
   318
sl@0
   319
/**
sl@0
   320
Standardized default c'tor
sl@0
   321
sl@0
   322
@post		CDisableDrivesTest is fully constructed.
sl@0
   323
*/
sl@0
   324
CDisableDrivesTest::CDisableDrivesTest(TBool aDrivesEnabled)
sl@0
   325
:	CBase(),
sl@0
   326
	iDriveUnit(EDriveC),
sl@0
   327
	iDrivesEnabled(aDrivesEnabled)
sl@0
   328
	{
sl@0
   329
	iDllUid.iUid			= 0x101F847B; // Dlluid for Ecom plugin EComExample5.dll
sl@0
   330
	iInterfaceUid.iUid		= 0x10009DC0; // Interface uid for interface contained in above plugin
sl@0
   331
	iImplementationUid.iUid = 0x101f847C; // Implementaion uid for above interface
sl@0
   332
	TUid uid1 = {0};
sl@0
   333
	TUid uid2 = {0};
sl@0
   334
	iDllEntry.iType = TUidType(uid1, uid2, iDllUid);//Setting Dlluid to plugin entry
sl@0
   335
	}
sl@0
   336
sl@0
   337
/**
sl@0
   338
Destructor.
sl@0
   339
sl@0
   340
@post		This object is properly destroyed.
sl@0
   341
*/
sl@0
   342
CDisableDrivesTest::~CDisableDrivesTest()
sl@0
   343
	{
sl@0
   344
	delete iDllData;
sl@0
   345
	delete iRegistrar;
sl@0
   346
	delete iRegistryData;
sl@0
   347
	delete iRegistrarObserver;
sl@0
   348
	delete iStateAccessor;
sl@0
   349
	delete iRegistryDataStateAccessor;
sl@0
   350
	}
sl@0
   351
sl@0
   352
/**
sl@0
   353
Standardized 2nd(Initialization) phase of two phase construction.
sl@0
   354
sl@0
   355
@post		CDisableDrivesTest is fully constructed.
sl@0
   356
*/
sl@0
   357
void CDisableDrivesTest::ConstructL()
sl@0
   358
	{
sl@0
   359
	CRegistryData::CDriveData* driveData=NULL;
sl@0
   360
	iRegistrarObserver = new (ELeave) CTestRegistrarObserver;
sl@0
   361
	iStateAccessor	   = new (ELeave) TRegistrar_StateAccessor;
sl@0
   362
	iRegistryDataStateAccessor	   = new (ELeave) TRegistryData_StateAccessor;
sl@0
   363
	iRegistryData	   = CRegistryData::NewL(TheFs);
sl@0
   364
	iRegistrar		   = CRegistrar::NewL(*iRegistryData, *iRegistrarObserver, TheFs);
sl@0
   365
	iDllData		   = CRegistryData::CDllData::NewLC(driveData);
sl@0
   366
	CleanupStack::Pop(iDllData);
sl@0
   367
	}
sl@0
   368
sl@0
   369
/**
sl@0
   370
@SYMTestCaseID		SYSLIB-ECOM-CT-3541
sl@0
   371
@SYMTestCaseDesc 	Verify ECOM's patchdata scheme works.
sl@0
   372
@SYMTestPriority 	High
sl@0
   373
@SYMTestActions  	Check the value of the constant KDiscoveryDisabledDriveList.
sl@0
   374
@SYMTestExpectedResults It should be 0x14 in hw.
sl@0
   375
@SYMCR CR1049
sl@0
   376
*/
sl@0
   377
void PatchableConstantTest()
sl@0
   378
	{
sl@0
   379
	test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-3541 Patch constant value "));
sl@0
   380
sl@0
   381
	// check the patchable constant has the patched value.
sl@0
   382
#ifdef __ARMCC__
sl@0
   383
	test(KDiscoveryDisabledDriveList == 0x14);
sl@0
   384
#else
sl@0
   385
	// On emulator the constant is not patchable. Thus the RTest links
sl@0
   386
	// with a different .cpp file.
sl@0
   387
	test(KDiscoveryDisabledDriveList == 0x00800004);
sl@0
   388
#endif
sl@0
   389
	}
sl@0
   390
sl@0
   391
/**
sl@0
   392
@SYMTestCaseID		SYSLIB-ECOM-CT-4014
sl@0
   393
@SYMTestCaseDesc 	Check that the patchables for custom resolver caching
sl@0
   394
    can be patched.
sl@0
   395
@SYMTestPriority 	High
sl@0
   396
@SYMTestActions  	Check the values of KCustomResolverCacheSize and
sl@0
   397
	KCustomResolverCacheTimeout
sl@0
   398
@SYMTestExpectedResults disabledrivestest.hby sets KCustomResolverCacheSize
sl@0
   399
	to 1182 and KCustomResolverCacheTimeout to 4001182. Note that this test
sl@0
   400
	only runs on hw.
sl@0
   401
@SYMCR CR1182
sl@0
   402
*/
sl@0
   403
void CR1182PatchableConstantTest()
sl@0
   404
	{
sl@0
   405
	test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-4014 CR1182 patchable constants "));
sl@0
   406
sl@0
   407
	// check the patchable constants have the patched values.
sl@0
   408
#ifdef __ARMCC__
sl@0
   409
	test(KCustomResolverCacheSize == 1182);
sl@0
   410
	test(KCustomResolverCacheTimeout == 4001182);
sl@0
   411
#else
sl@0
   412
	test.Printf(_L("This test only runs in armv5."));
sl@0
   413
#endif
sl@0
   414
	}
sl@0
   415
sl@0
   416
/**
sl@0
   417
@SYMTestCaseID		SYSLIB-ECOM-CT-3542
sl@0
   418
@SYMTestCaseDesc 	Check that CDiscoverer will not discover plug-ins in disabled drives at boot time.
sl@0
   419
@SYMTestPriority 	High
sl@0
   420
@SYMTestActions  	Use CRegistrar::ProcessSSAEventL to trigger boot up discovery.
sl@0
   421
@SYMTestExpectedResults No plugins registered if C: drive is disabled. In the
sl@0
   422
	control test, C: is enabled and the plugin is registered.
sl@0
   423
@SYMCR CR1049
sl@0
   424
*/
sl@0
   425
void CDisableDrivesTest::startupDiscoveryL()
sl@0
   426
	{
sl@0
   427
	test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-3542 "));
sl@0
   428
sl@0
   429
	// Do not scan ReadOnly internal drive in OOM. Will take an hour.
sl@0
   430
	__UHEAP_SETFAIL(RHeap::ENone, 0);
sl@0
   431
sl@0
   432
	iRegistrar->ProcessSSAEventL(EStartupStateCriticalStatic);
sl@0
   433
sl@0
   434
	if (oomStep)
sl@0
   435
		{
sl@0
   436
		__UHEAP_SETFAIL(RHeap::EDeterministic, oomStep);
sl@0
   437
		}
sl@0
   438
sl@0
   439
	iRegistrar->ProcessSSAEventL(EStartupStateNonCritical);
sl@0
   440
sl@0
   441
	CRegistryData::CImplementationData *implementationData=NULL;
sl@0
   442
	TUid dummyUid;
sl@0
   443
	dummyUid.iUid = 0;
sl@0
   444
sl@0
   445
	TInt err = iRegistryDataStateAccessor->FindImplementation(*iRegistryData, iImplementationUid, dummyUid, implementationData);
sl@0
   446
	::LeaveIfErrNoMemoryL(err);
sl@0
   447
sl@0
   448
	if (iDrivesEnabled)
sl@0
   449
		{
sl@0
   450
		test(err == KErrNone);
sl@0
   451
		}
sl@0
   452
	else
sl@0
   453
		{
sl@0
   454
		test(err == KErrNotFound);
sl@0
   455
		}
sl@0
   456
	}
sl@0
   457
sl@0
   458
/**
sl@0
   459
@SYMTestCaseID		SYSLIB-ECOM-CT-3543
sl@0
   460
@SYMTestCaseDesc 	Check that CDiscoverer will not discover plug-ins via dir
sl@0
   461
	change notification if drive is disabled.
sl@0
   462
@SYMTestPriority 	High
sl@0
   463
@SYMTestActions  	After startup discovery completed, copy .rsc to
sl@0
   464
	C:\resource\plugins and the .dll to C:\sys\bin.
sl@0
   465
@SYMTestExpectedResults The plugin is not registered if C: is disabled. In the
sl@0
   466
	control test, C: is enabled and the plugin is registered.
sl@0
   467
@SYMCR CR1049
sl@0
   468
*/
sl@0
   469
void CDisableDrivesTest::RediscoveryL()
sl@0
   470
	{
sl@0
   471
	test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-3543 "));
sl@0
   472
	// Do not scan ReadOnly internal drive in OOM. Will take an hour.
sl@0
   473
	__UHEAP_SETFAIL(RHeap::ENone, 0);
sl@0
   474
sl@0
   475
	iRegistrar->ProcessSSAEventL(EStartupStateNonCritical);
sl@0
   476
sl@0
   477
	if (oomStep)
sl@0
   478
		{
sl@0
   479
		__UHEAP_SETFAIL(RHeap::EDeterministic, oomStep);
sl@0
   480
		}
sl@0
   481
sl@0
   482
	CopyPlugins();
sl@0
   483
	CleanupStack::PushL(TCleanupItem(DeleteTestPlugin, NULL));
sl@0
   484
sl@0
   485
	WaitForDiscovererAOL();
sl@0
   486
sl@0
   487
	CRegistryData::CImplementationData *implementationData=NULL;
sl@0
   488
	TUid dummyUid = KNullUid;
sl@0
   489
sl@0
   490
	TInt err = iRegistryDataStateAccessor->FindImplementation(*iRegistryData, iImplementationUid, dummyUid, implementationData);
sl@0
   491
	::LeaveIfErrNoMemoryL(err);
sl@0
   492
sl@0
   493
	CleanupStack::PopAndDestroy(1);
sl@0
   494
sl@0
   495
	if (iDrivesEnabled)
sl@0
   496
		{
sl@0
   497
		test(err == KErrNone);
sl@0
   498
		}
sl@0
   499
	else
sl@0
   500
		{
sl@0
   501
		test(err == KErrNotFound);
sl@0
   502
		}
sl@0
   503
	}
sl@0
   504
sl@0
   505
void CDisableDrivesTest::WaitForDiscovererAOL()
sl@0
   506
	{
sl@0
   507
	// Yield priority to CDiscoverer's AO
sl@0
   508
	CSimpleTimer* timer = new(ELeave) CSimpleTimer(CActive::EPriorityLow);
sl@0
   509
	CleanupStack::PushL(timer);
sl@0
   510
	timer->ConstructL();
sl@0
   511
	timer->StartTimer(KOneSecond * 2);
sl@0
   512
	CActiveScheduler::Start();
sl@0
   513
	CleanupStack::PopAndDestroy(timer);
sl@0
   514
	}
sl@0
   515
sl@0
   516
typedef void (CDisableDrivesTest::*ClassFuncPtrL) (void);
sl@0
   517
sl@0
   518
/**
sl@0
   519
Wrapper function to call all test functions
sl@0
   520
sl@0
   521
@param	aTestFuncL pointer to test function
sl@0
   522
@param	aUseZeroMask if false, let the test use the patchable constant else
sl@0
   523
	initialize the static drive info array with zero, i.e. enabled all.
sl@0
   524
@param	aTestDesc test function name
sl@0
   525
*/
sl@0
   526
LOCAL_C void DoBasicTestL(ClassFuncPtrL aTestFuncL, const TUint32 aTaskMask, const TDesC& aTestDesc)
sl@0
   527
	{
sl@0
   528
	test.Next(aTestDesc);
sl@0
   529
sl@0
   530
	__UHEAP_MARK;
sl@0
   531
  	// find out the number of open handles
sl@0
   532
	TInt startProcessHandleCount;
sl@0
   533
	TInt startThreadHandleCount;
sl@0
   534
	RThread().HandleCount(startProcessHandleCount, startThreadHandleCount);
sl@0
   535
sl@0
   536
	// A series of tasks to perform before calling the test method.
sl@0
   537
sl@0
   538
	// Delete the previous data files to ensure rediscover from scratch
sl@0
   539
	TRAP_IGNORE(EComTestUtils::FileManDeleteFileL(KDataDir));
sl@0
   540
sl@0
   541
	// The two flags below are mutually exclusive.
sl@0
   542
	if (aTaskMask & EPreTest_UnitializeCachedDriveInfo)
sl@0
   543
		{
sl@0
   544
		TDriveInfo_StateAccessor::ClearCachedDriveInfo();
sl@0
   545
		}
sl@0
   546
	else if (aTaskMask & EPreTest_EnableAllDrives)
sl@0
   547
		{
sl@0
   548
		TDriveInfo_StateAccessor::SetDriveDisableMaskL(0);
sl@0
   549
		}
sl@0
   550
sl@0
   551
	if (aTaskMask & EPreTest_CopyPlugins)
sl@0
   552
		{
sl@0
   553
		CopyPlugins();
sl@0
   554
		User::After(KOneSecond);
sl@0
   555
		CleanupStack::PushL(TCleanupItem(DeleteTestPlugin, NULL));
sl@0
   556
		}
sl@0
   557
sl@0
   558
	// All set to start the test
sl@0
   559
	TBool drivesEnabled = (aTaskMask & EPreTest_EnableAllDrives) != 0;
sl@0
   560
	CDisableDrivesTest* disableDrvTest = CDisableDrivesTest::NewL(drivesEnabled);
sl@0
   561
	CleanupStack::PushL(disableDrvTest);
sl@0
   562
sl@0
   563
	(disableDrvTest->*aTestFuncL)();
sl@0
   564
sl@0
   565
	CleanupStack::PopAndDestroy(disableDrvTest);
sl@0
   566
sl@0
   567
	if (aTaskMask & EPreTest_CopyPlugins)
sl@0
   568
		{
sl@0
   569
		CleanupStack::PopAndDestroy(1);
sl@0
   570
		}
sl@0
   571
sl@0
   572
	// check that no handles have leaked
sl@0
   573
	TInt endProcessHandleCount;
sl@0
   574
	TInt endThreadHandleCount;
sl@0
   575
	RThread().HandleCount(endProcessHandleCount, endThreadHandleCount);
sl@0
   576
sl@0
   577
	test(startProcessHandleCount == endProcessHandleCount);
sl@0
   578
	test(startThreadHandleCount  == endThreadHandleCount);
sl@0
   579
sl@0
   580
	__UHEAP_MARKEND;
sl@0
   581
	}
sl@0
   582
sl@0
   583
/**
sl@0
   584
Wrapper function to call all OOM test functions
sl@0
   585
sl@0
   586
@param aTestFuncL pointer to OOM test function
sl@0
   587
@param aTaskMask  indicates tasks need to be done before entering
sl@0
   588
	the OOM loop.
sl@0
   589
@param	aTestDesc test function name
sl@0
   590
*/
sl@0
   591
//LOCAL_C void DoOOMTestL(ClassFuncPtrL aTestFuncL,
sl@0
   592
//						const TUint32 aTaskMask,
sl@0
   593
//						const TDesC& aTestDesc)
sl@0
   594
//	{
sl@0
   595
//	test.Next(aTestDesc);
sl@0
   596
sl@0
   597
//	TInt err(KErrNone);
sl@0
   598
	// A series of tasks to perform before calling the test method.
sl@0
   599
sl@0
   600
	// Delete the previous data files to ensure rediscover from scratch
sl@0
   601
//	TRAP(err, EComTestUtils::FileManDeleteFileL(KDataDir));
sl@0
   602
sl@0
   603
	// The two flags below are mutually exclusive.
sl@0
   604
//	if (aTaskMask & EPreTest_UnitializeCachedDriveInfo)
sl@0
   605
//		{
sl@0
   606
//		TDriveInfo_StateAccessor::ClearCachedDriveInfo();
sl@0
   607
//		}
sl@0
   608
//	else if (aTaskMask & EPreTest_EnableAllDrives)
sl@0
   609
//		{
sl@0
   610
//		TDriveInfo_StateAccessor::SetDriveDisableMaskL(0);
sl@0
   611
//		}
sl@0
   612
sl@0
   613
//	if (aTaskMask & EPreTest_CopyPlugins)
sl@0
   614
//		{
sl@0
   615
//		CopyPlugins();
sl@0
   616
//		User::After(KOneSecond);
sl@0
   617
//		CleanupStack::PushL(TCleanupItem(DeleteTestPlugin, NULL));
sl@0
   618
//		}
sl@0
   619
sl@0
   620
//	TBool drivesEnabled = (aTaskMask & EPreTest_EnableAllDrives) != 0;
sl@0
   621
//	oomStep = 0;
sl@0
   622
sl@0
   623
//	do
sl@0
   624
//		{
sl@0
   625
//		__UHEAP_MARK;
sl@0
   626
  		// find out the number of open handles
sl@0
   627
//		TInt startProcessHandleCount;
sl@0
   628
//		TInt startThreadHandleCount;
sl@0
   629
//		RThread().HandleCount(startProcessHandleCount, startThreadHandleCount);
sl@0
   630
sl@0
   631
		// Need to create object here as ECom has embedded TRAPs
sl@0
   632
		// that will fail the test if memory not available
sl@0
   633
//		CDisableDrivesTest* disableDrvTest = CDisableDrivesTest::NewL(drivesEnabled);
sl@0
   634
//		CleanupStack::PushL(disableDrvTest);
sl@0
   635
sl@0
   636
		// Setting Heap failure for OOM test
sl@0
   637
//		__UHEAP_SETFAIL(RHeap::EDeterministic, ++oomStep);
sl@0
   638
sl@0
   639
//		TRAP(err, (disableDrvTest->*aTestFuncL)());
sl@0
   640
sl@0
   641
//		__UHEAP_SETFAIL(RHeap::ENone, 0);
sl@0
   642
sl@0
   643
//		CleanupStack::PopAndDestroy(disableDrvTest);
sl@0
   644
//		disableDrvTest = NULL;
sl@0
   645
sl@0
   646
		// check that no handles have leaked
sl@0
   647
//		TInt endProcessHandleCount;
sl@0
   648
//		TInt endThreadHandleCount;
sl@0
   649
//		RThread().HandleCount(endProcessHandleCount, endThreadHandleCount);
sl@0
   650
sl@0
   651
//		test(startProcessHandleCount == endProcessHandleCount);
sl@0
   652
//		test(startThreadHandleCount  == endThreadHandleCount);
sl@0
   653
sl@0
   654
//		__UHEAP_MARKEND;
sl@0
   655
//		} while(err == KErrNoMemory);
sl@0
   656
sl@0
   657
//	if (aTaskMask & EPreTest_CopyPlugins)
sl@0
   658
//		{
sl@0
   659
//		CleanupStack::PopAndDestroy(1);
sl@0
   660
//		}
sl@0
   661
sl@0
   662
//	test(err == KErrNone);
sl@0
   663
//	test.Printf(_L("- server succeeded at heap failure rate of %i\n"), oomStep);
sl@0
   664
//	}
sl@0
   665
sl@0
   666
LOCAL_C void DoTestsL()
sl@0
   667
	{
sl@0
   668
	__UHEAP_MARK;
sl@0
   669
sl@0
   670
	// Basic tests
sl@0
   671
	PatchableConstantTest();
sl@0
   672
	CR1182PatchableConstantTest();
sl@0
   673
sl@0
   674
	DoBasicTestL(&CDisableDrivesTest::startupDiscoveryL,
sl@0
   675
				KStartupDiscoveryDrivesDisabledMask,
sl@0
   676
				_L("startupDiscoveryL scan disabled"));
sl@0
   677
sl@0
   678
	// Control step to proof that the method is sound.
sl@0
   679
	DoBasicTestL(&CDisableDrivesTest::startupDiscoveryL,
sl@0
   680
				KStartupDiscoveryDrivesEnabledMask,
sl@0
   681
				_L("startupDiscoveryL scan enabled"));
sl@0
   682
sl@0
   683
	DoBasicTestL(&CDisableDrivesTest::RediscoveryL,
sl@0
   684
				KRediscoveryDrivesDisabledMask,
sl@0
   685
				_L("RediscoveryL scan disabled"));
sl@0
   686
sl@0
   687
	// Control step to proof that the method is sound.
sl@0
   688
	DoBasicTestL(&CDisableDrivesTest::RediscoveryL,
sl@0
   689
				KRediscoveryDrivesEnabledMask,
sl@0
   690
				_L("RediscoveryL scan enabled"));
sl@0
   691
sl@0
   692
	// OOM tests are left in here as instructed by the component owner.
sl@0
   693
	// In case we need to investigate OOM issues in the future then the
sl@0
   694
	// SWE can follow the instructions below to run OOM test manually:
sl@0
   695
	//
sl@0
   696
	// CDiscoverer::CDirScanner::DoScanDriveL in discoverer.cpp ignores
sl@0
   697
	// all errors from RFs::GetDir().
sl@0
   698
	// Go there and manually add if (error == KErrNoMemory) User::LeaveNoMemory()
sl@0
   699
	// Also the three RunError of the CActive in discoverer.cpp need to return
sl@0
   700
	// KErrNoMemory instead of panic.
sl@0
   701
	// NB: after adding the above changes, some OOM tests in t_discoverer and
sl@0
   702
	// t_registrar will timeout in ONB (RTests are given 40 minutes to run but OOM
sl@0
   703
	// test on discovery takes couple hours).
sl@0
   704
	// But if these changes are manual and not submitted in perforce, then
sl@0
   705
	// there is no effect on ONB.
sl@0
   706
sl@0
   707
//	DoOOMTestL(&CDisableDrivesTest::startupDiscoveryL,
sl@0
   708
//				KStartupDiscoveryDrivesDisabledMask,
sl@0
   709
//				_L("OOM startupDiscoveryL scan disabled"));
sl@0
   710
sl@0
   711
//	DoOOMTestL(&CDisableDrivesTest::startupDiscoveryL,
sl@0
   712
//				KStartupDiscoveryDrivesEnabledMask,
sl@0
   713
//				_L("OOM startupDiscoveryL scan enabled"));
sl@0
   714
sl@0
   715
//	DoOOMTestL(&CDisableDrivesTest::RediscoveryL,
sl@0
   716
//				KRediscoveryDrivesDisabledMask,
sl@0
   717
//				_L("OOM RediscoveryL scan disabled"));
sl@0
   718
sl@0
   719
	// Control step to proof that the method is sound.
sl@0
   720
//	DoOOMTestL(&CDisableDrivesTest::RediscoveryL,
sl@0
   721
//				KRediscoveryDrivesEnabledMask,
sl@0
   722
//				_L("OOM RediscoveryL scan enabled"));
sl@0
   723
	__UHEAP_MARKEND;
sl@0
   724
	}
sl@0
   725
sl@0
   726
//Initialise the Active Scheduler
sl@0
   727
LOCAL_C void SetupL()
sl@0
   728
	{
sl@0
   729
	// Construct and install the Active Scheduler. The Active Schedular is needed
sl@0
   730
	// by components used by this test as they are ActiveObjects.
sl@0
   731
	TheActiveScheduler = new(ELeave)CDerivedActiveScheduler;
sl@0
   732
	CActiveScheduler::Install(TheActiveScheduler);
sl@0
   733
	}
sl@0
   734
sl@0
   735
GLDEF_C TInt E32Main()
sl@0
   736
	{
sl@0
   737
	__UHEAP_MARK;
sl@0
   738
sl@0
   739
	test.Printf(_L("\n"));
sl@0
   740
	test.Title();
sl@0
   741
	test.Start( _L("Disable scanning on selected drives via patchable constant") );
sl@0
   742
sl@0
   743
	TheTrapCleanup = CTrapCleanup::New();
sl@0
   744
sl@0
   745
	// Connect the file server instance
sl@0
   746
	User::LeaveIfError(TheFs.Connect());
sl@0
   747
sl@0
   748
	TRAPD(err, SetupL());
sl@0
   749
	test(err == KErrNone);
sl@0
   750
sl@0
   751
	// Call the main tests
sl@0
   752
	TRAP(err, DoTestsL());
sl@0
   753
	test(err == KErrNone);
sl@0
   754
sl@0
   755
	delete TheActiveScheduler;
sl@0
   756
	delete TheTrapCleanup;
sl@0
   757
sl@0
   758
	TheFs.Close();
sl@0
   759
sl@0
   760
	test.End();
sl@0
   761
	test.Close();
sl@0
   762
sl@0
   763
	__UHEAP_MARKEND;
sl@0
   764
	return (KErrNone);
sl@0
   765
	}