1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/DataLoggerTest/DataLoggerTest.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,144 @@
1.4 +// Copyright (c) 1997-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 +// Demonstrates a simple set of derived class implementations to
1.18 +// test the CDataLogger class using the test bed.
1.19 +// It may be used as a basis to develop a full test bed dll.
1.20 +// For support and comment please contact the authors.
1.21 +//
1.22 +//
1.23 +
1.24 +#include "DataLoggerUnitTest.h"
1.25 +#include "ComponentTester.h"
1.26 +
1.27 +RTest test(_L("DataLoggerTest.cpp"));
1.28 +
1.29 +// ______________________________________________________________________________
1.30 +//
1.31 +/**
1.32 + @internalComponent
1.33 +
1.34 + Comments : Test the CDataLogger class.
1.35 + */
1.36 +class CDataLogger_ComponentTest : public CComponentTester
1.37 + {
1.38 +public:
1.39 + /**
1.40 + @fn NewLC(CDataLogger& aDataLogger,
1.41 + MComponentTestObserver& aObserver)
1.42 + Intended Usage : Standard two-phase construction which leaves nothing on the
1.43 + cleanup stack.
1.44 + Error Condition : Leaves with the error code.
1.45 + @leave KErrNoMemory
1.46 + @since 7.0
1.47 + @param aDataLogger The output logging object.
1.48 + @param aObserver The observer of this component test.
1.49 + @return CDataLogger_ComponentTest* The constructed object.
1.50 + @pre None.
1.51 + @post CDataLogger_ComponentTest is fully constructed.
1.52 + */
1.53 + static CDataLogger_ComponentTest* NewLC(CDataLogger& aDataLogger,
1.54 + MComponentTestObserver& aObserver);
1.55 +
1.56 +private:
1.57 + /**
1.58 + @fn CDataLogger_ComponentTest(CDataLogger& aDataLogger,
1.59 + MComponentTestObserver& aObserver)
1.60 + Intended Usage : Standard c'tor method.
1.61 + Error Condition : None.
1.62 + @since 7.0
1.63 + @param aDataLogger The logging object.
1.64 + @param aObserver The observer of this component test.
1.65 + @pre None.
1.66 + @post CDataLogger_ComponentTest is fully constructed.
1.67 + */
1.68 + inline CDataLogger_ComponentTest(CDataLogger& aDataLogger,
1.69 + MComponentTestObserver& aObserver);
1.70 + /**
1.71 + @fn void ConstructL()
1.72 + Intended Usage : Second phase of safe two phase construction,
1.73 + to complete the object initialisation.
1.74 + Error Condition : Leaves with an error code.
1.75 + @leave KErrNoMemory.
1.76 + @since 7.0
1.77 + @return None
1.78 + @pre CDataLogger_ComponentTest is fully constructed.
1.79 + @post CDataLogger_ComponentTest is fully initialised.
1.80 + */
1.81 + inline void ConstructL();
1.82 +
1.83 + }; // CDataLogger_ComponentTest
1.84 +
1.85 +// ______________________________________________________________________________
1.86 +//
1.87 +inline CDataLogger_ComponentTest* CDataLogger_ComponentTest::NewLC(CDataLogger& aDataLogger, MComponentTestObserver& aObserver)
1.88 + {
1.89 + CDataLogger_ComponentTest* self = new (ELeave) CDataLogger_ComponentTest(aDataLogger, aObserver);
1.90 + CleanupStack::PushL(self);
1.91 + self->ConstructL();
1.92 + return self;
1.93 + }
1.94 +
1.95 +inline CDataLogger_ComponentTest::CDataLogger_ComponentTest(CDataLogger& aDataLogger,
1.96 + MComponentTestObserver& aObserver)
1.97 +: CComponentTester(aDataLogger, aObserver)
1.98 + {
1.99 + // Do nothing here.
1.100 + }
1.101 +
1.102 +/**
1.103 +@SYMTestCaseID SYSLIB-ECOM-CT-0778
1.104 +@SYMTestCaseDesc Tests for the implementations of CDataLogger class
1.105 +@SYMTestPriority High
1.106 +@SYMTestActions Tests for create and destroy,dump memory,log and report information operations
1.107 +@SYMTestExpectedResults Test must not fail
1.108 +@SYMREQ REQ0000
1.109 +*/
1.110 +inline void CDataLogger_ComponentTest::ConstructL()
1.111 + {
1.112 + // Perform base class initialization
1.113 + ComponentTesterConstructL();
1.114 +
1.115 + AddUnitTestL(CDataLogger_CreateAndDestroy_UnitTest::NewL(iDataLogger, *this));
1.116 + AddUnitTestL(CDataLogger_DumpMemoryBlock_UnitTest::NewL(iDataLogger, *this));
1.117 + AddUnitTestL(CDataLogger_LogInformation_UnitTest::NewL(iDataLogger, *this));
1.118 + AddUnitTestL(CDataLogger_ReportInformation_UnitTest::NewL(iDataLogger, *this));
1.119 + }
1.120 +
1.121 +// ______________________________________________________________________________
1.122 +//
1.123 +EXPORT_C CComponentTester* NewComponentTestLC(CDataLogger& aDataLogger,
1.124 + MComponentTestObserver& aComponentTestObserver)
1.125 + {
1.126 + return CDataLogger_ComponentTest::NewLC(aDataLogger, aComponentTestObserver);
1.127 + }
1.128 +
1.129 +// ___________________________________________________________________________
1.130 +//
1.131 +// This section of the module simply includes the exported test harness template which
1.132 +// makes this a "whole" CPP file with a E32Main entry point below. The test MMP
1.133 +// project file can then produce a EXE for the test project instead of a DLL.
1.134 +
1.135 +#include <ecom/test_bed/testharnesstemplate.h>
1.136 +
1.137 +GLDEF_C TInt E32Main()
1.138 + {
1.139 + test.Title();
1.140 + test.Start(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0778 "));
1.141 +
1.142 + test.End();
1.143 + test.Close();
1.144 +
1.145 + return E32Main_TestHarness(NewComponentTestLC);
1.146 + }
1.147 +