os/persistentdata/traceservices/tracefw/ulogger/unit_test/te-client/testversionstep.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 // Example CTestStep derived implementation
    15 // 
    16 //
    17 
    18 /**
    19  @file TestVersionStep.cpp
    20  @internalTechnology
    21 */
    22 #include "testversionstep.h"
    23 #include "te_uloggerclientsuitedefs.h"
    24 
    25 CTestVersionStep::~CTestVersionStep()
    26 /**
    27  * Destructor
    28  */
    29 	{
    30 	}
    31 
    32 CTestVersionStep::CTestVersionStep()
    33 /**
    34  * Constructor
    35  */
    36 	{
    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(KTestVersionStep);
    41 	}
    42 
    43 TVerdict CTestVersionStep::doTestStepPreambleL()
    44 /**
    45  * @return - TVerdict code
    46  * Override of base class virtual
    47  */
    48 	{
    49 	INFO_PRINTF1(_L("TestVersionStep started"));
    50 	 CTestUloggerClientApiStepBase::doTestStepPreambleL();
    51 	return TestStepResult();
    52 	}
    53 
    54 
    55 TVerdict CTestVersionStep::doTestStepL()
    56 /**
    57  * @return - TVerdict code
    58  * Override of base class pure virtual
    59  * Our implementation only gets called if the base class doTestStepPreambleL() did
    60  * not leave. That being the case, the current test result value will be EPass.
    61  */
    62 	{
    63 	  if (TestStepResult()==EPass)
    64 		{
    65 			iSession->Connect();
    66 			TVersion iVer = iSession->Version();
    67 			if(iVer.iMajor != 0) //just dummy test
    68 			{	
    69 				TPtrC v(iVer.Name());
    70 				INFO_PRINTF2(_L("Server version is %S"), &v);
    71 				SetTestStepResult(EPass);
    72 			}
    73 			else
    74 			{
    75 				TPtrC v(iVer.Name());
    76 				INFO_PRINTF2(_L("query version return wrong version : %S"), &v);
    77 				SetTestStepResult(EFail);
    78 			}
    79 		}
    80 		
    81 	  return TestStepResult();
    82 	}
    83 
    84 
    85 
    86 TVerdict CTestVersionStep::doTestStepPostambleL()
    87 /**
    88  * @return - TVerdict code
    89  * Override of base class virtual
    90  */
    91 	{
    92 	INFO_PRINTF1(_L("Please delete this line or modify it. I am in Test Step Postamble in Class CTestVersionStep"));
    93 	// process something post setting to the test step
    94 	// uncomment the following line if you have common post setting to all the test steps in there
    95 	// CTe_DummySuiteStepBase::doTestStepPostambleL();
    96 	// uncomment the following line if you have post process or remove the following line if no post process
    97 	// SetTestStepResult(EPass);		// or EFail
    98 	return TestStepResult();
    99 	}