sl@0: // Copyright (c) 2009-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: @file sl@0: @test sl@0: @internalComponent - Internal Symbian test code sl@0: */ sl@0: sl@0: #include "egltest_endpointacquire.h" sl@0: sl@0: sl@0: static const TTestCase KAcquirePositiveCases[] = sl@0: { sl@0: // Test "working case" sl@0: { sl@0: TESTIDS("547A"), sl@0: CASETITLE("Functional: Positive: eglAcquireImageNOK with Valid Parameters: Basic Working case"), sl@0: SurfaceTypes2(ESurfTypeRaw, ESurfTypeEglWindow), 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: { ECompareImageCase, 0, EGL_SUCCESS }, sl@0: { EReleaseImageCase, 0, EGL_SUCCESS }, sl@0: { EEndStreamingCase, 0, EGL_SUCCESS }, sl@0: { EDestroyEndpointCase, 0, EGL_SUCCESS }, sl@0: { ETerminateCase, 0, EGL_SUCCESS }, sl@0: { EFinishedCase } sl@0: }, sl@0: }, sl@0: // Positive: Acquire twice with release sl@0: { sl@0: TESTIDS("547B"), sl@0: CASETITLE("Functional: Positive: eglAcquireImageNOK with Valid Parameters: Acquire twice (with release)"), sl@0: SurfaceTypes2(ESurfTypeRaw, ESurfTypeEglWindow), 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: { ECompareImageCase, 0, EGL_SUCCESS }, sl@0: { EDrawContentCase, 0, EGL_SUCCESS }, sl@0: { EContentUpdateCase, ENoSync, EGL_SUCCESS }, sl@0: { EReleaseImageCase, 0, EGL_SUCCESS }, sl@0: { EAcquireImageCase, 0, EGL_SUCCESS }, sl@0: { ECompareImageCase, 0, EGL_SUCCESS }, sl@0: { EReleaseImageCase, 0, EGL_SUCCESS }, sl@0: { EEndStreamingCase, 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("547C"), sl@0: CASETITLE("Functional: Positive: eglAcquireImageNOK with Valid Parameters: Two endpoints, acquire from each of them"), sl@0: SurfaceTypes2(ESurfTypeRaw, ESurfTypeEglWindow), sl@0: { sl@0: { EInitializeCase, 0, EGL_SUCCESS }, sl@0: { ECreateSurfaceCase, 0, EGL_SUCCESS, 0, EStandardSurface}, sl@0: { ECreateSurfaceCase, 0, EGL_SUCCESS, 1, EStandardSurface }, sl@0: { ECreateEndpointCase, 0, EGL_SUCCESS, 0, 0}, // Endpoint 0, image(surface) 0 sl@0: { ECreateEndpointCase, 0, EGL_SUCCESS, 1, 1}, // Endpoint 1, image(surface) 1 sl@0: { EDrawContentCase, 0, EGL_SUCCESS, 0, 0 }, // Surface 0, Image 0 sl@0: { EContentUpdateCase, 0, EGL_SUCCESS, 0 }, // Surface 0 sl@0: { EDrawContentCase, 0, EGL_SUCCESS, 1, 1 }, // Surface 1, Image 1 sl@0: { EContentUpdateCase, 0, EGL_SUCCESS, 1 }, // Surface 1 sl@0: { EBeginStreamingCase, 0, EGL_SUCCESS, 0 }, // Endpoint 0. sl@0: { EBeginStreamingCase, 0, EGL_SUCCESS, 1 }, // Endpoint 1. sl@0: { EAcquireImageCase, 0, EGL_SUCCESS, 1 }, // Endpoint 1 sl@0: { EAcquireImageCase, 0, EGL_SUCCESS, 0 }, // Endpoint 0 sl@0: { ECompareImageCase, 0, EGL_SUCCESS, 0, 0 }, // eglImage 0, image 0 sl@0: { ECompareImageCase, 0, EGL_SUCCESS, 1, 1 }, // eglImage 1, image 1 sl@0: { EReleaseImageCase, 0, EGL_SUCCESS, 0, 0 }, // Endpoint 0, image 0 sl@0: { EReleaseImageCase, 0, EGL_SUCCESS, 1, 1 }, // Endpoint 1, image 1 sl@0: { EEndStreamingCase, 0, EGL_SUCCESS, 0 }, // Endpoint 0 sl@0: { EEndStreamingCase, 0, EGL_SUCCESS, 1 }, // Endpoint 1 sl@0: { EDestroyEndpointCase, 0, EGL_SUCCESS, 0 }, // Endpoint 0 sl@0: { EDestroyEndpointCase, 0, EGL_SUCCESS, 1 }, // Endpoint 1 sl@0: { ETerminateCase, 0, EGL_SUCCESS }, sl@0: { EFinishedCase } sl@0: }, sl@0: }, sl@0: // Positive: Acquire, early destroy... sl@0: { sl@0: TESTIDS("547D"), sl@0: CASETITLE("Functional: Positive: eglAcquireImageNOK with Valid Parameters: Acquire and destroy without release"), sl@0: SurfaceTypes2(ESurfTypeRaw, ESurfTypeEglWindow), 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: { ECompareImageCase, 0, EGL_SUCCESS }, sl@0: { EDestroyEndpointCase, 0, EGL_SUCCESS }, sl@0: { ETerminateCase, 0, EGL_SUCCESS }, sl@0: { EFinishedCase } sl@0: }, sl@0: }, sl@0: // Positive: Acquire, early endstreaming... sl@0: { sl@0: TESTIDS("547E"), sl@0: CASETITLE("Functional: Positive: eglAcquireImageNOK with Valid Parameters: Acquire and endstreaming without release"), sl@0: SurfaceTypes2(ESurfTypeRaw, ESurfTypeEglWindow), 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: { ECompareImageCase, 0, EGL_SUCCESS }, sl@0: { EEndStreamingCase, 0, EGL_SUCCESS }, sl@0: { EBeginStreamingCase, 0, EGL_SUCCESS }, // We need to acquire again to see that it actually works correctly. sl@0: { EAcquireImageCase, 0, EGL_SUCCESS }, sl@0: { ECompareImageCase, 0, EGL_SUCCESS }, 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: sl@0: sl@0: static const TTestCase KAcquireNegativeCases[] = sl@0: { sl@0: { sl@0: TESTIDS("555A"), sl@0: CASETITLE("Functional: Negative: eglAcquireImageNOK with Bad Parameters: Not ready"), sl@0: SurfaceTypes2(ESurfTypeRaw, ESurfTypeEglWindow), sl@0: { sl@0: { EInitializeCase, 0, EGL_SUCCESS }, sl@0: { ECreateSurfaceCase, 0, EGL_SUCCESS, 0, EStandardSurface }, sl@0: { ECreateEndpointCase, 0, EGL_SUCCESS }, sl@0: { EAcquireImageCase, EExpectError, EGL_BAD_ACCESS }, sl@0: { EDestroyEndpointCase, 0, EGL_SUCCESS }, sl@0: { ETerminateCase, 0, EGL_SUCCESS }, sl@0: { EFinishedCase } sl@0: }, sl@0: }, sl@0: { sl@0: TESTIDS("555B"), sl@0: CASETITLE("Functional: Negative: eglAcquireImageNOK with Bad Parameters: Not streaming"), sl@0: SurfaceTypes2(ESurfTypeRaw, ESurfTypeEglWindow), 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: { EAcquireImageCase, EExpectError, EGL_BAD_ACCESS }, sl@0: { EDestroyEndpointCase, 0, EGL_SUCCESS }, sl@0: { ETerminateCase, 0, EGL_SUCCESS }, sl@0: { EFinishedCase } sl@0: }, sl@0: }, sl@0: // Negative: Acquire twice with no release sl@0: { sl@0: TESTIDS("555C"), sl@0: CASETITLE("Functional: Negative: eglAcquireImageNOK with Bad Parameters: Acquire twice (no release)"), sl@0: SurfaceTypes2(ESurfTypeRaw, ESurfTypeEglWindow), 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: { ECompareImageCase, 0, EGL_SUCCESS }, sl@0: // Note that when a bad acquire is done, the eglimage value is not stored. sl@0: // so we can still use the same image slot for the release later on. sl@0: { EAcquireImageCase, EExpectError, EGL_BAD_ACCESS }, sl@0: { EReleaseImageCase, 0, EGL_SUCCESS }, sl@0: { EEndStreamingCase, 0, EGL_SUCCESS }, sl@0: { EDestroyEndpointCase, 0, EGL_SUCCESS }, sl@0: { ETerminateCase, 0, EGL_SUCCESS }, sl@0: { EFinishedCase } sl@0: }, sl@0: }, sl@0: // Negative: Release bad eglImage then release the proper one, and acquire another (to ensure all worked). sl@0: { sl@0: TESTIDS("555D"), sl@0: CASETITLE("Functional: Negative: eglAcquireImageNOK with Bad Parameters: release bad image then release correct one"), sl@0: SurfaceTypes2(ESurfTypeRaw, ESurfTypeEglWindow), 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: { ECompareImageCase, 0, EGL_SUCCESS }, sl@0: { EReleaseImageCase, EUseBadEglImage, EGL_BAD_PARAMETER }, sl@0: { EReleaseImageCase, 0, EGL_SUCCESS }, sl@0: { EEndStreamingCase, 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: sl@0: static const TTestCase KAcquireBadParamCases[] = sl@0: { sl@0: { sl@0: TESTIDS("555E"), sl@0: CASETITLE("Functional: Negative: eglAcquireImageNOK with Bad Parameters: Various bad Parameters(Not Ready state)"), sl@0: SurfaceTypes2(ESurfTypeRaw, ESurfTypeEglWindow), sl@0: { sl@0: { EInitializeCase, 0, EGL_SUCCESS }, sl@0: { ECreateSurfaceCase, 0, EGL_SUCCESS, 0, EStandardSurface }, sl@0: { ECreateEndpointCase, 0, EGL_SUCCESS }, sl@0: { EAcquireImageCase, EUseBadDisplay, EGL_BAD_DISPLAY }, sl@0: { EAcquireImageCase, EUseBadDisplay | EUseBadEndpoint, EGL_BAD_DISPLAY }, sl@0: { EAcquireImageCase, EUseBadEndpoint, EGL_BAD_ENDPOINT_NOK }, sl@0: { EDestroyEndpointCase, 0, EGL_SUCCESS }, sl@0: { ETerminateCase, 0, EGL_SUCCESS }, sl@0: { EFinishedCase }, sl@0: }, sl@0: }, sl@0: { sl@0: TESTIDS("555F"), sl@0: CASETITLE("Functional: Negative: eglAcquireImageNOK with Bad Parameters: Various bad Parameters(Ready state)"), sl@0: SurfaceTypes2(ESurfTypeRaw, ESurfTypeEglWindow), 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: { EAcquireImageCase, EUseBadDisplay, EGL_BAD_DISPLAY }, sl@0: { EAcquireImageCase, EUseBadDisplay | EUseBadEndpoint, EGL_BAD_DISPLAY }, sl@0: { EAcquireImageCase, EUseBadEndpoint, EGL_BAD_ENDPOINT_NOK }, sl@0: { EDestroyEndpointCase, 0, EGL_SUCCESS }, sl@0: { ETerminateCase, 0, EGL_SUCCESS }, sl@0: { EFinishedCase }, sl@0: }, sl@0: }, sl@0: { sl@0: TESTIDS("555G"), sl@0: CASETITLE("Functional: Negative: eglAcquireImageNOK with Bad Parameters: Various bad Parameters(Streaming state)"), sl@0: SurfaceTypes2(ESurfTypeRaw, ESurfTypeEglWindow), 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, EUseBadDisplay, EGL_BAD_DISPLAY }, sl@0: { EAcquireImageCase, EUseBadDisplay | EUseBadEndpoint, EGL_BAD_DISPLAY }, sl@0: { EAcquireImageCase, EUseBadEndpoint, EGL_BAD_ENDPOINT_NOK }, sl@0: { EDestroyEndpointCase, 0, EGL_SUCCESS }, sl@0: { ETerminateCase, 0, EGL_SUCCESS }, sl@0: { EFinishedCase }, sl@0: }, sl@0: }, sl@0: { sl@0: TESTIDS("555H"), sl@0: CASETITLE("Functional: Negative: eglAcquireImageNOK with Bad Parameters: Various bad Parameters(Image Acquired state)"), sl@0: SurfaceTypes2(ESurfTypeRaw, ESurfTypeEglWindow), 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: { EAcquireImageCase, EUseBadDisplay, EGL_BAD_DISPLAY }, sl@0: { EAcquireImageCase, EUseBadDisplay | EUseBadEndpoint, EGL_BAD_DISPLAY }, sl@0: { EAcquireImageCase, EUseBadEndpoint, EGL_BAD_ENDPOINT_NOK }, sl@0: { ECompareImageCase, 0, EGL_SUCCESS }, 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: sl@0: sl@0: static const TTestCase KReleaseBadParamCases[] = sl@0: { sl@0: { sl@0: TESTIDS("556A"), sl@0: CASETITLE("Functional: Negative: eglReleaseImageNOK with Bad Parameters: Various bad Parameters(Not Ready state)"), sl@0: SurfaceTypes2(ESurfTypeRaw, ESurfTypeEglWindow), sl@0: { sl@0: { EInitializeCase, 0, EGL_SUCCESS }, sl@0: { ECreateSurfaceCase, 0, EGL_SUCCESS, 0, EStandardSurface }, sl@0: { ECreateEndpointCase, 0, EGL_SUCCESS }, sl@0: { EReleaseImageCase, EUseBadEglImage, EGL_BAD_PARAMETER }, sl@0: { EReleaseImageCase, EUseBadEglImage | EUseBadDisplay, EGL_BAD_DISPLAY }, sl@0: { EReleaseImageCase, EUseBadEglImage | EUseBadDisplay | EUseBadEndpoint, EGL_BAD_DISPLAY }, sl@0: { EDestroyEndpointCase, 0, EGL_SUCCESS }, sl@0: { ETerminateCase, 0, EGL_SUCCESS }, sl@0: { EFinishedCase }, sl@0: }, sl@0: }, sl@0: { sl@0: TESTIDS("556B"), sl@0: CASETITLE("Functional: Negative: eglReleaseImageNOK with Bad Parameters: Various bad Parameters(Ready state)"), sl@0: SurfaceTypes2(ESurfTypeRaw, ESurfTypeEglWindow), 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: { EReleaseImageCase, EUseBadEglImage, EGL_BAD_PARAMETER }, sl@0: { EReleaseImageCase, EUseBadEglImage | EUseBadDisplay, EGL_BAD_DISPLAY }, sl@0: { EReleaseImageCase, EUseBadEglImage | EUseBadDisplay | EUseBadEndpoint, EGL_BAD_DISPLAY }, sl@0: { EDestroyEndpointCase, 0, EGL_SUCCESS }, sl@0: { ETerminateCase, 0, EGL_SUCCESS }, sl@0: { EFinishedCase }, sl@0: }, sl@0: }, sl@0: { sl@0: TESTIDS("556C"), sl@0: CASETITLE("Functional: Negative: eglReleaseImageNOK with Bad Parameters: Bad Parameters(Streaming state)"), sl@0: SurfaceTypes2(ESurfTypeRaw, ESurfTypeEglWindow), 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: { EReleaseImageCase, EUseBadEglImage, EGL_BAD_PARAMETER }, sl@0: { EReleaseImageCase, EUseBadEglImage | EUseBadDisplay, EGL_BAD_DISPLAY }, sl@0: { EReleaseImageCase, EUseBadEglImage | EUseBadDisplay | EUseBadEndpoint, EGL_BAD_DISPLAY }, sl@0: { EDestroyEndpointCase, 0, EGL_SUCCESS }, sl@0: { ETerminateCase, 0, EGL_SUCCESS }, sl@0: { EFinishedCase }, sl@0: }, sl@0: }, sl@0: { sl@0: TESTIDS("556D"), sl@0: CASETITLE("Functional: Negative: eglReleaseImageNOK with Bad Parameters: Various bad Parameters(Image Acquired state)"), sl@0: SurfaceTypes2(ESurfTypeRaw, ESurfTypeEglWindow), 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: { EReleaseImageCase, EUseBadDisplay, EGL_BAD_DISPLAY }, sl@0: { EReleaseImageCase, EUseBadEndpoint, EGL_BAD_ENDPOINT_NOK }, sl@0: { EReleaseImageCase, EUseBadEglImage, EGL_BAD_PARAMETER }, sl@0: { EReleaseImageCase, EUseBadApi, EGL_BAD_PARAMETER }, sl@0: { EReleaseImageCase, EUseBadDisplay | EUseBadEndpoint, EGL_BAD_DISPLAY }, sl@0: { EReleaseImageCase, EUseBadDisplay | EUseBadEglImage, EGL_BAD_DISPLAY }, sl@0: { EReleaseImageCase, EUseBadDisplay | EUseBadApi, EGL_BAD_DISPLAY }, sl@0: { EReleaseImageCase, EUseBadEglImage | EUseBadApi, EGL_BAD_PARAMETER }, sl@0: { EReleaseImageCase, EUseBadDisplay | EUseBadEndpoint | EUseBadEglImage, EGL_BAD_DISPLAY }, sl@0: { EReleaseImageCase, EUseBadDisplay | EUseBadEndpoint | EUseBadApi, EGL_BAD_DISPLAY }, sl@0: { EReleaseImageCase, EUseBadDisplay | EUseBadEglImage | EUseBadApi, EGL_BAD_DISPLAY }, sl@0: { EReleaseImageCase, EUseBadDisplay | EUseBadEndpoint | EUseBadEglImage | EUseBadApi, EGL_BAD_DISPLAY }, sl@0: { ECompareImageCase, 0, EGL_SUCCESS }, 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: sl@0: sl@0: static const TTestCase KReleasePositiveCases[] = sl@0: { sl@0: { sl@0: TESTIDS("548A"), sl@0: CASETITLE("Functional: Positive: eglReleaseImageNOK with Valid Parameters: Simple acquire then release"), sl@0: SurfaceTypes2(ESurfTypeRaw, ESurfTypeEglWindow), 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: { ECompareImageCase, 0, EGL_SUCCESS }, 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("548B"), sl@0: CASETITLE("Functional: Positive: eglReleaseImageNOK with Valid Parameters: Acquire, release twice"), sl@0: SurfaceTypes2(ESurfTypeRaw, ESurfTypeEglWindow), 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: { ECompareImageCase, 0, EGL_SUCCESS }, sl@0: { EReleaseImageCase, 0, EGL_SUCCESS }, sl@0: // Should fail. sl@0: { EReleaseImageCase, EExpectError, EGL_BAD_PARAMETER }, 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: static const TTestCase KReleaseNegativeCases[] = sl@0: { sl@0: { sl@0: TESTIDS("548C"), sl@0: CASETITLE("Functional: Negative: eglReleaseImageNOK with Valid Parameters: Two EPs, acquire, then release on wrong EP."), sl@0: SurfaceTypes2(ESurfTypeRaw, ESurfTypeEglWindow), sl@0: { sl@0: { EInitializeCase, 0, EGL_SUCCESS }, sl@0: { ECreateSurfaceCase, 0, EGL_SUCCESS, 0, EStandardSurface }, sl@0: { ECreateSurfaceCase, 0, EGL_SUCCESS, 1, EStandardSurface }, sl@0: { ECreateEndpointCase, 0, EGL_SUCCESS, 0, 0 }, sl@0: { ECreateEndpointCase, 0, EGL_SUCCESS, 1, 1 }, sl@0: { EDrawContentCase, 0, EGL_SUCCESS, 0, 0 }, sl@0: { EContentUpdateCase, 0, EGL_SUCCESS, 0 }, sl@0: { EDrawContentCase, 0, EGL_SUCCESS, 1, 1 }, sl@0: { EContentUpdateCase, 0, EGL_SUCCESS, 1 }, sl@0: { EBeginStreamingCase, 0, EGL_SUCCESS, 0 }, sl@0: { EBeginStreamingCase, 0, EGL_SUCCESS, 1 }, sl@0: { EAcquireImageCase, 0, EGL_SUCCESS, 0, 0 }, sl@0: { EAcquireImageCase, 0, EGL_SUCCESS, 1, 1 }, sl@0: // Swapping the release of the image - should fail. sl@0: { EReleaseImageCase, EExpectError, EGL_BAD_PARAMETER, 0, 1 }, sl@0: { EReleaseImageCase, EExpectError, EGL_BAD_PARAMETER, 1, 0 }, sl@0: // Check that the originally acquired images are still there... sl@0: { ECompareImageCase, 0, EGL_SUCCESS, 0, 0 }, sl@0: { ECompareImageCase, 0, EGL_SUCCESS, 1, 1 }, sl@0: // Now do it the right way around sl@0: { EReleaseImageCase, 0, EGL_SUCCESS, 1, 1 }, sl@0: { EReleaseImageCase, 0, EGL_SUCCESS, 0, 0 }, sl@0: { EDestroyEndpointCase, 0, EGL_SUCCESS, 0 }, sl@0: { EDestroyEndpointCase, 0, EGL_SUCCESS, 1 }, sl@0: { ETerminateCase, 0, EGL_SUCCESS }, sl@0: { EFinishedCase }, sl@0: }, sl@0: }, sl@0: { sl@0: TESTIDS("619"), sl@0: CASETITLE("Functional: Negative: eglDestroyImageKHR can not be used for images acquired from endpoint."), sl@0: SurfaceTypes2(ESurfTypeRaw, ESurfTypeEglWindow), 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: { EDestroyEglImageCase, EExpectError, EGL_BAD_ACCESS }, sl@0: // Compare Image to make sure it's still "there". sl@0: { ECompareImageCase, 0, EGL_SUCCESS, }, 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: }; sl@0: sl@0: sl@0: static const TTestCases KTestCases[] = sl@0: { sl@0: TestCase(KAcquirePositiveCases), sl@0: TestCase(KAcquireNegativeCases), sl@0: TestCase(KAcquireBadParamCases), sl@0: TestCase(KReleasePositiveCases), sl@0: TestCase(KReleaseBadParamCases), sl@0: TestCase(KReleaseNegativeCases), sl@0: }; sl@0: sl@0: const TInt KNumberTestCases = sizeof(KTestCases) / sizeof(KTestCases[0]); sl@0: sl@0: sl@0: CEglTest_LocalTestStep_EndpointAcquire::CEglTest_LocalTestStep_EndpointAcquire(): sl@0: CEgltest_Local_Engine(KTestCases, KNumberTestCases) sl@0: { sl@0: }