os/ossrv/lowlevellibsandfws/pluginfw/Framework/RegistryDataTest/RegistryDataTest.cpp
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/lowlevellibsandfws/pluginfw/Framework/RegistryDataTest/RegistryDataTest.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,162 @@
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 CRegistryData 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 "StateAccessor.h"
1.25 +#include <test_bed/testbeddefinitions.h>
1.26 +#include <test_bed/unittest.h>
1.27 +#include "LeakTestTransition.h"
1.28 +#include <test_bed/datalogger.h>
1.29 +#include "ComponentTester.h"
1.30 +
1.31 +#include "RegistryData.h"
1.32 +
1.33 +#include "RegistryDataUnitTests.h"
1.34 +
1.35 +RTest test(_L("RegistryDataTest.cpp"));
1.36 +
1.37 +// ______________________________________________________________________________
1.38 +//
1.39 +/**
1.40 + @internalComponent
1.41 + Comments : Test the CRegistryData class.
1.42 + */
1.43 +class CRegistryData_ComponentTest : public CComponentTester
1.44 + {
1.45 +public:
1.46 + /**
1.47 + @fn NewLC(CDataLogger& aDataLogger,
1.48 + MComponentTestObserver& aObserver)
1.49 + Intended Usage : Standard two-phase construction which leaves nothing on the
1.50 + cleanup stack.
1.51 + Error Condition : Leaves with the error code.
1.52 + @leave KErrNoMemory
1.53 + @since 7.0
1.54 + @param aDataLogger The output logging object.
1.55 + @param aObserver The observer of this component test.
1.56 + @return CRegistryData_ComponentTest* The constructed object.
1.57 + @pre None.
1.58 + @post CRegistryData_ComponentTest is fully constructed.
1.59 + */
1.60 + static CRegistryData_ComponentTest* NewLC(CDataLogger& aDataLogger,
1.61 + MComponentTestObserver& aObserver);
1.62 +
1.63 +private:
1.64 + /**
1.65 + @fn CRegistryData_ComponentTest(CDataLogger& aDataLogger,
1.66 + MComponentTestObserver& aObserver)
1.67 + Intended Usage : Standard c'tor method.
1.68 + Error Condition : None.
1.69 + @since 7.0
1.70 + @param aDataLogger The logging object.
1.71 + @param aObserver The observer of this component test.
1.72 + @pre None.
1.73 + @post CRegistryData_ComponentTest is fully constructed.
1.74 + */
1.75 + inline CRegistryData_ComponentTest(CDataLogger& aDataLogger,
1.76 + MComponentTestObserver& aObserver);
1.77 + /**
1.78 + @fn void ConstructL()
1.79 + Intended Usage : Second phase of safe two phase construction,
1.80 + to complete the object initialisation.
1.81 + Error Condition : Leaves with an error code.
1.82 + @leave KErrNoMemory.
1.83 + @since 7.0
1.84 + @return None
1.85 + @pre CRegistryData_ComponentTest is fully constructed.
1.86 + @post CRegistryData_ComponentTest is fully initialised.
1.87 + */
1.88 + inline void ConstructL();
1.89 +
1.90 + }; // CRegistryData_ComponentTest
1.91 +
1.92 +// ______________________________________________________________________________
1.93 +//
1.94 +inline CRegistryData_UnitTestContext::CRegistryData_UnitTestContext(CDataLogger& aDataLogger,
1.95 + MStateAccessor& aStateAccessor,
1.96 + MTransitionObserver& aObserver,
1.97 + RFs& aFs)
1.98 +: CUnitTestContext(aDataLogger, aStateAccessor, aObserver), iFs(aFs)
1.99 + {
1.100 + //Do nothing
1.101 + }
1.102 +
1.103 +inline CRegistryData_UnitTestContext::~CRegistryData_UnitTestContext()
1.104 + {
1.105 + delete iRegistryData;
1.106 + delete iDllData;
1.107 + delete iNewDllData;
1.108 + }
1.109 +
1.110 +// ______________________________________________________________________________
1.111 +//
1.112 +inline CRegistryData_ComponentTest* CRegistryData_ComponentTest::NewLC(CDataLogger& aDataLogger, MComponentTestObserver& aObserver)
1.113 + {
1.114 + CRegistryData_ComponentTest* self = new (ELeave) CRegistryData_ComponentTest(aDataLogger, aObserver);
1.115 + CleanupStack::PushL(self);
1.116 + self->ConstructL();
1.117 + return self;
1.118 + }
1.119 +
1.120 +inline CRegistryData_ComponentTest::CRegistryData_ComponentTest(CDataLogger& aDataLogger,
1.121 + MComponentTestObserver& aObserver)
1.122 +: CComponentTester(aDataLogger, aObserver)
1.123 + {
1.124 + // Do nothing here.
1.125 + }
1.126 +
1.127 +inline void CRegistryData_ComponentTest::ConstructL()
1.128 + {
1.129 + // Perform base class initialization
1.130 + ComponentTesterConstructL();
1.131 +
1.132 + AddUnitTestL(CRegistryData_CreateAndDestroy_UnitTest::NewL(iDataLogger, *this));
1.133 + AddUnitTestL(CRegistryData_RetrieveInfo_UnitTest::NewL(iDataLogger, *this));
1.134 +
1.135 + AddUnitTestL(CRegistryData_GetImplInfoWhileDiscovering_UnitTest::NewL(iDataLogger, *this));
1.136 + AddUnitTestL(CRegistryData_AddData_UnitTest::NewL(iDataLogger, *this));
1.137 + }
1.138 +
1.139 +// ______________________________________________________________________________
1.140 +//
1.141 +EXPORT_C CComponentTester* NewComponentTestLC(CDataLogger& aDataLogger,
1.142 + MComponentTestObserver& aComponentTestObserver)
1.143 + {
1.144 + return CRegistryData_ComponentTest::NewLC(aDataLogger, aComponentTestObserver);
1.145 + }
1.146 +
1.147 +// ___________________________________________________________________________
1.148 +//
1.149 +// This section of the module simply includes the exported test harness template which
1.150 +// makes this a "whole" CPP file with a E32Main entry point below. The test MMP
1.151 +// project file can then produce a EXE for the test project instead of a DLL.
1.152 +
1.153 +#include "ECom/Test_Bed/TestHarnessTemplate.h"
1.154 +
1.155 +GLDEF_C TInt E32Main()
1.156 + {
1.157 + test.Title();
1.158 + test.Start(_L(" @SYMTestCaseID:SYSLIB-ECOM-LEGACY-REGISTRYDATATEST-0001 "));
1.159 +
1.160 + test.End();
1.161 + test.Close();
1.162 +
1.163 + return E32Main_TestHarness(NewComponentTestLC);
1.164 + }
1.165 +