Update contrib.
1 // Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // This file contains test classes and their implementations
15 // to test production class CDiscoverer. Where necessary stubs
16 // are implemented to help in writing test harness using RTest.
20 #include "Discoverer.h"
21 #include "EComErrorCodes.h"
22 #include "ImplementationInformation.h"
23 #include "DiscovererObserver.h"
24 #include "../EcomTestUtils/EcomTestUtils.h"
25 #include "EComUidCodes.h"
26 #include "RegistryData.h"
27 #include "DriveInfo.h"
29 #include <ecom/ecompanics.h>
33 #include <barsread2.h>
35 #include <startup.hrh>
40 //New RSC based plugins
41 _LIT(KNewResourceFileName, "C:\\resource\\plugins\\EComExample5.rsc");
42 _LIT(KNewExampleDllFileName, "C:\\sys\\bin\\EComExample5.dll");
43 _LIT(KNewResourceFileNameOnZ, "z:\\RAMOnly\\EComExample5.rsc");
44 _LIT(KNewExampleDllFileNameOnZ, "z:\\RAMOnly\\EComExample5.dll");
45 _LIT(KNewExampleDllFileNameOnly, "EComExample5.dll");
46 _LIT(KNewResourceSearchPath, "\\resource\\plugins\\*");
47 //PlugIn3 RSC based plugins
48 _LIT(KPlugIn3ResourceFileName, "C:\\resource\\plugins\\EComExample12.rsc");
49 _LIT(KPlugIn3ExampleDllFileName, "C:\\sys\\bin\\EComExample12.dll");
50 _LIT(KPlugIn3ResourceFileNameOnZ, "z:\\RAMOnly\\EComExample12.rsc");
51 _LIT(KPlugIn3ExampleDllFileNameOnZ, "z:\\RAMOnly\\EComExample12.dll");
52 _LIT(KPlugIn3ExampleDllFileNameOnly, "EComExample12.dll");
54 //Old DLL based plugins
57 _LIT(KEComSpiTestFilePathAndName, "Z:\\Test\\Data\\EcomTest.spi");
58 _LIT(KEComSpiTestFilePlugIn3PathAndName, "Z:\\Test\\Data\\EcomTestType3.spi");
59 // file name detremined from example spi file
60 _LIT(KEComSpiTestFileDllPathAndName, "Z:\\sys\\bin\\EComExample5.dll");
61 _LIT(KEComSpiTestFilePlugIn3DllPathAndName, "Z:\\sys\\bin\\EComExample12.dll");
64 _LIT(KEComSPIFilePathAndName, "Z:\\private\\10009D8F\\Ecom.spi");
66 const TInt KOneSecond = 1000000;
70 LOCAL_D RTest test(_L("t_discoverer.exe"));
72 LOCAL_D CTrapCleanup* TheTrapCleanup = NULL;
74 LOCAL_D CActiveScheduler* TheActiveScheduler = NULL;
76 // Used for supressing warning in OOM tests
77 #define __UNUSED_VAR(var) var = var
80 #define TEST_OOM_ERR if(err == KErrNoMemory) User::Leave(err)
83 Stub classes are provided to act as replacement members for the class
84 under test. This ensures the test class is constructed correctly and its
85 behaviour is also correct within the context of the test. It allows the
86 class to be tested in isolation. Other tests are available that test the
87 interoperability of the class
89 class CObserverStub : public CBase, public MDiscovererObserver
97 OSS_DiscoverNonCriticalPlugins,
100 static CObserverStub* NewL();
101 virtual ~CObserverStub();
103 // Inherited from MDiscovererObserver
104 virtual void DiscoveriesBegin();
105 virtual void RegisterDiscoveryL(const TDriveName& aDrive,CPluginBase*& aDirEntry,TBool aDatFileExists);
106 virtual void DiscoveriesComplete(TBool aSuccessful, TPluginProcessingTypeIdentifier aProcessingType);
107 virtual void DriveRemovedL(TDriveUnit aDrive);
108 virtual void DriveReinstatedL(TDriveUnit aDrive);
109 virtual void DriveIsSpiBasedL(const TDriveUnit& /*aDrive*/){}
110 virtual TBool NotifiedWithErrorCode(TInt aError);
111 virtual TBool IsAnyDllRegisteredWithDriveL(const TDriveUnit aDrive) const;
112 virtual void SetDiscoveryFlagL(const TDriveUnit &aDrive);
113 virtual void LanguageChangedL(TBool& aLanguageChanged);
116 // Result verifing methods
117 TBool IsDriveMounted(const TDriveUnit aDrive);
118 TBool IsEntryProcessed(CPluginBase*& aDirEntry);
119 //TBool IsSpiEntryProcessed(const TEntry& aEntry);
120 TBool IsDiscoveriesCompleteSuccessfully();
121 void SetDiscoverer(CDiscoverer* aDiscoverer);
128 /** Base class ecom entry */
129 CPluginBase* iEntryBase;
131 /** Information of the dll which contains interface implementations */
132 //TEComEntryDetails iEntry;
134 /** Information of the spi file which contains interface implementations */
135 //TEComSpiResourceEntryDetails iSpiEntry;
137 /** iDriveUnit is drive mounted */
138 TDriveUnit iDriveUnit;
140 /** Flag to indicate whether iDriveUnit is mounted or not */
143 /** Flag to indicate whether iEntry is processed or not */
144 TBool iEntryProcessed;
146 /** Flag to indicate whether iSpiEntry is processed or not */
147 TBool iSpiEntryProcessed;
149 /** Flag to indicate whether Discovery process is Complete or not */
150 TBool iDiscoveriesComplete;
152 /** The current start-up state of this object */
155 /** A reference to the CDiscoverer object that this class is observing*/
156 CDiscoverer* iDiscoverer;
157 }; // End of CObserverStub declaration
161 The TDiscoverer_StateAccessor class allows to access the private and protected
162 members of production code class CDiscoverer, as its a friend class.
164 class TDiscoverer_StateAccessor
168 // Auxiliary functions that provide access to
169 // CDiscoverer private/protected members
170 void ScanDirectoryL(CDiscoverer& aDiscoverer, TDriveUnit aDriveUnit);
171 void ScanDirectoryCancel(CDiscoverer& aDiscoverer);
172 void CompleteNotificationProcessing(CDiscoverer& aDiscoverer);
173 void ValidateEntryL(CDiscoverer& aDiscoverer,
174 const TEntry& aEntry,
175 const TDriveName& aDriveName,
176 CPluginBase*& aEntryToFill,
178 void ValidateEntryL(CDiscoverer& aDiscoverer,
179 RResourceArchive& aRscArchive,
180 CPluginBase*& aEntryToFill);
181 void ProcessEntryL(CDiscoverer& aDiscoverer,const TDriveName& aDrive, CPluginBase*& aEntry, TBool aDatFileExists);
182 void DriveMountedL(CDiscoverer& aDiscoverer, const TDriveUnit aDrive);
183 void DriveUnmountedL(CDiscoverer& aDiscoverer, const TDriveUnit aDrive);
184 void SwiChangeNotificationL(CDiscoverer& aDiscoverer, TInt aSwiOperation);
185 void IdleScanningTimerRunErrorL(CDiscoverer& aDiscoverer, TInt aError);
186 void DirChangeNotifierRunErrorL(CDiscoverer& aDiscoverer, TInt aError);
187 void SwiChangeNotifierRunError(CDiscoverer& aDiscoverer, TInt aError);
189 // Verification functions to check the state of CDiscoverer object against tests
190 TBool IsDriveMounted(CDiscoverer& aDiscoverer, const TDriveUnit aDrive);
191 TBool IsDiscovererActive(CDiscoverer& aDiscoverer);
192 TBool IsDirectoryScanCancelled(CDiscoverer& aDiscoverer);
193 TBool IsScanDirectoryComplete(CDiscoverer& aDiscoverer);
194 TBool IsScanDirectoryPending(CDiscoverer& aDiscoverer, TDriveUnit aDrive);
195 TUint PendingDriveListCount(CDiscoverer& aDiscoverer);
196 CDiscoverer::TDiscovererState State(CDiscoverer& aDiscoverer);
197 CObserverStub::OSState GetDiscovererObserverState(CDiscoverer& aDiscoverer);
198 void ScanDriveL(CDiscoverer& aDiscoverer, TDriveUnit aDrive, TBool aIsRO);
199 void LanguageChangedL(CDiscoverer& aDiscoverer);
203 Scans plugin directories
205 @param aDiscoverer The CDiscoverer class object under test
208 void TDiscoverer_StateAccessor::ScanDirectoryL(CDiscoverer& aDiscoverer, TDriveUnit aDriveUnit)
210 aDiscoverer.RediscoveryScanDirectoryL(aDriveUnit);
214 Stops scanning of the plugin directories
216 @param aDiscoverer The CDiscoverer class object under test
218 void TDiscoverer_StateAccessor::ScanDirectoryCancel(CDiscoverer& aDiscoverer)
220 aDiscoverer.ScanDirectoryCancel();
224 Signals that the directory change has been fully processed.
226 @param aDiscoverer The CDiscoverer class object under test
228 void TDiscoverer_StateAccessor::CompleteNotificationProcessing(CDiscoverer& aDiscoverer)
230 aDiscoverer.CompleteNotificationProcessing();
234 Verifies that the discovered entry is valid.
235 Used to test the Interface Implementation Collection entry
237 @param aDiscoverer The CDiscoverer class object under test
238 @param aEntry The plugin name
239 @param aDriveName The drive containing the entry
240 @param aEntryToFill On return points to complete
241 plugin file name(with path) i.e. aPath + aEntry
243 void TDiscoverer_StateAccessor::ValidateEntryL(CDiscoverer& aDiscoverer,
244 const TEntry& aEntry,
245 const TDriveName& aDriveName,
246 CPluginBase*& aEntryToFill,
249 aDiscoverer.ValidateEntryL(aEntry, aDriveName, aEntryToFill, aIsRO);
253 Verifies that the discovered entry is valid.
254 Used to test the Interface Implementation Collection entry
256 @param aDiscoverer The CDiscoverer class object under test
257 @param aRscArchive reference to the resource archive
258 @param aEntryToFill On return points to complete
259 plugin file name(with path) i.e. aPath + aEntry
261 void TDiscoverer_StateAccessor::ValidateEntryL(CDiscoverer& aDiscoverer,
262 RResourceArchive& aRscArchive,
263 CPluginBase*& aEntryToFill)
265 aDiscoverer.ValidateEntryL(aRscArchive,aEntryToFill);
268 Registers an Interface Implementation Collection
270 @param aDiscoverer The CDiscoverer class object under test
271 @param aEntry This is the plugin name that needs to be registered
273 void TDiscoverer_StateAccessor::ProcessEntryL(CDiscoverer& aDiscoverer,const TDriveName& aDrive,
274 CPluginBase*& aEntry, TBool aDatFileExists)
276 aDiscoverer.ProcessEntryL(aDrive,aEntry,aDatFileExists);
280 Notifies the discoverer of an SWI operation change
282 @param aDiscoverer The CDiscoverer class object under test
283 @param aSwiOperation This new SWI state
285 void TDiscoverer_StateAccessor::SwiChangeNotificationL(CDiscoverer& aDiscoverer, TInt aSwiOperation)
287 aDiscoverer.SwiChangeNotificationL(aSwiOperation);
291 Signals that a drive is available
293 @param aDiscoverer The CDiscoverer class object under test
294 @param aDrive Drive that needs to be mounted
296 void TDiscoverer_StateAccessor::DriveMountedL(CDiscoverer& aDiscoverer,
297 const TDriveUnit aDrive)
299 aDiscoverer.DriveMountedL(aDrive);
303 Signals that a drive is unavailable
305 @param aDiscoverer The CDiscoverer class object under test
306 @param aDrive Drive that needs to be unmounted/removed
308 void TDiscoverer_StateAccessor::DriveUnmountedL(CDiscoverer& aDiscoverer,
309 const TDriveUnit aDrive)
311 aDiscoverer.DriveUnmountedL(aDrive);
315 Checks whether CDiscoverer object has successfully completed with
316 the scanning of the plugin directories on all drives
318 @param aDiscoverer The CDiscoverer class object under test
319 @return true if notification has been processed on all drives.
320 false if there is notification processing pending on any drive
322 TBool TDiscoverer_StateAccessor::IsScanDirectoryComplete(CDiscoverer& aDiscoverer)
324 // check state of discoverer to see if all pending drives have been scanned.
325 return(aDiscoverer.State() == CDiscoverer::EDisc_AllPluginsDisc);
329 Checks whether a notification has been signaled but not processed on specified drive.
331 Error Condition : Leaves with KErrNotFound if the drive is not registered.
332 @param aDiscoverer The CDiscoverer class object under test
333 @param aDrive The drive to check
334 @return true if notification has been processed on the specified drive.
335 false if notification processing is pending
337 TBool TDiscoverer_StateAccessor::IsScanDirectoryPending(CDiscoverer& aDiscoverer, TDriveUnit aDrive)
339 if(aDiscoverer.iScanningTimer->iPendingDriveList.Find(aDrive)!=KErrNotFound)
350 Checks the current count of drives in the list waiting for processing.
352 @param aDiscoverer The CDiscoverer class object under test
355 TUint TDiscoverer_StateAccessor::PendingDriveListCount(CDiscoverer& aDiscoverer)
357 return(aDiscoverer.iScanningTimer->iPendingDriveList.Count());
361 Checks that CDiscoverer object is not scanning the plugin directories.
363 @param aDiscoverer The CDiscoverer class object under test
364 @return true if plugin dirctory scanning is stopped.
366 TBool TDiscoverer_StateAccessor::IsDirectoryScanCancelled(CDiscoverer& aDiscoverer)
368 if(!aDiscoverer.iDirScanner)
376 Checks that CDiscoverer object is currently activated for the plugin dir scanning
378 @param aDiscoverer The CDiscoverer class object under test
379 @return true if Discoverer object is tracking changes in the plugin directories in each drive.
381 TBool TDiscoverer_StateAccessor::IsDiscovererActive(CDiscoverer& aDiscoverer)
383 //Return ETrue if both iScanningTimer & directory notifier(s) are active
384 TBool isActive = ETrue;
386 for(TInt index = 0; index <aDiscoverer.iRscDirNotifierList.Count(); index++)
388 if(!(aDiscoverer.iRscDirNotifierList[index]&& aDiscoverer.iRscDirNotifierList[index]->IsActive()))
390 // iRscDirNotifierList should be active, as each active object on list is constantly
391 // looking for changes in the plugin directories in each drive.
400 Verifies whether given drive is registered
402 @param aDiscoverer The CDiscoverer class object under test
403 @param aDrive Drive that needs to be verified for registration
404 @return return true if given drive is installed
406 TBool TDiscoverer_StateAccessor::IsDriveMounted(CDiscoverer& aDiscoverer,
407 const TDriveUnit aDrive)
409 TBool isMounted = ETrue;
410 if(aDiscoverer.iDrivesDiscovered.Find(aDrive) == KErrNotFound)
418 Scans plugin directories
420 @param aDiscoverer The CDiscoverer class object under test
421 @param aDrive The drive which is scanned
422 @param aIsRO Whether the drive is ready-only
423 @return true if plugin directorie in each drive get scaned successfully
425 void TDiscoverer_StateAccessor::ScanDriveL(CDiscoverer& aDiscoverer, TDriveUnit aDrive, TBool aIsRO)
427 return aDiscoverer.iDirScanner->ScanDriveL(aDrive, aIsRO);
429 void TDiscoverer_StateAccessor::LanguageChangedL(CDiscoverer& aDiscoverer)
431 aDiscoverer.LanguageChangeNotificationL();
434 Retrieve the object's current state.
436 @param aDiscoverer The CDiscoverer class object under test
437 @return TDiscovererState the current state of the CDiscoverer
438 class object under test
440 CDiscoverer::TDiscovererState TDiscoverer_StateAccessor::State(CDiscoverer& aDiscoverer)
442 return aDiscoverer.State();
445 CObserverStub::OSState TDiscoverer_StateAccessor::GetDiscovererObserverState(CDiscoverer& aDiscoverer)
447 CObserverStub* discovererObserver =
448 static_cast<CObserverStub*>(&aDiscoverer.iDiscovererObserver);
449 return discovererObserver->GetState();
453 Call the CIdleScanningTimer RunError funtion
455 @param aDiscoverer The CDiscoverer class object under test
456 @param aError The error code to pass to the RunError function
458 void TDiscoverer_StateAccessor::IdleScanningTimerRunErrorL(CDiscoverer& aDiscoverer, TInt aError)
460 aDiscoverer.iScanningTimer->RunError(aError);
464 Call the CDirChangeNotifier RunError funtion
466 @param aDiscoverer The CDiscoverer class object under test
467 @param aError The error code to pass to the RunError function
469 void TDiscoverer_StateAccessor::DirChangeNotifierRunErrorL(CDiscoverer& aDiscoverer, TInt aError)
471 aDiscoverer.iRscDirNotifierList[0]->RunError(aError);
475 Call the CSwiChangeNotifier RunError funtion
477 @param aDiscoverer The CDiscoverer class object under test
478 @param aError The error code to pass to the RunError function
480 void TDiscoverer_StateAccessor::SwiChangeNotifierRunError(CDiscoverer& aDiscoverer, TInt aError)
482 aDiscoverer.iSwiChangeNotifier->RunError(aError);
486 Creates an instance of CObserverStub class.
488 @return The new'ed object.
490 CObserverStub* CObserverStub::NewL()
492 return new(ELeave) CObserverStub();
498 @post This object is properly destroyed.
500 CObserverStub::~CObserverStub()
508 @post The object is properly constructed.
510 CObserverStub::CObserverStub()
513 iDriveMounted(EFalse),
514 iEntryProcessed(EFalse),
515 iSpiEntryProcessed(EFalse),
516 iDiscoveriesComplete(EFalse),
517 iState(OSS_NoPlugins)
523 MDiscovererObserver callback method, to signal that a discovery
526 void CObserverStub::DiscoveriesBegin()
528 iDiscoveriesComplete = EFalse;
531 void CObserverStub::SetDiscoveryFlagL(const TDriveUnit & /*aDrive*/)
533 iDiscoveriesComplete = ETrue;
536 MDiscovererObserver callback method to register an Ecom Spi file.
538 @param aEntry The Ecom file that needs to be registered
540 void CObserverStub::RegisterDiscoveryL(const TDriveName& /* aDriveName */,CPluginBase*& aEntry,TBool /* aDatFileExists*/)
543 iSpiEntryProcessed = ETrue;
547 MDiscovererObserver callback method, to signal that a discovery
550 @param aSuccessful Indicates discoveries process completed successfully or not
551 @param aProcessingType indicates the type of processing for plugins
552 for ensuring that plugins are not processed multiple times
553 during start-up phase
555 void CObserverStub::DiscoveriesComplete(TBool aSuccessful, TPluginProcessingTypeIdentifier aProcessingType)
557 iDiscoveriesComplete = aSuccessful;
562 if(aProcessingType == EPluginProcessingTypeCriticalOnly &&
563 iDiscoverer->State() == CDiscoverer::EDisc_CriticalPluginsDisc)
565 iState = OSS_CriticalPlugins;
567 else if(aProcessingType == EPluginProcessingTypeAll &&
568 iDiscoverer->State() == CDiscoverer::EDisc_AllPluginsDisc)
570 iState = OSS_AllPlugins;
573 case OSS_CriticalPlugins:
574 if(aProcessingType == EPluginProcessingTypeNonCriticalOnly &&
575 iDiscoverer->State() == CDiscoverer::EDisc_AllPluginsDisc)
577 iState = OSS_AllPlugins;
584 Verifies whether given plugin entry is registered
586 @param aDirEntry The Ecom plugin that to be checked for registration.
587 @return true if given plugin is registered
589 TBool CObserverStub::IsEntryProcessed(CPluginBase*& aDirEntry)
591 if(iEntryProcessed && (iEntryBase->iDllThirdUid == aDirEntry->iDllThirdUid))
600 MDiscovererObserver callback method, to signal that a Drive
601 is removed/dismounted.
603 @param aDrive The drive that is removed.
605 void CObserverStub::DriveRemovedL(TDriveUnit aDrive)
607 iDriveMounted = EFalse;
612 MDiscovererObserver callback method, to signal that a Drive
615 @param aDrive The drive that is available now.
617 void CObserverStub::DriveReinstatedL(TDriveUnit aDrive)
619 iDriveMounted = ETrue;
624 MDiscovererObserver callback method, to signal that
625 during a discovery session an error has occured.
627 @param aError The notification error code.
628 @return true if aError is one of the acceptable error codes
630 TBool CObserverStub::NotifiedWithErrorCode(TInt aError)
632 // Test the safe error codes
633 return (aError == KErrNotReady || // Drive removed
634 aError == KErrPathNotFound); // Directory deleted
638 MDiscovererObserver callback method,to retrieve the drive unit's DAT
641 @param aDrive the identifier of the drive to retrieve DAT file infor from.
642 @return ETrue if DAT file exists on the drive unit, otherwise EFlase.
645 TBool CObserverStub::IsAnyDllRegisteredWithDriveL(const TDriveUnit /*aDrive*/) const
647 // To pass the build always returns EFalse to mean no Dll is discovered in the drive,
648 // it is not used in this test.
653 Verification method that checks whether given drive is available
655 @param aDrive The drive that to be checked.
656 @return true if given drive is registered
658 TBool CObserverStub::IsDriveMounted(const TDriveUnit aDrive)
660 TBool mounted = EFalse;
661 if(iDriveMounted && (aDrive == iDriveUnit))
669 Verification method that checks whether discovery process is completed successfully
671 @return true if discovery process is completed successfully
673 TBool CObserverStub::IsDiscoveriesCompleteSuccessfully()
675 return iDiscoveriesComplete;
679 Returns the current start-up state of this object
681 @return The current start-up state of this object
683 CObserverStub::OSState CObserverStub::GetState()
688 void CObserverStub::SetDiscoverer(CDiscoverer* aDiscoverer)
690 iDiscoverer = aDiscoverer;
693 void CObserverStub::LanguageChangedL(TBool& aLanguageChanged)
695 aLanguageChanged = EFalse;
697 class CDiscovererTestShutdown : public CTimer
700 inline CDiscovererTestShutdown();
701 inline void ConstructL();
702 inline void StartAfter(TTimeIntervalMicroSeconds32 aTimeInterval);
708 inline CDiscovererTestShutdown::CDiscovererTestShutdown()
709 :CTimer(EPriorityHigh)// Priority set higher than CIdleScanningTimer
711 CActiveScheduler::Add(this);
714 inline void CDiscovererTestShutdown::ConstructL()
716 CTimer::ConstructL();
719 inline void CDiscovererTestShutdown::StartAfter(TTimeIntervalMicroSeconds32 aTimeInterval)
721 After(aTimeInterval);
723 void CDiscovererTestShutdown::RunL()
725 CActiveScheduler::Stop();
729 Test class for object CDiscoverer.
730 This class provides the parameters and behaviour that
731 allows this class to behave normally under a test
734 class CDiscovererTest : public CBase
737 static CDiscovererTest* NewL();
738 virtual ~CDiscovererTest();
740 void ResumeSuspendTestL();
741 void DriveMountUnmountTestL();
742 void ProcessEntryTestL();
743 void ProcessSpiEntryTestL();
744 void ValidateSpiEntryTestL();
745 void ValidateSpiPluginsTestL();
746 void ValidateEntryTestL();
747 void ProcessEntryPlugIn3TestL();
748 void ProcessSpiEntryPlugIn3TestL();
749 void ValidateSpiEntryPlugIn3TestL();
750 void ValidateEntryPlugIn3TestL();
751 void ScanDirectoryIncrementTestL();
752 void ScanDirectoryTestL();
753 void ScanDirectoryCancelTestL();
754 void StagedDiscoveryStateTransitionTestL();
755 void AllAtOnceDiscoveryStateTransitionTestL();
756 void MultipleNotificationProcessingTestL();
757 void SWINotificationProcessingTestL();
758 void IdleScanningTimerRunErrorL();
759 void DirChangeNotifierRunErrorL();
760 void SwiChangeNotifierRunError();
761 void LanguageChangedNotificationTestL();
768 /** The instance of the class under test */
769 CDiscoverer* iDiscoverer;
771 /** The instance of the state accessor interface */
772 TDiscoverer_StateAccessor* iStateAccessor;
774 /** The instance of the observer stub of the CDiscoverer */
775 CObserverStub* iDiscovererObserver;
777 /** Unique Id of the ECOM dll */
780 /** The drive on which interface implementations can be found */
781 TDriveUnit iDriveUnit;
783 /** Information on a dll which contains interface implementations */
786 /** A shutdown timer to manipulate the Active Scheduler of testing server */
787 CDiscovererTestShutdown iShutdown;
789 CEComCachedDriveInfo* iCachedDriveInfo;
793 Standardised safe construction which
794 leaves nothing on the cleanup stack.
796 @post CDiscovererTest is fully constructed and initialised
797 @return The new'ed object.
799 CDiscovererTest* CDiscovererTest::NewL()
801 CDiscovererTest* self = new (ELeave) CDiscovererTest();
802 CleanupStack::PushL( self );
804 CleanupStack::Pop(self);
811 @post The object is properly constructed.
813 CDiscovererTest::CDiscovererTest()
820 iDllUid.iUid = 0x10009DB6; // Dll Uid for EComRomOnlyExampleOnC.dll
821 iDllEntry.iType = TUidType(uid1, uid2, iDllUid);
827 @post This object is properly destroyed.
829 CDiscovererTest::~CDiscovererTest()
832 delete iStateAccessor;
833 delete iDiscovererObserver;
834 delete iCachedDriveInfo;
838 Standardized 2nd(Initialization) phase of two phase construction.
839 Creates supporting class objects for the execution of test.
841 @post CDiscovererTest is fully constructed.
843 void CDiscovererTest::ConstructL()
845 iStateAccessor = new(ELeave) TDiscoverer_StateAccessor;
846 iDiscovererObserver = CObserverStub::NewL();
847 iDiscoverer = CDiscoverer::NewL(*iDiscovererObserver, TheFs);
848 iDiscovererObserver->SetDiscoverer(iDiscoverer);
849 iShutdown.ConstructL();
850 iCachedDriveInfo = CEComCachedDriveInfo::NewL(TheFs);
854 The test executes by first suspending the discoverer then by
857 @SYMTestCaseID SYSLIB-ECOM-CT-0716
858 @SYMTestCaseDesc Tests for resuming and suspending Discoverer
859 @SYMTestPriority High
860 @SYMTestActions Suspend if Discoverer is active and then resume. Check for the error conditions(OOM)
861 @SYMTestExpectedResults The test must not fail.
864 void CDiscovererTest::ResumeSuspendTestL()
866 test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0716 "));
867 // Perform an initial discovery and start the notifiers.
868 iDiscoverer->ProcessSSAEventL(EStartupStateNonCritical);
870 TBool isDiscActive = iStateAccessor->IsDiscovererActive(*iDiscoverer);
871 // Notifiers should be active.
874 TInt err = iDiscoverer->Suspend();
876 test(err == KErrNone);
878 // Notifiers should still be active.
879 isDiscActive = iStateAccessor->IsDiscovererActive(*iDiscoverer);
882 // Test that there are no drives pending a scan before we copy the plugin.
883 test(!iStateAccessor->IsScanDirectoryPending(*iDiscoverer, EDriveC));
885 // Raise a plugin change notification on C: drive. This simulates a plugin being copied.
886 iDiscoverer->ProcessDNEventL(CDiscoverer::EPluginsModified, EDriveC);
887 iDiscoverer->ProcessDNEventL(CDiscoverer::EPluginsRediscover, EDriveC);
889 // Test that the drive we copied the plugin to still has a scan pending.
890 test(iStateAccessor->IsScanDirectoryPending(*iDiscoverer, EDriveC));
892 isDiscActive = iStateAccessor->IsDiscovererActive(*iDiscoverer);
893 // Notifiers should still be active.
896 // Start Active Scheduler and shut it down in 3 secs, it will launch RunL of timer to process
897 // all pending notification.
898 iShutdown.StartAfter(KOneSecond * 3);
899 CActiveScheduler::Start();
901 // Check that notifications have not been processed.
902 test(!iStateAccessor->IsScanDirectoryComplete(*iDiscoverer));
904 err = iDiscoverer->Resume();
906 test(err == KErrNone);
908 isDiscActive = iStateAccessor->IsDiscovererActive(*iDiscoverer);
909 // Notifiers should still be active.
912 // Start Active Scheduler and shut it down in 3 secs, it will launch RunL of timer to process
913 // all pending notification.
914 iShutdown.StartAfter(KOneSecond * 3);
915 CActiveScheduler::Start();
917 // Check if notifications have been processed on all drives.
918 test(iStateAccessor->IsScanDirectoryComplete(*iDiscoverer));
922 The test executes by first making the test drive unmounted and
923 then testing for Mount and Unmount.
925 @SYMTestCaseID SYSLIB-ECOM-CT-0717
926 @SYMTestCaseDesc Tests for drive mount and unmount
927 @SYMTestPriority High
928 @SYMTestActions First remove the drive if its already there, then test for Mount then for unmount
929 @SYMTestExpectedResults The test must not fail.
932 void CDiscovererTest::DriveMountUnmountTestL()
934 test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0717 "));
936 TDriveUnit drive(EDriveC);
937 //First remove the drive if its already there, then test for Mount then for unmount
938 if(iStateAccessor->IsDriveMounted(*iDiscoverer, drive))
940 TRAP(err, iStateAccessor->DriveUnmountedL(*iDiscoverer, drive));
942 test(err == KErrNone);
945 // Drive should not be present
946 test(!iStateAccessor->IsDriveMounted(*iDiscoverer, drive));
949 TRAP(err, iStateAccessor->DriveMountedL(*iDiscoverer, drive));
951 test(err == KErrNone);
953 // CDiscoverer->DriveMountedL/DriveUnmountedL updates both itself and
954 // DiscovererObserver class for Mount/Unmount of drives. So testing for both
955 test(iStateAccessor->IsDriveMounted(*iDiscoverer, drive));
956 test(iDiscovererObserver->IsDriveMounted(drive));
959 TRAP(err, iStateAccessor->DriveUnmountedL(*iDiscoverer, drive));
961 test(err == KErrNone );
963 // CDiscoverer->DriveMountedL/DriveUnmountedL updates both itself and
964 // DiscovererObserver class for Mount/Unmount of drives. So testing for both
965 test(!iStateAccessor->IsDriveMounted(*iDiscoverer, drive));
966 test(!iDiscovererObserver->IsDriveMounted(drive));
971 @SYMTestCaseID SYSLIB-ECOM-UT-3559
972 @SYMTestCaseDesc Tests for process entry of PLUGIN3 type.
973 @SYMTestPriority High
974 @SYMTestActions Call CDiscoverer::ProcessEntryL().
975 @SYMTestExpectedResults The entry is registered successfully and no leave occurred.
978 void CDiscovererTest::ProcessEntryPlugIn3TestL()
980 test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-UT-3559 "));
981 CPluginBase* entryBase = NULL;
984 //This part refers to testing of the entry containing the RSC
985 _LIT(KExampleRscFileNameOnly,"EComExample12.rsc");
986 TDriveName driveName1(iDriveUnit.Name());
988 path1.Set(KNewResourceSearchPath(),NULL,&driveName1);
989 //Creating a entry that represents the Rsc disovered during scanning of \\resource\\plugins
991 rscEntry.iName = KExampleRscFileNameOnly;
992 rscEntry.iType = TUidType(KNullUid,KUidInterfaceImplementationCollectionInfo,KNullUid);
993 entryBase = CSecurePlugin::NewL(TheFs,rscEntry,driveName1, EFalse);
994 CleanupStack::PushL(entryBase);
996 // ProcessEntryL() updates entryToFill with information on a rsc specified by the other params.
997 TRAP(err, iStateAccessor->ProcessEntryL(*iDiscoverer,driveName1,entryBase,ETrue));
999 test(err == KErrNone);
1000 CleanupStack::PopAndDestroy(entryBase);
1004 @SYMTestCaseID SYSLIB-ECOM-UT-3560
1005 @SYMTestCaseDesc Check that the ProcessEntryL for spi data works correctly when using PLUGIN3 entries in the spi file.
1006 @SYMTestPriority High
1007 @SYMTestActions Call CDiscoverer::ProcessEntryL().
1008 @SYMTestExpectedResults ecomtesttype3.spi is processed successfully and no leave occurred.
1011 void CDiscovererTest::ProcessSpiEntryPlugIn3TestL()
1013 test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-UT-3560 "));
1015 test(TheFs.Entry(KEComSpiTestFilePlugIn3PathAndName, spiEntry) == KErrNone);
1017 spiPath.Set(KEComSpiTestFilePlugIn3PathAndName, NULL, NULL);
1019 RResourceArchive resourceArchive;
1020 resourceArchive.OpenL(TheFs, KEComSpiTestFilePlugIn3PathAndName);
1021 CleanupClosePushL(resourceArchive);
1023 // check SPI file type
1024 TUid type = resourceArchive.Type();
1025 test(type == KEcomSpiFileTypeUid);
1027 // there is only 1 resource file
1028 while(!resourceArchive.End())
1030 CPluginBase* entry = CSpiPlugin::NewL(resourceArchive);
1031 CleanupStack::PushL(entry);
1033 TRAPD(err, iStateAccessor->ProcessEntryL(*iDiscoverer,spiPath.Drive(), entry,ETrue));
1035 test(err == KErrNone);
1037 CleanupStack::PopAndDestroy(entry);
1040 CleanupStack::PopAndDestroy(&resourceArchive);
1043 @SYMTestCaseID SYSLIB-ECOM-UT-3561
1044 @SYMTestCaseDesc Tests for the reference of the entry containing the DLL of PLUGIN3 type.
1045 @SYMTestPriority High
1046 @SYMTestActions Call CDiscoverer::ValidateEntryL(). Check the entry returned.
1047 @SYMTestExpectedResults The entry is validated successfully and no leave occurred.
1050 void CDiscovererTest::ValidateEntryPlugIn3TestL()
1052 test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-UT-3561 "));
1053 TInt err = KErrNone;
1055 //This part refers to testing of the entry containing the RSC
1056 _LIT(KExampleRscFileNameOnly,"EComExample12.rsc");
1057 TDriveName driveName1(iDriveUnit.Name());
1058 CPluginBase *entryToFill1 = NULL;
1059 //Creating an entry that represents the Rsc disovered during scanning of \\resource\\plugins
1061 rscEntry.iName = KExampleRscFileNameOnly;
1062 rscEntry.iType = TUidType(KNullUid,KUidInterfaceImplementationCollectionInfo,KNullUid);
1064 TUid dllUid1 = {KDynamicLibraryUidValue};
1065 TUid example12Uid = {0x10009E3E};
1066 TUidType dllUidType = TUidType(dllUid1,KUidInterfaceImplementationCollection,example12Uid);
1068 //Now call ValidateEntryL() with this entry containg the rsc
1069 TRAP(err,iStateAccessor->ValidateEntryL(*iDiscoverer,rscEntry,driveName1,entryToFill1, EFalse));
1071 test(err == KErrNone);
1072 test(entryToFill1->iDllThirdUid == dllUidType[2]);
1074 dllParse.Set(KPlugIn3ExampleDllFileName,NULL,NULL);
1075 test(entryToFill1->iDllName->CompareF(dllParse.NameAndExt()) == 0);
1077 delete entryToFill1;
1081 @SYMTestCaseID SYSLIB-ECOM-UT-3562
1082 @SYMTestCaseDesc Check that the ValidateEntryL for spi data works correctly when using PLUGIN3 entries in the spi file.
1083 @SYMTestPriority High
1084 @SYMTestActions Call CDiscoverer::ValidateEntryL(). Check the entry returned.
1085 @SYMTestExpectedResults ecomtesttype3.spi file is validated successfully and no leave occurred.
1088 void CDiscovererTest::ValidateSpiEntryPlugIn3TestL()
1090 test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-UT-3562 "));
1092 test(TheFs.Entry(KEComSpiTestFilePlugIn3PathAndName, spiEntry) == KErrNone);
1094 spiPath.Set(KEComSpiTestFilePlugIn3PathAndName, NULL, NULL);
1097 TUid uid1 = {0x10000079};
1098 TUid uid2 = {0x10009D93};
1099 TUid uid3 = {0x10009E3E}; // Uid for EComExample12.dll
1100 TestEntry.iType = TUidType(uid1, uid2, uid3);
1101 TestEntry.iName = KPlugIn3ExampleDllFileNameOnly;
1103 RResourceArchive resourceArchive;
1104 resourceArchive.OpenL(TheFs, KEComSpiTestFilePlugIn3PathAndName);
1105 CleanupClosePushL(resourceArchive);
1107 // check SPI file type
1108 TUid type = resourceArchive.Type();
1109 test(type == KEcomSpiFileTypeUid);
1111 // there is only 1 resource file
1112 while(!resourceArchive.End())
1114 CPluginBase* entryToFill = NULL;
1115 TRAPD(err, iStateAccessor->ValidateEntryL(*iDiscoverer,resourceArchive,entryToFill));
1116 CleanupStack::PushL(entryToFill);
1119 test(err == KErrNone);
1120 test(entryToFill->iDllThirdUid == TestEntry.iType[2]);
1122 TFileName name1(KEComSpiTestFilePlugIn3DllPathAndName);
1123 TFileName name2(*(entryToFill->iDllName));
1127 dllparse.Set(name1,NULL,NULL);
1128 test(dllparse.NameAndExt()== name2);
1130 CleanupStack::PopAndDestroy(entryToFill); // resourceFile, resourceName, entryToFill
1133 CleanupStack::PopAndDestroy(&resourceArchive);
1137 The test executes by Registering an Interface Implementation Collection
1138 and later verifing it
1140 @SYMTestCaseID SYSLIB-ECOM-CT-0718
1141 @SYMTestCaseDesc Tests for process entry.
1142 @SYMTestPriority High
1143 @SYMTestActions Register an interface implementation collection and later verifies it.
1144 Check for OOM error.
1145 @SYMTestExpectedResults The test must not fail.
1148 void CDiscovererTest::ProcessEntryTestL()
1150 test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0718 "));
1151 CPluginBase* entryBase=NULL;
1154 //This part refers to testing of the entry containing the RSC
1155 _LIT(KExampleRscFileNameOnly,"EComExample5.rsc");
1156 TDriveName driveName1(iDriveUnit.Name());
1158 path1.Set(KNewResourceSearchPath(),NULL,&driveName1);
1159 //Creating a entry that represents the Rsc disovered during scanning of \\resource\\plugins
1161 rscEntry.iName=KExampleRscFileNameOnly;
1162 rscEntry.iType=TUidType(KNullUid,KUidInterfaceImplementationCollectionInfo,KNullUid);
1163 TUid dllUid1 = {KDynamicLibraryUidValue};
1164 TUid example5Uid={0x101F847B};
1165 TUidType dllUidType=TUidType(dllUid1,KUidInterfaceImplementationCollection,example5Uid);
1166 entryBase=CSecurePlugin::NewL(TheFs,rscEntry,driveName1, EFalse);
1167 CleanupStack::PushL(entryBase);
1169 // ProcessEntryL() updates entryToFill with information on a rsc specified by the other params.
1170 TRAP(err, iStateAccessor->ProcessEntryL(*iDiscoverer,driveName1,entryBase,ETrue));
1172 test(err == KErrNone);
1173 CleanupStack::PopAndDestroy(entryBase);
1179 @SYMTestCaseID SYSLIB-ECOM-CT-0091
1180 @SYMTestCaseDesc Check that the ProcessEntryL for spi data works correctly.
1181 @SYMTestPriority High
1182 @SYMTestActions Ensure ecomtest.spi can be processed successfully
1183 and no leave occurred.
1184 @SYMTestExpectedResults The test must not fail.
1187 void CDiscovererTest::ProcessSpiEntryTestL()
1189 test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0091 "));
1191 test(TheFs.Entry(KEComSpiTestFilePathAndName, spiEntry) == KErrNone);
1193 spiPath.Set(KEComSpiTestFilePathAndName, NULL, NULL);
1195 RResourceArchive resourceArchive;
1196 resourceArchive.OpenL(TheFs, KEComSpiTestFilePathAndName);
1197 CleanupClosePushL(resourceArchive);
1199 // check SPI file type
1200 TUid type = resourceArchive.Type();
1201 test(type == KEcomSpiFileTypeUid);
1203 // there is only 1 resource file
1204 while(!resourceArchive.End())
1206 CPluginBase* entry = CSpiPlugin::NewL(resourceArchive);
1207 CleanupStack::PushL(entry);
1209 TRAPD(err, iStateAccessor->ProcessEntryL(*iDiscoverer,spiPath.Drive(), entry,ETrue));
1211 test(err == KErrNone);
1213 CleanupStack::PopAndDestroy(entry);
1216 CleanupStack::PopAndDestroy(&resourceArchive);
1219 The test executes by checking whether discovered plugin entry is valid
1221 @SYMTestCaseID SYSLIB-ECOM-CT-0719
1222 @SYMTestCaseDesc Tests for plugin that resides on C drive
1223 @SYMTestPriority High
1224 @SYMTestActions Tests for the reference of the entry containing in the DLL
1225 Check for OOM error.
1226 @SYMTestExpectedResults The test must not fail.
1229 void CDiscovererTest::ValidateEntryTestL()
1231 test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0719 "));
1234 //This part refers to testing of the entry containing the RSC
1235 _LIT(KExampleRscFileNameOnly,"EComExample5.rsc");
1236 TDriveName driveName1(iDriveUnit.Name());
1238 CPluginBase *entryToFill1 = NULL;
1239 path1.Set(KNewResourceSearchPath(),NULL,&driveName1);
1240 //Creating a entry that represents the Rsc disovered during scanning of \\resource\\plugins
1242 rscEntry.iName=KExampleRscFileNameOnly;
1243 rscEntry.iType=TUidType(KNullUid,KUidInterfaceImplementationCollectionInfo,KNullUid);
1245 TUid dllUid1 = {KDynamicLibraryUidValue};
1246 TUid example5Uid={0x101F847B};
1247 TUidType dllUidType=TUidType(dllUid1,KUidInterfaceImplementationCollection,example5Uid);
1249 //Now call ValidateEntryL() with this entry containg the rsc
1250 TRAP(err,iStateAccessor->ValidateEntryL(*iDiscoverer,rscEntry,driveName1,entryToFill1, EFalse));
1252 test(err==KErrNone);
1253 test(entryToFill1->iDllThirdUid==dllUidType[2]);
1255 dllParse.Set(KNewExampleDllFileName,NULL,NULL);
1256 test(entryToFill1->iDllName->CompareF(dllParse.NameAndExt())==0);
1258 delete entryToFill1;
1262 @SYMTestCaseID SYSLIB-ECOM-CT-0092
1263 @SYMTestCaseDesc Check that the ValidateEntryL for spi data works correctly.
1264 @SYMTestPriority High
1265 @SYMTestActions Ensure ecomtest.spi can be validated successfully
1266 and no leave occurred.
1267 @SYMTestExpectedResults The test must not fail.
1270 void CDiscovererTest::ValidateSpiEntryTestL()
1272 test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0092 "));
1274 test(TheFs.Entry(KEComSpiTestFilePathAndName, spiEntry) == KErrNone);
1276 spiPath.Set(KEComSpiTestFilePathAndName, NULL, NULL);
1279 TUid uid1 = {0x10000079};
1280 TUid uid2 = {0x10009D8D};
1281 TUid uid3 = {0x101F847B}; // Uid for EComExample5.dll
1282 TestEntry.iType = TUidType(uid1, uid2, uid3);
1283 TestEntry.iName = KNewExampleDllFileNameOnly;
1285 RResourceArchive resourceArchive;
1286 resourceArchive.OpenL(TheFs, KEComSpiTestFilePathAndName);
1287 CleanupClosePushL(resourceArchive);
1289 // check SPI file type
1290 TUid type = resourceArchive.Type();
1291 test(type == KEcomSpiFileTypeUid);
1293 // there is only 1 resource file
1294 while(!resourceArchive.End())
1296 CPluginBase* entryToFill = NULL;
1297 TRAPD(err, iStateAccessor->ValidateEntryL(*iDiscoverer,resourceArchive,entryToFill));
1298 CleanupStack::PushL(entryToFill);
1301 test(err == KErrNone);
1302 test(entryToFill->iDllThirdUid == TestEntry.iType[2]);
1304 TFileName name1(KEComSpiTestFileDllPathAndName);
1305 TFileName name2(*(entryToFill->iDllName));
1309 dllparse.Set(name1,NULL,NULL);
1310 test(dllparse.NameAndExt()== name2);
1312 CleanupStack::PopAndDestroy(entryToFill); // resourceFile, resourceName, entryToFill
1315 CleanupStack::PopAndDestroy(&resourceArchive);
1319 @SYMTestCaseID SYSLIB-ECOM-CT-0093
1320 @SYMTestCaseDesc Check that there is DLL for each resource in SPI file
1321 @SYMTestPriority High
1322 @SYMTestActions Ensure ecom.spi contents i.e, rsc, actually exist on drive
1323 @SYMTestExpectedResults The test must not fail.
1326 void CDiscovererTest::ValidateSpiPluginsTestL()
1328 test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0093 "));
1332 TBool err = TheFs.Entry(KEComSPIFilePathAndName, spiEntry);
1333 // It is possible for ecom.spi file not to exist. If it does not then no testing can be done.
1338 spiPath.Set(KEComSPIFilePathAndName, NULL, NULL);
1340 //To read the SPI file
1341 RResourceArchive resourceArchive;
1342 resourceArchive.OpenL(TheFs, KEComSPIFilePathAndName);
1343 CleanupClosePushL(resourceArchive);
1344 CRegistryData::CDriveData* driveData = NULL;
1345 //Check spi file type
1346 TUid spiType = resourceArchive.Type();
1347 test(spiType == KEcomSpiFileTypeUid);
1349 while(!resourceArchive.End())
1351 CPluginBase* entryToFill = NULL;
1352 TRAPD(err, iStateAccessor->ValidateEntryL(*iDiscoverer,resourceArchive,entryToFill));
1353 CleanupStack::PushL(entryToFill);
1356 test(err == KErrNone);
1358 CRegistryData::CDllData * dllData=CRegistryData::CDllData::NewLC(*(entryToFill->iDllName),entryToFill->iDllModifiedTime,entryToFill->iDllSecondUid, entryToFill->iDllThirdUid,driveData);
1360 TBool successful=dllData->ProcessSecurityCheckL();
1363 _LIT(KMessage,"ERROR: Plugin SID Mismatch ERROR for %S.");
1364 RDebug::Print(KMessage, entryToFill->iDllName);
1368 CleanupStack::PopAndDestroy(dllData);
1369 CleanupStack::PopAndDestroy(entryToFill);
1373 CleanupStack::PopAndDestroy(&resourceArchive);
1379 Scans plugin directories and verifies successfull completion
1381 @SYMTestCaseID SYSLIB-ECOM-CT-0720
1382 @SYMTestCaseDesc Tests for scanning plugin directories and verifies successfull completion
1383 @SYMTestPriority High
1384 @SYMTestActions Scans registered plugin directories from A to Z drive
1385 @SYMTestExpectedResults The test must not fail.
1388 void CDiscovererTest::ScanDirectoryIncrementTestL()
1390 test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0720 "));
1392 // Scans registered plugin directories from A to Z drive
1393 TEComCachedDriveInfoIterator iter(*iCachedDriveInfo);
1394 for(iter.Last(); iter.InRange(); iter.Prev())
1396 TRAP(err, iStateAccessor->ScanDirectoryL(*iDiscoverer,iter.DriveNumber()));
1398 test(err == KErrNone);
1400 // After successful completion of ScanDirectoryL, DiscovererObserver is updated
1401 // with DiscoveriesComplete successful
1402 // DiscovererObserver is a stub class used in place of CRegistrar. Flags are used for the
1403 // successfull execution of API
1404 test(iDiscovererObserver->IsDiscoveriesCompleteSuccessfully());
1408 Stops scaning of plugin directories
1410 @SYMTestCaseID SYSLIB-ECOM-CT-0722
1411 @SYMTestCaseDesc Tests for stopping of scanning plugin directories
1412 @SYMTestPriority High
1413 @SYMTestActions Stops scaning of plugin directories. Check for OOM error.
1414 @SYMTestExpectedResults The test must not fail.
1417 void CDiscovererTest::ScanDirectoryCancelTestL()
1419 test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0722 "));
1420 TRAPD(err, iStateAccessor->ScanDirectoryCancel(*iDiscoverer));
1422 test(err == KErrNone);
1423 test(iStateAccessor->IsDirectoryScanCancelled(*iDiscoverer));
1427 Scaning of plugin directories in Z: drive and C:drive, check these two drives is in drive list
1429 @SYMTestCaseID SYSLIB-ECOM-UT-1859
1430 @SYMTestCaseDesc Tests for scanning plugin directories in specific drives.
1431 @SYMTestPriority High
1432 @SYMTestActions scaning of plugin directories. Check for OOM error.
1433 @SYMTestExpectedResults The test must not fail.
1437 void CDiscovererTest::ScanDirectoryTestL()
1439 test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-UT-1859 "));
1440 EComPerformance::ResetEComPerfTimeRecords();
1442 // Do scan on specific drive
1443 TRAPD(err, iStateAccessor->ScanDriveL(*iDiscoverer, EDriveZ, ETrue));
1445 test(err == KErrNone);
1447 TRAP(err, iStateAccessor->ScanDriveL(*iDiscoverer, EDriveC, EFalse));
1449 test(err == KErrNone);
1451 // Test record information correct
1452 test(EComPerformance::iEComPerfTimeRecordCount == 4);
1453 test(EComPerformance::iEComPerfTimeRecords[0].iType == ECDiscovererRediscoveryScanDirectoryL);
1454 test(EComPerformance::iEComPerfTimeRecords[0].iInfo == EDriveZ);
1455 test(EComPerformance::iEComPerfTimeRecords[1].iType == ECDiscovererRediscoveryScanDirectoryL);
1456 test(EComPerformance::iEComPerfTimeRecords[1].iInfo == EDriveZ);
1458 test(EComPerformance::iEComPerfTimeRecords[2].iType == ECDiscovererRediscoveryScanDirectoryL);
1459 test(EComPerformance::iEComPerfTimeRecords[2].iInfo == EDriveC);
1460 test(EComPerformance::iEComPerfTimeRecords[3].iType == ECDiscovererRediscoveryScanDirectoryL);
1461 test(EComPerformance::iEComPerfTimeRecords[3].iInfo == EDriveC);
1465 @SYMTestCaseID SYSLIB-ECOM-CT-0185
1466 @SYMTestCaseDesc Check that SSA related states transition as expected when discovery is staged
1467 @SYMTestPriority High
1468 @SYMTestActions Use CDiscoverer::ProcessSSAEventL to start discovery in stages i.e. rom only
1469 then non rom only. Check that the
1470 CDiscoverer state is transitioning correctly at every step.
1471 @SYMTestExpectedResults The test must not fail.
1474 void CDiscovererTest::StagedDiscoveryStateTransitionTestL()
1476 test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0185 "));
1477 //After construction check that:
1478 //- current state is EDisc_NoPluginsDisc
1479 //- registry is empty. i.e. no plugins discovered
1480 test(iStateAccessor->State(*iDiscoverer) == CDiscoverer::EDisc_NoPluginsDisc);
1482 //Call ProcessSSAEvent with state set to various states that will
1483 //not cause a transition. Check that:
1484 //- current state has not changed
1485 iDiscoverer->ProcessSSAEventL(EStartupStateUndefined);
1486 test(iStateAccessor->State(*iDiscoverer) == CDiscoverer::EDisc_NoPluginsDisc);
1488 //Call ProcessSSAEventL with EStartupStateCriticalStatic state.
1490 //- current state is EDisc_CriticalPluginsDisc
1491 //- discoverer observer has processed RO plugins
1492 iDiscoverer->ProcessSSAEventL(EStartupStateCriticalStatic);
1493 test(iStateAccessor->GetDiscovererObserverState(*iDiscoverer) == CObserverStub::OSS_CriticalPlugins);
1494 test(iStateAccessor->State(*iDiscoverer) == CDiscoverer::EDisc_CriticalPluginsDisc);
1496 //Call ProcessSSAEvent with state set to various states that will
1497 //not cause a transition. Check that:
1498 //- current state has not changed
1499 iDiscoverer->ProcessSSAEventL(EStartupStateUndefined);
1500 test(iStateAccessor->State(*iDiscoverer) == CDiscoverer::EDisc_CriticalPluginsDisc);
1501 iDiscoverer->ProcessSSAEventL(EStartupStateCriticalStatic);
1502 test(iStateAccessor->State(*iDiscoverer) == CDiscoverer::EDisc_CriticalPluginsDisc);
1504 //Call ProcessSSAEventL with EStartupStateNonCritical state. Check that
1505 //- current state is EDisc_AllPluginsDisc
1506 //- discoverer observer has processed non-RO plugins
1507 iDiscoverer->ProcessSSAEventL(EStartupStateNonCritical);
1508 test(iStateAccessor->GetDiscovererObserverState(*iDiscoverer) == CObserverStub::OSS_AllPlugins);
1509 test(iStateAccessor->State(*iDiscoverer) == CDiscoverer::EDisc_AllPluginsDisc);
1511 //Call ProcessSSAEvent with state set to various states that will
1512 //not cause a transition. Check that:
1513 //- current state has not changed
1514 iDiscoverer->ProcessSSAEventL(EStartupStateUndefined);
1515 test(iStateAccessor->State(*iDiscoverer) == CDiscoverer::EDisc_AllPluginsDisc);
1516 iDiscoverer->ProcessSSAEventL(EStartupStateCriticalStatic);
1517 test(iStateAccessor->State(*iDiscoverer) == CDiscoverer::EDisc_AllPluginsDisc);
1518 iDiscoverer->ProcessSSAEventL(EStartupStateCriticalDynamic);
1519 test(iStateAccessor->State(*iDiscoverer) == CDiscoverer::EDisc_AllPluginsDisc);
1520 iDiscoverer->ProcessSSAEventL(EStartupStateNonCritical);
1521 test(iStateAccessor->State(*iDiscoverer) == CDiscoverer::EDisc_AllPluginsDisc);
1523 //Call ProcessDNEventL to indicate that current set of plugins is dirty.
1525 //- current state is EDisc_PluginsDirty
1526 iDiscoverer->ProcessDNEventL(CDiscoverer::EPluginsModified, EDriveC);
1527 test(iStateAccessor->State(*iDiscoverer) == CDiscoverer::EDisc_PluginsDirty);
1529 //Call ProcessDNEventL to indicate that a rediscovery should take place.
1531 //- current state is EDisc_AllPluginsDisc
1532 iDiscoverer->ProcessDNEventL(CDiscoverer::EPluginsRediscover, EDriveC);
1533 iStateAccessor->CompleteNotificationProcessing(*iDiscoverer);
1534 test(iStateAccessor->State(*iDiscoverer) == CDiscoverer::EDisc_AllPluginsDisc);
1538 @SYMTestCaseID SYSLIB-ECOM-CT-0186
1539 @SYMTestCaseDesc Check that SSA related states transition as expected when discovery is all at once
1540 @SYMTestPriority High
1541 @SYMTestActions Use CDiscoverer::ProcessSSAEventL to start discovery all at once. Check that the
1542 CDiscoverer state is transitioning correctly at every step.
1543 @SYMTestExpectedResults The test must not fail.
1546 void CDiscovererTest::AllAtOnceDiscoveryStateTransitionTestL()
1548 test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0186 "));
1549 //After construction check that:
1550 //- current state is EDisc_NoPluginsDisc
1551 //- registry is empty. i.e. no plugins discovered
1552 test(iStateAccessor->State(*iDiscoverer) == CDiscoverer::EDisc_NoPluginsDisc);
1554 //Call ProcessSSAEvent with state set to various states that will
1555 //not cause a transition. Check that:
1556 //- current state has not changed
1557 iDiscoverer->ProcessSSAEventL(EStartupStateUndefined);
1558 test(iStateAccessor->State(*iDiscoverer) == CDiscoverer::EDisc_NoPluginsDisc);
1560 //Call ProcessSSAEventL with EStartupStateNonCritical state. Check that
1561 //- current state is EDisc_AllPluginsDisc
1562 //- discoverer observer has processed non-RO plugins
1563 iDiscoverer->ProcessSSAEventL(EStartupStateNonCritical);
1564 test(iStateAccessor->GetDiscovererObserverState(*iDiscoverer) == CObserverStub::OSS_AllPlugins);
1565 test(iStateAccessor->State(*iDiscoverer) == CDiscoverer::EDisc_AllPluginsDisc);
1567 //Call ProcessSSAEvent with state set to various states that will
1568 //not cause a transition. Check that:
1569 //- current state has not changed
1570 iDiscoverer->ProcessSSAEventL(EStartupStateUndefined);
1571 test(iStateAccessor->State(*iDiscoverer) == CDiscoverer::EDisc_AllPluginsDisc);
1572 iDiscoverer->ProcessSSAEventL(EStartupStateCriticalStatic);
1573 test(iStateAccessor->State(*iDiscoverer) == CDiscoverer::EDisc_AllPluginsDisc);
1574 iDiscoverer->ProcessSSAEventL(EStartupStateCriticalDynamic);
1575 test(iStateAccessor->State(*iDiscoverer) == CDiscoverer::EDisc_AllPluginsDisc);
1576 iDiscoverer->ProcessSSAEventL(EStartupStateNonCritical);
1577 test(iStateAccessor->State(*iDiscoverer) == CDiscoverer::EDisc_AllPluginsDisc);
1579 //Call ProcessDNEventL to indicate that current set of plugins is dirty.
1581 //- current state is EDisc_PluginsDirty
1582 iDiscoverer->ProcessDNEventL(CDiscoverer::EPluginsModified, EDriveC);
1583 test(iStateAccessor->State(*iDiscoverer) == CDiscoverer::EDisc_PluginsDirty);
1585 //Call ProcessDNEventL to indicate that a rediscovery should take place.
1587 //- current state is EDisc_AllPluginsDisc
1588 iDiscoverer->ProcessDNEventL(CDiscoverer::EPluginsRediscover, EDriveC);
1589 iStateAccessor->CompleteNotificationProcessing(*iDiscoverer);
1590 test(iStateAccessor->State(*iDiscoverer) == CDiscoverer::EDisc_AllPluginsDisc);
1594 @SYMTestCaseID SYSLIB-ECOM-UT-1796
1595 @SYMTestCaseDesc Tests multiple notification processing for
1596 "INC087110: ECOM rescanning code could miss a drive?" and
1597 "DEF088454: [PCB] ECOM CDiscoverer::CIdleScanningTimer::RunL() Performs Unnecessary Tasks"
1598 @SYMTestPriority High
1599 @SYMTestActions Create multiple notification request on both single drive and multiple drives.
1600 Check if the notifications are ONLY processed on corresponding drive(s) by timer.
1601 Check the notifications are processed properly by timer.
1602 Check the state of discoverer was set correctly on completion.
1603 @SYMTestExpectedResults The test must not fail.
1604 @SYMDEF INC087110, DEF088454
1606 void CDiscovererTest::MultipleNotificationProcessingTestL()
1608 test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-UT-1796 "));
1609 TBool pending = EFalse;
1611 // Multiple notification on single drive:
1612 iDiscoverer->ProcessSSAEventL(EStartupStateNonCritical);
1613 // Raise multiple notification on C: drive
1614 for(TInt num = 0; num < 10; ++num)
1616 iDiscoverer->ProcessDNEventL(CDiscoverer::EPluginsModified, EDriveC);
1617 iDiscoverer->ProcessDNEventL(CDiscoverer::EPluginsRediscover, EDriveC);
1620 // Check only one pending drive in the list.
1621 test(iStateAccessor->PendingDriveListCount(*iDiscoverer) == 1);
1622 // Check the pending drive is C: drive
1623 pending = iStateAccessor->IsScanDirectoryPending(*iDiscoverer, EDriveC);
1626 // Start Active Scheduler and shut it down in 3 secs, it will launch RunL of timer to process
1627 // all pending notification.
1628 iShutdown.StartAfter(KOneSecond * 3);
1629 CActiveScheduler::Start();
1631 // Check if notifications have been processed on all drives.
1632 test(iStateAccessor->IsScanDirectoryComplete(*iDiscoverer));
1634 // Multiple notification on multiple drives:
1635 iDiscoverer->ProcessSSAEventL(EStartupStateNonCritical);
1636 // Raise multiple notification on C: drive
1637 for(TInt num = 0; num < 10; ++num)
1639 iDiscoverer->ProcessDNEventL(CDiscoverer::EPluginsModified, EDriveC);
1640 iDiscoverer->ProcessDNEventL(CDiscoverer::EPluginsRediscover, EDriveC);
1642 #if defined(__WINSCW__) // X: drive on emulator
1643 // Raise multiple notification on X: drive
1644 for(TInt num = 0; num < 10; ++num)
1646 iDiscoverer->ProcessDNEventL(CDiscoverer::EPluginsModified, EDriveX);
1647 iDiscoverer->ProcessDNEventL(CDiscoverer::EPluginsRediscover, EDriveX);
1650 #else // E: drive on HW
1651 // Raise multiple notification on E: drive
1652 for(TInt num = 0; num < 10; ++num)
1654 iDiscoverer->ProcessDNEventL(CDiscoverer::EPluginsModified, EDriveE);
1655 iDiscoverer->ProcessDNEventL(CDiscoverer::EPluginsRediscover, EDriveE);
1657 #endif // __WINSCW__
1659 // Check only one pending drive in the list.
1660 test(iStateAccessor->PendingDriveListCount(*iDiscoverer) == 2);
1662 // Check the pending drive are C: and X: on emulator, or C: and E: on hardware.
1663 pending = iStateAccessor->IsScanDirectoryPending(*iDiscoverer, EDriveC);
1665 #if defined(__WINSCW__) // X: drive on emulator
1666 pending = iStateAccessor->IsScanDirectoryPending(*iDiscoverer, EDriveX);
1668 #else // E: drive on HW
1669 pending = iStateAccessor->IsScanDirectoryPending(*iDiscoverer, EDriveE);
1671 #endif // __WINSCW__
1673 // Start Active Scheduler and shut it down in 3 secs, it will launch RunL of timer to process
1674 // all pending notification.
1675 iShutdown.StartAfter(KOneSecond * 3);
1676 CActiveScheduler::Start();
1678 // Check if notifications have been processed on all drives.
1679 test(iStateAccessor->IsScanDirectoryComplete(*iDiscoverer));
1683 @SYMTestCaseID SYSLIB-ECOM-UT-3519
1684 @SYMTestCaseDesc Tests notification processing during SWI for
1685 PDEF110201: Undesireable interaction between ECOM and SWI
1686 @SYMTestActions Create notification request on drives.
1687 Check the notifications are not processed by timer if SWI in progress.
1688 Check that timer processes pending notifications after SWI completes
1689 @SYMTestExpectedResults The test must not fail.
1692 void CDiscovererTest::SWINotificationProcessingTestL()
1694 test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-UT-3519 "));
1697 iStateAccessor->SwiChangeNotificationL(*iDiscoverer,ESASwisInstall);
1699 iDiscoverer->ProcessSSAEventL(EStartupStateNonCritical);
1701 // Raise a notification on C: drive
1702 iDiscoverer->ProcessDNEventL(CDiscoverer::EPluginsModified, EDriveC);
1703 iDiscoverer->ProcessDNEventL(CDiscoverer::EPluginsRediscover, EDriveC);
1705 // Start Active Scheduler and shut it down in 3 secs, it will launch RunL of timer to process
1706 // all pending notification.
1707 iShutdown.StartAfter(KOneSecond * 3);
1708 CActiveScheduler::Start();
1710 // Check that notifications have NOT been processed as SWI is in progress
1711 test(!iStateAccessor->IsScanDirectoryComplete(*iDiscoverer));
1714 iStateAccessor->SwiChangeNotificationL(*iDiscoverer,ESASwisUninstall);
1717 #if defined(__WINSCW__) // X: drive on emulator
1718 // Raise notification on X: drive
1719 iDiscoverer->ProcessDNEventL(CDiscoverer::EPluginsModified, EDriveX);
1720 iDiscoverer->ProcessDNEventL(CDiscoverer::EPluginsRediscover, EDriveX);
1721 #else // E: drive on HW
1722 // Raise notification on E: drive
1723 iDiscoverer->ProcessDNEventL(CDiscoverer::EPluginsModified, EDriveE);
1724 iDiscoverer->ProcessDNEventL(CDiscoverer::EPluginsRediscover, EDriveE);
1725 #endif // __WINSCW__
1727 // Start Active Scheduler and shut it down in 3 secs, it will launch RunL of timer to process
1728 // all pending notification.
1729 iShutdown.StartAfter(KOneSecond * 3);
1730 CActiveScheduler::Start();
1732 // Check that notifications have NOT been processed as SWI is not finished
1733 test(!iStateAccessor->IsScanDirectoryComplete(*iDiscoverer));
1736 iStateAccessor->SwiChangeNotificationL(*iDiscoverer,ESASwisNone);
1738 // Start Active Scheduler and shut it down in 3 secs, it will launch RunL of timer to process
1739 // all pending notification.
1740 iShutdown.StartAfter(KOneSecond * 3);
1741 CActiveScheduler::Start();
1743 // Check that notifications have been processed on all drives
1744 test(iStateAccessor->IsScanDirectoryComplete(*iDiscoverer));
1747 iStateAccessor->SwiChangeNotificationL(*iDiscoverer,ESASwisInstall);
1749 iDiscoverer->ProcessSSAEventL(EStartupStateNonCritical);
1751 // Raise a notification
1752 iDiscoverer->ProcessDNEventL(CDiscoverer::EPluginsModified,EDriveC);
1753 iDiscoverer->ProcessDNEventL(CDiscoverer::EPluginsRediscover,EDriveC);
1755 // Start Active Scheduler and shut it down in 3 secs, it will launch RunL of timer to process
1756 // all pending notification.
1757 iShutdown.StartAfter(KOneSecond * 3);
1758 CActiveScheduler::Start();
1760 // Check that notifications have NOT been processed as SWI is in progress
1761 test(!iStateAccessor->IsScanDirectoryComplete(*iDiscoverer));
1763 //Simulate an error in reading the P&S Variable - This should reset the
1764 //SWI state to ESASwisNone in the same way as completing SWI
1765 iStateAccessor->SwiChangeNotifierRunError(*iDiscoverer,KErrNotFound);
1767 // Start Active Scheduler and shut it down in 3 secs, it will launch RunL of timer to process
1768 // all pending notification.
1769 iShutdown.StartAfter(KOneSecond * 3);
1770 CActiveScheduler::Start();
1772 // Check that notifications have been processed on all drives
1773 test(iStateAccessor->IsScanDirectoryComplete(*iDiscoverer));
1777 Call the TDiscoverer_StateAccessor::IdleScanningTimerRunErrorL funtion
1778 passing in a reference to the CDiscoverer object and the error code
1779 to be passed to the CIdleScanningTimer::RunError function
1781 void CDiscovererTest::IdleScanningTimerRunErrorL()
1783 iStateAccessor->IdleScanningTimerRunErrorL(*iDiscoverer, EEComPanic_CDiscoverer_CIdleScanningTimer_RunError);
1787 Call the TDiscoverer_StateAccessor::IdleScanningTimerRunErrorL funtion
1788 passing in a reference to the CDiscoverer object and the error code
1789 to be passed to the CDirChangeNotifier::RunError function
1791 void CDiscovererTest::DirChangeNotifierRunErrorL()
1793 iStateAccessor->DirChangeNotifierRunErrorL(*iDiscoverer, EEComPanic_CDiscoverer_CDirChangeNotifier_RunError);
1797 Call the TDiscoverer_StateAccessor::IdleScanningTimerRunErrorL funtion
1798 passing in a reference to the CDiscoverer object and the error code
1799 to be passed to the CSwiChangeNotifier::RunError function
1801 void CDiscovererTest::SwiChangeNotifierRunError()
1803 iStateAccessor->SwiChangeNotifierRunError(*iDiscoverer, KErrNoMemory);
1806 @SYMTestCaseID SYSLIB-ECOM-UT-3172
1807 @SYMTestCaseDesc Tests language switch notification processing for
1808 "CR0902: Enable Dynamic Language Switching in APPARC, ECOM and EIKSTD"
1809 @SYMTestPriority High
1810 @SYMTestActions Call ProcessSSAEventL with EStartupStateNonCritical state.
1811 Call DriveMountedL to build up drives in system.
1812 Call LanguageChangedL to raise multiple notification on all drives in system.
1813 Check if the notifications are processed on all drive(s) by timer.
1814 Check the notifications are processed properly by timer.
1815 Check the state of discoverer was set correctly on completion.
1816 @SYMTestExpectedResults The test must not fail.
1819 void CDiscovererTest::LanguageChangedNotificationTestL()
1821 test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-UT-3172 "));
1822 TBool pending = EFalse;
1824 //Call ProcessSSAEventL with EStartupStateNonCritical state
1825 iDiscoverer->ProcessSSAEventL(EStartupStateNonCritical);
1827 if(iStateAccessor->IsDriveMounted(*iDiscoverer, EDriveK))
1829 TRAPD(err, iStateAccessor->DriveUnmountedL(*iDiscoverer, EDriveK));
1831 test(err == KErrNone);
1834 // Mount drives on system
1835 TRAPD(err, iStateAccessor->DriveMountedL(*iDiscoverer, EDriveZ));
1837 test(err == KErrNone);
1839 TRAP(err, iStateAccessor->DriveMountedL(*iDiscoverer, EDriveC));
1841 test(err == KErrNone);
1843 #if defined(__WINSCW__) // X: drive on emulator
1844 TRAP(err, iStateAccessor->DriveMountedL(*iDiscoverer, EDriveX));
1846 test(err == KErrNone);
1847 #else // E: drive on HW
1848 TRAP(err, iStateAccessor->DriveMountedL(*iDiscoverer, EDriveE));
1850 test(err == KErrNone);
1853 // Multiple notification on all drives:
1854 iStateAccessor->LanguageChangedL(*iDiscoverer);
1856 // Check three pending drive in the list.
1857 test(iStateAccessor->PendingDriveListCount(*iDiscoverer) == 3);
1858 // Check the pending drive is Z: drive
1859 pending = iStateAccessor->IsScanDirectoryPending(*iDiscoverer, EDriveZ);
1862 // Check the pending drive is C: drive
1863 pending = iStateAccessor->IsScanDirectoryPending(*iDiscoverer, EDriveC);
1866 #if defined(__WINSCW__) // X: drive on emulator
1867 pending = iStateAccessor->IsScanDirectoryPending(*iDiscoverer, EDriveX);
1869 #else // E: drive on HW
1870 pending = iStateAccessor->IsScanDirectoryPending(*iDiscoverer, EDriveE);
1872 #endif // __WINSCW__
1874 // Start Active Scheduler and shut it down in 3 secs, it will launch RunL of timer to process
1875 // all pending notification.
1876 iShutdown.StartAfter(KOneSecond * 3);
1877 CActiveScheduler::Start();
1879 // Check if notifications have been processed on all drives.
1880 test(iStateAccessor->IsScanDirectoryComplete(*iDiscoverer));
1885 @SYMTestCaseID SYSLIB-ECOM-CT-0723
1886 @SYMTestCaseDesc Tests the creation and deletion of CDiscoverer
1887 @SYMTestPriority High
1888 @SYMTestActions Create and delete CDiscoverer object,checks for open handles
1889 @SYMTestExpectedResults The test must not fail.
1892 LOCAL_C void CreateDeleteTestL()
1894 test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0723 CreateDeleteTestL "));
1896 // Tests the Creating and deletion of CDiscoverer
1897 // ------------------------------------------------------------------
1899 // Set up for heap leak checking
1902 //Check Thread handles leak
1903 TInt startProcessHandleCount = 0;
1904 TInt startThreadHandleCount = 0;
1905 TInt endProcessHandleCount = 0;
1906 TInt endThreadHandleCount = 0;
1909 rThread.HandleCount(startProcessHandleCount, startThreadHandleCount);
1911 //START CREATE DELETE TEST//
1913 CDiscovererTest* discTest = CDiscovererTest::NewL();
1915 test(discTest != NULL);
1919 //END CREATE DELETE TEST//
1921 // Check for open handles
1922 rThread.HandleCount(endProcessHandleCount, endThreadHandleCount);
1923 test(startThreadHandleCount == endThreadHandleCount);
1930 @SYMTestCaseID SYSLIB-ECOM-CT-0724
1931 @SYMTestCaseDesc OOM test for create and delete of CDiscoverer.
1932 @SYMTestPriority High
1933 @SYMTestActions Create and delete CDiscoverer object,checks for any memory leak.
1934 @SYMTestExpectedResults The test must not fail.
1937 LOCAL_C void OOMCreateDeleteTest()
1939 test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0724 OOM CreateDeleteTest "));
1942 __UNUSED_VAR(failAt);
1944 CDiscovererTest* discTest = NULL;
1949 // find out the number of open handles
1950 TInt startProcessHandleCount;
1951 TInt startThreadHandleCount;
1952 RThread().HandleCount(startProcessHandleCount, startThreadHandleCount);
1954 __UHEAP_SETFAIL(RHeap::EDeterministic, failAt++);
1956 TRAP(err, discTest = CDiscovererTest::NewL());
1958 __UHEAP_SETFAIL(RHeap::ENone, 0);
1963 // check that no handles have leaked
1964 TInt endProcessHandleCount;
1965 TInt endThreadHandleCount;
1966 RThread().HandleCount(endProcessHandleCount, endThreadHandleCount);
1968 test(startProcessHandleCount == endProcessHandleCount);
1969 test(startThreadHandleCount == endThreadHandleCount);
1973 while(err == KErrNoMemory);
1975 test.Printf(_L("- Succeeded at heap failure rate of %i\n"), failAt);
1976 test(err == KErrNone);
1979 // Type definition for pointer to member function.
1980 // Used in calling the CDiscovererTest member function for testing.
1981 typedef void (CDiscovererTest::*ClassFuncPtrL) (void);
1984 @SYMTestCaseID SYSLIB-ECOM-CT-0725
1985 @SYMTestCaseDesc Function to call all test functions
1986 @SYMTestPriority High
1987 @SYMTestActions Calls up test function of CDiscovererTest.
1988 @SYMTestExpectedResults The test must not fail.
1992 Wrapper function to call all test functions
1994 @param testFunc pointer to test function
1995 @param aTestDesc test function name
1997 LOCAL_C void DoBasicTestL(ClassFuncPtrL testFuncL, const TDesC& aTestDesc)
1999 test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0725 "));
2000 test.Next(aTestDesc);
2003 // find out the number of open handles
2004 TInt startProcessHandleCount;
2005 TInt startThreadHandleCount;
2006 RThread().HandleCount(startProcessHandleCount, startThreadHandleCount);
2008 CDiscovererTest* discTest = CDiscovererTest::NewL();
2009 CleanupStack::PushL(discTest);
2011 (discTest->*testFuncL)();
2013 CleanupStack::PopAndDestroy(discTest);
2015 // check that no handles have leaked
2016 TInt endProcessHandleCount;
2017 TInt endThreadHandleCount;
2018 RThread().HandleCount(endProcessHandleCount, endThreadHandleCount);
2020 test(startProcessHandleCount == endProcessHandleCount);
2021 test(startThreadHandleCount == endThreadHandleCount);
2027 Utility function to continually invoke a test function and cause memory allocation failures
2029 @param testFuncL pointer to OOM test function
2030 @param tryCount specifies what value to start memory allocation failures at
2031 @param increment how much to increase the point at which memory allocation will fail on each test attempt
2032 @param stopCount the value of memory allocation failure to stop testing at
2034 TInt RunTestUnderOOMCondition(ClassFuncPtrL testFuncL, TInt tryCount, TInt increment, TInt stopCount)
2036 TInt err = KErrNone;
2042 // find out the number of open handles
2043 TInt startProcessHandleCount;
2044 TInt startThreadHandleCount;
2045 RThread().HandleCount(startProcessHandleCount, startThreadHandleCount);
2047 CDiscovererTest* discTest = CDiscovererTest::NewL();
2048 CleanupStack::PushL(discTest);
2051 __UHEAP_SETFAIL(RHeap::EDeterministic, tryCount);
2052 TRAP(err, (discTest->*testFuncL)());
2053 __UHEAP_SETFAIL(RHeap::ENone, 0);
2056 CleanupStack::PopAndDestroy(discTest);
2059 // check that no handles have leaked
2060 TInt endProcessHandleCount;
2061 TInt endThreadHandleCount;
2062 RThread().HandleCount(endProcessHandleCount, endThreadHandleCount);
2064 test(startProcessHandleCount == endProcessHandleCount);
2065 test(startThreadHandleCount == endThreadHandleCount);
2069 tryCount = tryCount + increment;
2070 } while((err == KErrNoMemory) && (tryCount != stopCount));
2072 tryCount = tryCount - increment;
2075 if (err == KErrNoMemory)
2077 // test has not yet been able to pass due to memory allocation failures.
2081 test(err == KErrNone);
2083 // If enough memory has finally been allocated for the test to pass then return
2084 // the memory allocation counter value.
2085 test.Printf(_L("- server succeeded at heap failure rate of %i\n"), tryCount);
2090 Wrapper function to call all OOM test functions
2092 @param testFuncL pointer to OOM test function
2093 @param aTestDesc test function name
2095 LOCAL_C void DoOOMTestL(ClassFuncPtrL testFuncL, const TDesC& aTestDesc)
2097 test.Next(aTestDesc);
2099 TInt startCount = 1;
2101 TInt successRate = -1;
2102 TInt stopCount = 256;
2104 successRate = RunTestUnderOOMCondition(testFuncL, startCount, increment, stopCount);
2107 // When method CDiscoverer::CDirScanner::DoScanDriveL is encountered in a test hundreds
2108 // of plug-in files will be scanned. It takes in the order of 3-4000 memory allocation failure
2109 // loops (in techview context) before the scan is finished and the test can complete successfully.
2110 // This will take over an hour. Instead determine the approximate failure point by
2111 // testing with large increments between failures. Once a failure rate interval is found test
2112 // for OOM conditions running up to it.
2113 // This in effect means that we are checking OOM at the start and end of tests but skipping
2114 // the scanning of each and every plugin in the middle of the test.
2115 // (Note that CDiscoverer::CDirScanner::DoScanDriveL may return without leaving when it
2116 // can't allocate TFileName. In this case it seems to this function that the test is
2117 // successful. Therefore even if the successRate above indicates a pass the test is still
2118 // re-run below with larger memory allocation failure valued to make sure that the test does
2119 // in fact run to completion.
2124 successRate = RunTestUnderOOMCondition(testFuncL, startCount, increment, stopCount);
2125 test(successRate > 0);
2127 if (successRate > 256)
2129 startCount = successRate - 256;
2132 successRate = RunTestUnderOOMCondition(testFuncL, startCount, increment, stopCount);
2135 test(successRate > 0);
2139 Creates and installs active scheduler for this thread and calls
2140 CDiscovererTest::IdleScanningTimerRunErrorL
2142 @param aDiscTest The CDiscovererTest object used to carry out the test
2144 LOCAL_C void DoIdleScanningTimerRunErrorTestL(CDiscovererTest* aDiscTest)
2147 // create and install the active scheduler we need
2148 CActiveScheduler* scheduler=new(ELeave) CActiveScheduler;
2149 CleanupStack::PushL(scheduler);
2151 CActiveScheduler::Install(scheduler);
2153 aDiscTest->IdleScanningTimerRunErrorL();
2155 // Cleanup CDiscovererTest, TheFs and scheduler
2156 CleanupStack::PopAndDestroy(scheduler);
2160 Thread entry point for the test thread. Creates a CTrapCleanup and
2161 calls DoIdleScanningTimerRunErrorTestL to carry out the test
2163 @param aDiscTest The CDiscovererTest object used to carry out the test
2165 LOCAL_C TInt IdleScanningTimerRunErrorThreadEntry(TAny* aDiscTest)
2168 CTrapCleanup* tc = CTrapCleanup::New();
2170 CDiscovererTest *discTest = static_cast<CDiscovererTest*>(aDiscTest);
2172 TRAPD(err,DoIdleScanningTimerRunErrorTestL(discTest));
2182 @SYMTestCaseID SYSLIB-ECOM-CT-3165
2183 @SYMTestCaseDesc Check that the CIdleScanningTimer::RunError() works correctly.
2184 @SYMTestPriority High
2185 @SYMTestActions Create a new thread which will call RunError. Wait for the
2186 thread to exit and check the thread exit type and reason
2188 @SYMTestExpectedResults The test must not fail.
2191 LOCAL_C void IdleScanningTimer_RunErrorTest()
2195 test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-3165 CIdleScanningTimer RunError test "));
2197 _LIT(KStartThreadName,"CIdleScanningTimer RunError Thread");
2199 //Disable JIT so that the Panic doesn't bring up a dialog
2201 TBool jitEnabled = User::JustInTime();
2202 User::SetJustInTime(EFalse);
2204 //Create a CDiscovererTest object to pass into the test thread
2205 CDiscovererTest* discTest = CDiscovererTest::NewL();
2206 CleanupStack::PushL(discTest);
2208 //Create a new thread to run the test
2210 testThread.Create(KStartThreadName, IdleScanningTimerRunErrorThreadEntry,
2211 KDefaultStackSize,KMinHeapSize,KMinHeapSize,discTest);
2212 TRequestStatus status;
2213 testThread.Logon(status);
2216 testThread.Resume();
2218 //Wait for the thread to exit
2219 User::WaitForRequest(status);
2221 //Obtain exit type and reason for test thread
2222 TExitType exitType = testThread.ExitType();
2223 TInt exitReason = testThread.ExitReason();
2225 //close the thread handle
2228 CleanupStack::PopAndDestroy(discTest);
2230 //Set JIT back to original state
2231 User::SetJustInTime(jitEnabled);
2233 //Verify the exit reason and exit code
2234 test(exitType == EExitPanic);
2235 test(exitReason == EEComPanic_CDiscoverer_CIdleScanningTimer_RunError);
2241 Creates and installs active scheduler for this thread and calls
2242 CDiscovererTest::DirChangeNotifierRunErrorL
2244 @param aDiscTest The CDiscovererTest object used to carry out the test
2246 LOCAL_C void DoDirChangeNotifierRunErrorTestL(CDiscovererTest* aDiscTest)
2249 // create and install the active scheduler we need
2250 CActiveScheduler* scheduler=new(ELeave) CActiveScheduler;
2251 CleanupStack::PushL(scheduler);
2253 CActiveScheduler::Install(scheduler);
2255 //call the RunErrorL method which should panic
2256 aDiscTest->DirChangeNotifierRunErrorL();
2258 // Cleanup CDiscovererTest, TheFs and scheduler
2259 CleanupStack::PopAndDestroy(scheduler);
2264 Thread entry point for the test thread. Creates a CTrapCleanup and
2265 calls DoDirChangeNotifierRunErrorTestL to carry out the test
2267 @param aDiscTest The CDiscovererTest object used to carry out the test
2269 LOCAL_C TInt DirChangeNotifierRunErrorThreadEntry(TAny* aDiscTest)
2272 CTrapCleanup* tc = CTrapCleanup::New();
2274 CDiscovererTest *discTest = static_cast<CDiscovererTest*>(aDiscTest);
2276 TRAPD(err,DoDirChangeNotifierRunErrorTestL(discTest));
2285 @SYMTestCaseID SYSLIB-ECOM-CT-3166
2286 @SYMTestCaseDesc Check that the CDirChangeNotifier::RunError() works correctly.
2287 @SYMTestPriority High
2288 @SYMTestActions Create a new thread which will call RunError. Wait for the
2289 thread to exit and check the thread exit type and reason
2291 @SYMTestExpectedResults The test must not fail.
2294 LOCAL_C void DirChangeNotifier_RunErrorTest()
2298 test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-3166 CDirChangeNotifier RunError test "));
2300 _LIT(KStartThreadName,"CDirChangeNotifier RunError Thread");
2302 //Disable JIT so that the Panic doesn't bring up a dialog
2304 TBool jitEnabled = User::JustInTime();
2305 User::SetJustInTime(EFalse);
2307 //Create a CDiscovererTest object to pass into the test thread
2308 CDiscovererTest* discTest = CDiscovererTest::NewL();
2309 CleanupStack::PushL(discTest);
2311 //Create a new thread to run the test
2313 testThread.Create(KStartThreadName, DirChangeNotifierRunErrorThreadEntry,
2314 KDefaultStackSize,KMinHeapSize,KMinHeapSize,discTest);
2315 TRequestStatus status;
2316 testThread.Logon(status);
2317 testThread.Resume();
2319 //Wait for the thread to exit
2320 User::WaitForRequest(status);
2322 //Obtain exit type and reason for test thread
2323 TExitType exitType = testThread.ExitType();
2324 TInt exitReason = testThread.ExitReason();
2326 //close the thread handle
2329 CleanupStack::PopAndDestroy(discTest);
2331 //Set JIT back to original state
2332 User::SetJustInTime(jitEnabled);
2334 //Verify the exit reason and exit code
2335 test(exitType == EExitPanic);
2336 test(exitReason == EEComPanic_CDiscoverer_CDirChangeNotifier_RunError);
2346 CreateDeleteTestL();
2347 DoBasicTestL(&CDiscovererTest::ResumeSuspendTestL, _L("ResumeSuspendTestL"));
2348 DoBasicTestL(&CDiscovererTest::DriveMountUnmountTestL, _L("DriveMountUnmountTestL"));
2349 DoBasicTestL(&CDiscovererTest::ProcessEntryTestL, _L("ProcessEntryTestL"));
2350 DoBasicTestL(&CDiscovererTest::ValidateEntryTestL, _L("ValidateEntryTestL"));
2351 DoBasicTestL(&CDiscovererTest::ProcessSpiEntryTestL, _L("ProcessSpiEntryTestL"));
2352 DoBasicTestL(&CDiscovererTest::ValidateSpiEntryTestL, _L("ValidateSpiEntryTestL"));
2353 DoBasicTestL(&CDiscovererTest::ProcessEntryPlugIn3TestL, _L("ProcessEntryPlugIn3TestL"));
2354 DoBasicTestL(&CDiscovererTest::ValidateEntryPlugIn3TestL, _L("ValidateEntryPlugIn3TestL"));
2355 DoBasicTestL(&CDiscovererTest::ProcessSpiEntryPlugIn3TestL, _L("ProcessSpiEntryPlugIn3TestL"));
2356 DoBasicTestL(&CDiscovererTest::ValidateSpiEntryPlugIn3TestL, _L("ValidateSpiEntryPlugIn3TestL"));
2357 DoBasicTestL(&CDiscovererTest::ValidateSpiPluginsTestL, _L("ValidateSpiPluginsTestL"));
2358 DoBasicTestL(&CDiscovererTest::ScanDirectoryIncrementTestL, _L("ScanDirectoryIncrementTestL"));
2359 DoBasicTestL(&CDiscovererTest::StagedDiscoveryStateTransitionTestL, _L("StagedDiscoveryStateTransitionTestL"));
2360 DoBasicTestL(&CDiscovererTest::AllAtOnceDiscoveryStateTransitionTestL, _L("AllAtOnceDiscoveryStateTransitionTestL"));
2361 DoBasicTestL(&CDiscovererTest::ScanDirectoryTestL, _L("ScanDirectoryTestL"));
2362 DoBasicTestL(&CDiscovererTest::MultipleNotificationProcessingTestL, _L("MultipleNotificationProcessingTestL"));
2363 DoBasicTestL(&CDiscovererTest::LanguageChangedNotificationTestL, _L("MLanguageChangedNotificationTestL"));
2364 DoBasicTestL(&CDiscovererTest::SWINotificationProcessingTestL, _L("SWINotificationProcessingTestL"));
2367 IdleScanningTimer_RunErrorTest();
2368 DirChangeNotifier_RunErrorTest();
2371 OOMCreateDeleteTest();
2372 // This test is not performed because the error from the final memory allocation failures are not
2373 // propagated back to the calling function and cannot be dealt with. Therefore
2374 // this test does not complete. However the normal test is performed above.
2375 //DoOOMTestL(&CDiscovererTest::ResumeSuspendTestL, _L("OOM ResumeSuspendTestL"));
2376 DoOOMTestL(&CDiscovererTest::DriveMountUnmountTestL, _L("OOM DriveMountUnmountTestL"));
2377 DoOOMTestL(&CDiscovererTest::ProcessEntryTestL, _L("OOM ProcessEntryTestL"));
2378 DoOOMTestL(&CDiscovererTest::ProcessSpiEntryTestL, _L("OOM ProcessSpiEntryTestL"));
2379 DoOOMTestL(&CDiscovererTest::ValidateSpiEntryTestL, _L("OOM ValidateSpiEntryTestL"));
2380 DoOOMTestL(&CDiscovererTest::ValidateEntryTestL, _L("OOM ValidateEntryTestL"));
2381 DoOOMTestL(&CDiscovererTest::ProcessEntryPlugIn3TestL, _L("OOM ProcessEntryPlugIn3TestL"));
2382 DoOOMTestL(&CDiscovererTest::ProcessSpiEntryPlugIn3TestL, _L("OOM ProcessSpiEntryPlugIn3TestL"));
2383 DoOOMTestL(&CDiscovererTest::ValidateSpiEntryPlugIn3TestL, _L("OOM ValidateSpiEntryPlugIn3TestL"));
2384 DoOOMTestL(&CDiscovererTest::ValidateEntryPlugIn3TestL, _L("OOM ValidateEntryPlugIn3TestL"));
2385 DoOOMTestL(&CDiscovererTest::ScanDirectoryIncrementTestL, _L("OOM ScanDirectoryIncrementTestL"));
2386 DoOOMTestL(&CDiscovererTest::StagedDiscoveryStateTransitionTestL, _L("StagedDiscoveryStateTransitionTestL"));
2387 DoOOMTestL(&CDiscovererTest::AllAtOnceDiscoveryStateTransitionTestL, _L("AllAtOnceDiscoveryStateTransitionTestL"));
2388 DoOOMTestL(&CDiscovererTest::ScanDirectoryTestL, _L("OOM ScanDirectoryTestL"));
2389 // This test is not performed because the error from the final memory allocation failures are not
2390 // propagated back to the calling function and cannot be dealt with. Therefore
2391 // this test does not complete. However the normal test is performed above.
2392 //DoOOMTestL(&CDiscovererTest::MultipleNotificationProcessingTestL, _L("MultipleNotificationProcessingTestL"));
2393 // This test is not performed because the error from the final memory allocation failures are not
2394 // propagated back to the calling function and cannot be dealt with. Therefore
2395 // this test does not complete. However the normal test is performed above.
2396 //DoOOMTestL(&CDiscovererTest::SWINotificationProcessingTestL, _L("OOM SWINotificationProcessingTestL"));
2402 // Copy the Plugins to specific folder for testing purpose
2403 LOCAL_C void CopyPlugins()
2406 TRAP(err, EComTestUtils::FileManCopyFileL(KNewResourceFileNameOnZ, KNewResourceFileName));
2407 test(err==KErrNone);
2408 TRAP(err, EComTestUtils::FileManCopyFileL(KNewExampleDllFileNameOnZ, KNewExampleDllFileName));
2409 test(err==KErrNone);
2410 TRAP(err, EComTestUtils::FileManCopyFileL(KPlugIn3ResourceFileNameOnZ, KPlugIn3ResourceFileName));
2411 test(err==KErrNone);
2412 TRAP(err, EComTestUtils::FileManCopyFileL(KPlugIn3ExampleDllFileNameOnZ, KPlugIn3ExampleDllFileName));
2413 test(err==KErrNone);
2416 // Deleting plugin from the RAM for cleanup purpose
2417 inline LOCAL_C void DeleteTestPlugin()
2420 TRAP(err, EComTestUtils::FileManDeleteFileL(KNewResourceFileName));
2421 TRAP(err, EComTestUtils::FileManDeleteFileL(KNewExampleDllFileName));
2422 TRAP(err, EComTestUtils::FileManDeleteFileL(KPlugIn3ResourceFileName));
2423 TRAP(err, EComTestUtils::FileManDeleteFileL(KPlugIn3ExampleDllFileName));
2427 //Initialise the Active Scheduler
2429 LOCAL_C void SetupL()
2431 // Construct and install the Active Scheduler. The Active Schedular is needed
2432 // by components used by this test as they are ActiveObjects.
2433 TheActiveScheduler = new(ELeave)CActiveScheduler;
2434 CActiveScheduler::Install(TheActiveScheduler);
2437 GLDEF_C TInt E32Main()
2441 test.Printf(_L("\n"));
2443 test.Start(_L("Discoverer Tests."));
2445 TheTrapCleanup = CTrapCleanup::New();
2447 TRAPD(err, SetupL());
2448 test(err == KErrNone);
2450 // Connect the file server instance
2451 User::LeaveIfError(TheFs.Connect());
2455 // The reason for the folowing delay is:
2456 // ECOM server could be already started. It means that when we copy some
2457 // ECOM plugins from Z: to C: drive - ECOM server should look for and
2458 // find the new ECOM plugins. The ECOM server uses for that an active object,
2459 // which scans plugin directories. So the discovering service is asynchronous.
2460 // We have to wait some time until it finishes.
2461 // Otherwise ListImplementationsL could fail to find requested implementations.
2462 User::After(KOneSecond * 3);
2465 // Call the main tests
2466 TRAP(err, DoTestsL());
2467 test(err == KErrNone);
2469 // Cleanup files. If the cleanup fails that is no problem,
2470 // as any subsequent tests will replace them. The only downside
2471 // would be the disk not being tidied
2476 delete TheActiveScheduler;
2477 delete TheTrapCleanup;