os/persistentdata/traceservices/tracefw/ulogger/unit_test/te-client/testconnectstep.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.
14 // Example CTestStep derived implementation
19 @file TestConnectStep.cpp
22 #include "testconnectstep.h"
23 #include "te_uloggerclientsuitedefs.h"
25 CTestConnectStep::~CTestConnectStep()
32 CTestConnectStep::CTestConnectStep()
37 // **MUST** call SetTestStepName in the constructor as the controlling
38 // framework uses the test step name immediately following construction to set
39 // up the step's unique logging ID.
40 SetTestStepName(KTestConnectStep);
43 TVerdict CTestConnectStep::doTestStepPreambleL()
45 * @return - TVerdict code
46 * Override of base class virtual
49 CTestUloggerClientApiStepBase::doTestStepPreambleL();
50 if(TestStepResult() == EPass)
52 INFO_PRINTF1(_L("Initailizing TestConnectStep"));
53 SetTestStepResult(EPass); //No initialization required just pass the step
56 return TestStepResult();
60 TVerdict CTestConnectStep::doTestStepL()
62 * @return - TVerdict code
63 * Override of base class pure virtual
64 * Our implementation only gets called if the base class doTestStepPreambleL() did
65 * not leave. That being the case, the current test result value will be EPass.
70 if (TestStepResult()==EPass)
74 if(KErrNone == iSession->Connect())
76 //connect again to test simultaneous connections
77 for(TInt i = 0; i <= 20;i++ )
79 TInt iConnectRes = iSession->Connect();
80 if( iConnectRes != KErrAlreadyExists && iConnectRes != KErrNone )
89 SetTestStepResult(EPass);
94 iInfoMsg.AppendFormat(_L("Simultaneous connection failed on %d atempt"), iErrCount);
95 INFO_PRINTF1(iInfoMsg);
96 SetTestStepResult(EFail);
101 INFO_PRINTF1(_L("connection to server failed"));
102 SetTestStepResult(EFail);
106 return TestStepResult();
111 TVerdict CTestConnectStep::doTestStepPostambleL()
113 * @return - TVerdict code
114 * Override of base class virtual
117 INFO_PRINTF1(_L("TestConnectStep completed"));
119 iSession->Close(); //close the session in either case
120 CTestUloggerClientApiStepBase::doTestStepPostambleL();
122 return TestStepResult();