sl@0: // Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: #include sl@0: #include sl@0: #include "ImplementationInformation.h" sl@0: sl@0: sl@0: RTest TheTest(_L("t_ImplementationInformation.exe")); sl@0: sl@0: // functions for checking results sl@0: static void Check(TInt aValue, TInt aLine) sl@0: { sl@0: if(!aValue) sl@0: { sl@0: TheTest(EFalse, aLine); sl@0: } sl@0: } sl@0: sl@0: static void Check(TInt aValue, TInt aExpected, TInt aLine) sl@0: { sl@0: if(aValue != aExpected) sl@0: { sl@0: RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue); sl@0: TheTest(EFalse, aLine); sl@0: } sl@0: } sl@0: sl@0: sl@0: #define TEST(arg) ::Check((arg), __LINE__) sl@0: #define TEST2(aValue, aExpected) ::Check(aValue, aExpected, __LINE__) sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-ECOM-UT-1664 sl@0: @SYMTestCaseDesc This test case tests the SetVendorId and VendorId methods. the vendor sl@0: Id value is checked. sl@0: @SYMTestPriority High sl@0: @SYMTestActions Checks that the VID of the implementation is 0 right after a CImplementationInformation sl@0: is created. call SetVendorId, then call VendorId to check that the returned VID is the same as sl@0: the value set in SetVendorId method. sl@0: @SYMTestExpectedResults The test must not fail. sl@0: @SYMREQ REQ6111 sl@0: */ sl@0: void TestImplementationInformationL() sl@0: { sl@0: sl@0: TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-UT-1664 Start to create CImplementationInformation object..... ")); sl@0: __UHEAP_MARK; sl@0: sl@0: //create CImplementationInformation object sl@0: sl@0: TDriveUnit drive(EDriveC); sl@0: TUid uid1 = {0x00000000}; sl@0: sl@0: CImplementationInformation* implementation = CImplementationInformation::NewL(uid1, sl@0: 1, sl@0: (HBufC*)NULL, sl@0: (HBufC8*)NULL, sl@0: (HBufC8*)NULL, sl@0: drive, sl@0: EFalse, sl@0: EFalse); sl@0: CleanupStack::PushL(implementation); sl@0: sl@0: TVendorId vid1 = implementation->VendorId(); sl@0: // Vid should be 0 after initialization. sl@0: TEST(vid1.iId == 0); sl@0: TVendorId vid2(0x70000001); sl@0: // Set Vid sl@0: implementation->SetVendorId(vid2); sl@0: sl@0: TVendorId vid3 = implementation->VendorId(); sl@0: //check VID. sl@0: TEST(vid3.iId == 0x70000001); sl@0: //clean up. sl@0: CleanupStack::PopAndDestroy(implementation); sl@0: __UHEAP_MARKEND; sl@0: } sl@0: sl@0: // out of memory test sl@0: void TestImplementationInformationOOML() sl@0: { sl@0: TheTest.Next(_L("CImplementationInformation Out of Memory Test.....")); sl@0: TInt processHandlesS = 0; sl@0: TInt threadHandlesS = 0; sl@0: TInt processHandlesE = 0; sl@0: TInt threadHandlesE = 0; sl@0: RThread().HandleCount(processHandlesS, threadHandlesS); sl@0: for(TInt count=1;;++count) sl@0: { sl@0: // Setting Heap failure for OOM test sl@0: __UHEAP_SETFAIL(RHeap::EDeterministic, count); sl@0: __UHEAP_MARK; sl@0: sl@0: TRAPD(err,TestImplementationInformationL()); sl@0: if(err == KErrNoMemory) sl@0: { sl@0: __UHEAP_MARKEND; sl@0: } sl@0: else if(err == KErrNone) sl@0: { sl@0: __UHEAP_MARKEND; sl@0: RDebug::Print(_L("The test succeeded at heap failure rate=%d.\n"), count); sl@0: break; sl@0: } sl@0: else sl@0: { sl@0: __UHEAP_MARKEND; sl@0: TEST2(err, KErrNone); sl@0: } sl@0: __UHEAP_RESET; sl@0: } sl@0: __UHEAP_RESET; sl@0: RThread().HandleCount(processHandlesE, threadHandlesE); sl@0: TEST(processHandlesS == processHandlesE); sl@0: TEST(threadHandlesS == threadHandlesE); sl@0: } sl@0: sl@0: GLDEF_C TInt E32Main() sl@0: { sl@0: __UHEAP_MARK; sl@0: TheTest.Title(); sl@0: TheTest.Start(_L("Starting tests...")); sl@0: sl@0: CTrapCleanup* cleanup = CTrapCleanup::New(); sl@0: TRAPD(err2,TestImplementationInformationL()); sl@0: TRAP(err2, TestImplementationInformationOOML()); sl@0: TheTest(err2==KErrNone); sl@0: sl@0: delete cleanup; sl@0: sl@0: sl@0: TheTest.End(); sl@0: TheTest.Close(); sl@0: __UHEAP_MARKEND; sl@0: return(0); sl@0: } sl@0: