os/graphics/graphicshwdrivers/surfacemgr/test/src/tsecondprocess.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 2007-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 // Surface manager multi-processed test code
    15 // 
    16 //
    17 
    18 /**
    19  @file
    20  @test
    21  @internalComponent - Internal Symbian test code
    22 */
    23 #include <e32base.h>
    24 #include <e32cons.h>
    25 #include <e32test.h>
    26 #include <e32std.h>
    27 #include <e32debug.h>
    28 #include <e32def_private.h>
    29 #include <graphics/surface.h>
    30 #include <graphics/surfacemanager.h>
    31 #include "tsmgmultprocessshared.h"
    32 
    33 LOCAL_D RTest test(_L("TReceiveSurface"));
    34 
    35 
    36 class CTestDriverSecondProcess : public CTestDriver
    37 {
    38 public:
    39 	CTestDriverSecondProcess();
    40 	~CTestDriverSecondProcess();
    41 	void ConstructL();
    42 	static CTestDriverSecondProcess* NewL();
    43 public:
    44 	void TestMultipleChannelsInSecondProcess2();
    45 	void TestMultipleChannelsInSecondProcess1();
    46 	void TestCheckSyncOperation();
    47 	void TestCheckHandleInSecondProcess();
    48 	void TestSurfaceInfoUsingSurfaceId();
    49 	void TestOpeningSurfaceUsingSurfaceId();
    50 	void TestOpeningSurfaceInvalidParams();
    51 	void OpenWaitMap();
    52 	void CreateWaitKill();
    53 	void OpenClose();
    54 	void MapSurfaceInfoCantAccess();
    55 	void TestReadFromBufferInSecondProcess();
    56 	void TestGetSurfaceHint();
    57 	void TestSetSurfaceHint();
    58 	void TestAddSurfaceHint();
    59 	void TestOutofMemory();
    60 private:
    61 	RSurfaceManager iSurfaceManagerTwo;
    62 };
    63 
    64 CTestDriverSecondProcess::CTestDriverSecondProcess():CTestDriver()
    65 	{
    66 	}
    67 
    68 CTestDriverSecondProcess::~CTestDriverSecondProcess()
    69 	{
    70 	iSurfaceManagerTwo.Close();
    71 	}
    72 
    73 void CTestDriverSecondProcess::ConstructL()
    74 	{
    75 	CTestDriver::ConstructL();
    76 	User::LeaveIfError(	iSurfaceManagerTwo.Open());	
    77 	}
    78 
    79 CTestDriverSecondProcess* CTestDriverSecondProcess::NewL()
    80 {
    81 	CTestDriverSecondProcess * driver = new (ELeave) CTestDriverSecondProcess();
    82 	CleanupStack::PushL(driver);
    83 	driver->ConstructL();
    84 	CleanupStack::Pop(driver);
    85 	return driver;
    86 }
    87 
    88 void CTestDriverSecondProcess::TestMultipleChannelsInSecondProcess2()
    89 	{
    90    	// Store the attributes used to create the Surface
    91 	RSurfaceManager::TSurfaceCreationAttributesBuf buf;
    92 	RSurfaceManager::TSurfaceCreationAttributes& attributes = buf();
    93 	attributes.iSize = TSize(280,301);
    94 	attributes.iBuffers = 1;
    95 	attributes.iPixelFormat = EUidPixelFormatYUV_422SemiPlanar; // 2bpp
    96 	attributes.iStride = 1;
    97 	attributes.iOffsetToFirstBuffer = 1;
    98 	attributes.iAlignment = 1;
    99 	
   100 	RSurfaceManager::THintPair hints[2];	// two hint pairs specified
   101 	attributes.iHintCount = 2;
   102 	attributes.iSurfaceHints = hints;
   103 	hints[0].Set(TUid::Uid(0x124578), 25, ETrue);
   104 	hints[1].Set(TUid::Uid(0x237755), 50, ETrue);
   105 	
   106 	attributes.iContiguous = ETrue;
   107 	attributes.iCacheAttrib = RSurfaceManager::ECached;
   108 	attributes.iOffsetBetweenBuffers = 0;
   109 	attributes.iMappable = ETrue;
   110 
   111 	// Create the surface
   112 	TSurfaceId surfaceIdOne;
   113     if(KErrNone == iSurfaceManager.CreateSurface(buf, surfaceIdOne))
   114 		{
   115 		iTestResult |= EFirstTestPassed;
   116 		}
   117 
   118 	// Create the surface
   119 	TSurfaceId surfaceIdTwo;
   120     if(KErrNone == iSurfaceManager.CreateSurface(buf, surfaceIdTwo))
   121 		{
   122 		iTestResult |= ESecondTestPassed;
   123 		}
   124     
   125     if(KErrNone == iSurfaceManager.OpenSurface(surfaceIdTwo))
   126 		{
   127 		iTestResult |= EThirdTestPassed;
   128 		}
   129     
   130     if(KErrNone == iSurfaceManagerTwo.OpenSurface(surfaceIdOne))
   131 		{
   132 		iTestResult |= EFourthTestPassed;
   133 		}
   134     
   135     // Set the results so they can be read and tested by the first process
   136     iChunkWrapper->SetSecondProcessResults(iTestResult);
   137     // Put the surfaceId onto the shared chunk
   138     iChunkWrapper->SetId(surfaceIdOne);
   139 
   140  
   141     // Pass control back to the first process
   142     RSemaphore sem;
   143 	if(KErrNone == sem.OpenGlobal(KMultiProcessSemaphore))
   144 		{
   145 		iTestResult |= EThirdTestPassed;
   146 		}
   147 
   148     sem.Signal();
   149     
   150     RSemaphore sem2;
   151 	if(KErrNone == sem2.OpenGlobal(KMultiProcessSemaphore2))
   152 		{
   153 		iTestResult |= EFourthTestPassed;
   154 		}
   155     sem2.Wait();
   156 	
   157 	// Set the results so they can be read and tested by the first process
   158 	iChunkWrapper->SetSecondProcessResults(iTestResult);
   159 //	  // Put the surfaceId onto the shared chunk
   160 	iChunkWrapper->SetId(surfaceIdTwo);
   161 
   162 	sem.Close();
   163 	sem2.Close();
   164 	}
   165 
   166 void CTestDriverSecondProcess::TestMultipleChannelsInSecondProcess1()
   167 	{
   168 	// Open the chunk wrapper and get the surfaceId
   169 	TSurfaceId surfaceIdOne = iChunkWrapper->GetId();
   170 		
   171 	// Open the surface using the surfaceId - check that it returns KErrNone
   172 	if(KErrNone == iSurfaceManager.OpenSurface(surfaceIdOne))
   173 		{
   174 		iTestResult |= EFirstTestPassed;
   175 		}
   176 
   177     // Pass control back to the first process
   178     RSemaphore sem;
   179 	if(KErrNone == sem.OpenGlobal(KMultiProcessSemaphore))
   180 		{
   181 		iTestResult |= ESecondTestPassed;
   182 		}
   183     
   184     RSemaphore sem2;
   185 	if(KErrNone == sem2.OpenGlobal(KMultiProcessSemaphore2))
   186 		{
   187 		iTestResult |= EThirdTestPassed;
   188 		}
   189 
   190    	// Set the results so they can be read and tested by the first process
   191 	iChunkWrapper->SetSecondProcessResults(iTestResult);
   192 
   193 	sem.Signal();
   194 	sem2.Wait();
   195     
   196 	// Get the surface info
   197 	RSurfaceManager::TInfoBuf infoBuf;
   198 	if(KErrNone == iSurfaceManager.SurfaceInfo(surfaceIdOne, infoBuf))
   199 		{
   200 		iTestResult |= EFourthTestPassed;
   201 		}
   202 	TSurfaceId surfaceIdTwo = iChunkWrapper->GetId();
   203 	
   204 	if(KErrArgument == iSurfaceManager.SurfaceInfo(surfaceIdTwo, infoBuf))
   205 		{
   206 		iTestResult |= EFifthTestPassed;
   207 		}
   208 	// Set the results so they can be read and tested by the first process
   209 	iChunkWrapper->SetSecondProcessResults(iTestResult);
   210 
   211 	sem.Close();
   212 	sem2.Close();
   213 	}
   214 
   215 void CTestDriverSecondProcess::TestCheckSyncOperation()
   216 	{
   217 	// Open the chunk wrapper and get the surfaceId
   218 	TSurfaceId surfaceId = iChunkWrapper->GetId();
   219 	
   220 	// Check it returns KErrAccessDenied when the surface is not Open
   221 	TInt bufferNo = 1;
   222 
   223 	RSurfaceManager::TSyncOperation syncOperation = RSurfaceManager::ESyncBeforeNonCPURead;
   224 	
   225 	if(KErrAccessDenied == iSurfaceManager.SynchronizeCache(surfaceId, bufferNo,syncOperation))
   226 		{
   227 		iTestResult |= EFirstTestPassed;
   228 		}
   229 	
   230 	// Open the surface using the surfaceId - check that it returns KErrNone
   231 	if(KErrNone == iSurfaceManager.OpenSurface(surfaceId))
   232 		{
   233 		iTestResult |= ESecondTestPassed;
   234 		}
   235 	
   236 	// Map the surface 
   237 	RChunk handle;
   238 	
   239 	if(KErrNone == iSurfaceManager.MapSurface(surfaceId, handle))
   240 		{
   241 		iTestResult |= EThirdTestPassed;
   242 		}
   243 	
   244 	if(KErrNone == iSurfaceManager.SynchronizeCache(surfaceId, bufferNo,syncOperation))
   245 		{
   246 		iTestResult |= EFourthTestPassed;
   247 		}
   248 	// Set the results so they can be read and tested by the first process
   249 	iChunkWrapper->SetSecondProcessResults(iTestResult);
   250 	// Close the chunkwrapper, handle and the surface manager
   251  	handle.Close();
   252 
   253 	}
   254 void CTestDriverSecondProcess::TestCheckHandleInSecondProcess()
   255 	{
   256 	// Open the chunk wrapper and get the surfaceId
   257 	TSurfaceId surfaceId = iChunkWrapper->GetId();
   258 
   259 	// Open the surface using the surfaceId - check that it returns KErrNone
   260 	if(KErrNone == iSurfaceManager.OpenSurface(surfaceId))
   261 		{
   262 		iTestResult |= EFirstTestPassed;
   263 		}
   264 	
   265 	// Map the surface 
   266 	RChunk handle;
   267 	
   268 	if(KErrNone == iSurfaceManager.MapSurface(surfaceId, handle))
   269 		{
   270 		iTestResult |= ESecondTestPassed;
   271 		}
   272 	
   273 	// Get the surface info
   274 	RSurfaceManager::TInfoBuf infoBuf;
   275 	if(KErrNone == iSurfaceManager.SurfaceInfo(surfaceId, infoBuf))
   276 		{
   277 		iTestResult |= EThirdTestPassed;
   278 		}
   279 	RSurfaceManager::TSurfaceInfoV01& info = infoBuf();
   280 	// Get the adress of this chunk of memory
   281 	TUint8* surfaceAdd = handle.Base();
   282 	TInt offsetToFirstBuffer;
   283 	if(KErrNone == iSurfaceManager.GetBufferOffset(surfaceId, 0, offsetToFirstBuffer))
   284 		{
   285 		iTestResult |= EFourthTestPassed;
   286 		}
   287 	TUint8* bufferAdd = surfaceAdd + offsetToFirstBuffer;
   288 	
   289 	// Write to the first buffer, and test the value is written
   290 	*bufferAdd = 20;
   291 	// Set the results so they can be read and tested by the first process
   292 	iChunkWrapper->SetSecondProcessResults(iTestResult);
   293 	
   294 	// Close the chunkwrapper, handle and the surface manager
   295 	handle.Close();
   296 	}
   297 
   298 /**
   299 Test 18. Receiving a surface and querying SurfaceInfo for surface properties
   300 
   301 Process 1: Create the Surface
   302 Process 2: Receive the Surface Id 
   303 Process 2: Receive the attributes used to create the surface
   304 Process 2: Open the surface using the id
   305 Process 2: Map the surface
   306 Process 2: Call SurfaceInfo to get the attributes of the Surface
   307 Check if these are equal to the ones received.
   308 
   309 @see TestSurfaceInfoUsingSurfaceIdL() in tsurfacemanager.cpp
   310 */	
   311 void CTestDriverSecondProcess::TestSurfaceInfoUsingSurfaceId()
   312 	{	
   313 	// Set attributes for the surface - these are expected attributes in the second process
   314 	RSurfaceManager::TSurfaceCreationAttributesBuf buf;
   315 	RSurfaceManager::TSurfaceCreationAttributes& attributes=buf();				
   316     attributes.iSize = TSize(100,100);
   317     attributes.iBuffers = 1;                // number of buffers in the surface
   318     attributes.iPixelFormat = EUidPixelFormatYUV_422SemiPlanar;     // 2bpp
   319     attributes.iStride = 400;               // Number of bytes between start of one line and start of next
   320     attributes.iOffsetToFirstBuffer = 0;    // way of reserving space before the surface pixel data
   321     attributes.iAlignment = 2;          // alignment, 1,2,4,8,16,32,64 byte aligned or EPageAligned
   322     attributes.iContiguous=ETrue;
   323 		
   324 	RSurfaceManager::THintPair hints[2];	// two hint pairs specified
   325 	attributes.iHintCount = 2;
   326 	attributes.iSurfaceHints = hints;
   327 	hints[0].Set(TUid::Uid(0x124545), 50, EFalse);
   328 	hints[1].Set(TUid::Uid(0x237755), 50, EFalse);
   329 	
   330 	attributes.iOffsetBetweenBuffers = 0;
   331 	attributes.iCacheAttrib = RSurfaceManager::ENotCached;
   332 	attributes.iMappable = ETrue;
   333 	
   334 	TSurfaceId surfaceId = iChunkWrapper->GetId();
   335 	
   336 	// Open the surface using the surfaceId - check that it returns KErrNone
   337 	if(KErrNone == iSurfaceManager.OpenSurface(surfaceId))
   338 		{
   339 		iTestResult |= EFirstTestPassed;
   340 		}
   341 	
   342 	// Map the surface 
   343 	RChunk handle;
   344 	
   345 	if(KErrNone == iSurfaceManager.MapSurface(surfaceId, handle))
   346 		{
   347 		iTestResult |= ESecondTestPassed;
   348 		}
   349 	
   350 	// Get the surface info
   351 	RSurfaceManager::TInfoBuf infoBuf;
   352 	if(KErrNone == iSurfaceManager.SurfaceInfo(surfaceId, infoBuf))		
   353 		{
   354 		iTestResult |= EThirdTestPassed;
   355 		}
   356 	RSurfaceManager::TSurfaceInfoV01& info = infoBuf();
   357 	TInt offsetToFirstBuffer;
   358 	if(KErrNone == iSurfaceManager.GetBufferOffset(surfaceId, 0, offsetToFirstBuffer))  	
   359 		{
   360 		iTestResult |= EFourthTestPassed;
   361 		}
   362 		
   363 	if(info.iSize == attributes.iSize)
   364 		{
   365 		iTestResult |= EFifthTestPassed;
   366 		}
   367 	if(info.iBuffers == attributes.iBuffers)
   368 		{
   369 		iTestResult |= ESixthTestPassed;
   370 		}
   371 	if(info.iPixelFormat == attributes.iPixelFormat)
   372 		{
   373 		iTestResult |= ESeventhTestPassed;
   374 		}
   375 	if(info.iStride == attributes.iStride)
   376 		{
   377 		iTestResult |= EEighthTestPassed;
   378 		}
   379 	if(offsetToFirstBuffer >= attributes.iOffsetToFirstBuffer)
   380 		{
   381 		iTestResult |= ENinthTestPassed;
   382 		}
   383 	if(info.iContiguous == attributes.iContiguous)
   384 		{
   385 		iTestResult |= ETenthTestPassed;
   386 		}
   387 	
   388 	// Set the results so they can be read and tested by the first process
   389 	iChunkWrapper->SetSecondProcessResults(iTestResult);
   390 	
   391 	// Close handle 
   392 	handle.Close();
   393 	}
   394 
   395 /**
   396 Test 19. Opening a surface using surfaceId
   397 
   398 Priocess 1: Create the surface
   399 Process 2: Receive the Surface id
   400 Process 2: Open the Surface using the stored Surface id
   401 Check OpenSurface returns KErrNone
   402 
   403 @see TestOpeningSurfaceUsingSurfaceIdL() in tsurfacemanager.cpp
   404 */
   405 void CTestDriverSecondProcess::TestOpeningSurfaceUsingSurfaceId()
   406 	{
   407 	// Open the chunk wrapper and get the surfaceId
   408 //	CChunkWrapper* chunkWrapper = CChunkWrapper::OpenL(KSharedChunkName, ETrue);
   409 	TSurfaceId surfaceId = iChunkWrapper->GetId();
   410 		
   411 	// Open the surface using the surfaceId - check that it returns KErrNone	
   412 	if(KErrNone == iSurfaceManager.OpenSurface(surfaceId))
   413 		{
   414 		iTestResult |= EFirstTestPassed;
   415 		}
   416 		
   417 	// Set the results so they can be read and tested by the first process
   418 	iChunkWrapper->SetSecondProcessResults(iTestResult);
   419 
   420 	}
   421 	
   422 /**
   423 Test 20. Opening a surface using invalid surfaceId
   424 
   425 Process 1:Create the surface
   426 Process 2: Receive a Surface Id
   427 Change Surface Id by
   428 1. adding 500 to the SurfaceId
   429 2. making the Surface ID negative
   430 3. converting the type of the Surface ID to EInvalidSurface
   431 Process 2: Call OpenSurface using the new SurfaceId
   432 Check that the return value of OpenSurface is KErrArgument
   433 
   434 @see TestOpenSurfaceInvalidParams() in tsurfacemanager.cpp
   435 */
   436 void CTestDriverSecondProcess::TestOpeningSurfaceInvalidParams()
   437 	{
   438 	
   439 	TSurfaceId surfaceId = iChunkWrapper->GetId();
   440 	
   441 	// Open Surface using the right Id
   442 	if(KErrNone == iSurfaceManager.OpenSurface(surfaceId))
   443 		{
   444 		iTestResult |= EFirstTestPassed;
   445 		}
   446 	// Open the surface using the invalid surfaceId - check that it returns KErrArgument
   447 	TSurfaceId invalidSurfaceId = surfaceId; 
   448 	//Add 500 to the first field of surfaceId
   449 	invalidSurfaceId.iInternal[0] = surfaceId.iInternal[0]+500;
   450 	if(KErrArgument == iSurfaceManager.OpenSurface(invalidSurfaceId))
   451 		{
   452 		iTestResult |= ESecondTestPassed;
   453 		}
   454 	// Change the surfaceId type to EInvalidSurface
   455 	invalidSurfaceId.iInternal[3] = (surfaceId.iInternal[3] & 0x00FFFFFF) | ( TSurfaceId::EInvalidSurface <<24 ) ;
   456 	if(KErrArgument == iSurfaceManager.OpenSurface(invalidSurfaceId))
   457 		{
   458 		iTestResult |= EThirdTestPassed;
   459 		}
   460 		
   461 	// Set the results so they can be read and tested by the first process
   462 	iChunkWrapper->SetSecondProcessResults(iTestResult);
   463 	
   464 	}
   465 
   466 /**
   467 Test 22: Create, Open and Close in 3 different processes, 
   468 			leaves surface accessible in first 2 processes 
   469 
   470 ...	
   471 Process 2: Open Surface
   472 ...
   473 Process 2: MapSurface - KErrNone (still accessible)
   474 ...
   475 */
   476 void CTestDriverSecondProcess::OpenWaitMap()
   477 	{
   478 	
   479 	// Find the surfaceId
   480 	TSurfaceId id = iChunkWrapper->GetId();
   481 	
   482 	// Open Surface
   483 	if(KErrNone == iSurfaceManager.OpenSurface(id))
   484 		{
   485 		iTestResult |= EFirstTestPassed;
   486 		}
   487 	
   488 	// Pass control back to the first process
   489     RSemaphore sem;
   490 	if(KErrNone == sem.OpenGlobal(KMultiProcessSemaphore))
   491 		{
   492 		iTestResult |= ESecondTestPassed;
   493 		}
   494     sem.Signal();
   495 
   496     RSemaphore sem2;
   497 	if(KErrNone == sem2.OpenGlobal(KMultiProcessSemaphore2))
   498 		{
   499 		iTestResult |= EThirdTestPassed;
   500 		}
   501     sem2.Wait();
   502     
   503     // Map surface
   504 	RChunk handle;
   505 	if(KErrNone == iSurfaceManager.MapSurface(id, handle))
   506 		{
   507 		iTestResult |= EFourthTestPassed;
   508 		}
   509 
   510 	// Set the results so they can be read and tested by the first process
   511 	iChunkWrapper->SetSecondProcessResults(iTestResult);
   512 
   513 	sem.Close();
   514 	sem2.Close();
   515 	handle.Close();
   516 
   517 	}
   518 
   519 
   520 /**
   521 Test 23/24/25/26: 	Test surface can be accessed when creating process dies /
   522 					Test surface can be closed when creating process dies /
   523 					Test surface can be closed from third process when 
   524 					creating process dies and second process closes / 
   525 					Test surface can't be accessed in a second process when open 
   526 					and closed in the first process.
   527 
   528 Process 2: Create Surface
   529 ...
   530 Process 2: Kill Process
   531 ...
   532 */
   533 void CTestDriverSecondProcess::CreateWaitKill()
   534 	{
   535 	// Setup attributes
   536     RSurfaceManager::TSurfaceCreationAttributesBuf buf;
   537 	RSurfaceManager::TSurfaceCreationAttributes& attributes = buf();
   538 	
   539 	attributes.iSize = TSize(20,80);    	// w > 0, h > 0
   540 	attributes.iBuffers = 12; 				// > 0
   541 	attributes.iPixelFormat = EUidPixelFormatYUV_422SemiPlanar;	// 2bpp
   542 	attributes.iStride = 250;				// > 0, < width * bpp
   543 	attributes.iOffsetToFirstBuffer = 200;	// > 0, divisible by alignment
   544 	attributes.iAlignment = 4;				// 1 || 2 || 4 || 8
   545 	attributes.iContiguous = ETrue;
   546 	
   547 	RSurfaceManager::THintPair hints[2];	// two hint pairs specified
   548 	attributes.iHintCount = 2;
   549 	attributes.iSurfaceHints = hints;
   550 	hints[0].Set(TUid::Uid(0x124545), 50, EFalse);
   551 	hints[1].Set(TUid::Uid(0x237755), 50, EFalse);
   552 	
   553 	attributes.iOffsetBetweenBuffers = 0;
   554 	attributes.iMappable = ETrue;
   555 	
   556 	// Create the surface
   557 	TSurfaceId surfaceId;
   558     if(KErrNone == iSurfaceManager.CreateSurface(buf, surfaceId))
   559 		{
   560 		iTestResult |= EFirstTestPassed;
   561 		}
   562     // Put the surfaceId onto the shared chunk
   563     iChunkWrapper->SetId(surfaceId);
   564  
   565     // Pass control back to the first process
   566     RSemaphore sem;
   567 	if(KErrNone == sem.OpenGlobal(KMultiProcessSemaphore))
   568 		{
   569 		iTestResult |= ESecondTestPassed;
   570 		}
   571     sem.Signal();
   572     
   573     RSemaphore sem2;
   574 	if(KErrNone == sem2.OpenGlobal(KMultiProcessSemaphore2))
   575 		{
   576 		iTestResult |= EThirdTestPassed;
   577 		}
   578     sem2.Wait();
   579     
   580     // Set the results so they can be read and tested by the first process
   581 	iChunkWrapper->SetSecondProcessResults(iTestResult);
   582  
   583 //  CleanupStack::PopAndDestroy(2,&sem);
   584 	sem.Close();
   585 	sem2.Close();
   586 	}
   587 
   588 /**
   589 Test 27/28/29: 	Test closing doesn't prevent opening on another process
   590 				Test closing doesn't prevent access on another process
   591 				Test closing a surface in the creating process 
   592 				when it has already been closed in a second process returns KErrNone
   593 
   594 ...
   595 Process 2: Open Surface
   596 Process 2: Close Surface
   597 ...
   598 */
   599 void CTestDriverSecondProcess::OpenClose()
   600 	{
   601 
   602 	// Find the surfaceId
   603 	TSurfaceId id = iChunkWrapper->GetId();
   604 	
   605 	// Open Surface
   606 	if(KErrNone == iSurfaceManager.OpenSurface(id))
   607 		{
   608 		iTestResult |= EFirstTestPassed;
   609 		}
   610 		
   611 	// Close Surface
   612 	if(KErrNone == iSurfaceManager.CloseSurface(id))
   613 		{
   614 		iTestResult |= ESecondTestPassed;
   615 		}
   616 		
   617 	// Pass control back to the first process
   618     RSemaphore sem;
   619 	if(KErrNone == sem.OpenGlobal(KMultiProcessSemaphore))
   620 		{
   621 		iTestResult |= EThirdTestPassed;
   622 		}
   623     sem.Signal();
   624     
   625     RSemaphore sem2;
   626 	if(KErrNone == sem2.OpenGlobal(KMultiProcessSemaphore2))
   627 		{
   628 		iTestResult |= EFourthTestPassed;
   629 		}
   630     sem2.Wait();
   631     
   632     // Set the results so they can be read and tested by the first process
   633 	iChunkWrapper->SetSecondProcessResults(iTestResult);
   634     
   635 	sem.Close();
   636 	sem2.Close();
   637 	}
   638 
   639 /**
   640 Test 30: Test a surface cannot be accessed in a second process if not opened
   641 
   642 ...
   643 Process 2: Map Surface - KErrAccessDenied
   644 Process 2: Surface Info - KErrAccessDenied
   645 */
   646 void CTestDriverSecondProcess::MapSurfaceInfoCantAccess()
   647 	{
   648 	// Find the surfaceId
   649 	TSurfaceId id = iChunkWrapper->GetId();
   650 	
   651 	// Map surface
   652 	RChunk handle;
   653 	if(KErrAccessDenied == iSurfaceManager.MapSurface(id, handle))
   654 		{
   655 		iTestResult |= EFirstTestPassed;
   656 		}
   657 		
   658 	// Surface Info
   659 	RSurfaceManager::TInfoBuf infoBuf;
   660 	if(KErrAccessDenied == iSurfaceManager.SurfaceInfo(id, infoBuf))
   661 		{
   662 		iTestResult |= ESecondTestPassed;
   663 		}
   664 		
   665 	// Pass control back to the first process
   666     RSemaphore sem;
   667 	if(KErrNone == sem.OpenGlobal(KMultiProcessSemaphore))
   668 		{
   669 		iTestResult |= EThirdTestPassed;
   670 		}
   671     sem.Signal();
   672     
   673     RSemaphore sem2;
   674 	if(KErrNone == sem2.OpenGlobal(KMultiProcessSemaphore2))
   675 		{
   676 		iTestResult |= EFourthTestPassed;
   677 		}
   678     sem2.Wait();
   679     
   680     // Set the results so they can be read and tested by the first process
   681 	iChunkWrapper->SetSecondProcessResults(iTestResult);
   682     
   683 //	CleanupStack::PopAndDestroy(3,&handle);
   684 	sem.Close();
   685 	sem2.Close();
   686 	handle.Close();
   687 	}
   688 
   689 /**
   690 Test 31: Test that a buffer written to in one surface can be read from in another 
   691 
   692 Process 1: Create Surface
   693 Process 1: Map Surface 
   694 Process 1: Write to buffer
   695 Process 2: Open the surface 
   696 Process 2: Read from buffer 
   697 */	
   698 void CTestDriverSecondProcess::TestReadFromBufferInSecondProcess()
   699 	{
   700 	// Find the surfaceId
   701 	TSurfaceId id = iChunkWrapper->GetId();
   702 	
   703 	// Open Surface
   704 	if(KErrNone == iSurfaceManager.OpenSurface(id))
   705 		{
   706 		iTestResult |= EFirstTestPassed;
   707 		}
   708 	
   709 	// Map surface
   710 	RChunk handle;
   711 	if(KErrNone == iSurfaceManager.MapSurface(id, handle))
   712 		{
   713 		iTestResult |= ESecondTestPassed;
   714 		}
   715 		
   716 	// Read from the buffer
   717 	RSurfaceManager::TInfoBuf infoBuf;
   718 	if(KErrNone == iSurfaceManager.SurfaceInfo(id, infoBuf))
   719 		{
   720 		iTestResult |= EThirdTestPassed;
   721 		}
   722 	RSurfaceManager::TSurfaceInfoV01& info = infoBuf();
   723 	TUint8* surfaceAdd = handle.Base();
   724 	TInt offsetToFirstBuffer;
   725 	if(KErrNone == iSurfaceManager.GetBufferOffset(id, 0, offsetToFirstBuffer))
   726   		{
   727 		iTestResult |= EFourthTestPassed;
   728 		}
   729 	TUint8* bufferAdd = surfaceAdd + offsetToFirstBuffer;
   730 	if(*bufferAdd == 134)
   731 		{
   732 		iTestResult |= EFifthTestPassed;
   733 		}
   734 	
   735 	// Set the results so they can be read and tested by the first process
   736 	iChunkWrapper->SetSecondProcessResults(iTestResult);
   737     
   738 	handle.Close();
   739 	}
   740 	
   741 void CTestDriverSecondProcess::TestGetSurfaceHint()
   742 	{
   743 	// Open the chunk wrapper and get the surfaceId
   744 	TSurfaceId surfaceId = iChunkWrapper->GetId();
   745 		
   746 	RSurfaceManager::THintPair hintPair;
   747 	hintPair.iKey.iUid = 0x124578;
   748 	if (KErrAccessDenied == iSurfaceManager.GetSurfaceHint(surfaceId, hintPair))
   749 		{
   750 		iTestResult |= EFirstTestPassed;
   751 		}
   752 	
   753 	if(KErrNone == iSurfaceManager.OpenSurface(surfaceId))
   754 		{
   755 		iTestResult |= ESecondTestPassed;
   756 		}
   757 	
   758 	if (KErrNone == iSurfaceManager.GetSurfaceHint(surfaceId, hintPair))
   759 		{
   760 		iTestResult |= EThirdTestPassed;
   761 		}
   762 	
   763 	// Set the results so they can be read and tested by the first process
   764 	iChunkWrapper->SetSecondProcessResults(iTestResult);
   765 	
   766 	}
   767 
   768 
   769 void CTestDriverSecondProcess::TestSetSurfaceHint()
   770 	{
   771 	// Open the chunk wrapper and get the surfaceId
   772 	TSurfaceId surfaceId = iChunkWrapper->GetId();
   773 		
   774 	RSurfaceManager::THintPair hintPair;
   775 	hintPair.iKey.iUid = 0x124578;
   776 	hintPair.iValue = 300;
   777 
   778 	if (KErrAccessDenied == iSurfaceManager.SetSurfaceHint(surfaceId, hintPair))
   779 		{
   780 		iTestResult |= EFirstTestPassed;
   781 		}
   782 	
   783 	if(KErrNone == iSurfaceManager.OpenSurface(surfaceId))
   784 		{
   785 		iTestResult |= ESecondTestPassed;
   786 		}
   787 	
   788 	if (KErrNone == iSurfaceManager.SetSurfaceHint(surfaceId, hintPair))
   789 		{
   790 		iTestResult |= EThirdTestPassed;
   791 		}
   792 	RSurfaceManager::THintPair hintPairNew;
   793 	hintPairNew.iKey.iUid = 0x124578;
   794 	
   795 	iSurfaceManager.GetSurfaceHint(surfaceId,hintPairNew);
   796 	if (hintPairNew.iValue == hintPair.iValue)
   797 		{
   798 		iTestResult |= EFourthTestPassed;		
   799 		}
   800 	// Set the results so they can be read and tested by the first process
   801 	iChunkWrapper->SetSecondProcessResults(iTestResult);
   802 	
   803 	}
   804 
   805 
   806 void CTestDriverSecondProcess::TestAddSurfaceHint()
   807 	{
   808 	// Open the chunk wrapper and get the surfaceId
   809 	TSurfaceId surfaceId = iChunkWrapper->GetId();
   810 		
   811 	RSurfaceManager::THintPair hintPair;
   812 	hintPair.iKey.iUid = 0x124580;
   813 	hintPair.iValue = 300;
   814 	hintPair.iMutable = ETrue;
   815 	if (KErrAccessDenied == iSurfaceManager.AddSurfaceHint(surfaceId, hintPair))
   816 		{
   817 		iTestResult |= EFirstTestPassed;
   818 		}
   819 	
   820 	if(KErrNone == iSurfaceManager.OpenSurface(surfaceId))
   821 		{
   822 		iTestResult |= ESecondTestPassed;
   823 		}
   824 	
   825 	if (KErrNone == iSurfaceManager.AddSurfaceHint(surfaceId, hintPair))
   826 		{
   827 		iTestResult |= EThirdTestPassed;
   828 		}
   829 	RSurfaceManager::THintPair hintPairNew;
   830 	hintPairNew.iKey.iUid = 0x124580;
   831 	
   832 	iSurfaceManager.GetSurfaceHint(surfaceId,hintPairNew);
   833 	if (hintPairNew.iValue == hintPair.iValue)
   834 		{
   835 		iTestResult |= EFourthTestPassed;		
   836 		}
   837 	// Set the results so they can be read and tested by the first process
   838 	iChunkWrapper->SetSecondProcessResults(iTestResult);
   839 	
   840 	}
   841 
   842 
   843 void CTestDriverSecondProcess::TestOutofMemory()
   844 	{
   845 	// Open the chunk wrapper and get the surfaceId
   846 	TSurfaceId surfaceId = iChunkWrapper->GetId();
   847 	// Test OOM in OpenSurface()
   848 	__KHEAP_SETFAIL(RHeap::EDeterministic, 1);
   849 	if (KErrNoMemory == iSurfaceManager.OpenSurface(surfaceId))
   850 		{
   851 		iTestResult |= EFirstTestPassed;
   852 		}
   853 	__KHEAP_RESET;
   854 	// Test OOM in AddConnection()
   855 	RSurfaceManager surfaceManagerTest;
   856 	__KHEAP_SETFAIL(RHeap::EDeterministic, 1);
   857 	if (KErrNoMemory == surfaceManagerTest.Open())
   858 		{
   859 		iTestResult |= ESecondTestPassed;
   860 		}
   861 	__KHEAP_RESET;
   862 	// Set the results so they can be read and tested by the first process
   863 	iChunkWrapper->SetSecondProcessResults(iTestResult);
   864 	}
   865 // Real main function
   866 void MainL()
   867 	{
   868 	
   869 	test.Title();
   870 	RDebug::Print(_L("marker"));
   871 
   872 	test.Start(_L("Starting 2nd Process"));
   873 	TInt testCase;
   874 	User::GetTIntParameter(EMultiProcessSecondSlot, testCase);
   875 	TInt procHandles1  =0;
   876 	TInt threadHandles1=0;
   877 	RThread().HandleCount(procHandles1, threadHandles1);
   878 	
   879 	CTestDriverSecondProcess* testDriver = CTestDriverSecondProcess::NewL(); 
   880 	CleanupStack::PushL(testDriver);
   881 	
   882 	switch(testCase)
   883 		{
   884 	case ETestInfoReceivedSurface:
   885 		testDriver->TestSurfaceInfoUsingSurfaceId();
   886 		break;
   887 	case ETestOpenReceivedSurface:
   888 		testDriver->TestOpeningSurfaceUsingSurfaceId();
   889 		break;
   890 	case ETestOpenSurfaceInvalidParams:
   891 		testDriver->TestOpeningSurfaceInvalidParams();	
   892 		break;
   893 	case EOpenWaitMap:
   894 		testDriver->OpenWaitMap();
   895 		break;	
   896 	case ECreateWaitKill:
   897 		testDriver->CreateWaitKill();
   898 		break;
   899 	case EOpenClose:
   900 		testDriver->OpenClose();
   901 		break;
   902 	case EMapSurfaceInfoCantAccess:
   903 		testDriver->MapSurfaceInfoCantAccess();
   904 		break;
   905 	case EReadFromBuffer:
   906 		testDriver->TestReadFromBufferInSecondProcess();
   907 		break;
   908 	case ECheckHandle:
   909 		testDriver->TestCheckHandleInSecondProcess();
   910 		break;
   911 	case ESyncOperation:
   912 		testDriver->TestCheckSyncOperation();
   913 		break;
   914 	case ETestChannelMultiProcess1:
   915 		testDriver->TestMultipleChannelsInSecondProcess1();
   916 		break;
   917 	case ETestChannelMultiProcess2:
   918 		testDriver->TestMultipleChannelsInSecondProcess2();
   919 		break;
   920 	case EGetSurfaceHint:
   921 		testDriver->TestGetSurfaceHint();
   922 		break;
   923 	case ESetSurfaceHint:
   924 		testDriver->TestSetSurfaceHint();
   925 		break;
   926 	case EAddSurfaceHint:
   927 		testDriver->TestAddSurfaceHint();
   928 		break;
   929 	case ECheckOutofMemory:
   930 #ifdef _DEBUG
   931 		testDriver->TestOutofMemory();
   932 #endif
   933 		break;
   934 	default:
   935 		User::Leave(KErrArgument);
   936 		break;
   937 		}
   938 	CleanupStack::PopAndDestroy(testDriver);
   939 
   940 	// Handle check
   941 	TInt procHandles2  =0;
   942 	TInt threadHandles2=0;
   943 	RThread().HandleCount(procHandles2,threadHandles2);
   944 	if (threadHandles1 != threadHandles2)
   945 		{
   946 		User::Leave(KErrGeneral);  // Thread-owned handles not closed
   947 		}
   948 
   949 		
   950 	test.End();
   951 	test.Close();
   952 	}
   953 
   954 // Cleanup stack harness
   955 GLDEF_C TInt E32Main()
   956 	{
   957 	__UHEAP_MARK;
   958 	CTrapCleanup* cleanupStack = CTrapCleanup::New();
   959 	TRAPD(error, MainL());
   960 	_LIT(KTSecondProcessPanic,"tsecondprocessmain");
   961 	__ASSERT_ALWAYS(!error, User::Panic(KTSecondProcessPanic, error));
   962 	delete cleanupStack;
   963 	__UHEAP_MARKEND;
   964 	return 0;
   965 	}