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.
sl@0
     1
/*
sl@0
     2
* Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     3
* All rights reserved.
sl@0
     4
* This component and the accompanying materials are made available
sl@0
     5
* under the terms of "Eclipse Public License v1.0"
sl@0
     6
* which accompanies this distribution, and is available
sl@0
     7
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     8
*
sl@0
     9
* Initial Contributors:
sl@0
    10
* Nokia Corporation - initial contribution.
sl@0
    11
*
sl@0
    12
* Contributors:
sl@0
    13
*
sl@0
    14
* Description:
sl@0
    15
*
sl@0
    16
*/
sl@0
    17
sl@0
    18
sl@0
    19
/**
sl@0
    20
 @file
sl@0
    21
 @test
sl@0
    22
 @internalComponent - Internal Symbian test code
sl@0
    23
*/
sl@0
    24
sl@0
    25
#include "egltest_endpointlocking.h"
sl@0
    26
sl@0
    27
/**
sl@0
    28
@SYMTestCaseID GRAPHICS-EGL-057x
sl@0
    29
sl@0
    30
@SYMTestPriority 2
sl@0
    31
sl@0
    32
@SYMPREQ 2670
sl@0
    33
sl@0
    34
@SYMREQ
sl@0
    35
sl@0
    36
@SYMTestCaseDesc
sl@0
    37
Testing if the implementation exhibits correct locking behaviour in multiple buffer surface cases.
sl@0
    38
sl@0
    39
@SYMTestActions
sl@0
    40
Create a number of surfaces
sl@0
    41
For each test case in a loop
sl@0
    42
    *   start the test in the remote windows server side to create endpoints
sl@0
    43
    *   in the client side call a surface update on any surface which should have the ready
sl@0
    44
        attribute set
sl@0
    45
    *   Send commands with parameters to the windows server process test render stage to
sl@0
    46
        begin/end streaming on an end point. These parameters include any error codes which
sl@0
    47
        is expected.
sl@0
    48
    *   Log any failures
sl@0
    49
If the procedure was successful release all the resources and check the heap for memory leaks.
sl@0
    50
No memory or handle leaks.
sl@0
    51
sl@0
    52
@SYMTestExpectedResults
sl@0
    53
If the function fails, the return value is undefined and an error is generated.
sl@0
    54
If endpoint is not a valid EGLEndpointNOK object, the error EGL_BAD_ENDPOINT_NOK is
sl@0
    55
generated for both BeginStreaming and EndStreaming.
sl@0
    56
If there is a timeout expected from a wait function then KErrTimedOut is received instead
sl@0
    57
of a valid notification.
sl@0
    58
*/
sl@0
    59
sl@0
    60
