os/persistentdata/traceservices/tracefw/ulogger/unit_test/te-sysstart/uloggersysstarttest.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) 2007-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
// UloggerFilePluginTest.cpp
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#include "uloggersysstarttest.h"
sl@0
    19
using namespace Ulogger;
sl@0
    20
sl@0
    21
sl@0
    22
sl@0
    23
/*
sl@0
    24
 * TestStart: Test the start method ???
sl@0
    25
 *
sl@0
    26
 * Expected Verdict: PASS/FAIL/PANIC
sl@0
    27
 *
sl@0
    28
 * Prerequisites:
sl@0
    29
 *
sl@0
    30
 * Description: Invoke CULoggerSysStarter::Start() and check that the start metod works
sl@0
    31
 *
sl@0
    32
 */
sl@0
    33
void CSysStart0Step::TestStart()
sl@0
    34
	{
sl@0
    35
	INFO_PRINTF1(_L("Checking that CSysStart0Step::Start works fine"));
sl@0
    36
sl@0
    37
	INFO_PRINTF1(_L("Writing 'Test' to the log using CULoggerSysStarter::Write()"));
sl@0
    38
 	Ulogger::SysStart();
sl@0
    39
	
sl@0
    40
	}
sl@0
    41
sl@0
    42
sl@0
    43
sl@0
    44
CSysStart0Step::~CSysStart0Step()
sl@0
    45
	{
sl@0
    46
	}
sl@0
    47
sl@0
    48
CSysStart0Step::CSysStart0Step()
sl@0
    49
/**
sl@0
    50
 * Constructor
sl@0
    51
 */
sl@0
    52
	{
sl@0
    53
	// **MUST** call SetTestStepName in the constructor as the controlling
sl@0
    54
	// framework uses the test step name immediately following construction to set
sl@0
    55
	// up the step's unique logging ID.
sl@0
    56
	SetTestStepName(KSysStart0Step);
sl@0
    57
	}
sl@0
    58
sl@0
    59
TVerdict CSysStart0Step::doTestStepPreambleL()
sl@0
    60
	{
sl@0
    61
	CTe_sysstartSuiteStepBase::doTestStepPreambleL();
sl@0
    62
	
sl@0
    63
	INFO_PRINTF1(_L("Connecting to file server"));
sl@0
    64
	SetTestStepResult(EPass);
sl@0
    65
	return TestStepResult();
sl@0
    66
	}
sl@0
    67
sl@0
    68
TVerdict CSysStart0Step::doTestStepL()
sl@0
    69
/**
sl@0
    70
 * @return - TVerdict code
sl@0
    71
 * Override of base class pure virtual
sl@0
    72
 * Our implementation only gets called if the base class doTestStepPreambleL() did
sl@0
    73
 * not leave. That being the case, the current test result value will be EPass.
sl@0
    74
 */
sl@0
    75
	{	
sl@0
    76
	  if (TestStepResult()==EPass)
sl@0
    77
		{
sl@0
    78
		TestStart();
sl@0
    79
sl@0
    80
		if(iErrors == 0)
sl@0
    81
			SetTestStepResult(EPass);
sl@0
    82
		else
sl@0
    83
			{
sl@0
    84
			SetTestStepResult(EFail);
sl@0
    85
			TBuf<64> buf;
sl@0
    86
			INFO_PRINTF1(_L("********"));
sl@0
    87
			buf.AppendFormat(_L("%d errors were found!"), iErrors);
sl@0
    88
			INFO_PRINTF1(buf); 
sl@0
    89
			INFO_PRINTF1(_L("********"));
sl@0
    90
			}
sl@0
    91
		}
sl@0
    92
	  return TestStepResult();
sl@0
    93
	}
sl@0
    94
sl@0
    95
TVerdict CSysStart0Step::doTestStepPostambleL()
sl@0
    96
/**
sl@0
    97
 * @return - TVerdict code
sl@0
    98
 * Override of base class virtual
sl@0
    99
 */
sl@0
   100
	{
sl@0
   101
	CTe_sysstartSuiteStepBase::doTestStepPostambleL();
sl@0
   102
	SetTestStepResult(EPass);
sl@0
   103
	return TestStepResult();
sl@0
   104
	}