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.
sl@0
     1
// Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
//
sl@0
    15
sl@0
    16
#include <e32test.h>
sl@0
    17
#include <f32file.h>
sl@0
    18
#include "ImplementationInformation.h"
sl@0
    19
sl@0
    20
sl@0
    21
RTest TheTest(_L("t_ImplementationInformation.exe"));
sl@0
    22
sl@0
    23
// functions for checking results
sl@0
    24
static void Check(TInt aValue, TInt aLine)
sl@0
    25
	{
sl@0
    26
	if(!aValue)
sl@0
    27
		{
sl@0
    28
        TheTest(EFalse, aLine);
sl@0
    29
		}
sl@0
    30
	}
sl@0
    31
sl@0
    32
static  void Check(TInt aValue, TInt aExpected, TInt aLine)
sl@0
    33
	{
sl@0
    34
	if(aValue != aExpected)
sl@0
    35
		{
sl@0
    36
        RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
sl@0
    37
		TheTest(EFalse, aLine);
sl@0
    38
		}
sl@0
    39
	}
sl@0
    40
sl@0
    41
sl@0
    42
#define TEST(arg) ::Check((arg), __LINE__)
sl@0
    43
#define TEST2(aValue, aExpected) ::Check(aValue, aExpected, __LINE__)
sl@0
    44
sl@0
    45
/**
sl@0
    46
@SYMTestCaseID          SYSLIB-ECOM-UT-1664
sl@0
    47
@SYMTestCaseDesc	    This test case tests the SetVendorId and VendorId methods. the vendor
sl@0
    48
						Id value is checked.
sl@0
    49
@SYMTestPriority 	    High
sl@0
    50
@SYMTestActions  	    Checks that the VID of the implementation is 0 right after a  CImplementationInformation
sl@0
    51
						is created. call SetVendorId, then call VendorId to check that the returned VID is the same as
sl@0
    52
						the value set in SetVendorId method.
sl@0
    53
@SYMTestExpectedResults The test must not fail.
sl@0
    54
@SYMREQ                 REQ6111
sl@0
    55
*/
sl@0
    56
void TestImplementationInformationL()
sl@0
    57
	{
sl@0
    58
sl@0
    59
	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-UT-1664 Start to create CImplementationInformation object..... "));
sl@0
    60
	__UHEAP_MARK;
sl@0
    61
sl@0
    62
	//create CImplementationInformation object
sl@0
    63
sl@0
    64
	TDriveUnit drive(EDriveC);
sl@0
    65
	TUid uid1 =	{0x00000000};
sl@0
    66
sl@0
    67
	CImplementationInformation* implementation = CImplementationInformation::NewL(uid1,
sl@0
    68
																		  1,
sl@0
    69
																		  (HBufC*)NULL,
sl@0
    70
																		  (HBufC8*)NULL,
sl@0
    71
																		  (HBufC8*)NULL,
sl@0
    72
																		  drive,
sl@0
    73
																		  EFalse,
sl@0
    74
																		  EFalse);
sl@0
    75
	CleanupStack::PushL(implementation);
sl@0
    76
sl@0
    77
	TVendorId vid1 = implementation->VendorId();
sl@0
    78
	// Vid should be 0 after initialization.
sl@0
    79
	TEST(vid1.iId == 0);
sl@0
    80
	TVendorId vid2(0x70000001);
sl@0
    81
	// Set Vid
sl@0
    82
	implementation->SetVendorId(vid2);
sl@0
    83
sl@0
    84
	TVendorId vid3 = implementation->VendorId();
sl@0
    85
	//check VID.
sl@0
    86
	TEST(vid3.iId == 0x70000001);
sl@0
    87
	//clean up.
sl@0
    88
	CleanupStack::PopAndDestroy(implementation);
sl@0
    89
	__UHEAP_MARKEND;
sl@0
    90
	}
sl@0
    91
sl@0
    92
// out of memory test
sl@0
    93
void TestImplementationInformationOOML()
sl@0
    94
	{
sl@0
    95
	TheTest.Next(_L("CImplementationInformation Out of Memory Test....."));
sl@0
    96
	TInt processHandlesS = 0;
sl@0
    97
	TInt threadHandlesS = 0;
sl@0
    98
	TInt processHandlesE = 0;
sl@0
    99
	TInt threadHandlesE = 0;
sl@0
   100
	RThread().HandleCount(processHandlesS, threadHandlesS);
sl@0
   101
	for(TInt count=1;;++count)
sl@0
   102
		{
sl@0
   103
		// Setting Heap failure for OOM test
sl@0
   104
		__UHEAP_SETFAIL(RHeap::EDeterministic, count);
sl@0
   105
		__UHEAP_MARK;
sl@0
   106
sl@0
   107
		TRAPD(err,TestImplementationInformationL());
sl@0
   108
		if(err == KErrNoMemory)
sl@0
   109
			{
sl@0
   110
			__UHEAP_MARKEND;
sl@0
   111
			}
sl@0
   112
		else if(err == KErrNone)
sl@0
   113
			{
sl@0
   114
			__UHEAP_MARKEND;
sl@0
   115
			RDebug::Print(_L("The test succeeded at heap failure rate=%d.\n"), count);
sl@0
   116
			break;
sl@0
   117
			}
sl@0
   118
		else
sl@0
   119
			{
sl@0
   120
			__UHEAP_MARKEND;
sl@0
   121
			TEST2(err, KErrNone);
sl@0
   122
			}
sl@0
   123
		__UHEAP_RESET;
sl@0
   124
		}
sl@0
   125
	__UHEAP_RESET;
sl@0
   126
	RThread().HandleCount(processHandlesE, threadHandlesE);
sl@0
   127
	TEST(processHandlesS == processHandlesE);
sl@0
   128
	TEST(threadHandlesS == threadHandlesE);
sl@0
   129
	}
sl@0
   130
sl@0
   131
GLDEF_C TInt E32Main()
sl@0
   132
	{
sl@0
   133
	__UHEAP_MARK;
sl@0
   134
	TheTest.Title();
sl@0
   135
	TheTest.Start(_L("Starting tests..."));
sl@0
   136
sl@0
   137
	CTrapCleanup* cleanup = CTrapCleanup::New();
sl@0
   138
	TRAPD(err2,TestImplementationInformationL());
sl@0
   139
	TRAP(err2, TestImplementationInformationOOML());
sl@0
   140
	TheTest(err2==KErrNone);
sl@0
   141
sl@0
   142
	delete cleanup;
sl@0
   143
sl@0
   144
sl@0
   145
	TheTest.End();
sl@0
   146
	TheTest.Close();
sl@0
   147
	__UHEAP_MARKEND;
sl@0
   148
	return(0);
sl@0
   149
	}
sl@0
   150