os/ossrv/lowlevellibsandfws/pluginfw/TestExecute/EComSWITests/src/checkPlugin.cpp
Update contrib.
1 // Copyright (c) 2006-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 // This File Provides implementations of CCheckListImplementation, which Checks the plugin for availble implementation
15 // and CCheckCreateImplementation, which uses the method provided the ECom Plugin.
23 #include <ecom/resolver.h>
24 #include "checkPlugin.h"
27 CCheckListImplementation::~CCheckListImplementation()
32 CCheckListImplementation::CCheckListImplementation(TOperationType aOperationType)
33 : iOperationType(aOperationType)
35 SetTestStepName(KListImplUidStep);
40 TVerdict CCheckListImplementation::doTestStepPreambleL()
42 SetTestStepResult(EPass);
43 // get step parameters
45 TInt tempInterfaceuid=0;
47 if (!GetHexFromConfig(ConfigSection(), KInterfaceUID, tempInterfaceuid))
49 INFO_PRINTF1(HTML_RED);
50 ERR_PRINTF1(_L("FAIL: Missing Interface UID"));
51 INFO_PRINTF1(HTML_RED_OFF);
52 SetTestStepResult(EFail);
53 return TestStepResult();
56 iInterfaceUid.iUid = tempInterfaceuid;
58 return TestStepResult();
63 TVerdict CCheckListImplementation::doTestStepL()
67 //First find out if the Check Plugin step is supposed to be successful.
68 TInt testStepOutcome=KErrNone;
69 TInt err = GetIntFromConfig(ConfigSection(), KExpectedErrorCheckPlugin, testStepOutcome);
70 if(err !=1) testStepOutcome=KErrNone;
73 // and leaking thread handles
74 TInt startProcessHandleCount;
75 TInt startThreadHandleCount;
76 TInt endProcessHandleCount;
77 TInt endThreadHandleCount;
80 thisThread.HandleCount(startProcessHandleCount, startThreadHandleCount);
83 switch (iOperationType)
88 REComSession::ListImplementationsL(iInterfaceUid, iImplyArrayPtr);
91 iImplCount = iImplyArrayPtr.Count();
93 if(!GetIntFromConfig(ConfigSection(), KExpectedCount, eImplCount))
95 INFO_PRINTF1(HTML_RED);
96 ERR_PRINTF1(_L("FAIL: Missing Implementation Count in the INI File"));
97 INFO_PRINTF1(HTML_RED_OFF);
98 SetTestStepResult(EFail);
99 return TestStepResult();
102 if(eImplCount != iImplCount)
104 INFO_PRINTF1(HTML_RED);
105 ERR_PRINTF3( _L("The number Implemenation(s) in this ECom plugin do not match, expected %d implementation(s), got %d implementation(s)."), eImplCount, iImplCount );
106 INFO_PRINTF1(HTML_RED_OFF);
107 SetTestStepResult(EFail);
108 return TestStepResult();
111 //Ensuring that the ECom Plugin does have Implementations
112 if( iImplCount > 0 && testStepOutcome == KErrNone)
115 //Checking Implementation UID
116 TUid eImplUid = KNullUid;
119 if (!GetHexFromConfig(ConfigSection(), KImplUID, tempImplUid))
121 INFO_PRINTF1(HTML_RED);
122 ERR_PRINTF1(_L("FAIL: Missing Implementtaion UID"));
123 INFO_PRINTF1(HTML_RED_OFF);
124 SetTestStepResult(EFail);
125 return TestStepResult();
128 eImplUid.iUid = tempImplUid;
130 TBool foundImplementationUid(EFalse);
132 for(TInt i = 0; (i < iImplCount) && !(foundImplementationUid); i++)
134 iImplUid = iImplyArrayPtr[i]->ImplementationUid();
136 if(eImplUid == iImplUid)
138 foundImplementationUid = ETrue;
143 if(eImplUid != iImplUid)
145 INFO_PRINTF1(HTML_RED);
146 ERR_PRINTF3( _L("The Implemenation UID in this ECom plugin do not match, expected %d Implementation UID , got %d iImplementation UID."), eImplUid, iImplUid );
147 INFO_PRINTF1(HTML_RED_OFF);
148 SetTestStepResult(EFail);
149 return TestStepResult();
152 //Checking Implementation's Version Numbers
155 if (!GetIntFromConfig(ConfigSection(), KExpectedVersion, eVersion))
157 INFO_PRINTF1(HTML_RED);
158 ERR_PRINTF1(_L("FAIL: Missing Version Number in the INI File"));
159 INFO_PRINTF1(HTML_RED_OFF);
160 SetTestStepResult(EFail);
161 return TestStepResult();
164 iVersion = iImplyArrayPtr[arrayIndex]->Version();
166 if(eVersion != iVersion)
168 INFO_PRINTF1(HTML_RED);
169 ERR_PRINTF3( _L("The ECom plugin's implementation versions do not match, expected %d version, got %d version."), eVersion, iVersion );
170 INFO_PRINTF1(HTML_RED_OFF);
171 SetTestStepResult(EFail);
172 return TestStepResult();
176 //Checking Implementation's Drive Letter
180 iDrive = iImplyArrayPtr[arrayIndex]->Drive();
182 if (!GetStringFromConfig(ConfigSection(), KExpectedDrive, tempDrive))
184 INFO_PRINTF1(HTML_RED);
185 ERR_PRINTF1(_L("FAIL: Missing Plugin Drive Letter in the INI File"));
186 INFO_PRINTF1(HTML_RED_OFF);
187 SetTestStepResult(EFail);
188 return TestStepResult();
195 TPtrC eDrv(eDrive.Name());
196 TPtrC iDrv(iDrive.Name());
197 INFO_PRINTF1(HTML_RED);
198 ERR_PRINTF3( _L("The ECom plugin's drive letters do not match, expected %S drive, got %S drive."), &eDrv, &iDrv);
199 INFO_PRINTF1(HTML_RED_OFF);
200 SetTestStepResult(EFail);
201 return TestStepResult();
204 //Checking Implementation's Vendor ID
205 TInt tempVendorID(0);
206 TUid eVendorID = KNullUid;
208 iVendorID = iImplyArrayPtr[arrayIndex]->VendorId();
210 if (!GetHexFromConfig(ConfigSection(), KExpectedVendorID, tempVendorID))
212 INFO_PRINTF1(HTML_RED);
213 ERR_PRINTF1(_L("FAIL: Missing vendor UID In the INI File"));
214 INFO_PRINTF1(HTML_RED_OFF);
215 SetTestStepResult(EFail);
216 return TestStepResult();
219 eVendorID.iUid = tempVendorID;
221 if(eVendorID != iVendorID)
223 INFO_PRINTF1(HTML_RED);
224 ERR_PRINTF3( _L("The ECom Vendor IDs do not match, expected %d VID, got %d VID."), eVendorID, iVendorID );
225 INFO_PRINTF1(HTML_RED_OFF);
226 SetTestStepResult(EFail);
227 return TestStepResult();
234 INFO_PRINTF1(HTML_RED);
235 INFO_PRINTF2(_L("This is a Negative test whose expected outcome is %d "), testStepOutcome);
236 INFO_PRINTF1(HTML_RED_OFF);
243 //Reseting The ECOM Array
244 iImplyArrayPtr.ResetAndDestroy();
246 //Closing session with ECom Server
247 REComSession::FinalClose();
249 thisThread.HandleCount(endProcessHandleCount, endThreadHandleCount);
251 if(startThreadHandleCount != endThreadHandleCount)
253 INFO_PRINTF1(HTML_RED);
254 ERR_PRINTF1( _L("There is a memory leak as the number of thread handles open at the start do not equal the number of handles opened at the end."));
255 ERR_PRINTF3(_L("At the start there %d handles open and the end there are %d"), startThreadHandleCount, endThreadHandleCount);
256 INFO_PRINTF1(HTML_RED_OFF);
257 SetTestStepResult(EFail);
258 return TestStepResult();
264 return TestStepResult();
271 TVerdict CCheckListImplementation::doTestStepPostambleL()
273 return TestStepResult();
279 CCheckCreateImplementation::CCheckCreateImplementation(TOperationType aOperationType)
280 : iOperationType(aOperationType)
282 SetTestStepName(KCreateImpl_ImpId_DtorId_Step);
285 TVerdict CCheckCreateImplementation::doTestStepPreambleL()
287 SetTestStepResult(EPass);
291 if (!GetHexFromConfig(ConfigSection(), KImplUID, tempImplUid))
293 INFO_PRINTF1(HTML_RED);
294 ERR_PRINTF1(_L("FAIL: Missing Implementation UID"));
295 INFO_PRINTF1(HTML_RED_OFF);
296 SetTestStepResult(EFail);
297 return TestStepResult();
300 iImplUid.iUid = tempImplUid;
302 return TestStepResult();
306 TVerdict CCheckCreateImplementation::doTestStepL()
311 // Check for Memory leaks and also leaking thread handles
312 TInt startProcessHandleCount;
313 TInt startThreadHandleCount;
314 TInt endProcessHandleCount;
315 TInt endThreadHandleCount;
318 thisThread.HandleCount(startProcessHandleCount, startThreadHandleCount);
323 CEComSwiPluginInterfaceDefiniton* iPluginPtr = CEComSwiPluginInterfaceDefiniton::NewL(iImplUid);
325 iPluginPtr->ReturnInt(iInt);
328 if (!GetIntFromConfig(ConfigSection(), KExpectedPluginInt, eInt))
330 INFO_PRINTF1(HTML_RED);
331 ERR_PRINTF1(_L("FAIL: Missing ReturnInt value Number in the INI File"));
332 INFO_PRINTF1(HTML_RED_OFF);
333 SetTestStepResult(EFail);
334 return TestStepResult();
340 INFO_PRINTF1(HTML_RED);
341 ERR_PRINTF3(_L("The values returned from the Plugins ReturnInt() do not match, expected Int Value %d, got %d."), eInt, iInt);
342 INFO_PRINTF1(HTML_RED_OFF);
343 SetTestStepResult(EFail);
344 return TestStepResult();
349 REComSession::FinalClose();
351 thisThread.HandleCount(endProcessHandleCount, endThreadHandleCount);
353 if(startThreadHandleCount != endThreadHandleCount)
355 INFO_PRINTF1(HTML_RED);
356 ERR_PRINTF1( _L("There is a memory leak as the number of thread handles open at the start do not equal the number of handles opened at the end."));
357 ERR_PRINTF3(_L("At the start there %d handles open and the end there are %d"), startThreadHandleCount, endThreadHandleCount);
358 INFO_PRINTF1(HTML_RED_OFF);
359 SetTestStepResult(EFail);
360 return TestStepResult();
367 return TestStepResult();
372 TVerdict CCheckCreateImplementation::doTestStepPostambleL()
374 return TestStepResult();
377 CCheckCreateImplementation::~CCheckCreateImplementation()
381 /** Test step to issue a custom resolver list request so that
382 the resolver is cached. */
385 CUseCustomResolver::CUseCustomResolver()
387 SetTestStepName(KUseCustomResolverStep);
391 CUseCustomResolver::~CUseCustomResolver()
396 TVerdict CUseCustomResolver::doTestStepL()
398 TUid resolverUid = KNullUid;
400 TESTL(GetHexFromConfig(ConfigSection(), KImplUID, tempImplUid));
402 resolverUid.iUid = tempImplUid;
403 TEComResolverParams resolverparams;
404 _LIT8(KDummyData,"dummy");
405 resolverparams.SetDataType(KDummyData);
406 RImplInfoPtrArray ifArray;
407 TRAPD(err, REComSession::ListImplementationsL(KCustomResolverInterfaceUid,
408 resolverparams, resolverUid, ifArray) );
411 // In particular looking for KEComErrMismatchedTags
412 INFO_PRINTF1(HTML_RED);
413 ERR_PRINTF2( _L("Custom Resolver list request failed with %d"), err);
414 INFO_PRINTF1(HTML_RED_OFF);
415 SetTestStepResult(EFail);
419 _LIT(KExpectedVersion, "expectedversion");
420 TInt expectedVersion;
421 if (GetIntFromConfig(ConfigSection(), KExpectedVersion, expectedVersion))
423 for (TInt i = 0; i < ifArray.Count(); i++)
425 const CImplementationInformation& impl = *ifArray[i];
426 if (impl.ImplementationUid() == resolverUid)
428 if (impl.Version() != expectedVersion)
430 INFO_PRINTF1(HTML_RED);
431 ERR_PRINTF3( _L("Expecting ver %d, got %d"), expectedVersion, impl.Version());
432 INFO_PRINTF1(HTML_RED_OFF);
433 SetTestStepResult(EFail);
439 ifArray.ResetAndDestroy();
440 REComSession::FinalClose();
441 return TestStepResult();