sl@0: // Copyright (c) 2009 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: sl@0: /** sl@0: @file sl@0: @test sl@0: @internalComponent - Internal Symbian test code sl@0: */ sl@0: sl@0: #include "egltest_endpointcreate.h" sl@0: sl@0: /** sl@0: @SYMTestCaseID GRAPHICS-EGL-0406 sl@0: sl@0: @SYMTestPriority 1 sl@0: sl@0: @SYMPREQ 2670 sl@0: sl@0: @SYMREQ 13245 sl@0: sl@0: @SYMTestCaseDesc sl@0: Test the beahviour of eglCreateEndpointNOK and eglDestroyEndpoint with good and bad parameters. sl@0: sl@0: @SYMTestActions sl@0: Create a number of surfaces sl@0: For each test case in a loop sl@0: * Send a commands with parameters to the windows server process test render stage to sl@0: perform operations. These parameters include any error codes which should be sl@0: generated. The remote side checks the error code if any, and returns the result to the sl@0: local side engine (test application), which sets the verdict of the test . 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 an error is generated, the value EGL_NO_ENDPOINT_NOK is returned. sl@0: If dpy is not the handle of a valid EGLDisplay object, the error EGL_BAD_DISPLAY is generated. sl@0: If type is not EGL_ENDPOINT_TYPE_CONSUMER_NOK, error EGL_BAD_PARAMETER is generated. sl@0: If source is not a pointer to a valid TSurfaceId, the error EGL_BAD_PARAMETER is generated. sl@0: If source_type is not EGL_TSURFACEID_NOK, the error EGL_BAD_PARAMETER is generated. sl@0: If attrib_list is not NULL or empty, the error EGL_BAD_PARAMETER is generated. sl@0: */ sl@0: sl@0: static const TTestCase KCreatePositiveCases[] = sl@0: { sl@0: { sl@0: TESTIDS("541A, 542A"), sl@0: CASETITLE("Functional: Positive: eglCreateEndpointNOK & eglDestroyEndpointNOK with Valid Parameters: Create and destroy one endpoint"), 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: { EDestroyEndpointCase, 0, EGL_SUCCESS }, sl@0: { ETerminateCase, 0, EGL_SUCCESS }, sl@0: { EFinishedCase } sl@0: }, sl@0: }, sl@0: { sl@0: TESTIDS("541B, 542B"), sl@0: CASETITLE("Functional: Positive: eglCreateEndpointNOK & eglDestroyEndpointNOK with Valid Parameters: Create and destroy two endpoints, sequential"), sl@0: SurfaceTypes3(ESurfTypeRaw, ESurfTypeEglWindow, ESurfTypeRawSingleBuffered), sl@0: { sl@0: { EInitializeCase, 0, EGL_SUCCESS }, sl@0: { ECreateSurfaceCase, 0, EGL_SUCCESS }, sl@0: { ECreateEndpointCase, 0, EGL_SUCCESS, 0, EStandardSurface }, sl@0: { EDestroyEndpointCase, 0, EGL_SUCCESS }, sl@0: { ECreateEndpointCase, 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("541C, 542C"), sl@0: CASETITLE("Functional: Positive: eglCreateEndpointNOK & eglDestroyEndpointNOK with Valid Parameters: Create and destroy three endpoints, parallel, destroy in order"), sl@0: SurfaceTypes3(ESurfTypeRaw, ESurfTypeEglWindow, ESurfTypeRawSingleBuffered), 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: { ECreateSurfaceCase, 0, EGL_SUCCESS, 2, EStandardSurface }, sl@0: { ECreateEndpointCase, 0, EGL_SUCCESS, 0, 0 }, sl@0: { ECreateEndpointCase, 0, EGL_SUCCESS, 1, 1 }, sl@0: { ECreateEndpointCase, 0, EGL_SUCCESS, 2, 2 }, sl@0: { EDestroyEndpointCase, 0, EGL_SUCCESS, 0, 0 }, sl@0: { EDestroyEndpointCase, 0, EGL_SUCCESS, 1, 1 }, sl@0: { EDestroyEndpointCase, 0, EGL_SUCCESS, 2, 2 }, sl@0: { ETerminateCase, 0, EGL_SUCCESS }, sl@0: { EFinishedCase } sl@0: }, sl@0: }, sl@0: { sl@0: TESTIDS("541D, 542D"), sl@0: CASETITLE("Functional: Positive: eglCreateEndpointNOK & eglDestroyEndpointNOK with Valid Parameters: Create and destroy three endpoints, parallel, destroy reverse order"), sl@0: SurfaceTypes3(ESurfTypeRaw, ESurfTypeEglWindow, ESurfTypeRawSingleBuffered), 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: { ECreateSurfaceCase, 0, EGL_SUCCESS, 2, EStandardSurface }, sl@0: { ECreateEndpointCase, 0, EGL_SUCCESS, 0, 0 }, sl@0: { ECreateEndpointCase, 0, EGL_SUCCESS, 1, 1 }, sl@0: { ECreateEndpointCase, 0, EGL_SUCCESS, 2, 2 }, sl@0: { EDestroyEndpointCase, 0, EGL_SUCCESS, 2, 2 }, sl@0: { EDestroyEndpointCase, 0, EGL_SUCCESS, 1, 1 }, sl@0: { EDestroyEndpointCase, 0, EGL_SUCCESS, 0, 0 }, sl@0: { ETerminateCase, 0, EGL_SUCCESS }, sl@0: { EFinishedCase } sl@0: }, sl@0: }, sl@0: { sl@0: TESTIDS("541E, 542E"), sl@0: CASETITLE("Functional: Positive: eglCreateEndpointNOK & eglDestroyEndpointNOK with Valid Parameters: Create and destroy three endpoints, parallel, destroy out of order"), sl@0: SurfaceTypes3(ESurfTypeRaw, ESurfTypeEglWindow, ESurfTypeRawSingleBuffered), 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: { ECreateSurfaceCase, 0, EGL_SUCCESS, 2, EStandardSurface }, sl@0: { ECreateEndpointCase, 0, EGL_SUCCESS, 0, 0 }, sl@0: { ECreateEndpointCase, 0, EGL_SUCCESS, 1, 1 }, sl@0: { ECreateEndpointCase, 0, EGL_SUCCESS, 2, 2 }, sl@0: { EDestroyEndpointCase, 0, EGL_SUCCESS, 2, 2 }, sl@0: { EDestroyEndpointCase, 0, EGL_SUCCESS, 0, 0 }, sl@0: { EDestroyEndpointCase, 0, EGL_SUCCESS, 1, 1 }, sl@0: { ETerminateCase, 0, EGL_SUCCESS }, sl@0: { EFinishedCase } sl@0: }, sl@0: }, sl@0: { sl@0: TESTIDS("541F"), sl@0: CASETITLE("Functional: Positive: eglCreateEndpointNOK & eglTerminate with Valid Parameters: Create one endpoint then terminate EGL"), 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: { ETerminateCase, 0, EGL_SUCCESS }, sl@0: { EFinishedCase } sl@0: }, sl@0: }, sl@0: { sl@0: TESTIDS("541G"), sl@0: CASETITLE("Functional: Positive: eglCreateEndpointNOK & eglTerminate with Valid Parameters: Create three endpoints then terminate EGL"), sl@0: SurfaceTypes3(ESurfTypeRaw, ESurfTypeEglWindow, ESurfTypeRawSingleBuffered), 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: { ECreateSurfaceCase, 0, EGL_SUCCESS, 2, EStandardSurface }, sl@0: { ECreateEndpointCase, 0, EGL_SUCCESS, 0, 0 }, sl@0: { ECreateEndpointCase, 0, EGL_SUCCESS, 1, 1 }, sl@0: { ECreateEndpointCase, 0, EGL_SUCCESS, 2, 2 }, sl@0: { ETerminateCase, 0, EGL_SUCCESS }, sl@0: { EFinishedCase } sl@0: }, sl@0: }, sl@0: }; sl@0: sl@0: static const TTestCase KCreateBadParameterCases[] = sl@0: { sl@0: { sl@0: TESTIDS("549A"), sl@0: CASETITLE("Functional: Negative: eglCreateEndpointNOK with Bad parameters: Create with bad display and various other bad parameters"), 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, EUseBadDisplay, EGL_BAD_DISPLAY }, sl@0: { ECreateEndpointCase, EUseBadDisplay | EUseBadEndpointType, EGL_BAD_DISPLAY }, sl@0: { ECreateEndpointCase, EUseBadDisplay | EUseBadSourceType, EGL_BAD_DISPLAY }, sl@0: { ECreateEndpointCase, EUseBadDisplay | EUseBadSourceType | EUseBadEndpointType, EGL_BAD_DISPLAY }, sl@0: { ECreateEndpointCase, EUseBadEndpointType, EGL_BAD_PARAMETER }, sl@0: { ECreateEndpointCase, EUseBadSourceType, EGL_BAD_PARAMETER }, sl@0: { ETerminateCase, 0, EGL_SUCCESS }, sl@0: { EFinishedCase } sl@0: }, sl@0: }, sl@0: { sl@0: TESTIDS("549B"), sl@0: CASETITLE("Functional: Negative: eglCreateEndpointNOK with Bad parameters: Create with bad attributes"), sl@0: SurfaceTypes3(ESurfTypeRaw, ESurfTypeEglWindow, ESurfTypeRawSingleBuffered), sl@0: { sl@0: { EInitializeCase, 0, EGL_SUCCESS }, sl@0: { ECreateSurfaceCase, 0, EGL_SUCCESS, 0, EBadAttribSurface }, sl@0: { ECreateEndpointCase, EUseBadDisplay, EGL_BAD_DISPLAY }, sl@0: { ECreateEndpointCase, EUseBadDisplay | EUseBadEndpointType, EGL_BAD_DISPLAY }, sl@0: { ECreateEndpointCase, EUseBadDisplay | EUseBadSourceType, EGL_BAD_DISPLAY }, sl@0: { ECreateEndpointCase, EUseBadDisplay | EUseBadSourceType | EUseBadEndpointType, EGL_BAD_DISPLAY }, sl@0: // Now, try with correct parameters aside from the attribute set - this should give us bad parameter. sl@0: { ECreateEndpointCase, EExpectError, EGL_BAD_PARAMETER }, sl@0: { ETerminateCase, 0, EGL_SUCCESS }, sl@0: { EFinishedCase } sl@0: }, sl@0: }, sl@0: { sl@0: TESTIDS("549C"), sl@0: CASETITLE("Functional: Negative: eglCreateEndpointNOK with Bad parameters: Create with bad surfaceid"), sl@0: SurfaceTypes3(ESurfTypeRaw, ESurfTypeEglWindow, ESurfTypeRawSingleBuffered), sl@0: { sl@0: { EInitializeCase, 0, EGL_SUCCESS }, sl@0: { ECreateSurfaceCase, 0, EGL_SUCCESS }, sl@0: // Check that bad display takes precedence over bad surface! sl@0: { ECreateEndpointCase, EUseBadDisplay | EUseBadSurfaceId, EGL_BAD_DISPLAY }, sl@0: { ECreateEndpointCase, EUseBadSurfaceId, EGL_BAD_PARAMETER }, sl@0: // Now create an endpoint to see that nothing got messed up. sl@0: { ECreateEndpointCase, 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: // Note that some cases of "destroy" are tested as part of AcquireImage tests - they are sl@0: // borderline between the two functions, e.g. destroy when an image is acquired. sl@0: // Also, destroyendpoint is tested in the streaming tests, for the case where endstreaming sl@0: // is not performed before the destroyendpoint. sl@0: static const TTestCase KCreateNegativeCases[] = sl@0: { sl@0: { sl@0: TESTIDS("549D"), sl@0: CASETITLE("Functional: Negative: eglCreateEndpointNOK with Bad parameters: check that creating an endpoint twice gives correct error"), 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: { ECreateEndpointCase, 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 KDestroyBadParameterCases[] = sl@0: { sl@0: { sl@0: TESTIDS("550A"), sl@0: CASETITLE("Functional: Negative: eglDestroyEndpointNOK with Bad parameters: check various trivial bad parameters"), sl@0: SurfaceTypes3(ESurfTypeRaw, ESurfTypeEglWindow, ESurfTypeRawSingleBuffered), sl@0: { sl@0: { EInitializeCase, 0, EGL_SUCCESS }, sl@0: { EDestroyEndpointCase, EUseBadDisplay, EGL_BAD_DISPLAY }, sl@0: { EDestroyEndpointCase, EUseBadDisplay, EGL_BAD_DISPLAY }, sl@0: // Now use bad endpoint WITH bad display - should give bad display. sl@0: { EDestroyEndpointCase, EUseBadDisplay | EUseBadEndpoint, EGL_BAD_DISPLAY }, sl@0: // And bad endpoint on it's own, should give bad-endpoint. sl@0: { EDestroyEndpointCase, EUseBadEndpoint, EGL_BAD_ENDPOINT_NOK }, sl@0: { ETerminateCase, 0, EGL_SUCCESS }, sl@0: { EFinishedCase } sl@0: }, sl@0: }, sl@0: }; sl@0: sl@0: static const TTestCase KDestroyNegativeCases[] = sl@0: { sl@0: { sl@0: TESTIDS("550B"), sl@0: CASETITLE("Functional: Negative: eglDestroyEndpointNOK with Bad parameters: check that destroying the endpoint twice gives correct error"), 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: { EDestroyEndpointCase, 0, EGL_SUCCESS }, sl@0: { EDestroyEndpointCase, EExpectError, EGL_BAD_ENDPOINT_NOK }, sl@0: { ETerminateCase, 0, EGL_SUCCESS }, sl@0: { EFinishedCase } sl@0: }, sl@0: }, sl@0: }; sl@0: sl@0: sl@0: static const TTestCase KDestroyEndpointClosesAllReferences[] = sl@0: { sl@0: { sl@0: TESTIDS("564A"), sl@0: CASETITLE("Functional: General: eglDestroyEndpoint closes all references: try to begin streaming after destroy endpoint"), 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: { EDestroyEndpointCase, 0, EGL_SUCCESS }, sl@0: { EBeginStreamingCase, EExpectError, EGL_BAD_ENDPOINT_NOK }, sl@0: { EAcquireImageCase, EExpectError, EGL_BAD_ENDPOINT_NOK }, sl@0: { ETerminateCase, 0, EGL_SUCCESS }, sl@0: { EFinishedCase } sl@0: }, sl@0: }, sl@0: { sl@0: TESTIDS("564B"), sl@0: CASETITLE("Functional: General: eglDestroyEndpoint closes all references: try to create vg image from egl image after destroy endpoint"), 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: { ECompareImageCase, 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: static const TTestCases KTestCases[] = sl@0: { sl@0: TestCase(KCreatePositiveCases), sl@0: TestCase(KCreateBadParameterCases), sl@0: TestCase(KCreateNegativeCases), sl@0: // Note: No positive tests for destroy - that is already done as part of sl@0: // the positive create tests. sl@0: TestCase(KDestroyBadParameterCases), sl@0: TestCase(KDestroyNegativeCases), sl@0: TestCase(KDestroyEndpointClosesAllReferences), sl@0: }; sl@0: sl@0: const TInt KNumberTestCases = sizeof(KTestCases) / sizeof(KTestCases[0]); sl@0: sl@0: CEglTest_LocalTestStep_EndpointCreate::CEglTest_LocalTestStep_EndpointCreate(): sl@0: CEgltest_Local_Engine(KTestCases, KNumberTestCases) sl@0: { sl@0: }