os/ossrv/lowlevellibsandfws/pluginfw/Framework/DisableDrivesTest/t_disabledrives.cpp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/lowlevellibsandfws/pluginfw/Framework/DisableDrivesTest/t_disabledrives.cpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,765 @@
     1.4 +// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +// This file contains test classes and their implementations
    1.18 +// to test CDiscoverer will not discover plug-ins on C: and E:
    1.19 +// if the two drives are disabled by the patchable constants.
    1.20 +// 
    1.21 +//
    1.22 +
    1.23 +/**
    1.24 + @file
    1.25 + @internalComponent
    1.26 +*/
    1.27 +#include "RegistryData.h"
    1.28 +#include "Discoverer.h"
    1.29 +#include "ImplementationInformation.h"
    1.30 +#include "RegistryData.h"
    1.31 +#include "Registrar.h"
    1.32 +#include "RegistrarObserver.h"
    1.33 +#include "../EcomTestUtils/EcomTestUtils.h"
    1.34 +#include "DriveInfo.h"
    1.35 +#include "EComPatchDataConstantv2.h"
    1.36 +
    1.37 +#include <e32test.h>
    1.38 +#include <f32file.h>
    1.39 +#include <bautils.h>
    1.40 +#include <startup.hrh>
    1.41 +
    1.42 +_LIT (KDataDir, "C:\\private\\10009D8F\\ECom*");
    1.43 +
    1.44 +// plugins to discover
    1.45 +_LIT(KNewResourceFileNameC, "C:\\resource\\plugins\\EComExample5.rsc");
    1.46 +_LIT(KNewDllFileNameC, "C:\\sys\\bin\\EComExample5.dll");
    1.47 +_LIT(KNewResourceFileNameZ, "z:\\RAMOnly\\EComExample5.rsc");
    1.48 +_LIT(KNewDllFileNameZ,"z:\\RAMOnly\\EComExample5.dll");
    1.49 +
    1.50 +const TInt KOneSecond = 1000000;
    1.51 +
    1.52 +LOCAL_D RTest test(_L("Disable drives"));
    1.53 +LOCAL_D RFs					TheFs;
    1.54 +LOCAL_D CTrapCleanup* 		TheTrapCleanup 		= NULL;
    1.55 +
    1.56 +class CDerivedActiveScheduler;
    1.57 +LOCAL_D CDerivedActiveScheduler* TheActiveScheduler	= NULL;
    1.58 +
    1.59 +LOCAL_D TInt oomStep;
    1.60 +
    1.61 +//It is used by some test methods which are called two times:
    1.62 +//from normal test and from OOM test.
    1.63 +static void LeaveIfErrNoMemoryL(TInt aError)
    1.64 +	{
    1.65 +	if(aError == KErrNoMemory)
    1.66 +		{
    1.67 +		User::Leave(aError);
    1.68 +		}
    1.69 +	}
    1.70 +
    1.71 +// Copies the Plugins to specific folder for testing purpose
    1.72 +LOCAL_C void CopyPlugins()
    1.73 +	{
    1.74 +	TInt err=KErrNone;
    1.75 +	TRAP(err, EComTestUtils::FileManCopyFileL(KNewResourceFileNameZ, KNewResourceFileNameC));
    1.76 +	test(err==KErrNone);
    1.77 +	TRAP(err, EComTestUtils::FileManCopyFileL(KNewDllFileNameZ, KNewDllFileNameC));
    1.78 +	test(err==KErrNone);
    1.79 +	}
    1.80 +
    1.81 +// Deleting plugin from the RAM for cleanup purpose
    1.82 +LOCAL_C void DeleteTestPlugin(TAny* /* aUnused */)
    1.83 +	{
    1.84 +	TInt err=KErrNone;
    1.85 +	TRAP(err, EComTestUtils::FileManDeleteFileL(KNewResourceFileNameC));
    1.86 +	TRAP(err, EComTestUtils::FileManDeleteFileL(KNewDllFileNameC));
    1.87 +	}
    1.88 +
    1.89 +// flags indicating a set of pre-conditions to fullfil before running
    1.90 +// CDisableDrivesTest.
    1.91 +enum TPreTestSetup
    1.92 +	{
    1.93 +	EPreTest_UnitializeCachedDriveInfo = 0x1,
    1.94 +	EPreTest_EnableAllDrives = 0x2,
    1.95 +	EPreTest_CopyPlugins = 0x4
    1.96 +	};
    1.97 +
    1.98 +const TUint32 KStartupDiscoveryDrivesDisabledMask =
    1.99 +	EPreTest_UnitializeCachedDriveInfo | EPreTest_CopyPlugins;
   1.100 +
   1.101 +const TUint32 KStartupDiscoveryDrivesEnabledMask =
   1.102 +	EPreTest_EnableAllDrives | EPreTest_CopyPlugins;
   1.103 +
   1.104 +const TUint32 KRediscoveryDrivesDisabledMask =
   1.105 +	EPreTest_UnitializeCachedDriveInfo;
   1.106 +
   1.107 +const TUint32 KRediscoveryDrivesEnabledMask =
   1.108 +	EPreTest_EnableAllDrives;
   1.109 +
   1.110 +/**
   1.111 +TRegistryData_StateAccessor class allows access to private and protected
   1.112 +members of production code class CRegistryData, as its a friend class.
   1.113 +*/
   1.114 +class TRegistryData_StateAccessor
   1.115 +	{
   1.116 +public:
   1.117 +	TInt FindImplementation(CRegistryData& aRegistryData,
   1.118 +				const TUid aImplUid,
   1.119 +				const TUid aInterfaceUid,
   1.120 +				CRegistryData::CImplementationData*& aImplData) const;
   1.121 +	};
   1.122 +
   1.123 +/** TRegistrar_StateAccessor class allows access to private members
   1.124 +of CRegistrar. */
   1.125 +class TRegistrar_StateAccessor
   1.126 +	{
   1.127 +	static void SetCompletedStateL(CRegistrar& aRegistrar,
   1.128 +								   TStartupStateIdentifier aKnownState);
   1.129 +	};
   1.130 +
   1.131 +/** TDiscoverer_StateAccessor allows manipulation of CDiscoverer
   1.132 +private members. */
   1.133 +class TDiscoverer_StateAccessor
   1.134 +	{
   1.135 +	static void SetCompletedStateL(CDiscoverer& aDiscoverer,
   1.136 +								   CDiscoverer::TDiscovererState aState);
   1.137 +	};
   1.138 +
   1.139 +/** TDriveInfo_StateAccessor class allows access to private members
   1.140 +of CEComCachedDriveInfo. */
   1.141 +class TDriveInfo_StateAccessor
   1.142 +	{
   1.143 +public:
   1.144 +	static void ClearCachedDriveInfo();
   1.145 +
   1.146 +	static void SetDriveDisableMaskL(TUint32 aMask);
   1.147 +	};
   1.148 +
   1.149 +/**
   1.150 +@return		KErrNone if found otherwise KErrNotFound
   1.151 +@param		aRegistryData The CRegistryData class object
   1.152 +@param		aImplUid The implementation to find.
   1.153 +@param		aInterfaceUid If greater than 0 the interface associated with the
   1.154 +			implementation to find.
   1.155 +@param		aImplData The found implementation data.
   1.156 +@pre 		CRegistrar is fully constructed
   1.157 +*/
   1.158 +TInt TRegistryData_StateAccessor::FindImplementation(CRegistryData& aRegistryData,
   1.159 +												const TUid aImplUid,
   1.160 +												const TUid aInterfaceUid,
   1.161 +												CRegistryData::CImplementationData*& aImplData) const
   1.162 +	{
   1.163 +	return aRegistryData.FindImplementation(aImplUid, aInterfaceUid, aImplData);
   1.164 +	}
   1.165 +
   1.166 +/** Mark the static drive info array uninitialized. Then the
   1.167 +next instantiation of CEComCachedDriveInfo will need to setup
   1.168 +the drive info again.
   1.169 +*/
   1.170 +void TDriveInfo_StateAccessor::ClearCachedDriveInfo()
   1.171 +	{
   1.172 +	CEComCachedDriveInfo::iInitialized = EFalse;
   1.173 +	}
   1.174 +
   1.175 +/** Instantiate a CEComCachedDriveInfo object with a special drive
   1.176 +mask. The object is destroyed right away but the static drive info
   1.177 +array is fixed to the special mask.
   1.178 +@param aMask the drive disable mask to set.
   1.179 +*/
   1.180 +void TDriveInfo_StateAccessor::SetDriveDisableMaskL(TUint32 aMask)
   1.181 +	{
   1.182 +	// Set this bool to false otherwise ConstructL will do nothing.
   1.183 +	CEComCachedDriveInfo::iInitialized = EFalse;
   1.184 +
   1.185 +	CEComCachedDriveInfo* ptr = new (ELeave) CEComCachedDriveInfo();
   1.186 +	CleanupStack::PushL(ptr);
   1.187 +	ptr->ConstructL(TheFs, aMask);
   1.188 +	CleanupStack::PopAndDestroy();
   1.189 +	}
   1.190 +
   1.191 +/** Need a CActive to wait for CDiscoverer dir change notifiers. */
   1.192 +class CSimpleTimer : public CTimer
   1.193 +	{
   1.194 +public:
   1.195 +	inline CSimpleTimer(TInt aPriority);
   1.196 +	inline void ConstructL();
   1.197 +	inline void StartTimer(TTimeIntervalMicroSeconds32 aTimeInterval);
   1.198 +
   1.199 +private:
   1.200 +	void RunL();
   1.201 +	};
   1.202 +
   1.203 +inline CSimpleTimer::CSimpleTimer(TInt aPriority)
   1.204 +	: CTimer(aPriority)
   1.205 +	{
   1.206 +	CActiveScheduler::Add(this);
   1.207 +	}
   1.208 +
   1.209 +inline void CSimpleTimer::ConstructL()
   1.210 +	{
   1.211 +	CTimer::ConstructL();
   1.212 +	}
   1.213 +
   1.214 +inline void CSimpleTimer::StartTimer(TTimeIntervalMicroSeconds32 aTimeInterval)
   1.215 +	{
   1.216 +	After(aTimeInterval);
   1.217 +	}
   1.218 +
   1.219 +void CSimpleTimer::RunL()
   1.220 +	{
   1.221 +	CActiveScheduler::Stop();
   1.222 +	}
   1.223 +
   1.224 +/** Avoid E32User::Case 47 panic in OOM test */
   1.225 +class CDerivedActiveScheduler : public CActiveScheduler
   1.226 +	{
   1.227 +public:
   1.228 +	virtual void Error(TInt aError) const;
   1.229 +	};
   1.230 +
   1.231 +void CDerivedActiveScheduler::Error(TInt aError) const
   1.232 +	{
   1.233 +	Halt(aError);
   1.234 +	}
   1.235 +
   1.236 +/**
   1.237 +The implementation of the abstract Registrar Observer class,
   1.238 +used for recieving notifications of registry changes.
   1.239 +Stub class(for CEComServer) used for the creation of CRegistrar class object.
   1.240 +CEComServer class acts as observer for CRegistrar.
   1.241 +*/
   1.242 +class CTestRegistrarObserver : public MRegistrarObserver // codescanner::missingcclass
   1.243 +	{
   1.244 +public:
   1.245 +	// This function is used by RegistrarObserver (i.e.CEComServer) to notify its
   1.246 +	// clients(REComSession objects) that some change has happened in Registry.
   1.247 +	// Here we have no clients to notify, so no implementaion.
   1.248 +	void Notification( TInt /*aNotification*/ ) {}
   1.249 +	};
   1.250 +
   1.251 +/**
   1.252 +Test class for object CRegistrar.
   1.253 +This class provides the parameters and behaviour that
   1.254 +allows this class to behave normally under a test
   1.255 +scenario.
   1.256 +*/
   1.257 +class CDisableDrivesTest : public CBase
   1.258 +	{
   1.259 +public:
   1.260 +	static CDisableDrivesTest* NewL(TBool aDrivesEnabled);
   1.261 +	virtual ~CDisableDrivesTest();
   1.262 +	void startupDiscoveryL();
   1.263 +	void RediscoveryL();
   1.264 +
   1.265 +private:
   1.266 +	CDisableDrivesTest(TBool aDrivesEnabled);
   1.267 +	void ConstructL();
   1.268 +	void WaitForDiscovererAOL();
   1.269 +
   1.270 +public:
   1.271 +	/** The instance of the class under test */
   1.272 +	CRegistrar* iRegistrar;
   1.273 +
   1.274 +	/** The instance of the State Accessor class */
   1.275 +	TRegistrar_StateAccessor* iStateAccessor;
   1.276 +
   1.277 +	/** The registry data instance required to construct a CRegistrar object */
   1.278 +	CRegistryData* iRegistryData;
   1.279 +
   1.280 +	/** The instance of the Registry Data State Accessor class */
   1.281 +	TRegistryData_StateAccessor* iRegistryDataStateAccessor;
   1.282 +
   1.283 +	/** The instance of the observer of CRegistrar class */
   1.284 +	MRegistrarObserver* iRegistrarObserver;
   1.285 +
   1.286 +	/** The destination for the data discovered during a parse */
   1.287 +	CRegistryData::CDllData* iDllData;
   1.288 +
   1.289 +	/** Unique Id of the ECOM dll */
   1.290 +	TUid    iDllUid;
   1.291 +
   1.292 +	/** Unique Id of an interface implementation */
   1.293 +	TUid	iImplementationUid;
   1.294 +
   1.295 +	/** Unique Id of an interface */
   1.296 +	TUid	iInterfaceUid;
   1.297 +
   1.298 +	/** The drive on which interface implementations can be found */
   1.299 +	TDriveUnit	iDriveUnit;
   1.300 +
   1.301 +	/** Ecom plugin which contains interface implementations. Used in Registration APIs.*/
   1.302 +	TEntry		iDllEntry;
   1.303 +
   1.304 +	TBool		iDrivesEnabled;
   1.305 +	};
   1.306 +
   1.307 +/**
   1.308 +Standardised safe construction which
   1.309 +leaves nothing on the cleanup stack.
   1.310 +
   1.311 +@post		CDisableDrivesTest is fully constructed and initialised.
   1.312 +*/
   1.313 +CDisableDrivesTest* CDisableDrivesTest::NewL(TBool aDrivesEnabled)
   1.314 +	{
   1.315 +	CDisableDrivesTest* self = new (ELeave) CDisableDrivesTest(aDrivesEnabled);
   1.316 +	CleanupStack::PushL(self);
   1.317 +	self->ConstructL();
   1.318 +	CleanupStack::Pop(self);
   1.319 +	return self;
   1.320 +	}
   1.321 +
   1.322 +/**
   1.323 +Standardized default c'tor
   1.324 +
   1.325 +@post		CDisableDrivesTest is fully constructed.
   1.326 +*/
   1.327 +CDisableDrivesTest::CDisableDrivesTest(TBool aDrivesEnabled)
   1.328 +:	CBase(),
   1.329 +	iDriveUnit(EDriveC),
   1.330 +	iDrivesEnabled(aDrivesEnabled)
   1.331 +	{
   1.332 +	iDllUid.iUid			= 0x101F847B; // Dlluid for Ecom plugin EComExample5.dll
   1.333 +	iInterfaceUid.iUid		= 0x10009DC0; // Interface uid for interface contained in above plugin
   1.334 +	iImplementationUid.iUid = 0x101f847C; // Implementaion uid for above interface
   1.335 +	TUid uid1 = {0};
   1.336 +	TUid uid2 = {0};
   1.337 +	iDllEntry.iType = TUidType(uid1, uid2, iDllUid);//Setting Dlluid to plugin entry
   1.338 +	}
   1.339 +
   1.340 +/**
   1.341 +Destructor.
   1.342 +
   1.343 +@post		This object is properly destroyed.
   1.344 +*/
   1.345 +CDisableDrivesTest::~CDisableDrivesTest()
   1.346 +	{
   1.347 +	delete iDllData;
   1.348 +	delete iRegistrar;
   1.349 +	delete iRegistryData;
   1.350 +	delete iRegistrarObserver;
   1.351 +	delete iStateAccessor;
   1.352 +	delete iRegistryDataStateAccessor;
   1.353 +	}
   1.354 +
   1.355 +/**
   1.356 +Standardized 2nd(Initialization) phase of two phase construction.
   1.357 +
   1.358 +@post		CDisableDrivesTest is fully constructed.
   1.359 +*/
   1.360 +void CDisableDrivesTest::ConstructL()
   1.361 +	{
   1.362 +	CRegistryData::CDriveData* driveData=NULL;
   1.363 +	iRegistrarObserver = new (ELeave) CTestRegistrarObserver;
   1.364 +	iStateAccessor	   = new (ELeave) TRegistrar_StateAccessor;
   1.365 +	iRegistryDataStateAccessor	   = new (ELeave) TRegistryData_StateAccessor;
   1.366 +	iRegistryData	   = CRegistryData::NewL(TheFs);
   1.367 +	iRegistrar		   = CRegistrar::NewL(*iRegistryData, *iRegistrarObserver, TheFs);
   1.368 +	iDllData		   = CRegistryData::CDllData::NewLC(driveData);
   1.369 +	CleanupStack::Pop(iDllData);
   1.370 +	}
   1.371 +
   1.372 +/**
   1.373 +@SYMTestCaseID		SYSLIB-ECOM-CT-3541
   1.374 +@SYMTestCaseDesc 	Verify ECOM's patchdata scheme works.
   1.375 +@SYMTestPriority 	High
   1.376 +@SYMTestActions  	Check the value of the constant KDiscoveryDisabledDriveList.
   1.377 +@SYMTestExpectedResults It should be 0x14 in hw.
   1.378 +@SYMCR CR1049
   1.379 +*/
   1.380 +void PatchableConstantTest()
   1.381 +	{
   1.382 +	test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-3541 Patch constant value "));
   1.383 +
   1.384 +	// check the patchable constant has the patched value.
   1.385 +#ifdef __ARMCC__
   1.386 +	test(KDiscoveryDisabledDriveList == 0x14);
   1.387 +#else
   1.388 +	// On emulator the constant is not patchable. Thus the RTest links
   1.389 +	// with a different .cpp file.
   1.390 +	test(KDiscoveryDisabledDriveList == 0x00800004);
   1.391 +#endif
   1.392 +	}
   1.393 +
   1.394 +/**
   1.395 +@SYMTestCaseID		SYSLIB-ECOM-CT-4014
   1.396 +@SYMTestCaseDesc 	Check that the patchables for custom resolver caching
   1.397 +    can be patched.
   1.398 +@SYMTestPriority 	High
   1.399 +@SYMTestActions  	Check the values of KCustomResolverCacheSize and
   1.400 +	KCustomResolverCacheTimeout
   1.401 +@SYMTestExpectedResults disabledrivestest.hby sets KCustomResolverCacheSize
   1.402 +	to 1182 and KCustomResolverCacheTimeout to 4001182. Note that this test
   1.403 +	only runs on hw.
   1.404 +@SYMCR CR1182
   1.405 +*/
   1.406 +void CR1182PatchableConstantTest()
   1.407 +	{
   1.408 +	test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-4014 CR1182 patchable constants "));
   1.409 +
   1.410 +	// check the patchable constants have the patched values.
   1.411 +#ifdef __ARMCC__
   1.412 +	test(KCustomResolverCacheSize == 1182);
   1.413 +	test(KCustomResolverCacheTimeout == 4001182);
   1.414 +#else
   1.415 +	test.Printf(_L("This test only runs in armv5."));
   1.416 +#endif
   1.417 +	}
   1.418 +
   1.419 +/**
   1.420 +@SYMTestCaseID		SYSLIB-ECOM-CT-3542
   1.421 +@SYMTestCaseDesc 	Check that CDiscoverer will not discover plug-ins in disabled drives at boot time.
   1.422 +@SYMTestPriority 	High
   1.423 +@SYMTestActions  	Use CRegistrar::ProcessSSAEventL to trigger boot up discovery.
   1.424 +@SYMTestExpectedResults No plugins registered if C: drive is disabled. In the
   1.425 +	control test, C: is enabled and the plugin is registered.
   1.426 +@SYMCR CR1049
   1.427 +*/
   1.428 +void CDisableDrivesTest::startupDiscoveryL()
   1.429 +	{
   1.430 +	test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-3542 "));
   1.431 +
   1.432 +	// Do not scan ReadOnly internal drive in OOM. Will take an hour.
   1.433 +	__UHEAP_SETFAIL(RHeap::ENone, 0);
   1.434 +
   1.435 +	iRegistrar->ProcessSSAEventL(EStartupStateCriticalStatic);
   1.436 +
   1.437 +	if (oomStep)
   1.438 +		{
   1.439 +		__UHEAP_SETFAIL(RHeap::EDeterministic, oomStep);
   1.440 +		}
   1.441 +
   1.442 +	iRegistrar->ProcessSSAEventL(EStartupStateNonCritical);
   1.443 +
   1.444 +	CRegistryData::CImplementationData *implementationData=NULL;
   1.445 +	TUid dummyUid;
   1.446 +	dummyUid.iUid = 0;
   1.447 +
   1.448 +	TInt err = iRegistryDataStateAccessor->FindImplementation(*iRegistryData, iImplementationUid, dummyUid, implementationData);
   1.449 +	::LeaveIfErrNoMemoryL(err);
   1.450 +
   1.451 +	if (iDrivesEnabled)
   1.452 +		{
   1.453 +		test(err == KErrNone);
   1.454 +		}
   1.455 +	else
   1.456 +		{
   1.457 +		test(err == KErrNotFound);
   1.458 +		}
   1.459 +	}
   1.460 +
   1.461 +/**
   1.462 +@SYMTestCaseID		SYSLIB-ECOM-CT-3543
   1.463 +@SYMTestCaseDesc 	Check that CDiscoverer will not discover plug-ins via dir
   1.464 +	change notification if drive is disabled.
   1.465 +@SYMTestPriority 	High
   1.466 +@SYMTestActions  	After startup discovery completed, copy .rsc to
   1.467 +	C:\resource\plugins and the .dll to C:\sys\bin.
   1.468 +@SYMTestExpectedResults The plugin is not registered if C: is disabled. In the
   1.469 +	control test, C: is enabled and the plugin is registered.
   1.470 +@SYMCR CR1049
   1.471 +*/
   1.472 +void CDisableDrivesTest::RediscoveryL()
   1.473 +	{
   1.474 +	test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-3543 "));
   1.475 +	// Do not scan ReadOnly internal drive in OOM. Will take an hour.
   1.476 +	__UHEAP_SETFAIL(RHeap::ENone, 0);
   1.477 +
   1.478 +	iRegistrar->ProcessSSAEventL(EStartupStateNonCritical);
   1.479 +
   1.480 +	if (oomStep)
   1.481 +		{
   1.482 +		__UHEAP_SETFAIL(RHeap::EDeterministic, oomStep);
   1.483 +		}
   1.484 +
   1.485 +	CopyPlugins();
   1.486 +	CleanupStack::PushL(TCleanupItem(DeleteTestPlugin, NULL));
   1.487 +
   1.488 +	WaitForDiscovererAOL();
   1.489 +
   1.490 +	CRegistryData::CImplementationData *implementationData=NULL;
   1.491 +	TUid dummyUid = KNullUid;
   1.492 +
   1.493 +	TInt err = iRegistryDataStateAccessor->FindImplementation(*iRegistryData, iImplementationUid, dummyUid, implementationData);
   1.494 +	::LeaveIfErrNoMemoryL(err);
   1.495 +
   1.496 +	CleanupStack::PopAndDestroy(1);
   1.497 +
   1.498 +	if (iDrivesEnabled)
   1.499 +		{
   1.500 +		test(err == KErrNone);
   1.501 +		}
   1.502 +	else
   1.503 +		{
   1.504 +		test(err == KErrNotFound);
   1.505 +		}
   1.506 +	}
   1.507 +
   1.508 +void CDisableDrivesTest::WaitForDiscovererAOL()
   1.509 +	{
   1.510 +	// Yield priority to CDiscoverer's AO
   1.511 +	CSimpleTimer* timer = new(ELeave) CSimpleTimer(CActive::EPriorityLow);
   1.512 +	CleanupStack::PushL(timer);
   1.513 +	timer->ConstructL();
   1.514 +	timer->StartTimer(KOneSecond * 2);
   1.515 +	CActiveScheduler::Start();
   1.516 +	CleanupStack::PopAndDestroy(timer);
   1.517 +	}
   1.518 +
   1.519 +typedef void (CDisableDrivesTest::*ClassFuncPtrL) (void);
   1.520 +
   1.521 +/**
   1.522 +Wrapper function to call all test functions
   1.523 +
   1.524 +@param	aTestFuncL pointer to test function
   1.525 +@param	aUseZeroMask if false, let the test use the patchable constant else
   1.526 +	initialize the static drive info array with zero, i.e. enabled all.
   1.527 +@param	aTestDesc test function name
   1.528 +*/
   1.529 +LOCAL_C void DoBasicTestL(ClassFuncPtrL aTestFuncL, const TUint32 aTaskMask, const TDesC& aTestDesc)
   1.530 +	{
   1.531 +	test.Next(aTestDesc);
   1.532 +
   1.533 +	__UHEAP_MARK;
   1.534 +  	// find out the number of open handles
   1.535 +	TInt startProcessHandleCount;
   1.536 +	TInt startThreadHandleCount;
   1.537 +	RThread().HandleCount(startProcessHandleCount, startThreadHandleCount);
   1.538 +
   1.539 +	// A series of tasks to perform before calling the test method.
   1.540 +
   1.541 +	// Delete the previous data files to ensure rediscover from scratch
   1.542 +	TRAP_IGNORE(EComTestUtils::FileManDeleteFileL(KDataDir));
   1.543 +
   1.544 +	// The two flags below are mutually exclusive.
   1.545 +	if (aTaskMask & EPreTest_UnitializeCachedDriveInfo)
   1.546 +		{
   1.547 +		TDriveInfo_StateAccessor::ClearCachedDriveInfo();
   1.548 +		}
   1.549 +	else if (aTaskMask & EPreTest_EnableAllDrives)
   1.550 +		{
   1.551 +		TDriveInfo_StateAccessor::SetDriveDisableMaskL(0);
   1.552 +		}
   1.553 +
   1.554 +	if (aTaskMask & EPreTest_CopyPlugins)
   1.555 +		{
   1.556 +		CopyPlugins();
   1.557 +		User::After(KOneSecond);
   1.558 +		CleanupStack::PushL(TCleanupItem(DeleteTestPlugin, NULL));
   1.559 +		}
   1.560 +
   1.561 +	// All set to start the test
   1.562 +	TBool drivesEnabled = (aTaskMask & EPreTest_EnableAllDrives) != 0;
   1.563 +	CDisableDrivesTest* disableDrvTest = CDisableDrivesTest::NewL(drivesEnabled);
   1.564 +	CleanupStack::PushL(disableDrvTest);
   1.565 +
   1.566 +	(disableDrvTest->*aTestFuncL)();
   1.567 +
   1.568 +	CleanupStack::PopAndDestroy(disableDrvTest);
   1.569 +
   1.570 +	if (aTaskMask & EPreTest_CopyPlugins)
   1.571 +		{
   1.572 +		CleanupStack::PopAndDestroy(1);
   1.573 +		}
   1.574 +
   1.575 +	// check that no handles have leaked
   1.576 +	TInt endProcessHandleCount;
   1.577 +	TInt endThreadHandleCount;
   1.578 +	RThread().HandleCount(endProcessHandleCount, endThreadHandleCount);
   1.579 +
   1.580 +	test(startProcessHandleCount == endProcessHandleCount);
   1.581 +	test(startThreadHandleCount  == endThreadHandleCount);
   1.582 +
   1.583 +	__UHEAP_MARKEND;
   1.584 +	}
   1.585 +
   1.586 +/**
   1.587 +Wrapper function to call all OOM test functions
   1.588 +
   1.589 +@param aTestFuncL pointer to OOM test function
   1.590 +@param aTaskMask  indicates tasks need to be done before entering
   1.591 +	the OOM loop.
   1.592 +@param	aTestDesc test function name
   1.593 +*/
   1.594 +//LOCAL_C void DoOOMTestL(ClassFuncPtrL aTestFuncL,
   1.595 +//						const TUint32 aTaskMask,
   1.596 +//						const TDesC& aTestDesc)
   1.597 +//	{
   1.598 +//	test.Next(aTestDesc);
   1.599 +
   1.600 +//	TInt err(KErrNone);
   1.601 +	// A series of tasks to perform before calling the test method.
   1.602 +
   1.603 +	// Delete the previous data files to ensure rediscover from scratch
   1.604 +//	TRAP(err, EComTestUtils::FileManDeleteFileL(KDataDir));
   1.605 +
   1.606 +	// The two flags below are mutually exclusive.
   1.607 +//	if (aTaskMask & EPreTest_UnitializeCachedDriveInfo)
   1.608 +//		{
   1.609 +//		TDriveInfo_StateAccessor::ClearCachedDriveInfo();
   1.610 +//		}
   1.611 +//	else if (aTaskMask & EPreTest_EnableAllDrives)
   1.612 +//		{
   1.613 +//		TDriveInfo_StateAccessor::SetDriveDisableMaskL(0);
   1.614 +//		}
   1.615 +
   1.616 +//	if (aTaskMask & EPreTest_CopyPlugins)
   1.617 +//		{
   1.618 +//		CopyPlugins();
   1.619 +//		User::After(KOneSecond);
   1.620 +//		CleanupStack::PushL(TCleanupItem(DeleteTestPlugin, NULL));
   1.621 +//		}
   1.622 +
   1.623 +//	TBool drivesEnabled = (aTaskMask & EPreTest_EnableAllDrives) != 0;
   1.624 +//	oomStep = 0;
   1.625 +
   1.626 +//	do
   1.627 +//		{
   1.628 +//		__UHEAP_MARK;
   1.629 +  		// find out the number of open handles
   1.630 +//		TInt startProcessHandleCount;
   1.631 +//		TInt startThreadHandleCount;
   1.632 +//		RThread().HandleCount(startProcessHandleCount, startThreadHandleCount);
   1.633 +
   1.634 +		// Need to create object here as ECom has embedded TRAPs
   1.635 +		// that will fail the test if memory not available
   1.636 +//		CDisableDrivesTest* disableDrvTest = CDisableDrivesTest::NewL(drivesEnabled);
   1.637 +//		CleanupStack::PushL(disableDrvTest);
   1.638 +
   1.639 +		// Setting Heap failure for OOM test
   1.640 +//		__UHEAP_SETFAIL(RHeap::EDeterministic, ++oomStep);
   1.641 +
   1.642 +//		TRAP(err, (disableDrvTest->*aTestFuncL)());
   1.643 +
   1.644 +//		__UHEAP_SETFAIL(RHeap::ENone, 0);
   1.645 +
   1.646 +//		CleanupStack::PopAndDestroy(disableDrvTest);
   1.647 +//		disableDrvTest = NULL;
   1.648 +
   1.649 +		// check that no handles have leaked
   1.650 +//		TInt endProcessHandleCount;
   1.651 +//		TInt endThreadHandleCount;
   1.652 +//		RThread().HandleCount(endProcessHandleCount, endThreadHandleCount);
   1.653 +
   1.654 +//		test(startProcessHandleCount == endProcessHandleCount);
   1.655 +//		test(startThreadHandleCount  == endThreadHandleCount);
   1.656 +
   1.657 +//		__UHEAP_MARKEND;
   1.658 +//		} while(err == KErrNoMemory);
   1.659 +
   1.660 +//	if (aTaskMask & EPreTest_CopyPlugins)
   1.661 +//		{
   1.662 +//		CleanupStack::PopAndDestroy(1);
   1.663 +//		}
   1.664 +
   1.665 +//	test(err == KErrNone);
   1.666 +//	test.Printf(_L("- server succeeded at heap failure rate of %i\n"), oomStep);
   1.667 +//	}
   1.668 +
   1.669 +LOCAL_C void DoTestsL()
   1.670 +	{
   1.671 +	__UHEAP_MARK;
   1.672 +
   1.673 +	// Basic tests
   1.674 +	PatchableConstantTest();
   1.675 +	CR1182PatchableConstantTest();
   1.676 +
   1.677 +	DoBasicTestL(&CDisableDrivesTest::startupDiscoveryL,
   1.678 +				KStartupDiscoveryDrivesDisabledMask,
   1.679 +				_L("startupDiscoveryL scan disabled"));
   1.680 +
   1.681 +	// Control step to proof that the method is sound.
   1.682 +	DoBasicTestL(&CDisableDrivesTest::startupDiscoveryL,
   1.683 +				KStartupDiscoveryDrivesEnabledMask,
   1.684 +				_L("startupDiscoveryL scan enabled"));
   1.685 +
   1.686 +	DoBasicTestL(&CDisableDrivesTest::RediscoveryL,
   1.687 +				KRediscoveryDrivesDisabledMask,
   1.688 +				_L("RediscoveryL scan disabled"));
   1.689 +
   1.690 +	// Control step to proof that the method is sound.
   1.691 +	DoBasicTestL(&CDisableDrivesTest::RediscoveryL,
   1.692 +				KRediscoveryDrivesEnabledMask,
   1.693 +				_L("RediscoveryL scan enabled"));
   1.694 +
   1.695 +	// OOM tests are left in here as instructed by the component owner.
   1.696 +	// In case we need to investigate OOM issues in the future then the
   1.697 +	// SWE can follow the instructions below to run OOM test manually:
   1.698 +	//
   1.699 +	// CDiscoverer::CDirScanner::DoScanDriveL in discoverer.cpp ignores
   1.700 +	// all errors from RFs::GetDir().
   1.701 +	// Go there and manually add if (error == KErrNoMemory) User::LeaveNoMemory()
   1.702 +	// Also the three RunError of the CActive in discoverer.cpp need to return
   1.703 +	// KErrNoMemory instead of panic.
   1.704 +	// NB: after adding the above changes, some OOM tests in t_discoverer and
   1.705 +	// t_registrar will timeout in ONB (RTests are given 40 minutes to run but OOM
   1.706 +	// test on discovery takes couple hours).
   1.707 +	// But if these changes are manual and not submitted in perforce, then
   1.708 +	// there is no effect on ONB.
   1.709 +
   1.710 +//	DoOOMTestL(&CDisableDrivesTest::startupDiscoveryL,
   1.711 +//				KStartupDiscoveryDrivesDisabledMask,
   1.712 +//				_L("OOM startupDiscoveryL scan disabled"));
   1.713 +
   1.714 +//	DoOOMTestL(&CDisableDrivesTest::startupDiscoveryL,
   1.715 +//				KStartupDiscoveryDrivesEnabledMask,
   1.716 +//				_L("OOM startupDiscoveryL scan enabled"));
   1.717 +
   1.718 +//	DoOOMTestL(&CDisableDrivesTest::RediscoveryL,
   1.719 +//				KRediscoveryDrivesDisabledMask,
   1.720 +//				_L("OOM RediscoveryL scan disabled"));
   1.721 +
   1.722 +	// Control step to proof that the method is sound.
   1.723 +//	DoOOMTestL(&CDisableDrivesTest::RediscoveryL,
   1.724 +//				KRediscoveryDrivesEnabledMask,
   1.725 +//				_L("OOM RediscoveryL scan enabled"));
   1.726 +	__UHEAP_MARKEND;
   1.727 +	}
   1.728 +
   1.729 +//Initialise the Active Scheduler
   1.730 +LOCAL_C void SetupL()
   1.731 +	{
   1.732 +	// Construct and install the Active Scheduler. The Active Schedular is needed
   1.733 +	// by components used by this test as they are ActiveObjects.
   1.734 +	TheActiveScheduler = new(ELeave)CDerivedActiveScheduler;
   1.735 +	CActiveScheduler::Install(TheActiveScheduler);
   1.736 +	}
   1.737 +
   1.738 +GLDEF_C TInt E32Main()
   1.739 +	{
   1.740 +	__UHEAP_MARK;
   1.741 +
   1.742 +	test.Printf(_L("\n"));
   1.743 +	test.Title();
   1.744 +	test.Start( _L("Disable scanning on selected drives via patchable constant") );
   1.745 +
   1.746 +	TheTrapCleanup = CTrapCleanup::New();
   1.747 +
   1.748 +	// Connect the file server instance
   1.749 +	User::LeaveIfError(TheFs.Connect());
   1.750 +
   1.751 +	TRAPD(err, SetupL());
   1.752 +	test(err == KErrNone);
   1.753 +
   1.754 +	// Call the main tests
   1.755 +	TRAP(err, DoTestsL());
   1.756 +	test(err == KErrNone);
   1.757 +
   1.758 +	delete TheActiveScheduler;
   1.759 +	delete TheTrapCleanup;
   1.760 +
   1.761 +	TheFs.Close();
   1.762 +
   1.763 +	test.End();
   1.764 +	test.Close();
   1.765 +
   1.766 +	__UHEAP_MARKEND;
   1.767 +	return (KErrNone);
   1.768 +	}