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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // Surface manager multi-processed test code
21 @internalComponent - Internal Symbian test code
28 #include <e32def_private.h>
29 #include <graphics/surface.h>
30 #include <graphics/surfacemanager.h>
31 #include "tsmgmultprocessshared.h"
33 LOCAL_D RTest test(_L("TReceiveSurface"));
36 class CTestDriverSecondProcess : public CTestDriver
39 CTestDriverSecondProcess();
40 ~CTestDriverSecondProcess();
42 static CTestDriverSecondProcess* NewL();
44 void TestMultipleChannelsInSecondProcess2();
45 void TestMultipleChannelsInSecondProcess1();
46 void TestCheckSyncOperation();
47 void TestCheckHandleInSecondProcess();
48 void TestSurfaceInfoUsingSurfaceId();
49 void TestOpeningSurfaceUsingSurfaceId();
50 void TestOpeningSurfaceInvalidParams();
52 void CreateWaitKill();
54 void MapSurfaceInfoCantAccess();
55 void TestReadFromBufferInSecondProcess();
56 void TestGetSurfaceHint();
57 void TestSetSurfaceHint();
58 void TestAddSurfaceHint();
59 void TestOutofMemory();
61 RSurfaceManager iSurfaceManagerTwo;
64 CTestDriverSecondProcess::CTestDriverSecondProcess():CTestDriver()
68 CTestDriverSecondProcess::~CTestDriverSecondProcess()
70 iSurfaceManagerTwo.Close();
73 void CTestDriverSecondProcess::ConstructL()
75 CTestDriver::ConstructL();
76 User::LeaveIfError( iSurfaceManagerTwo.Open());
79 CTestDriverSecondProcess* CTestDriverSecondProcess::NewL()
81 CTestDriverSecondProcess * driver = new (ELeave) CTestDriverSecondProcess();
82 CleanupStack::PushL(driver);
84 CleanupStack::Pop(driver);
88 void CTestDriverSecondProcess::TestMultipleChannelsInSecondProcess2()
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;
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);
106 attributes.iContiguous = ETrue;
107 attributes.iCacheAttrib = RSurfaceManager::ECached;
108 attributes.iOffsetBetweenBuffers = 0;
109 attributes.iMappable = ETrue;
111 // Create the surface
112 TSurfaceId surfaceIdOne;
113 if(KErrNone == iSurfaceManager.CreateSurface(buf, surfaceIdOne))
115 iTestResult |= EFirstTestPassed;
118 // Create the surface
119 TSurfaceId surfaceIdTwo;
120 if(KErrNone == iSurfaceManager.CreateSurface(buf, surfaceIdTwo))
122 iTestResult |= ESecondTestPassed;
125 if(KErrNone == iSurfaceManager.OpenSurface(surfaceIdTwo))
127 iTestResult |= EThirdTestPassed;
130 if(KErrNone == iSurfaceManagerTwo.OpenSurface(surfaceIdOne))
132 iTestResult |= EFourthTestPassed;
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);
141 // Pass control back to the first process
143 if(KErrNone == sem.OpenGlobal(KMultiProcessSemaphore))
145 iTestResult |= EThirdTestPassed;
151 if(KErrNone == sem2.OpenGlobal(KMultiProcessSemaphore2))
153 iTestResult |= EFourthTestPassed;
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);
166 void CTestDriverSecondProcess::TestMultipleChannelsInSecondProcess1()
168 // Open the chunk wrapper and get the surfaceId
169 TSurfaceId surfaceIdOne = iChunkWrapper->GetId();
171 // Open the surface using the surfaceId - check that it returns KErrNone
172 if(KErrNone == iSurfaceManager.OpenSurface(surfaceIdOne))
174 iTestResult |= EFirstTestPassed;
177 // Pass control back to the first process
179 if(KErrNone == sem.OpenGlobal(KMultiProcessSemaphore))
181 iTestResult |= ESecondTestPassed;
185 if(KErrNone == sem2.OpenGlobal(KMultiProcessSemaphore2))
187 iTestResult |= EThirdTestPassed;
190 // Set the results so they can be read and tested by the first process
191 iChunkWrapper->SetSecondProcessResults(iTestResult);
196 // Get the surface info
197 RSurfaceManager::TInfoBuf infoBuf;
198 if(KErrNone == iSurfaceManager.SurfaceInfo(surfaceIdOne, infoBuf))
200 iTestResult |= EFourthTestPassed;
202 TSurfaceId surfaceIdTwo = iChunkWrapper->GetId();
204 if(KErrArgument == iSurfaceManager.SurfaceInfo(surfaceIdTwo, infoBuf))
206 iTestResult |= EFifthTestPassed;
208 // Set the results so they can be read and tested by the first process
209 iChunkWrapper->SetSecondProcessResults(iTestResult);
215 void CTestDriverSecondProcess::TestCheckSyncOperation()
217 // Open the chunk wrapper and get the surfaceId
218 TSurfaceId surfaceId = iChunkWrapper->GetId();
220 // Check it returns KErrAccessDenied when the surface is not Open
223 RSurfaceManager::TSyncOperation syncOperation = RSurfaceManager::ESyncBeforeNonCPURead;
225 if(KErrAccessDenied == iSurfaceManager.SynchronizeCache(surfaceId, bufferNo,syncOperation))
227 iTestResult |= EFirstTestPassed;
230 // Open the surface using the surfaceId - check that it returns KErrNone
231 if(KErrNone == iSurfaceManager.OpenSurface(surfaceId))
233 iTestResult |= ESecondTestPassed;
239 if(KErrNone == iSurfaceManager.MapSurface(surfaceId, handle))
241 iTestResult |= EThirdTestPassed;
244 if(KErrNone == iSurfaceManager.SynchronizeCache(surfaceId, bufferNo,syncOperation))
246 iTestResult |= EFourthTestPassed;
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
254 void CTestDriverSecondProcess::TestCheckHandleInSecondProcess()
256 // Open the chunk wrapper and get the surfaceId
257 TSurfaceId surfaceId = iChunkWrapper->GetId();
259 // Open the surface using the surfaceId - check that it returns KErrNone
260 if(KErrNone == iSurfaceManager.OpenSurface(surfaceId))
262 iTestResult |= EFirstTestPassed;
268 if(KErrNone == iSurfaceManager.MapSurface(surfaceId, handle))
270 iTestResult |= ESecondTestPassed;
273 // Get the surface info
274 RSurfaceManager::TInfoBuf infoBuf;
275 if(KErrNone == iSurfaceManager.SurfaceInfo(surfaceId, infoBuf))
277 iTestResult |= EThirdTestPassed;
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))
285 iTestResult |= EFourthTestPassed;
287 TUint8* bufferAdd = surfaceAdd + offsetToFirstBuffer;
289 // Write to the first buffer, and test the value is written
291 // Set the results so they can be read and tested by the first process
292 iChunkWrapper->SetSecondProcessResults(iTestResult);
294 // Close the chunkwrapper, handle and the surface manager
299 Test 18. Receiving a surface and querying SurfaceInfo for surface properties
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.
309 @see TestSurfaceInfoUsingSurfaceIdL() in tsurfacemanager.cpp
311 void CTestDriverSecondProcess::TestSurfaceInfoUsingSurfaceId()
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;
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);
330 attributes.iOffsetBetweenBuffers = 0;
331 attributes.iCacheAttrib = RSurfaceManager::ENotCached;
332 attributes.iMappable = ETrue;
334 TSurfaceId surfaceId = iChunkWrapper->GetId();
336 // Open the surface using the surfaceId - check that it returns KErrNone
337 if(KErrNone == iSurfaceManager.OpenSurface(surfaceId))
339 iTestResult |= EFirstTestPassed;
345 if(KErrNone == iSurfaceManager.MapSurface(surfaceId, handle))
347 iTestResult |= ESecondTestPassed;
350 // Get the surface info
351 RSurfaceManager::TInfoBuf infoBuf;
352 if(KErrNone == iSurfaceManager.SurfaceInfo(surfaceId, infoBuf))
354 iTestResult |= EThirdTestPassed;
356 RSurfaceManager::TSurfaceInfoV01& info = infoBuf();
357 TInt offsetToFirstBuffer;
358 if(KErrNone == iSurfaceManager.GetBufferOffset(surfaceId, 0, offsetToFirstBuffer))
360 iTestResult |= EFourthTestPassed;
363 if(info.iSize == attributes.iSize)
365 iTestResult |= EFifthTestPassed;
367 if(info.iBuffers == attributes.iBuffers)
369 iTestResult |= ESixthTestPassed;
371 if(info.iPixelFormat == attributes.iPixelFormat)
373 iTestResult |= ESeventhTestPassed;
375 if(info.iStride == attributes.iStride)
377 iTestResult |= EEighthTestPassed;
379 if(offsetToFirstBuffer >= attributes.iOffsetToFirstBuffer)
381 iTestResult |= ENinthTestPassed;
383 if(info.iContiguous == attributes.iContiguous)
385 iTestResult |= ETenthTestPassed;
388 // Set the results so they can be read and tested by the first process
389 iChunkWrapper->SetSecondProcessResults(iTestResult);
396 Test 19. Opening a surface using surfaceId
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
403 @see TestOpeningSurfaceUsingSurfaceIdL() in tsurfacemanager.cpp
405 void CTestDriverSecondProcess::TestOpeningSurfaceUsingSurfaceId()
407 // Open the chunk wrapper and get the surfaceId
408 // CChunkWrapper* chunkWrapper = CChunkWrapper::OpenL(KSharedChunkName, ETrue);
409 TSurfaceId surfaceId = iChunkWrapper->GetId();
411 // Open the surface using the surfaceId - check that it returns KErrNone
412 if(KErrNone == iSurfaceManager.OpenSurface(surfaceId))
414 iTestResult |= EFirstTestPassed;
417 // Set the results so they can be read and tested by the first process
418 iChunkWrapper->SetSecondProcessResults(iTestResult);
423 Test 20. Opening a surface using invalid surfaceId
425 Process 1:Create the surface
426 Process 2: Receive a Surface Id
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
434 @see TestOpenSurfaceInvalidParams() in tsurfacemanager.cpp
436 void CTestDriverSecondProcess::TestOpeningSurfaceInvalidParams()
439 TSurfaceId surfaceId = iChunkWrapper->GetId();
441 // Open Surface using the right Id
442 if(KErrNone == iSurfaceManager.OpenSurface(surfaceId))
444 iTestResult |= EFirstTestPassed;
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))
452 iTestResult |= ESecondTestPassed;
454 // Change the surfaceId type to EInvalidSurface
455 invalidSurfaceId.iInternal[3] = (surfaceId.iInternal[3] & 0x00FFFFFF) | ( TSurfaceId::EInvalidSurface <<24 ) ;
456 if(KErrArgument == iSurfaceManager.OpenSurface(invalidSurfaceId))
458 iTestResult |= EThirdTestPassed;
461 // Set the results so they can be read and tested by the first process
462 iChunkWrapper->SetSecondProcessResults(iTestResult);
467 Test 22: Create, Open and Close in 3 different processes,
468 leaves surface accessible in first 2 processes
471 Process 2: Open Surface
473 Process 2: MapSurface - KErrNone (still accessible)
476 void CTestDriverSecondProcess::OpenWaitMap()
479 // Find the surfaceId
480 TSurfaceId id = iChunkWrapper->GetId();
483 if(KErrNone == iSurfaceManager.OpenSurface(id))
485 iTestResult |= EFirstTestPassed;
488 // Pass control back to the first process
490 if(KErrNone == sem.OpenGlobal(KMultiProcessSemaphore))
492 iTestResult |= ESecondTestPassed;
497 if(KErrNone == sem2.OpenGlobal(KMultiProcessSemaphore2))
499 iTestResult |= EThirdTestPassed;
505 if(KErrNone == iSurfaceManager.MapSurface(id, handle))
507 iTestResult |= EFourthTestPassed;
510 // Set the results so they can be read and tested by the first process
511 iChunkWrapper->SetSecondProcessResults(iTestResult);
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.
528 Process 2: Create Surface
530 Process 2: Kill Process
533 void CTestDriverSecondProcess::CreateWaitKill()
536 RSurfaceManager::TSurfaceCreationAttributesBuf buf;
537 RSurfaceManager::TSurfaceCreationAttributes& attributes = buf();
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;
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);
553 attributes.iOffsetBetweenBuffers = 0;
554 attributes.iMappable = ETrue;
556 // Create the surface
557 TSurfaceId surfaceId;
558 if(KErrNone == iSurfaceManager.CreateSurface(buf, surfaceId))
560 iTestResult |= EFirstTestPassed;
562 // Put the surfaceId onto the shared chunk
563 iChunkWrapper->SetId(surfaceId);
565 // Pass control back to the first process
567 if(KErrNone == sem.OpenGlobal(KMultiProcessSemaphore))
569 iTestResult |= ESecondTestPassed;
574 if(KErrNone == sem2.OpenGlobal(KMultiProcessSemaphore2))
576 iTestResult |= EThirdTestPassed;
580 // Set the results so they can be read and tested by the first process
581 iChunkWrapper->SetSecondProcessResults(iTestResult);
583 // CleanupStack::PopAndDestroy(2,&sem);
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
595 Process 2: Open Surface
596 Process 2: Close Surface
599 void CTestDriverSecondProcess::OpenClose()
602 // Find the surfaceId
603 TSurfaceId id = iChunkWrapper->GetId();
606 if(KErrNone == iSurfaceManager.OpenSurface(id))
608 iTestResult |= EFirstTestPassed;
612 if(KErrNone == iSurfaceManager.CloseSurface(id))
614 iTestResult |= ESecondTestPassed;
617 // Pass control back to the first process
619 if(KErrNone == sem.OpenGlobal(KMultiProcessSemaphore))
621 iTestResult |= EThirdTestPassed;
626 if(KErrNone == sem2.OpenGlobal(KMultiProcessSemaphore2))
628 iTestResult |= EFourthTestPassed;
632 // Set the results so they can be read and tested by the first process
633 iChunkWrapper->SetSecondProcessResults(iTestResult);
640 Test 30: Test a surface cannot be accessed in a second process if not opened
643 Process 2: Map Surface - KErrAccessDenied
644 Process 2: Surface Info - KErrAccessDenied
646 void CTestDriverSecondProcess::MapSurfaceInfoCantAccess()
648 // Find the surfaceId
649 TSurfaceId id = iChunkWrapper->GetId();
653 if(KErrAccessDenied == iSurfaceManager.MapSurface(id, handle))
655 iTestResult |= EFirstTestPassed;
659 RSurfaceManager::TInfoBuf infoBuf;
660 if(KErrAccessDenied == iSurfaceManager.SurfaceInfo(id, infoBuf))
662 iTestResult |= ESecondTestPassed;
665 // Pass control back to the first process
667 if(KErrNone == sem.OpenGlobal(KMultiProcessSemaphore))
669 iTestResult |= EThirdTestPassed;
674 if(KErrNone == sem2.OpenGlobal(KMultiProcessSemaphore2))
676 iTestResult |= EFourthTestPassed;
680 // Set the results so they can be read and tested by the first process
681 iChunkWrapper->SetSecondProcessResults(iTestResult);
683 // CleanupStack::PopAndDestroy(3,&handle);
690 Test 31: Test that a buffer written to in one surface can be read from in another
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
698 void CTestDriverSecondProcess::TestReadFromBufferInSecondProcess()
700 // Find the surfaceId
701 TSurfaceId id = iChunkWrapper->GetId();
704 if(KErrNone == iSurfaceManager.OpenSurface(id))
706 iTestResult |= EFirstTestPassed;
711 if(KErrNone == iSurfaceManager.MapSurface(id, handle))
713 iTestResult |= ESecondTestPassed;
716 // Read from the buffer
717 RSurfaceManager::TInfoBuf infoBuf;
718 if(KErrNone == iSurfaceManager.SurfaceInfo(id, infoBuf))
720 iTestResult |= EThirdTestPassed;
722 RSurfaceManager::TSurfaceInfoV01& info = infoBuf();
723 TUint8* surfaceAdd = handle.Base();
724 TInt offsetToFirstBuffer;
725 if(KErrNone == iSurfaceManager.GetBufferOffset(id, 0, offsetToFirstBuffer))
727 iTestResult |= EFourthTestPassed;
729 TUint8* bufferAdd = surfaceAdd + offsetToFirstBuffer;
730 if(*bufferAdd == 134)
732 iTestResult |= EFifthTestPassed;
735 // Set the results so they can be read and tested by the first process
736 iChunkWrapper->SetSecondProcessResults(iTestResult);
741 void CTestDriverSecondProcess::TestGetSurfaceHint()
743 // Open the chunk wrapper and get the surfaceId
744 TSurfaceId surfaceId = iChunkWrapper->GetId();
746 RSurfaceManager::THintPair hintPair;
747 hintPair.iKey.iUid = 0x124578;
748 if (KErrAccessDenied == iSurfaceManager.GetSurfaceHint(surfaceId, hintPair))
750 iTestResult |= EFirstTestPassed;
753 if(KErrNone == iSurfaceManager.OpenSurface(surfaceId))
755 iTestResult |= ESecondTestPassed;
758 if (KErrNone == iSurfaceManager.GetSurfaceHint(surfaceId, hintPair))
760 iTestResult |= EThirdTestPassed;
763 // Set the results so they can be read and tested by the first process
764 iChunkWrapper->SetSecondProcessResults(iTestResult);
769 void CTestDriverSecondProcess::TestSetSurfaceHint()
771 // Open the chunk wrapper and get the surfaceId
772 TSurfaceId surfaceId = iChunkWrapper->GetId();
774 RSurfaceManager::THintPair hintPair;
775 hintPair.iKey.iUid = 0x124578;
776 hintPair.iValue = 300;
778 if (KErrAccessDenied == iSurfaceManager.SetSurfaceHint(surfaceId, hintPair))
780 iTestResult |= EFirstTestPassed;
783 if(KErrNone == iSurfaceManager.OpenSurface(surfaceId))
785 iTestResult |= ESecondTestPassed;
788 if (KErrNone == iSurfaceManager.SetSurfaceHint(surfaceId, hintPair))
790 iTestResult |= EThirdTestPassed;
792 RSurfaceManager::THintPair hintPairNew;
793 hintPairNew.iKey.iUid = 0x124578;
795 iSurfaceManager.GetSurfaceHint(surfaceId,hintPairNew);
796 if (hintPairNew.iValue == hintPair.iValue)
798 iTestResult |= EFourthTestPassed;
800 // Set the results so they can be read and tested by the first process
801 iChunkWrapper->SetSecondProcessResults(iTestResult);
806 void CTestDriverSecondProcess::TestAddSurfaceHint()
808 // Open the chunk wrapper and get the surfaceId
809 TSurfaceId surfaceId = iChunkWrapper->GetId();
811 RSurfaceManager::THintPair hintPair;
812 hintPair.iKey.iUid = 0x124580;
813 hintPair.iValue = 300;
814 hintPair.iMutable = ETrue;
815 if (KErrAccessDenied == iSurfaceManager.AddSurfaceHint(surfaceId, hintPair))
817 iTestResult |= EFirstTestPassed;
820 if(KErrNone == iSurfaceManager.OpenSurface(surfaceId))
822 iTestResult |= ESecondTestPassed;
825 if (KErrNone == iSurfaceManager.AddSurfaceHint(surfaceId, hintPair))
827 iTestResult |= EThirdTestPassed;
829 RSurfaceManager::THintPair hintPairNew;
830 hintPairNew.iKey.iUid = 0x124580;
832 iSurfaceManager.GetSurfaceHint(surfaceId,hintPairNew);
833 if (hintPairNew.iValue == hintPair.iValue)
835 iTestResult |= EFourthTestPassed;
837 // Set the results so they can be read and tested by the first process
838 iChunkWrapper->SetSecondProcessResults(iTestResult);
843 void CTestDriverSecondProcess::TestOutofMemory()
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))
851 iTestResult |= EFirstTestPassed;
854 // Test OOM in AddConnection()
855 RSurfaceManager surfaceManagerTest;
856 __KHEAP_SETFAIL(RHeap::EDeterministic, 1);
857 if (KErrNoMemory == surfaceManagerTest.Open())
859 iTestResult |= ESecondTestPassed;
862 // Set the results so they can be read and tested by the first process
863 iChunkWrapper->SetSecondProcessResults(iTestResult);
865 // Real main function
870 RDebug::Print(_L("marker"));
872 test.Start(_L("Starting 2nd Process"));
874 User::GetTIntParameter(EMultiProcessSecondSlot, testCase);
875 TInt procHandles1 =0;
876 TInt threadHandles1=0;
877 RThread().HandleCount(procHandles1, threadHandles1);
879 CTestDriverSecondProcess* testDriver = CTestDriverSecondProcess::NewL();
880 CleanupStack::PushL(testDriver);
884 case ETestInfoReceivedSurface:
885 testDriver->TestSurfaceInfoUsingSurfaceId();
887 case ETestOpenReceivedSurface:
888 testDriver->TestOpeningSurfaceUsingSurfaceId();
890 case ETestOpenSurfaceInvalidParams:
891 testDriver->TestOpeningSurfaceInvalidParams();
894 testDriver->OpenWaitMap();
896 case ECreateWaitKill:
897 testDriver->CreateWaitKill();
900 testDriver->OpenClose();
902 case EMapSurfaceInfoCantAccess:
903 testDriver->MapSurfaceInfoCantAccess();
905 case EReadFromBuffer:
906 testDriver->TestReadFromBufferInSecondProcess();
909 testDriver->TestCheckHandleInSecondProcess();
912 testDriver->TestCheckSyncOperation();
914 case ETestChannelMultiProcess1:
915 testDriver->TestMultipleChannelsInSecondProcess1();
917 case ETestChannelMultiProcess2:
918 testDriver->TestMultipleChannelsInSecondProcess2();
920 case EGetSurfaceHint:
921 testDriver->TestGetSurfaceHint();
923 case ESetSurfaceHint:
924 testDriver->TestSetSurfaceHint();
926 case EAddSurfaceHint:
927 testDriver->TestAddSurfaceHint();
929 case ECheckOutofMemory:
931 testDriver->TestOutofMemory();
935 User::Leave(KErrArgument);
938 CleanupStack::PopAndDestroy(testDriver);
941 TInt procHandles2 =0;
942 TInt threadHandles2=0;
943 RThread().HandleCount(procHandles2,threadHandles2);
944 if (threadHandles1 != threadHandles2)
946 User::Leave(KErrGeneral); // Thread-owned handles not closed
954 // Cleanup stack harness
955 GLDEF_C TInt E32Main()
958 CTrapCleanup* cleanupStack = CTrapCleanup::New();
959 TRAPD(error, MainL());
960 _LIT(KTSecondProcessPanic,"tsecondprocessmain");
961 __ASSERT_ALWAYS(!error, User::Panic(KTSecondProcessPanic, error));