os/persistentdata/traceservices/tracefw/ulogger/unit_test/te-client/te_uloggerclientsuitestepbase.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 /**
    17  @file Te_uloggerclientSuiteStepBase.cpp
    18  @internalTechnology
    19 */
    20 
    21 #include "te_uloggerclientsuitestepbase.h"
    22 #include "te_uloggerclientsuitedefs.h"
    23 
    24 // Device driver constants
    25 
    26 TVerdict CTestUloggerClientApiStepBase::doTestStepPreambleL()
    27 /**
    28  * @return - TVerdict
    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.
    34  */
    35 	{
    36 	
    37 		INFO_PRINTF1(_L("Instantiating RULogger object"));
    38 		iSession = new (ELeave) Ulogger::RULogger();
    39 		if(iSession)
    40 		{
    41 			INFO_PRINTF1(_L("OK"));
    42 			SetTestStepResult(EPass);
    43 		}
    44 		else
    45 		{
    46 			INFO_PRINTF1(_L("RULogger object construction failed"));
    47 			SetTestStepResult(EFail);
    48 		}
    49 		return TestStepResult();
    50 	}
    51 
    52 
    53 
    54 TVerdict CTestUloggerClientApiStepBase::prepareForStartTestL()
    55 /**
    56  * @return - TVerdict
    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.
    60  */
    61 {
    62 	
    63 	//continue from previous step
    64 	if(TestStepResult() == EPass)
    65 	{
    66 		INFO_PRINTF1(_L("before iSession->Connect()"));
    67 		if(KErrNone == iSession->Connect())
    68 		{
    69 			INFO_PRINTF1(_L("Client session connected"));
    70 			SetTestStepResult(EPass);
    71 		}
    72 		else
    73 		{
    74 			INFO_PRINTF1(_L("Client session connection failed"));
    75 			SetTestStepResult(EFail);
    76 		}
    77 	}
    78 	else
    79 	{
    80 		INFO_PRINTF1(_L("Dependency test failed, CTestStartStep will fail"));
    81 		SetTestStepResult(EFail);
    82 	}
    83 	
    84 	return TestStepResult();
    85 }
    86  TVerdict CTestUloggerClientApiStepBase::prepareForStopTestL()
    87 /**
    88  * @return - TVerdict
    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.
    92  */
    93 {
    94 	prepareForStartTestL();
    95 	if(TestStepResult() == EPass)
    96 	{
    97 		//start server here
    98 		INFO_PRINTF1(_L("beffore iSession->Start()"));
    99 		TInt iErrCode = iSession->Start();
   100 		if( KErrNone == iErrCode || KErrInUse == iErrCode  )
   101 		{			
   102 			SetTestStepResult(EPass);
   103 		}
   104 		else if(KErrNotFound == iErrCode)
   105 		{
   106 			INFO_PRINTF2(_L("Logging failed to strat with error : %d"), iErrCode);
   107 			SetTestStepResult(EPass);
   108 		} 	
   109 		else
   110 		{
   111 			INFO_PRINTF2(_L("Logging failed to strat with error : %d"), iErrCode);
   112 			SetTestStepResult(EFail);
   113 		}
   114 	}
   115 	
   116 	return TestStepResult();
   117 }
   118 
   119 
   120 TVerdict CTestUloggerClientApiStepBase::doTestStepPostambleL()
   121 /**
   122  * @return - TVerdict
   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.
   127  */
   128 {
   129 
   130 	if(TestStepResult() == EPass)
   131 	{
   132 		INFO_PRINTF1(_L("Deleting RULogger object"));
   133 		if(iSession)
   134 		{
   135 			INFO_PRINTF1(_L("before delete iSession"));
   136 			delete 	iSession;
   137 		    SetTestStepResult(EPass);  // destruction sucessfull
   138 		}
   139 		else
   140 		{
   141 			SetTestStepResult(EFail);
   142 		}
   143 	}
   144 	return TestStepResult();
   145 }
   146 CTestUloggerClientApiStepBase::~CTestUloggerClientApiStepBase()
   147 	{
   148 	}
   149 
   150 CTestUloggerClientApiStepBase::CTestUloggerClientApiStepBase():iSession(0)
   151 	{
   152 	}