os/graphics/graphicsresourceservices/graphicsresource/test/tgraphicsresourcesecondprocess.cpp
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.
19 @internalComponent - Internal Symbian test code
22 #include "tgraphicsresourcemultiprocessthread.h"
24 #include <graphics/sgimage_sw.h>
27 Helper function to test the equivalence of two TSgImageInfo structures.
29 @param aInfo1 A TSgImageInfo structure to compare.
30 @param aInfo2 A TSgImageInfo structure to compare.
32 @return ETrue if the two are identical, EFalse otherwise.
34 TBool CompareInfos(TSgImageInfo& aInfo1, TSgImageInfo& aInfo2)
36 TBool result = EFalse;
37 if(aInfo1.iCpuAccess == aInfo2.iCpuAccess
38 && aInfo1.iPixelFormat == aInfo2.iPixelFormat
39 && aInfo1.iScreenId == aInfo2.iScreenId
40 && aInfo1.iShareable == aInfo2.iShareable
41 && aInfo1.iSizeInPixels == aInfo2.iSizeInPixels
42 && aInfo1.iUsage | aInfo2.iUsage
43 && aInfo1.iUserAttributeCount == aInfo2.iUserAttributeCount)
45 for(TInt i=0; i<aInfo1.iUserAttributeCount; ++i)
47 if(aInfo1.iUserAttributes[i].iUid != aInfo2.iUserAttributes[i].iUid)
58 Opens an image in a different process.
59 @param aInfo The test information passed from outside the current thread
60 @return The test result indicating which tests passed
62 TInt TestOpenImageL(TSgresTestInfo& aInfo)
64 TSgDrawableId id = aInfo.iDrawableId;
65 TSgImageInfo imageInfo1 = aInfo.iImageInfo;
70 if(KErrNone == image.Open(id))
72 result |= EFirstTestPassed;
75 TSgImageInfo imageInfo2;
76 if(KErrNone == image.GetInfo(imageInfo2))
78 result |= ESecondTestPassed;
80 if(CompareInfos(imageInfo1, imageInfo2))
82 result |= EThirdTestPassed;
86 result |= EFourthTestPassed;
95 Opens an image in a different process into a RSgDrawable object.
96 @param aInfo The test information passed from outside the current thread
97 @return The test result indicating which tests passed
99 TInt TestOpenDrawableL(TSgresTestInfo& aInfo)
101 TSgDrawableId id = aInfo.iDrawableId;
103 RSgDrawable drawable;
106 if(KErrNone == drawable.Open(id))
108 result |= EFirstTestPassed;
110 TSgDrawableId id2 = drawable.Id();
111 if(id2 != KSgNullDrawableId)
113 result |= ESecondTestPassed;
117 result |= EThirdTestPassed;
125 Opens an image in a different process with different invalid operations.
126 @param aInfo The test information passed from outside the current thread
127 @return The test result indicating which tests passed
129 TInt TestOpenImageInvalidL(TSgresTestInfo& aInfo)
131 TSgDrawableId id = aInfo.iDrawableId;
132 TSgImageInfo imageInfo = aInfo.iImageInfo;
138 if(KErrNone == image.Create(imageInfo, NULL, 0))
140 result |= EFirstTestPassed;
143 if(KErrInUse == image.Open(id))
145 result |= ESecondTestPassed;
150 if(KErrArgument == image.Open(KSgNullDrawableId))
152 result |= EThirdTestPassed;
156 // non-existing drawable id
157 TSgDrawableId fakeid = {0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF};
158 if(KErrNotFound == image.Open(fakeid))
160 result |= EFourthTestPassed;
164 // open a non-sharable image
165 TInt openResult = image.Open(id);
166 if(KErrPermissionDenied == openResult || KErrNotFound == openResult)
168 result |= EFifthTestPassed;
176 Calls SgDriver::AllocMarkEnd() without closing all the resources.
177 @param aInfo The test information passed from outside the current thread
178 @panic SGRES-ADAPTER 0
179 @return The test result indicating which tests passed
181 TInt TestDriverMemoryLeakL(TSgresTestInfo& /*aInfo*/)
183 SgDriver::AllocMarkStart();
185 info.iSizeInPixels = TSize(8, 8);
186 info.iUsage = ESgUsageDirectGdiSource;
187 info.iPixelFormat = EUidPixelFormatRGB_565;
188 info.iCpuAccess = ESgCpuAccessReadWrite;
189 info.iShareable = EFalse;
193 image.Create(info, NULL, 0);
194 SgDriver::AllocMarkEnd(0); //should panic here
200 Shuts down the driver when there are still resources open.
201 @param aInfo The test information passed from outside the current thread
203 @return The test result indicating which tests passed
205 TInt TestShutdownMemoryLeakL(TSgresTestInfo& /*aInfo*/)
208 info.iSizeInPixels = TSize(8, 8);
209 info.iUsage = ESgUsageDirectGdiSource;
210 info.iPixelFormat = EUidPixelFormatRGB_565;
211 info.iCpuAccess = ESgCpuAccessReadWrite;
212 info.iShareable = EFalse;
216 TInt ret = image.Create(info, NULL, 0);
221 SgDriver::Close(); //should panic here
226 Opens a drawable in a different process with different invalid operations.
227 @param aInfo The test information passed from outside the current thread
228 @return The test result indicating which tests passed
230 TInt TestOpenDrawableInvalidL(TSgresTestInfo& aInfo)
232 TSgDrawableId id = aInfo.iDrawableId;
234 RSgDrawable drawable;
238 if(KErrArgument == drawable.Open(KSgNullDrawableId))
240 result |= EFirstTestPassed;
244 //non-existing drawable id
245 TSgDrawableId fakeid = {0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF};
246 if(KErrNotFound == drawable.Open(fakeid))
248 result |= ESecondTestPassed;
252 //open a non-sharable image - should fail
253 TInt openResult = drawable.Open(id);
254 if(KErrPermissionDenied == openResult || KErrNotFound == openResult)
256 result |= EThirdTestPassed;
263 info1.iSizeInPixels = TSize(8, 8);
264 info1.iUsage = ESgUsageDirectGdiTarget;
265 info1.iPixelFormat = EUidPixelFormatRGB_565;
266 info1.iCpuAccess = ESgCpuAccessNone;
267 info1.iShareable = ETrue;
270 TInt err = image.Create(info1, NULL, 0);
271 if(KErrNoMemory == err)
273 result = KErrNoMemory;
275 else if(KErrNone != err)
281 if(KErrNone == drawable.Open(image.Id()))
283 result |= EFourthTestPassed;
286 //handle is non-null now
287 if(KErrInUse == drawable.Open(id))
289 result |= EFifthTestPassed;
298 Maps an image in a different process.
299 The operation should fail.
300 @param aInfo The test information passed from outside the current thread
301 @return The test result indicating which tests passed
303 TInt TestMapImageNonOwnerL(TSgresTestInfo& aInfo)
305 TSgDrawableId id = aInfo.iDrawableId;
308 const TAny* dataAddressRead;
309 TAny* dataAddressWrite;
313 if(KErrNone == image.Open(id))
315 result |= EFirstTestPassed;
317 if(KErrPermissionDenied == image.MapReadOnly(dataAddressRead, dataStride))
319 result |= ESecondTestPassed;
321 if(KErrPermissionDenied == image.MapWriteOnly(dataAddressWrite, dataStride))
323 result |= EThirdTestPassed;
325 if(KErrPermissionDenied == image.MapReadWrite(dataAddressWrite, dataStride))
327 result |= EFourthTestPassed;
330 TInt unmapResult = image.Unmap();
331 if(KErrGeneral == unmapResult || KErrPermissionDenied == unmapResult)
333 result |= EFifthTestPassed;
341 Unmaps an image in another process.
342 @param aInfo The test information passed from outside the current thread
343 @return The test result indicating which tests passed
345 TInt TestUnmapImageL(TSgresTestInfo& aInfo)
347 TSgDrawableId id = aInfo.iDrawableId;
352 if(KErrNone == image.Open(id))
354 result |= EFirstTestPassed;
356 if(KErrGeneral == image.Unmap())
358 result |= ESecondTestPassed;
364 // Real main function
367 TInt procHandles1 =0;
368 TInt threadHandles1=0;
369 RThread().HandleCount(procHandles1, threadHandles1);
371 TPckgBuf<TSgresTestInfo> infoPkg;
372 User::LeaveIfError(User::GetDesParameter(KSecondProcessParametersSlot, infoPkg));
373 TSgresTestInfo& info = infoPkg();
374 TSgresTestCase testCase = info.iTestCase;
377 if(KErrNone == SgDriver::Open())
381 case ESgresSecondProcessOpenImage:
382 result = TestOpenImageL(info);
384 case ESgresSecondProcessOpenDrawable:
385 result = TestOpenDrawableL(info);
387 case ESgresSecondProcessOpenImageInvalid:
388 result = TestOpenImageInvalidL(info);
390 case ESgresSecondProcessOpenDrawableInvalid:
391 result = TestOpenDrawableInvalidL(info);
393 case ESgresSecondProcessMapImage:
394 result = TestMapImageNonOwnerL(info);
396 case ESgresSecondProcessUnmapImage:
397 result = TestUnmapImageL(info);
399 case ESgresSecondProcessPanicDriverUnclosedResources:
400 result = TestShutdownMemoryLeakL(info);
402 case ESgresSecondProcessPanicMemoryLeak:
403 result = TestDriverMemoryLeakL(info);
411 TInt procHandles2 =0;
412 TInt threadHandles2=0;
413 RThread().HandleCount(procHandles2,threadHandles2);
414 if (threadHandles1 != threadHandles2)
416 result = KErrBadHandle; // Thread-owned handles not closed
422 GLDEF_C TInt E32Main()
425 CTrapCleanup* cleanupStack = CTrapCleanup::New();
426 if(cleanupStack == NULL)
431 TRAP_IGNORE(ret=MainL());