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.
sl@0
     1
// Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
//
sl@0
    15
sl@0
    16
/**
sl@0
    17
 @file Te_uloggerclientSuiteStepBase.cpp
sl@0
    18
 @internalTechnology
sl@0
    19
*/
sl@0
    20
sl@0
    21
#include "te_uloggerclientsuitestepbase.h"
sl@0
    22
#include "te_uloggerclientsuitedefs.h"
sl@0
    23
sl@0
    24
// Device driver constants
sl@0
    25
sl@0
    26
TVerdict CTestUloggerClientApiStepBase::doTestStepPreambleL()
sl@0
    27
/**
sl@0
    28
 * @return - TVerdict
sl@0
    29
 * Implementation of CTestStep base class virtual
sl@0
    30
 * It is used for doing all initialisation common to derived classes in here.
sl@0
    31
 * Make it being able to leave if there are any errors here as there's no point in
sl@0
    32
 * trying to run a test step if anything fails.
sl@0
    33
 * The leave will be picked up by the framework.
sl@0
    34
 */
sl@0
    35
	{
sl@0
    36
	
sl@0
    37
		INFO_PRINTF1(_L("Instantiating RULogger object"));
sl@0
    38
		iSession = new (ELeave) Ulogger::RULogger();
sl@0
    39
		if(iSession)
sl@0
    40
		{
sl@0
    41
			INFO_PRINTF1(_L("OK"));
sl@0
    42
			SetTestStepResult(EPass);
sl@0
    43
		}
sl@0
    44
		else
sl@0
    45
		{
sl@0
    46
			INFO_PRINTF1(_L("RULogger object construction failed"));
sl@0
    47
			SetTestStepResult(EFail);
sl@0
    48
		}
sl@0
    49
		return TestStepResult();
sl@0
    50
	}
sl@0
    51
sl@0
    52
sl@0
    53
sl@0
    54
TVerdict CTestUloggerClientApiStepBase::prepareForStartTestL()
sl@0
    55
/**
sl@0
    56
 * @return - TVerdict
sl@0
    57
 * It is used to prepare the framework for testing TestStartStep.
sl@0
    58
 * Make it being able to leave
sl@0
    59
 * The leave will be picked up by the framework.
sl@0
    60
 */
sl@0
    61
{
sl@0
    62
	
sl@0
    63
	//continue from previous step
sl@0
    64
	if(TestStepResult() == EPass)
sl@0
    65
	{
sl@0
    66
		INFO_PRINTF1(_L("before iSession->Connect()"));
sl@0
    67
		if(KErrNone == iSession->Connect())
sl@0
    68
		{
sl@0
    69
			INFO_PRINTF1(_L("Client session connected"));
sl@0
    70
			SetTestStepResult(EPass);
sl@0
    71
		}
sl@0
    72
		else
sl@0
    73
		{
sl@0
    74
			INFO_PRINTF1(_L("Client session connection failed"));
sl@0
    75
			SetTestStepResult(EFail);
sl@0
    76
		}
sl@0
    77
	}
sl@0
    78
	else
sl@0
    79
	{
sl@0
    80
		INFO_PRINTF1(_L("Dependency test failed, CTestStartStep will fail"));
sl@0
    81
		SetTestStepResult(EFail);
sl@0
    82
	}
sl@0
    83
	
sl@0
    84
	return TestStepResult();
sl@0
    85
}
sl@0
    86
 TVerdict CTestUloggerClientApiStepBase::prepareForStopTestL()
sl@0
    87
/**
sl@0
    88
 * @return - TVerdict
sl@0
    89
 * It is used to prepare the framework for testing TestStopStep.
sl@0
    90
 * Make it being able to leave
sl@0
    91
 * The leave will be picked up by the framework.
sl@0
    92
 */
sl@0
    93
{
sl@0
    94
	prepareForStartTestL();
sl@0
    95
	if(TestStepResult() == EPass)
sl@0
    96
	{
sl@0
    97
		//start server here
sl@0
    98
		INFO_PRINTF1(_L("beffore iSession->Start()"));
sl@0
    99
		TInt iErrCode = iSession->Start();
sl@0
   100
		if( KErrNone == iErrCode || KErrInUse == iErrCode  )
sl@0
   101
		{			
sl@0
   102
			SetTestStepResult(EPass);
sl@0
   103
		}
sl@0
   104
		else if(KErrNotFound == iErrCode)
sl@0
   105
		{
sl@0
   106
			INFO_PRINTF2(_L("Logging failed to strat with error : %d"), iErrCode);
sl@0
   107
			SetTestStepResult(EPass);
sl@0
   108
		} 	
sl@0
   109
		else
sl@0
   110
		{
sl@0
   111
			INFO_PRINTF2(_L("Logging failed to strat with error : %d"), iErrCode);
sl@0
   112
			SetTestStepResult(EFail);
sl@0
   113
		}
sl@0
   114
	}
sl@0
   115
	
sl@0
   116
	return TestStepResult();
sl@0
   117
}
sl@0
   118
sl@0
   119
sl@0
   120
TVerdict CTestUloggerClientApiStepBase::doTestStepPostambleL()
sl@0
   121
/**
sl@0
   122
 * @return - TVerdict
sl@0
   123
 * Implementation of CTestStep base class virtual
sl@0
   124
 * It is used for doing all after test treatment common to derived classes in here.
sl@0
   125
 * Make it being able to leave
sl@0
   126
 * The leave will be picked up by the framework.
sl@0
   127
 */
sl@0
   128
{
sl@0
   129
sl@0
   130
	if(TestStepResult() == EPass)
sl@0
   131
	{
sl@0
   132
		INFO_PRINTF1(_L("Deleting RULogger object"));
sl@0
   133
		if(iSession)
sl@0
   134
		{
sl@0
   135
			INFO_PRINTF1(_L("before delete iSession"));
sl@0
   136
			delete 	iSession;
sl@0
   137
		    SetTestStepResult(EPass);  // destruction sucessfull
sl@0
   138
		}
sl@0
   139
		else
sl@0
   140
		{
sl@0
   141
			SetTestStepResult(EFail);
sl@0
   142
		}
sl@0
   143
	}
sl@0
   144
	return TestStepResult();
sl@0
   145
}
sl@0
   146
CTestUloggerClientApiStepBase::~CTestUloggerClientApiStepBase()
sl@0
   147
	{
sl@0
   148
	}
sl@0
   149
sl@0
   150
CTestUloggerClientApiStepBase::CTestUloggerClientApiStepBase():iSession(0)
sl@0
   151
	{
sl@0
   152
	}