sl@0: /* sl@0: * Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies). sl@0: * All rights reserved. sl@0: * This component and the accompanying materials are made available sl@0: * under the terms of "Eclipse Public License v1.0" sl@0: * which accompanies this distribution, and is available sl@0: * at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: * sl@0: * Initial Contributors: sl@0: * Nokia Corporation - initial contribution. sl@0: * sl@0: * Contributors: sl@0: * sl@0: * Description: sl@0: * sl@0: */ sl@0: sl@0: sl@0: /** sl@0: @file sl@0: @test sl@0: @internalComponent - Internal Symbian test code sl@0: */ sl@0: sl@0: #include "egltest_endpointlocking.h" sl@0: sl@0: /** sl@0: @SYMTestCaseID GRAPHICS-EGL-057x sl@0: sl@0: @SYMTestPriority 2 sl@0: sl@0: @SYMPREQ 2670 sl@0: sl@0: @SYMREQ sl@0: sl@0: @SYMTestCaseDesc sl@0: Testing if the implementation exhibits correct locking behaviour in multiple buffer surface cases. sl@0: sl@0: @SYMTestActions sl@0: Create a number of surfaces sl@0: For each test case in a loop sl@0: * start the test in the remote windows server side to create endpoints sl@0: * in the client side call a surface update on any surface which should have the ready sl@0: attribute set sl@0: * Send commands with parameters to the windows server process test render stage to sl@0: begin/end streaming on an end point. These parameters include any error codes which sl@0: is expected. sl@0: * Log any failures sl@0: If the procedure was successful release all the resources and check the heap for memory leaks. sl@0: No memory or handle leaks. sl@0: sl@0: @SYMTestExpectedResults sl@0: If the function fails, the return value is undefined and an error is generated. sl@0: If endpoint is not a valid EGLEndpointNOK object, the error EGL_BAD_ENDPOINT_NOK is sl@0: generated for both BeginStreaming and EndStreaming. sl@0: If there is a timeout expected from a wait function then KErrTimedOut is received instead sl@0: of a valid notification. sl@0: */ sl@0: sl@0: static const TTestCase KLockingMultibufferCases[] = sl@0: { sl@0: { sl@0: TESTIDS("611"), sl@0: CASETITLE("Functional Locking: Update Server Notifications with acquire and release"), sl@0: SurfaceTypes1(ESurfTypeRaw), sl@0: { sl@0: { EInitializeCase, 0, EGL_SUCCESS }, sl@0: { ECreateSurfaceCase, 0, EGL_SUCCESS, 0, EStandardSurface }, sl@0: { ECreateEndpointCase, 0, EGL_SUCCESS }, sl@0: { EDrawContentCase, 0, EGL_SUCCESS }, sl@0: { EContentUpdateCase, 0, EGL_SUCCESS }, sl@0: { EBeginStreamingCase, 0, EGL_SUCCESS }, sl@0: { ESetAttribCase, 0, EGL_SUCCESS, 0, 0, EGL_DELAY_NOK, 50000 }, //50ms delay sl@0: { ENotifyWhenCase, 0, KErrNone, 0, ENotifyWhenAvailable }, sl@0: { EContentUpdateCase, ENoWait, EGL_SUCCESS }, sl@0: { EAcquireImageCase, 0, EGL_SUCCESS }, sl@0: { EDestroyEndpointCase, 0, EGL_SUCCESS }, sl@0: { EWaitForCase, 0, KErrNone, 0, ENotifyWhenAvailable, 100000, 50000 }, //100 ms timeout, timestamp not used sl@0: { ETerminateCase, 0, EGL_SUCCESS }, sl@0: { EFinishedCase } sl@0: }, sl@0: }, sl@0: { sl@0: TESTIDS("577"), sl@0: CASETITLE("Functional Locking: Multiple Buffer: DestroyEndpoint results in EndStreaming if in streaming mode."), sl@0: SurfaceTypes1(ESurfTypeRaw), sl@0: { sl@0: { EInitializeCase, 0, EGL_SUCCESS }, sl@0: { ECreateSurfaceCase, 0, EGL_SUCCESS, 0, EStandardSurface }, sl@0: { ECreateEndpointCase, 0, EGL_SUCCESS }, sl@0: { EDrawContentCase, 0, EGL_SUCCESS }, sl@0: { EContentUpdateCase, 0, EGL_SUCCESS }, sl@0: { EBeginStreamingCase, 0, EGL_SUCCESS }, sl@0: { EContentUpdateCase, ENoWait, EGL_SUCCESS }, sl@0: { EAcquireImageCase, 0, EGL_SUCCESS }, sl@0: { EDestroyEndpointCase, 0, EGL_SUCCESS }, sl@0: { EGetAttribCase, EExpectError, EGL_BAD_ENDPOINT_NOK, 0, 0, EGL_ENDPOINT_READY_NOK, EGL_FALSE}, sl@0: { EEndStreamingCase, EExpectError, EGL_BAD_ENDPOINT_NOK }, sl@0: { ETerminateCase, 0, EGL_SUCCESS }, sl@0: { EFinishedCase } sl@0: }, sl@0: }, sl@0: { sl@0: TESTIDS("578"), sl@0: CASETITLE("Functional Locking: Multiple Buffers: Destroy Endpoint results in ReleaseImage"), sl@0: SurfaceTypes1(ESurfTypeRaw), sl@0: { sl@0: { EInitializeCase, 0, EGL_SUCCESS }, sl@0: { ECreateSurfaceCase, 0, EGL_SUCCESS, 0, EStandardSurface }, sl@0: { ECreateEndpointCase, 0, EGL_SUCCESS }, sl@0: { EDrawContentCase, 0, EGL_SUCCESS }, sl@0: { EContentUpdateCase, 0, EGL_SUCCESS }, sl@0: { EBeginStreamingCase, 0, EGL_SUCCESS }, sl@0: { EContentUpdateCase, ENoWait, EGL_SUCCESS }, sl@0: { EAcquireImageCase, 0, EGL_SUCCESS }, sl@0: { EDestroyEndpointCase, 0, EGL_SUCCESS }, sl@0: { ECreateVgImageCase, EExpectError, EFalse}, sl@0: { ETerminateCase, 0, EGL_SUCCESS }, sl@0: { EFinishedCase } sl@0: }, sl@0: }, sl@0: }; sl@0: sl@0: sl@0: static const TTestCases KTestCases[] = sl@0: { sl@0: TestCase(KLockingMultibufferCases), sl@0: }; sl@0: sl@0: const TInt KNumberTestCases = sizeof(KTestCases) / sizeof(KTestCases[0]); sl@0: sl@0: CEglTest_LocalTestStep_EndpointLocking::CEglTest_LocalTestStep_EndpointLocking(): sl@0: CEgltest_Local_Engine(KTestCases, KNumberTestCases) sl@0: { sl@0: }