os/graphics/egl/egltest/endpointtestsuite/automated/tsrc/egltest_threadedstress_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
sl@0
    26
#include "egltest_threadedstress.h"
sl@0
    27
sl@0
    28
sl@0
    29
/**
sl@0
    30
@SYMTestCaseID GRAPHICS-EGL-0594
sl@0
    31
sl@0
    32
@SYMTestPriority 2
sl@0
    33
sl@0
    34
@SYMPREQ 2670
sl@0
    35
sl@0
    36
@SYMREQ
sl@0
    37
sl@0
    38
@SYMTestCaseDesc
sl@0
    39
To ensure thread safety of endpoint implementation
sl@0
    40
sl@0
    41
@SYMTestActions
sl@0
    42
Create 4 set of threads with each performing following steps:
sl@0
    43
1.  Repeat the following steps (2-16) for 60 seconds
sl@0
    44
2.  Create surface
sl@0
    45
3.  Random Delay 
sl@0
    46
4.  Create endpoint. 
sl@0
    47
5.  Random Delay
sl@0
    48
6.  Draw content to surface
sl@0
    49
7.  Random Delay 
sl@0
    50
8.  Submit Update
sl@0
    51
9.  Random Delay 
sl@0
    52
10. Acquire image
sl@0
    53
11. Random Delay
sl@0
    54
12. Compare image with expected value (??)
sl@0
    55
13. Release image
sl@0
    56
14. Random Delay 
sl@0
    57
15. Destroy endpoint
sl@0
    58
16. Destroy Surface
sl@0
    59
sl@0
    60
@SYMTestExpectedResults
sl@0
    61
The test runs to completion.
sl@0
    62
*/
sl@0
    63
sl@0
    64
sl@0
    65
CEglTest_LocalTestStep_EndpointCrazyThreading::CEglTest_LocalTestStep_EndpointCrazyThreading() :
sl@0
    66
    CLocalTestStepBase(ETestUidEndpointThreadStress)
sl@0
    67
    {
sl@0
    68
    }
sl@0
    69
sl@0
    70
sl@0
    71
CEglTest_LocalTestStep_EndpointCrazyThreading::~CEglTest_LocalTestStep_EndpointCrazyThreading()
sl@0
    72
    {
sl@0
    73
    }
sl@0
    74
sl@0
    75
sl@0
    76
void CEglTest_LocalTestStep_EndpointCrazyThreading::DoPreambleL()
sl@0
    77
    {
sl@0
    78
    //Register the test id.
sl@0
    79
    _LIT(KTestId, "594");
sl@0
    80
    RegisterTestIdsL(KTestId);
sl@0
    81
    SetCurrentTestIds(KTestId);
sl@0
    82
    }
sl@0
    83
sl@0
    84
sl@0
    85
void CEglTest_LocalTestStep_EndpointCrazyThreading::DoPostambleL()
sl@0
    86
    {
sl@0
    87
    }
sl@0
    88
sl@0
    89
sl@0
    90
TVerdict CEglTest_LocalTestStep_EndpointCrazyThreading::doTestStepL()
sl@0
    91
    {
sl@0
    92
    StartRemoteTestStep(TRemoteTestParams());
sl@0
    93
    RunRemoteTestCase(0, TRemoteTestParams());
sl@0
    94
    EndRemoteTestStep(TRemoteTestParams());
sl@0
    95
    return TestStepResult();
sl@0
    96
    }
sl@0
    97
sl@0
    98
sl@0
    99
