os/persistentdata/traceservices/tracefw/ulogger/unit_test/te-sysstart/uloggersysstarttest.cpp
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/persistentdata/traceservices/tracefw/ulogger/unit_test/te-sysstart/uloggersysstarttest.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,104 @@
1.4 +// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +// UloggerFilePluginTest.cpp
1.18 +//
1.19 +//
1.20 +
1.21 +#include "uloggersysstarttest.h"
1.22 +using namespace Ulogger;
1.23 +
1.24 +
1.25 +
1.26 +/*
1.27 + * TestStart: Test the start method ???
1.28 + *
1.29 + * Expected Verdict: PASS/FAIL/PANIC
1.30 + *
1.31 + * Prerequisites:
1.32 + *
1.33 + * Description: Invoke CULoggerSysStarter::Start() and check that the start metod works
1.34 + *
1.35 + */
1.36 +void CSysStart0Step::TestStart()
1.37 + {
1.38 + INFO_PRINTF1(_L("Checking that CSysStart0Step::Start works fine"));
1.39 +
1.40 + INFO_PRINTF1(_L("Writing 'Test' to the log using CULoggerSysStarter::Write()"));
1.41 + Ulogger::SysStart();
1.42 +
1.43 + }
1.44 +
1.45 +
1.46 +
1.47 +CSysStart0Step::~CSysStart0Step()
1.48 + {
1.49 + }
1.50 +
1.51 +CSysStart0Step::CSysStart0Step()
1.52 +/**
1.53 + * Constructor
1.54 + */
1.55 + {
1.56 + // **MUST** call SetTestStepName in the constructor as the controlling
1.57 + // framework uses the test step name immediately following construction to set
1.58 + // up the step's unique logging ID.
1.59 + SetTestStepName(KSysStart0Step);
1.60 + }
1.61 +
1.62 +TVerdict CSysStart0Step::doTestStepPreambleL()
1.63 + {
1.64 + CTe_sysstartSuiteStepBase::doTestStepPreambleL();
1.65 +
1.66 + INFO_PRINTF1(_L("Connecting to file server"));
1.67 + SetTestStepResult(EPass);
1.68 + return TestStepResult();
1.69 + }
1.70 +
1.71 +TVerdict CSysStart0Step::doTestStepL()
1.72 +/**
1.73 + * @return - TVerdict code
1.74 + * Override of base class pure virtual
1.75 + * Our implementation only gets called if the base class doTestStepPreambleL() did
1.76 + * not leave. That being the case, the current test result value will be EPass.
1.77 + */
1.78 + {
1.79 + if (TestStepResult()==EPass)
1.80 + {
1.81 + TestStart();
1.82 +
1.83 + if(iErrors == 0)
1.84 + SetTestStepResult(EPass);
1.85 + else
1.86 + {
1.87 + SetTestStepResult(EFail);
1.88 + TBuf<64> buf;
1.89 + INFO_PRINTF1(_L("********"));
1.90 + buf.AppendFormat(_L("%d errors were found!"), iErrors);
1.91 + INFO_PRINTF1(buf);
1.92 + INFO_PRINTF1(_L("********"));
1.93 + }
1.94 + }
1.95 + return TestStepResult();
1.96 + }
1.97 +
1.98 +TVerdict CSysStart0Step::doTestStepPostambleL()
1.99 +/**
1.100 + * @return - TVerdict code
1.101 + * Override of base class virtual
1.102 + */
1.103 + {
1.104 + CTe_sysstartSuiteStepBase::doTestStepPostambleL();
1.105 + SetTestStepResult(EPass);
1.106 + return TestStepResult();
1.107 + }