os/ossrv/lowlevellibsandfws/pluginfw/Framework/DiscovererTest/DiscovererObserverStub.cpp
Update contrib.
1 // Copyright (c) 1997-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.
17 #include "DiscovererObserverStub.h"
19 // ______________________________________________________________________________
21 CObserverStub* CObserverStub::NewL(CUnitTest& aOwner, CDiscoverer_UnitTestContext& aContext)
23 CObserverStub* self= NewLC(aOwner, aContext); // calls c'tor and ConstructL
24 CleanupStack::Pop(); // removes self
28 CObserverStub* CObserverStub::NewLC(CUnitTest& aOwner, CDiscoverer_UnitTestContext& aContext)
30 CObserverStub* self=new(ELeave) CObserverStub(aOwner, aContext); // calls c'tor
31 CleanupStack::PushL(self); // Make the construction safe by using the cleanup stack
32 self->ConstructL(); // Complete the 'construction'.
36 CObserverStub::~CObserverStub()
41 CObserverStub::CObserverStub(CUnitTest& aOwner, CDiscoverer_UnitTestContext& aContext)
42 : CBase(), iOwner(aOwner), iContext(aContext)
44 // Deliberately do nothing here : See ConstructL() for initialisation completion.
47 void CObserverStub::ConstructL()
52 // Support of the CDiscovererObserver interface
53 void CObserverStub::DiscoveriesBegin()
55 // Log out some information
56 _LIT(KDiscoveriesBegin,"CObserverStub::DiscoveriesBegin called");
57 iContext.DataLogger().LogInformation(KDiscoveriesBegin);
60 void CObserverStub::RegisterDiscoveryL(const TEntry& /* aDirEntry */)
62 // Check the iteration and leave if its the first one
63 // after asking for a repeat
64 CTransition& transition = iOwner.GetCurrentTransition();
65 const TTransitionInfo& info = transition.TransitionInfo();
66 if(info.iIteration == KFirstTransitionIteration)
68 _LIT(KRegisterDiscoverRepeat,"CObserverStub::RegisterDiscoveryL repeat requested");
69 iContext.DataLogger().LogInformation(KRegisterDiscoverRepeat);
70 transition.RepeatOnce();
71 User::Leave(KTestBedRepeatTest);
75 _LIT(KRegisterDiscoverSuccess,"CObserverStub::RegisterDiscoveryL completed");
76 iContext.DataLogger().LogInformation(KRegisterDiscoverSuccess);
80 void CObserverStub::DiscoveriesComplete(TBool aSuccessful)
82 // Log out some info and cleanup the context
83 _LIT(KDiscoveriesComplete,"CObserverStub::DiscoveriesComplete called");
84 iContext.DataLogger().LogInformation(KDiscoveriesComplete);
85 TInt error = KErrNone;
88 if(iContext.iNotificationStatus)
90 User::RequestComplete(iContext.iNotificationStatus, error);
91 iContext.iNotificationStatus = NULL;
95 void CObserverStub::DriveRemovedL(TDriveUnit aDrive)
97 _LIT(KDriveRemovedL,"CObserverStub::DriveRemovedL called for drive %d ");
98 iContext.DataLogger().LogInformationWithParameters(KDriveRemovedL,aDrive);
101 void CObserverStub::DriveReinstatedL(TDriveUnit aDrive)
103 // Check the iteration and leave if its the first one
104 // after asking for a repeat
105 CTransition& transition = iOwner.GetCurrentTransition();
106 const TTransitionInfo& info = transition.TransitionInfo();
107 if(info.iIteration == KFirstTransitionIteration)
109 _LIT(KRegisterDiscoverRepeat,"CObserverStub::DriveReinstatedL for drive %d repeat requested");
110 iContext.DataLogger().LogInformationWithParameters(KRegisterDiscoverRepeat, aDrive);
111 transition.RepeatOnce();
112 User::Leave(KTestBedRepeatTest);
116 _LIT(KRegisterDiscoverSuccess,"CObserverStub::DriveReinstatedL for drive %d completed");
117 iContext.DataLogger().LogInformationWithParameters(KRegisterDiscoverSuccess, aDrive);
121 TBool CObserverStub::NotifiedWithErrorCode(TInt aError)
123 // Log out some info and cleanup the context
124 _LIT(KNotifiedWithErrorCode,"CObserverStub::NotifiedWithErrorCode called");
125 iContext.DataLogger().LogInformation(KNotifiedWithErrorCode);
126 if(iContext.iNotificationStatus)
128 User::RequestComplete(iContext.iNotificationStatus, aError);
129 iContext.iNotificationStatus = NULL;