/**
sl@0
   100
@SYMTestCaseID GRAPHICS-EGL-0601
sl@0
   101
sl@0
   102
@SYMTestPriority 2
sl@0
   103
sl@0
   104
@SYMPREQ 2670
sl@0
   105
sl@0
   106
@SYMREQ
sl@0
   107
sl@0
   108
@SYMTestCaseDesc
sl@0
   109
To ensure endpoint operations can succeed in low memory condition.
sl@0
   110
sl@0
   111
@SYMTestActions
sl@0
   112
Use Method B.
sl@0
   113
1.  Thread 1: 
sl@0
   114
1.1.    Create a heap that can expand to maximum available system memory size
sl@0
   115
1.2.    Allocate random sizes of memory on that system heap until failure occurs, recording and counting as N.
sl@0
   116
1.3.    Delay
sl@0
   117
1.4.     De-allocate last N/4 allocations. 
sl@0
   118
1.5.     Delay
sl@0
   119
1.6.     Go to 1.2
sl@0
   120
2.  Thread 2: 
sl@0
   121
2.1.    Create surface 100x100
sl@0
   122
2.2.    Draw content to surface
sl@0
   123
2.3.    Submit Update
sl@0
   124
2.4.    Create endpoint. 
sl@0
   125
2.5.    Acquire image
sl@0
   126
2.6.    Verify image content with pixel sample
sl@0
   127
2.7.    Release image
sl@0
   128
2.8.    Destroy endpoint
sl@0
   129
2.9.    Destroy Surface
sl@0
   130
3.  Repeat Step 2 1000 times.   After every 200 iterations check memory usage as described in 7.3.1.
sl@0
   131
4.  Destroy thread 2 and 1.
sl@0
   132
sl@0
   133
@SYMTestExpectedResults
sl@0
   134
The test runs to completion.
sl@0
   135
*/
sl@0
   136
sl@0
   137
sl@0
   138
CEglTest_LocalTestStep_EndpointOutOfHeapMemory::CEglTest_LocalTestStep_EndpointOutOfHeapMemory() :
sl@0
   139
    CLocalTestStepBase(ETestUidEndpointThreadStress)
sl@0
   140
    {
sl@0
   141
    }
sl@0
   142
sl@0
   143
sl@0
   144
CEglTest_LocalTestStep_EndpointOutOfHeapMemory::~CEglTest_LocalTestStep_EndpointOutOfHeapMemory()
sl@0
   145
    {
sl@0
   146
    }
sl@0
   147
sl@0
   148
sl@0
   149
void CEglTest_LocalTestStep_EndpointOutOfHeapMemory::DoPreambleL()
sl@0
   150
    {
sl@0
   151
    //Register the test id.
sl@0
   152
    _LIT(KTestId, "601, 625");
sl@0
   153
    RegisterTestIdsL(KTestId);
sl@0
   154
    SetCurrentTestIds(KTestId);
sl@0
   155
    }
sl@0
   156
sl@0
   157
sl@0
   158
void CEglTest_LocalTestStep_EndpointOutOfHeapMemory::DoPostambleL()
sl@0
   159
    {
sl@0
   160
    }
sl@0
   161
sl@0
   162
sl@0
   163
TVerdict CEglTest_LocalTestStep_EndpointOutOfHeapMemory::doTestStepL()
sl@0
   164
    {
sl@0
   165
    TRemoteTestParams params;
sl@0
   166
    StartRemoteTestStep(TRemoteTestParams());
sl@0
   167
    
sl@0
   168
    INFO_PRINTF1(_L("Performing out of heap memory test with 1 exercise thread..."));
sl@0
   169
    params.iEndpointThreadStress.iNumThreads = 1;
sl@0
   170
    TVerdict ret = RunRemoteTestCase(1, params);
sl@0
   171
    if(ret == EPass)
sl@0
   172
        {
sl@0
   173
        INFO_PRINTF1(_L("...done."));
sl@0
   174
        }
sl@0
   175
    else
sl@0
   176
        {
sl@0
   177
        ERR_PRINTF1(_L("...Failed, skipping rest of test step."));
sl@0
   178
        return ret;
sl@0
   179
        }
sl@0
   180
    
sl@0
   181
    INFO_PRINTF1(_L("Performing out of heap memory test with 10 exercise threads..."));
sl@0
   182
        params.iEndpointThreadStress.iNumThreads = 10;
sl@0
   183
        ret = RunRemoteTestCase(1, params);
sl@0
   184
        if(ret == EPass)
sl@0
   185
            {
sl@0
   186
            INFO_PRINTF1(_L("...done."));
sl@0
   187
            }
sl@0
   188
        else
sl@0
   189
            {
sl@0
   190
            ERR_PRINTF1(_L("...Failed, skipping rest of test step."));
sl@0
   191
            return ret;
sl@0
   192
            }
sl@0
   193
        
sl@0
   194
    EndRemoteTestStep(TRemoteTestParams());
sl@0
   195
    return TestStepResult();
sl@0
   196
    }