os/persistentdata/traceservices/tracefw/ulogger/unit_test/te-client/te_uloggerclientsuitestepbase.cpp
Update contrib.
1 // Copyright (c) 2005-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 @file Te_uloggerclientSuiteStepBase.cpp
21 #include "te_uloggerclientsuitestepbase.h"
22 #include "te_uloggerclientsuitedefs.h"
24 // Device driver constants
26 TVerdict CTestUloggerClientApiStepBase::doTestStepPreambleL()
29 * Implementation of CTestStep base class virtual
30 * It is used for doing all initialisation common to derived classes in here.
31 * Make it being able to leave if there are any errors here as there's no point in
32 * trying to run a test step if anything fails.
33 * The leave will be picked up by the framework.
37 INFO_PRINTF1(_L("Instantiating RULogger object"));
38 iSession = new (ELeave) Ulogger::RULogger();
41 INFO_PRINTF1(_L("OK"));
42 SetTestStepResult(EPass);
46 INFO_PRINTF1(_L("RULogger object construction failed"));
47 SetTestStepResult(EFail);
49 return TestStepResult();
54 TVerdict CTestUloggerClientApiStepBase::prepareForStartTestL()
57 * It is used to prepare the framework for testing TestStartStep.
58 * Make it being able to leave
59 * The leave will be picked up by the framework.
63 //continue from previous step
64 if(TestStepResult() == EPass)
66 INFO_PRINTF1(_L("before iSession->Connect()"));
67 if(KErrNone == iSession->Connect())
69 INFO_PRINTF1(_L("Client session connected"));
70 SetTestStepResult(EPass);
74 INFO_PRINTF1(_L("Client session connection failed"));
75 SetTestStepResult(EFail);
80 INFO_PRINTF1(_L("Dependency test failed, CTestStartStep will fail"));
81 SetTestStepResult(EFail);
84 return TestStepResult();
86 TVerdict CTestUloggerClientApiStepBase::prepareForStopTestL()
89 * It is used to prepare the framework for testing TestStopStep.
90 * Make it being able to leave
91 * The leave will be picked up by the framework.
94 prepareForStartTestL();
95 if(TestStepResult() == EPass)
98 INFO_PRINTF1(_L("beffore iSession->Start()"));
99 TInt iErrCode = iSession->Start();
100 if( KErrNone == iErrCode || KErrInUse == iErrCode )
102 SetTestStepResult(EPass);
104 else if(KErrNotFound == iErrCode)
106 INFO_PRINTF2(_L("Logging failed to strat with error : %d"), iErrCode);
107 SetTestStepResult(EPass);
111 INFO_PRINTF2(_L("Logging failed to strat with error : %d"), iErrCode);
112 SetTestStepResult(EFail);
116 return TestStepResult();
120 TVerdict CTestUloggerClientApiStepBase::doTestStepPostambleL()
123 * Implementation of CTestStep base class virtual
124 * It is used for doing all after test treatment common to derived classes in here.
125 * Make it being able to leave
126 * The leave will be picked up by the framework.
130 if(TestStepResult() == EPass)
132 INFO_PRINTF1(_L("Deleting RULogger object"));
135 INFO_PRINTF1(_L("before delete iSession"));
137 SetTestStepResult(EPass); // destruction sucessfull
141 SetTestStepResult(EFail);
144 return TestStepResult();
146 CTestUloggerClientApiStepBase::~CTestUloggerClientApiStepBase()
150 CTestUloggerClientApiStepBase::CTestUloggerClientApiStepBase():iSession(0)