os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/ComponentInfoTest/ComponentInfoUnitTest.cpp
Update contrib.
1 // Copyright (c) 1997-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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // The unit test class implementations for the CComponentInfo class.
18 #include "ComponentInfoUnitTest.h"
20 // ______________________________________________________________________________
22 _LIT(KComponentInfoCreateAndDestroyUnitTest,"CComponentInfo_CreateAndDestroy_UnitTest");
24 CComponentInfo_CreateAndDestroy_UnitTest* CComponentInfo_CreateAndDestroy_UnitTest::NewL(CDataLogger& aDataLogger,
25 MUnitTestObserver& aObserver)
27 CComponentInfo_CreateAndDestroy_UnitTest* self =
28 new(ELeave) CComponentInfo_CreateAndDestroy_UnitTest(aDataLogger,
30 CleanupStack::PushL(self);
36 inline TInt CComponentInfo_CreateAndDestroy_UnitTest::RunError(TInt aError)
38 // The RunL left so chain to the base first and then cleanup
39 TInt error = CUnitTest::RunError(aError); // Chain to base
42 delete iStateAccessor;
43 iStateAccessor = NULL;
44 /* delete any validators used */
45 delete iCtorValidator;
46 iCtorValidator = NULL;
47 delete iDtorValidator;
48 iDtorValidator = NULL;
52 inline CComponentInfo_CreateAndDestroy_UnitTest::~CComponentInfo_CreateAndDestroy_UnitTest()
54 // Simply delete our test class instance
56 delete iStateAccessor;
57 /* delete any validators used */
58 delete iCtorValidator;
59 delete iDtorValidator;
62 inline CComponentInfo_CreateAndDestroy_UnitTest::CComponentInfo_CreateAndDestroy_UnitTest(CDataLogger& aDataLogger,
63 MUnitTestObserver& aObserver)
64 : CUnitTest(KComponentInfoCreateAndDestroyUnitTest, aDataLogger, aObserver)
69 // Now the Individual transitions need to be added.
70 inline void CComponentInfo_CreateAndDestroy_UnitTest::ConstructL()
72 // Perform the base class initialization
75 // Create the Unit test state accessor
76 iStateAccessor = new(ELeave) TComponentInfo_StateAccessor;
77 // Construct the Unit test context.
78 iUTContext = new(ELeave) CComponentInfo_UnitTestContext(iDataLogger, *iStateAccessor, *this);
79 iUTContext->iOwnParams = ETrue;
80 //Leave function pointer at 0, assume CBase does this
81 //iUTContext->iEntryFunc = iUTContext->iEntryFuncPostCheck = 0;
82 iUTContext->iTestInfoArray = new(ELeave) RPointerArray<CUnitTestInfo>;
84 // Add the Transitions in the order they are to run
85 // C'tor first, D'tor last...
86 iCtorValidator = new(ELeave) TComponentInfo_Ctor_TransitionValidator(*iUTContext);
87 iDtorValidator = new(ELeave) TComponentInfo_Dtor_TransitionValidator(*iUTContext);
89 AddTransitionL(new(ELeave)CComponentInfo_NewL_Transition(*iUTContext,*iCtorValidator));
90 AddTransitionL(new(ELeave)CComponentInfo_Dtor_Transition(*iUTContext,*iDtorValidator));
93 // ______________________________________________________________________________
95 _LIT(KComponentInfoRetrieveTestNamesUnitTest,"CComponentInfo_RetrieveTestNames_UnitTest");
97 CComponentInfo_RetrieveTestNames_UnitTest* CComponentInfo_RetrieveTestNames_UnitTest::NewL(CDataLogger& aDataLogger,
98 MUnitTestObserver& aObserver)
100 CComponentInfo_RetrieveTestNames_UnitTest* self =
101 new(ELeave) CComponentInfo_RetrieveTestNames_UnitTest(aDataLogger,
103 CleanupStack::PushL(self);
109 inline TInt CComponentInfo_RetrieveTestNames_UnitTest::RunError(TInt aError)
111 // The RunL left so chain to the base first and then cleanup
112 TInt error = CUnitTest::RunError(aError); // Chain to base
115 delete iStateAccessor;
116 iStateAccessor = NULL;
117 /* delete any validators used */
118 delete iCtorValidator;
119 iCtorValidator = NULL;
120 delete iEntryValidator;
121 iEntryValidator = NULL;
122 delete iUnitTestsInfoValidator;
123 iUnitTestsInfoValidator = NULL;
124 delete iDtorValidator;
125 iDtorValidator = NULL;
129 inline CComponentInfo_RetrieveTestNames_UnitTest::~CComponentInfo_RetrieveTestNames_UnitTest()
131 // Simply delete our test class instance
133 delete iStateAccessor;
134 /* delete any validators used */
135 delete iCtorValidator;
136 delete iEntryValidator;
137 delete iUnitTestsInfoValidator;
138 delete iDtorValidator;
141 inline CComponentInfo_RetrieveTestNames_UnitTest::CComponentInfo_RetrieveTestNames_UnitTest(CDataLogger& aDataLogger,
142 MUnitTestObserver& aObserver)
143 : CUnitTest(KComponentInfoRetrieveTestNamesUnitTest, aDataLogger, aObserver)
148 // Now the Individual transitions need to be added.
149 inline void CComponentInfo_RetrieveTestNames_UnitTest::ConstructL()
151 // Perform the base class initialization
152 UnitTestConstructL();
154 // Create the Unit test state accessor
155 iStateAccessor = new(ELeave) TComponentInfo_StateAccessor;
156 // Construct the Unit test context.
157 iUTContext = new(ELeave) CComponentInfo_UnitTestContext(iDataLogger, *iStateAccessor, *this);
159 // Add the Transitions in the order they are to run
160 // C'tor first, D'tor last...
161 iCtorValidator = new(ELeave) TComponentInfo_Ctor_TransitionValidator(*iUTContext);
162 iEntryValidator = new(ELeave) TComponentInfo_Entry_TransitionValidator(*iUTContext);
163 iUnitTestsInfoValidator = new(ELeave) TComponentInfo_UnitTestsInfo_TransitionValidator(*iUTContext);
164 iDtorValidator = new(ELeave) TComponentInfo_Dtor_TransitionValidator(*iUTContext);
166 AddTransitionL(new(ELeave)CComponentInfo_NewL_Transition(*iUTContext,*iCtorValidator));
167 AddTransitionL(new(ELeave)CComponentInfo_Entry_Transition(*iUTContext,*iEntryValidator));
168 AddTransitionL(new(ELeave)CComponentInfo_UnitTestsInfo_Transition(*iUTContext,*iUnitTestsInfoValidator));
169 AddTransitionL(new(ELeave)CComponentInfo_Dtor_Transition(*iUTContext,*iDtorValidator));