os/ossrv/lowlevellibsandfws/pluginfw/Framework/SimpleTests/t_implementationInformation.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 #include <e32test.h>
    17 #include <f32file.h>
    18 #include "ImplementationInformation.h"
    19 
    20 
    21 RTest TheTest(_L("t_ImplementationInformation.exe"));
    22 
    23 // functions for checking results
    24 static void Check(TInt aValue, TInt aLine)
    25 	{
    26 	if(!aValue)
    27 		{
    28         TheTest(EFalse, aLine);
    29 		}
    30 	}
    31 
    32 static  void Check(TInt aValue, TInt aExpected, TInt aLine)
    33 	{
    34 	if(aValue != aExpected)
    35 		{
    36         RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
    37 		TheTest(EFalse, aLine);
    38 		}
    39 	}
    40 
    41 
    42 #define TEST(arg) ::Check((arg), __LINE__)
    43 #define TEST2(aValue, aExpected) ::Check(aValue, aExpected, __LINE__)
    44 
    45 /**
    46 @SYMTestCaseID          SYSLIB-ECOM-UT-1664
    47 @SYMTestCaseDesc	    This test case tests the SetVendorId and VendorId methods. the vendor
    48 						Id value is checked.
    49 @SYMTestPriority 	    High
    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.
    54 @SYMREQ                 REQ6111
    55 */
    56 void TestImplementationInformationL()
    57 	{
    58 
    59 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-UT-1664 Start to create CImplementationInformation object..... "));
    60 	__UHEAP_MARK;
    61 
    62 	//create CImplementationInformation object
    63 
    64 	TDriveUnit drive(EDriveC);
    65 	TUid uid1 =	{0x00000000};
    66 
    67 	CImplementationInformation* implementation = CImplementationInformation::NewL(uid1,
    68 																		  1,
    69 																		  (HBufC*)NULL,
    70 																		  (HBufC8*)NULL,
    71 																		  (HBufC8*)NULL,
    72 																		  drive,
    73 																		  EFalse,
    74 																		  EFalse);
    75 	CleanupStack::PushL(implementation);
    76 
    77 	TVendorId vid1 = implementation->VendorId();
    78 	// Vid should be 0 after initialization.
    79 	TEST(vid1.iId == 0);
    80 	TVendorId vid2(0x70000001);
    81 	// Set Vid
    82 	implementation->SetVendorId(vid2);
    83 
    84 	TVendorId vid3 = implementation->VendorId();
    85 	//check VID.
    86 	TEST(vid3.iId == 0x70000001);
    87 	//clean up.
    88 	CleanupStack::PopAndDestroy(implementation);
    89 	__UHEAP_MARKEND;
    90 	}
    91 
    92 // out of memory test
    93 void TestImplementationInformationOOML()
    94 	{
    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)
   102 		{
   103 		// Setting Heap failure for OOM test
   104 		__UHEAP_SETFAIL(RHeap::EDeterministic, count);
   105 		__UHEAP_MARK;
   106 
   107 		TRAPD(err,TestImplementationInformationL());
   108 		if(err == KErrNoMemory)
   109 			{
   110 			__UHEAP_MARKEND;
   111 			}
   112 		else if(err == KErrNone)
   113 			{
   114 			__UHEAP_MARKEND;
   115 			RDebug::Print(_L("The test succeeded at heap failure rate=%d.\n"), count);
   116 			break;
   117 			}
   118 		else
   119 			{
   120 			__UHEAP_MARKEND;
   121 			TEST2(err, KErrNone);
   122 			}
   123 		__UHEAP_RESET;
   124 		}
   125 	__UHEAP_RESET;
   126 	RThread().HandleCount(processHandlesE, threadHandlesE);
   127 	TEST(processHandlesS == processHandlesE);
   128 	TEST(threadHandlesS == threadHandlesE);
   129 	}
   130 
   131 GLDEF_C TInt E32Main()
   132 	{
   133 	__UHEAP_MARK;
   134 	TheTest.Title();
   135 	TheTest.Start(_L("Starting tests..."));
   136 
   137 	CTrapCleanup* cleanup = CTrapCleanup::New();
   138 	TRAPD(err2,TestImplementationInformationL());
   139 	TRAP(err2, TestImplementationInformationOOML());
   140 	TheTest(err2==KErrNone);
   141 
   142 	delete cleanup;
   143 
   144 
   145 	TheTest.End();
   146 	TheTest.Close();
   147 	__UHEAP_MARKEND;
   148 	return(0);
   149 	}
   150