static const TTestCase KLockingMultibufferCases[] =
sl@0
    61
{
sl@0
    62
    {
sl@0
    63
        TESTIDS("611"),
sl@0
    64
        CASETITLE("Functional Locking: Update Server Notifications with acquire and release"),
sl@0
    65
        SurfaceTypes1(ESurfTypeRaw),
sl@0
    66
        {
sl@0
    67
        { EInitializeCase,      0,              EGL_SUCCESS },
sl@0
    68
        { ECreateSurfaceCase,   0,              EGL_SUCCESS, 0, EStandardSurface },
sl@0
    69
        { ECreateEndpointCase,  0,              EGL_SUCCESS },
sl@0
    70
        { EDrawContentCase,     0,              EGL_SUCCESS },
sl@0
    71
        { EContentUpdateCase,   0,              EGL_SUCCESS },
sl@0
    72
        { EBeginStreamingCase,  0,              EGL_SUCCESS },
sl@0
    73
        { ESetAttribCase,       0,              EGL_SUCCESS,  0, 0, EGL_DELAY_NOK, 50000 }, //50ms delay
sl@0
    74
        { ENotifyWhenCase,      0,              KErrNone,     0, ENotifyWhenAvailable },
sl@0
    75
        { EContentUpdateCase,   ENoWait,        EGL_SUCCESS },
sl@0
    76
        { EAcquireImageCase,    0,              EGL_SUCCESS },
sl@0
    77
        { EDestroyEndpointCase, 0,              EGL_SUCCESS },
sl@0
    78
        { EWaitForCase,         0,              KErrNone,     0, ENotifyWhenAvailable, 100000, 50000 }, //100 ms timeout, timestamp not used
sl@0
    79
        { ETerminateCase,       0,              EGL_SUCCESS },
sl@0
    80
        { EFinishedCase }
sl@0
    81
        },
sl@0
    82
    },
sl@0
    83
    {
sl@0
    84
        TESTIDS("577"),
sl@0
    85
        CASETITLE("Functional Locking: Multiple Buffer: DestroyEndpoint results in EndStreaming if in streaming mode."),
sl@0
    86
        SurfaceTypes1(ESurfTypeRaw),
sl@0
    87
        {
sl@0
    88
        { EInitializeCase,      0,              EGL_SUCCESS },
sl@0
    89
        { ECreateSurfaceCase,   0,              EGL_SUCCESS, 0, EStandardSurface },
sl@0
    90
        { ECreateEndpointCase,  0,              EGL_SUCCESS },
sl@0
    91
        { EDrawContentCase,     0,              EGL_SUCCESS },
sl@0
    92
        { EContentUpdateCase,   0,              EGL_SUCCESS },
sl@0
    93
        { EBeginStreamingCase,  0,              EGL_SUCCESS },
sl@0
    94
        { EContentUpdateCase,   ENoWait,        EGL_SUCCESS },
sl@0
    95
        { EAcquireImageCase,    0,              EGL_SUCCESS },
sl@0
    96
        { EDestroyEndpointCase, 0,              EGL_SUCCESS },
sl@0
    97
        { EGetAttribCase,       EExpectError,   EGL_BAD_ENDPOINT_NOK, 0, 0, EGL_ENDPOINT_READY_NOK, EGL_FALSE},
sl@0
    98
        { EEndStreamingCase,    EExpectError,   EGL_BAD_ENDPOINT_NOK },
sl@0
    99
        { ETerminateCase,       0,              EGL_SUCCESS },
sl@0
   100
        { EFinishedCase }
sl@0
   101
        },
sl@0
   102
    },
sl@0
   103
    {
sl@0
   104
        TESTIDS("578"),
sl@0
   105
        CASETITLE("Functional Locking: Multiple Buffers: Destroy Endpoint results in ReleaseImage"),
sl@0
   106
        SurfaceTypes1(ESurfTypeRaw),
sl@0
   107
        {
sl@0
   108
        { EInitializeCase,      0,              EGL_SUCCESS },
sl@0
   109
        { ECreateSurfaceCase,   0,              EGL_SUCCESS, 0, EStandardSurface },
sl@0
   110
        { ECreateEndpointCase,  0,              EGL_SUCCESS },
sl@0
   111
        { EDrawContentCase,     0,              EGL_SUCCESS },
sl@0
   112
        { EContentUpdateCase,   0,              EGL_SUCCESS },
sl@0
   113
        { EBeginStreamingCase,  0,              EGL_SUCCESS },
sl@0
   114
        { EContentUpdateCase,   ENoWait,        EGL_SUCCESS },
sl@0
   115
        { EAcquireImageCase,    0,              EGL_SUCCESS },
sl@0
   116
        { EDestroyEndpointCase, 0,              EGL_SUCCESS },
sl@0
   117
        { ECreateVgImageCase,   EExpectError,   EFalse},
sl@0
   118
        { ETerminateCase,       0,              EGL_SUCCESS },
sl@0
   119
        { EFinishedCase }
sl@0
   120
        },
sl@0
   121
    },
sl@0
   122
};
sl@0
   123
sl@0
   124
sl@0
   125
static const TTestCases KTestCases[] =
sl@0
   126
{
sl@0
   127
    TestCase(KLockingMultibufferCases),
sl@0
   128
};
sl@0
   129
sl@0
   130
const TInt KNumberTestCases = sizeof(KTestCases) / sizeof(KTestCases[0]);
sl@0
   131
sl@0
   132
CEglTest_LocalTestStep_EndpointLocking::CEglTest_LocalTestStep_EndpointLocking():
sl@0
   133
    CEgltest_Local_Engine(KTestCases, KNumberTestCases)
sl@0
   134
    {
sl@0
   135
    }