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: // Testing of eglEndpointDirtyAreaNOK functionality. 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_endpointdirtyarea.h" sl@0: sl@0: static const TTestCase KDirtyAreaPositiveCases[] = sl@0: { sl@0: { sl@0: TESTIDS("614"), sl@0: CASETITLE("Functional: Positive: eglGetEndpointDirtyArea basic test."), sl@0: SurfaceTypes3(ESurfTypeRaw, ESurfTypeEglWindow, ESurfTypeRawSingleBuffered), 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: { EAcquireImageCase, 0, EGL_SUCCESS }, sl@0: { EGetEndpointDirtyAreaCase, 0, EGL_SUCCESS, 0, 0, 0, 1 }, sl@0: { EReleaseImageCase, 0, EGL_SUCCESS }, sl@0: { EDestroyEndpointCase, 0, EGL_SUCCESS }, sl@0: { ETerminateCase, 0, EGL_SUCCESS }, sl@0: { EFinishedCase } sl@0: }, sl@0: }, sl@0: { sl@0: TESTIDS("615"), sl@0: CASETITLE("Functional: Positive: eglGetEndpointDirtyArea simple working test - collapse area."), sl@0: SurfaceTypes3(ESurfTypeRaw, ESurfTypeEglWindow, ESurfTypeRawSingleBuffered), 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: { EAcquireImageCase, 0, EGL_SUCCESS }, sl@0: { EGetEndpointDirtyAreaCase, EUseCollapseArea, EGL_SUCCESS, 0, 0, 0, 2 }, sl@0: { EReleaseImageCase, 0, EGL_SUCCESS }, sl@0: { EDestroyEndpointCase, 0, EGL_SUCCESS }, sl@0: { ETerminateCase, 0, EGL_SUCCESS }, sl@0: { EFinishedCase } sl@0: }, sl@0: }, sl@0: { sl@0: TESTIDS("617"), sl@0: CASETITLE("Functional: Positive: eglGetEndpointDirtyArea - check number of rects avialable"), sl@0: SurfaceTypes3(ESurfTypeRaw, ESurfTypeEglWindow, ESurfTypeRawSingleBuffered), 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: { EAcquireImageCase, 0, EGL_SUCCESS }, sl@0: { EGetEndpointDirtyAreaCase, EUseNullRects, EGL_SUCCESS, 0, 0, 0, 0 }, sl@0: { EReleaseImageCase, 0, EGL_SUCCESS }, sl@0: { EDestroyEndpointCase, 0, EGL_SUCCESS }, sl@0: { ETerminateCase, 0, EGL_SUCCESS }, sl@0: { EFinishedCase } sl@0: }, sl@0: }, sl@0: }; sl@0: static const TTestCase KDirtyAreaNegativeCases[] = sl@0: { sl@0: { sl@0: TESTIDS("616"), sl@0: CASETITLE("Functional: Negative: eglRequestNotification bad parameter test."), sl@0: SurfaceTypes3(ESurfTypeRaw, ESurfTypeEglWindow, ESurfTypeRawSingleBuffered), 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: { EAcquireImageCase, 0, EGL_SUCCESS }, sl@0: // Bad display sl@0: { EGetEndpointDirtyAreaCase, EUseBadDisplay, EGL_BAD_DISPLAY }, sl@0: { EGetEndpointDirtyAreaCase, EUseBadDisplay | EUseBadEndpoint, EGL_BAD_DISPLAY }, sl@0: { EGetEndpointDirtyAreaCase, EUseBadDisplay | EUseBadRects, EGL_BAD_DISPLAY }, sl@0: { EGetEndpointDirtyAreaCase, EUseBadDisplay | EUseBadEndpoint | EUseBadRects, EGL_BAD_DISPLAY }, sl@0: { EGetEndpointDirtyAreaCase, EUseBadEndpoint, EGL_BAD_ENDPOINT_NOK }, sl@0: { EGetEndpointDirtyAreaCase, EUseBadRects, EGL_BAD_PARAMETER, 0, 0, 0, 1 }, sl@0: // All zeros, but not NULL rects -> bad parameter error. sl@0: { EGetEndpointDirtyAreaCase, EExpectError, EGL_BAD_PARAMETER, 0, 0, 0, 0 }, sl@0: { EDestroyEndpointCase, 0, EGL_SUCCESS }, sl@0: { ETerminateCase, 0, EGL_SUCCESS }, sl@0: { EFinishedCase } sl@0: }, sl@0: }, sl@0: { sl@0: TESTIDS("618"), sl@0: CASETITLE("Functional: Negative: eglRequestNotification no acquired image."), sl@0: SurfaceTypes3(ESurfTypeRaw, ESurfTypeEglWindow, ESurfTypeRawSingleBuffered), 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: { EGetEndpointDirtyAreaCase, EExpectError, EGL_BAD_ACCESS, 0, 0, 0, 1 }, sl@0: { EGetEndpointDirtyAreaCase, EUseNullRects|EExpectError, EGL_BAD_ACCESS, 0, 0, 0, 0 }, sl@0: { EDestroyEndpointCase, 0, EGL_SUCCESS }, sl@0: { ETerminateCase, 0, EGL_SUCCESS }, sl@0: { EFinishedCase } sl@0: }, sl@0: }, sl@0: sl@0: }; sl@0: sl@0: sl@0: static const TTestCases KTestCases[] = sl@0: { sl@0: TestCase(KDirtyAreaPositiveCases), sl@0: TestCase(KDirtyAreaNegativeCases), sl@0: }; sl@0: sl@0: const TInt KNumberTestCases = sizeof(KTestCases) / sizeof(KTestCases[0]); sl@0: sl@0: CEglTest_LocalTestStep_EndpointDirtyArea::CEglTest_LocalTestStep_EndpointDirtyArea(): sl@0: CEgltest_Local_Engine(KTestCases, KNumberTestCases) sl@0: { sl@0: }