os/ossrv/lowlevellibsandfws/pluginfw/Framework/SimpleTests/t_implementationInformation.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.
18 #include "ImplementationInformation.h"
21 RTest TheTest(_L("t_ImplementationInformation.exe"));
23 // functions for checking results
24 static void Check(TInt aValue, TInt aLine)
28 TheTest(EFalse, aLine);
32 static void Check(TInt aValue, TInt aExpected, TInt aLine)
34 if(aValue != aExpected)
36 RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
37 TheTest(EFalse, aLine);
42 #define TEST(arg) ::Check((arg), __LINE__)
43 #define TEST2(aValue, aExpected) ::Check(aValue, aExpected, __LINE__)
46 @SYMTestCaseID SYSLIB-ECOM-UT-1664
47 @SYMTestCaseDesc This test case tests the SetVendorId and VendorId methods. the vendor
50 @SYMTestActions Checks that the VID of the implementation is 0 right after a CImplementationInformation
51 is created. call SetVendorId, then call VendorId to check that the returned VID is the same as
52 the value set in SetVendorId method.
53 @SYMTestExpectedResults The test must not fail.
56 void TestImplementationInformationL()
59 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-UT-1664 Start to create CImplementationInformation object..... "));
62 //create CImplementationInformation object
64 TDriveUnit drive(EDriveC);
65 TUid uid1 = {0x00000000};
67 CImplementationInformation* implementation = CImplementationInformation::NewL(uid1,
75 CleanupStack::PushL(implementation);
77 TVendorId vid1 = implementation->VendorId();
78 // Vid should be 0 after initialization.
80 TVendorId vid2(0x70000001);
82 implementation->SetVendorId(vid2);
84 TVendorId vid3 = implementation->VendorId();
86 TEST(vid3.iId == 0x70000001);
88 CleanupStack::PopAndDestroy(implementation);
93 void TestImplementationInformationOOML()
95 TheTest.Next(_L("CImplementationInformation Out of Memory Test....."));
96 TInt processHandlesS = 0;
97 TInt threadHandlesS = 0;
98 TInt processHandlesE = 0;
99 TInt threadHandlesE = 0;
100 RThread().HandleCount(processHandlesS, threadHandlesS);
101 for(TInt count=1;;++count)
103 // Setting Heap failure for OOM test
104 __UHEAP_SETFAIL(RHeap::EDeterministic, count);
107 TRAPD(err,TestImplementationInformationL());
108 if(err == KErrNoMemory)
112 else if(err == KErrNone)
115 RDebug::Print(_L("The test succeeded at heap failure rate=%d.\n"), count);
121 TEST2(err, KErrNone);
126 RThread().HandleCount(processHandlesE, threadHandlesE);
127 TEST(processHandlesS == processHandlesE);
128 TEST(threadHandlesS == threadHandlesE);
131 GLDEF_C TInt E32Main()
135 TheTest.Start(_L("Starting tests..."));
137 CTrapCleanup* cleanup = CTrapCleanup::New();
138 TRAPD(err2,TestImplementationInformationL());
139 TRAP(err2, TestImplementationInformationOOML());
140 TheTest(err2==KErrNone);