os/graphics/egl/egltest/endpointtestsuite/automated/tsrc/egltest_endpointlocking_local.cpp
Update contrib.
2 * Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
22 @internalComponent - Internal Symbian test code
25 #include "egltest_endpointlocking.h"
28 @SYMTestCaseID GRAPHICS-EGL-057x
37 Testing if the implementation exhibits correct locking behaviour in multiple buffer surface cases.
40 Create a number of surfaces
41 For each test case in a loop
42 * start the test in the remote windows server side to create endpoints
43 * in the client side call a surface update on any surface which should have the ready
45 * Send commands with parameters to the windows server process test render stage to
46 begin/end streaming on an end point. These parameters include any error codes which
49 If the procedure was successful release all the resources and check the heap for memory leaks.
50 No memory or handle leaks.
52 @SYMTestExpectedResults
53 If the function fails, the return value is undefined and an error is generated.
54 If endpoint is not a valid EGLEndpointNOK object, the error EGL_BAD_ENDPOINT_NOK is
55 generated for both BeginStreaming and EndStreaming.
56 If there is a timeout expected from a wait function then KErrTimedOut is received instead
57 of a valid notification.
60 static const TTestCase KLockingMultibufferCases[] =
64 CASETITLE("Functional Locking: Update Server Notifications with acquire and release"),
65 SurfaceTypes1(ESurfTypeRaw),
67 { EInitializeCase, 0, EGL_SUCCESS },
68 { ECreateSurfaceCase, 0, EGL_SUCCESS, 0, EStandardSurface },
69 { ECreateEndpointCase, 0, EGL_SUCCESS },
70 { EDrawContentCase, 0, EGL_SUCCESS },
71 { EContentUpdateCase, 0, EGL_SUCCESS },
72 { EBeginStreamingCase, 0, EGL_SUCCESS },
73 { ESetAttribCase, 0, EGL_SUCCESS, 0, 0, EGL_DELAY_NOK, 50000 }, //50ms delay
74 { ENotifyWhenCase, 0, KErrNone, 0, ENotifyWhenAvailable },
75 { EContentUpdateCase, ENoWait, EGL_SUCCESS },
76 { EAcquireImageCase, 0, EGL_SUCCESS },
77 { EDestroyEndpointCase, 0, EGL_SUCCESS },
78 { EWaitForCase, 0, KErrNone, 0, ENotifyWhenAvailable, 100000, 50000 }, //100 ms timeout, timestamp not used
79 { ETerminateCase, 0, EGL_SUCCESS },
85 CASETITLE("Functional Locking: Multiple Buffer: DestroyEndpoint results in EndStreaming if in streaming mode."),
86 SurfaceTypes1(ESurfTypeRaw),
88 { EInitializeCase, 0, EGL_SUCCESS },
89 { ECreateSurfaceCase, 0, EGL_SUCCESS, 0, EStandardSurface },
90 { ECreateEndpointCase, 0, EGL_SUCCESS },
91 { EDrawContentCase, 0, EGL_SUCCESS },
92 { EContentUpdateCase, 0, EGL_SUCCESS },
93 { EBeginStreamingCase, 0, EGL_SUCCESS },
94 { EContentUpdateCase, ENoWait, EGL_SUCCESS },
95 { EAcquireImageCase, 0, EGL_SUCCESS },
96 { EDestroyEndpointCase, 0, EGL_SUCCESS },
97 { EGetAttribCase, EExpectError, EGL_BAD_ENDPOINT_NOK, 0, 0, EGL_ENDPOINT_READY_NOK, EGL_FALSE},
98 { EEndStreamingCase, EExpectError, EGL_BAD_ENDPOINT_NOK },
99 { ETerminateCase, 0, EGL_SUCCESS },
105 CASETITLE("Functional Locking: Multiple Buffers: Destroy Endpoint results in ReleaseImage"),
106 SurfaceTypes1(ESurfTypeRaw),
108 { EInitializeCase, 0, EGL_SUCCESS },
109 { ECreateSurfaceCase, 0, EGL_SUCCESS, 0, EStandardSurface },
110 { ECreateEndpointCase, 0, EGL_SUCCESS },
111 { EDrawContentCase, 0, EGL_SUCCESS },
112 { EContentUpdateCase, 0, EGL_SUCCESS },
113 { EBeginStreamingCase, 0, EGL_SUCCESS },
114 { EContentUpdateCase, ENoWait, EGL_SUCCESS },
115 { EAcquireImageCase, 0, EGL_SUCCESS },
116 { EDestroyEndpointCase, 0, EGL_SUCCESS },
117 { ECreateVgImageCase, EExpectError, EFalse},
118 { ETerminateCase, 0, EGL_SUCCESS },
125 static const TTestCases KTestCases[] =
127 TestCase(KLockingMultibufferCases),
130 const TInt KNumberTestCases = sizeof(KTestCases) / sizeof(KTestCases[0]);
132 CEglTest_LocalTestStep_EndpointLocking::CEglTest_LocalTestStep_EndpointLocking():
133 CEgltest_Local_Engine(KTestCases, KNumberTestCases)