os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/TestManagerTest/TestManagerUnitTest.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 CTestManager class.
18 #include "TestManagerUnitTest.h"
19 #include "TestController.h"
21 extern CComponentTester* NewComponentTestLC_STUB(
22 CDataLogger& aDataLogger,
23 MComponentTestObserver& aComponentTestObserver);
25 // ______________________________________________________________________________
27 _LIT(KTestManagerCreateAndDestroyUnitTest,"CTestManager_CreateAndDestroy_UnitTest");
29 CTestManager_CreateAndDestroy_UnitTest* CTestManager_CreateAndDestroy_UnitTest::NewL(CDataLogger& aDataLogger,
30 MUnitTestObserver& aObserver)
32 CTestManager_CreateAndDestroy_UnitTest* self =
33 new(ELeave) CTestManager_CreateAndDestroy_UnitTest(aDataLogger,
35 CleanupStack::PushL(self);
41 inline TInt CTestManager_CreateAndDestroy_UnitTest::RunError(TInt aError)
43 // The RunL left so chain to the base first and then cleanup
44 TInt error = CUnitTest::RunError(aError); // Chain to base
47 delete iStateAccessor;
48 iStateAccessor = NULL;
49 /* delete any validators used */
50 delete iCtorValidator;
51 iCtorValidator = NULL;
52 delete iDtorValidator;
53 iDtorValidator = NULL;
58 inline CTestManager_CreateAndDestroy_UnitTest::~CTestManager_CreateAndDestroy_UnitTest()
60 // Simply delete our test class instance
62 delete iStateAccessor;
63 /* delete any validators used */
64 delete iCtorValidator;
65 delete iDtorValidator;
68 inline CTestManager_CreateAndDestroy_UnitTest::CTestManager_CreateAndDestroy_UnitTest(CDataLogger& aDataLogger,
69 MUnitTestObserver& aObserver)
70 : CUnitTest(KTestManagerCreateAndDestroyUnitTest, aDataLogger, aObserver)
75 // Now the Individual transitions need to be added.
76 inline void CTestManager_CreateAndDestroy_UnitTest::ConstructL()
78 // Perform the base class initialization
81 // Create the Unit test state accessor
82 iStateAccessor = new(ELeave) TTestManager_StateAccessor;
83 // Construct the Unit test context.
84 iUTContext = new(ELeave) CTestManager_UnitTestContext(iDataLogger, *iStateAccessor, *this);
85 iUTContext->iTestListArray = new(ELeave) RPointerArray<CComponentInfo>;
86 // Construct, and store the observer stub
87 iUTContext->iTestManagerObserverStub = CTestManagerObserverStub::NewL();
89 // Add the Transitions in the order they are to run
90 // C'tor first, D'tor last...
91 iCtorValidator = new(ELeave) TTestManager_Ctor_TransitionValidator(*iUTContext);
92 iDtorValidator = new(ELeave) TTestManager_Dtor_TransitionValidator(*iUTContext);
94 AddTransitionL(new(ELeave)CTestManager_NewL_Transition(*iUTContext,*iCtorValidator));
95 AddTransitionL(new(ELeave)CTestManager_Dtor_Transition(*iUTContext,*iDtorValidator));
98 // ______________________________________________________________________________
100 _LIT(KTestManagerManageTestsUnitTest,"CTestManager_ManageTests_UnitTest");
102 CTestManager_ManageTests_UnitTest* CTestManager_ManageTests_UnitTest::NewL(CDataLogger& aDataLogger,
103 MUnitTestObserver& aObserver)
105 CTestManager_ManageTests_UnitTest* self =
106 new(ELeave) CTestManager_ManageTests_UnitTest(aDataLogger,
108 CleanupStack::PushL(self);
114 inline TInt CTestManager_ManageTests_UnitTest::RunError(TInt aError)
116 // The RunL left so chain to the base first and then cleanup
117 TInt error = CUnitTest::RunError(aError); // Chain to base
120 delete iStateAccessor;
121 iStateAccessor = NULL;
122 /* delete any validators used */
123 delete iCtorValidator;
124 iCtorValidator = NULL;
125 delete iRunTestsValidator;
126 iRunTestsValidator = NULL;
127 delete iTestComponentValidator;
128 iTestComponentValidator =NULL;
129 delete iDtorValidator;
130 iDtorValidator = NULL;
135 inline CTestManager_ManageTests_UnitTest::~CTestManager_ManageTests_UnitTest()
137 // Simply delete our test class instance
139 delete iStateAccessor;
140 /* delete any validators used */
141 delete iCtorValidator;
142 delete iRunTestsValidator;
143 delete iTestComponentValidator;
144 delete iDtorValidator;
147 inline CTestManager_ManageTests_UnitTest::CTestManager_ManageTests_UnitTest(CDataLogger& aDataLogger,
148 MUnitTestObserver& aObserver)
149 : CUnitTest(KTestManagerManageTestsUnitTest, aDataLogger, aObserver)
154 // Now the Individual transitions need to be added.
155 inline void CTestManager_ManageTests_UnitTest::ConstructL()
157 // Perform the base class initialization
158 UnitTestConstructL();
160 // Create the Unit test state accessor
161 iStateAccessor = new(ELeave) TTestManager_StateAccessor;
162 // Construct the Unit test context.
163 iUTContext = new(ELeave) CTestManager_UnitTestContext(iDataLogger, *iStateAccessor, *this);
164 iUTContext->iTestListArray = new(ELeave) RPointerArray<CComponentInfo>;
165 // Construct, and store the observer stub
166 iUTContext->iTestManagerObserverStub = CTestManagerObserverStub::NewL();
168 CComponentInfo* compInfo = CComponentInfo::NewL(NewComponentTestLC_STUB, NULL);
169 CleanupStack::PushL(compInfo);
171 User::LeaveIfError(iUTContext->iTestListArray->Append(compInfo));
172 CleanupStack::Pop(compInfo);
175 // Add the Transitions in the order they are to run
176 // C'tor first, D'tor last...
177 iCtorValidator = new(ELeave) TTestManager_Ctor_TransitionValidator(*iUTContext);
178 iRunTestsValidator = new(ELeave) TTestManager_RunTests_TransitionValidator(*iUTContext);
179 iTestComponentValidator = new(ELeave) TTestManager_TestComponent_TransitionValidator(*iUTContext);
180 iDtorValidator = new(ELeave) TTestManager_Dtor_TransitionValidator(*iUTContext);
182 AddTransitionL(new(ELeave)CTestManager_NewL_Transition(*iUTContext,*iCtorValidator));
183 // AddTransitionL(new(ELeave)CTestManager_RunTests_Transition(*iUTContext,*iRunTestsValidator));
184 AddTransitionL(new(ELeave)CTestManager_TestComponentL_Transition(*iUTContext,*iTestComponentValidator));
185 AddTransitionL(new(ELeave)CTestManager_Dtor_Transition(*iUTContext,*iDtorValidator));
189 // ______________________________________________________________________________
191 _LIT(KTestManagerCreateAndDestroyUnitTest_STUB,"CTestManager_CreateAndDestroy_UnitTest_STUB");
193 CTestManager_CreateAndDestroy_UnitTest_STUB* CTestManager_CreateAndDestroy_UnitTest_STUB::NewL(CDataLogger& aDataLogger,
194 MUnitTestObserver& aObserver)
196 CTestManager_CreateAndDestroy_UnitTest_STUB* self =
197 new(ELeave) CTestManager_CreateAndDestroy_UnitTest_STUB(aDataLogger,
199 CleanupStack::PushL(self);
205 inline TInt CTestManager_CreateAndDestroy_UnitTest_STUB::RunError(TInt aError)
207 // The RunL left so chain to the base first and then cleanup
208 TInt error = CUnitTest::RunError(aError); // Chain to base
210 //Do nothing else since stub
215 inline CTestManager_CreateAndDestroy_UnitTest_STUB::~CTestManager_CreateAndDestroy_UnitTest_STUB()
220 inline CTestManager_CreateAndDestroy_UnitTest_STUB::CTestManager_CreateAndDestroy_UnitTest_STUB(CDataLogger& aDataLogger,
221 MUnitTestObserver& aObserver)
222 : CUnitTest(KTestManagerCreateAndDestroyUnitTest_STUB, aDataLogger, aObserver)
227 // Now the Individual transitions need to be added.
228 inline void CTestManager_CreateAndDestroy_UnitTest_STUB::ConstructL()
230 // Perform the base class initialization
231 UnitTestConstructL();
233 //Do nothing else since stub