os/graphics/egl/egltest/endpointtestsuite/automated/tsrc/egltest_endpointlocking_local.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 /*
     2 * Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
     3 * All rights reserved.
     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".
     8 *
     9 * Initial Contributors:
    10 * Nokia Corporation - initial contribution.
    11 *
    12 * Contributors:
    13 *
    14 * Description:
    15 *
    16 */
    17 
    18 
    19 /**
    20  @file
    21  @test
    22  @internalComponent - Internal Symbian test code
    23 */
    24 
    25 #include "egltest_endpointlocking.h"
    26 
    27 /**
    28 @SYMTestCaseID GRAPHICS-EGL-057x
    29 
    30 @SYMTestPriority 2
    31 
    32 @SYMPREQ 2670
    33 
    34 @SYMREQ
    35 
    36 @SYMTestCaseDesc
    37 Testing if the implementation exhibits correct locking behaviour in multiple buffer surface cases.
    38 
    39 @SYMTestActions
    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
    44         attribute set
    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
    47         is expected.
    48     *   Log any failures
    49 If the procedure was successful release all the resources and check the heap for memory leaks.
    50 No memory or handle leaks.
    51 
    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.
    58 */
    59 
    60 static const TTestCase KLockingMultibufferCases[] =
    61 {
    62     {
    63         TESTIDS("611"),
    64         CASETITLE("Functional Locking: Update Server Notifications with acquire and release"),
    65         SurfaceTypes1(ESurfTypeRaw),
    66         {
    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 },
    80         { EFinishedCase }
    81         },
    82     },
    83     {
    84         TESTIDS("577"),
    85         CASETITLE("Functional Locking: Multiple Buffer: DestroyEndpoint results in EndStreaming if in streaming mode."),
    86         SurfaceTypes1(ESurfTypeRaw),
    87         {
    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 },
   100         { EFinishedCase }
   101         },
   102     },
   103     {
   104         TESTIDS("578"),
   105         CASETITLE("Functional Locking: Multiple Buffers: Destroy Endpoint results in ReleaseImage"),
   106         SurfaceTypes1(ESurfTypeRaw),
   107         {
   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 },
   119         { EFinishedCase }
   120         },
   121     },
   122 };
   123 
   124 
   125 static const TTestCases KTestCases[] =
   126 {
   127     TestCase(KLockingMultibufferCases),
   128 };
   129 
   130 const TInt KNumberTestCases = sizeof(KTestCases) / sizeof(KTestCases[0]);
   131 
   132 CEglTest_LocalTestStep_EndpointLocking::CEglTest_LocalTestStep_EndpointLocking():
   133     CEgltest_Local_Engine(KTestCases, KNumberTestCases)
   134     {
   135     }