os/graphics/windowing/windowserver/test/tauto/twindowsizecache.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 1996-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
//
sl@0
    15
sl@0
    16
/**
sl@0
    17
 @file
sl@0
    18
 @test
sl@0
    19
 @internalComponent - Internal Symbian test code
sl@0
    20
*/
sl@0
    21
sl@0
    22
#ifndef __TWINDOWSIZECACHE_H__
sl@0
    23
#define __TWINDOWSIZECACHE_H__
sl@0
    24
sl@0
    25
#include <e32std.h>
sl@0
    26
#include <w32std.h>
sl@0
    27
#include "AUTO.H"
sl@0
    28
sl@0
    29
#include "../nga/CLIENT/w32comm.h"
sl@0
    30
sl@0
    31
#include "../tlib/testbase.h"
sl@0
    32
#include "TGraphicsHarness.h"
sl@0
    33
sl@0
    34
//-----------------------------------------------------------
sl@0
    35
class CTWindowSizeCacheTest : public CTWsGraphicsBase
sl@0
    36
    {
sl@0
    37
public:
sl@0
    38
    enum TSizeCacheStatus
sl@0
    39
        {
sl@0
    40
        ETestSizeCacheNotEnabled,
sl@0
    41
        ETestSizeCacheEnabled,
sl@0
    42
        };
sl@0
    43
    enum TRWindowAction
sl@0
    44
        {
sl@0
    45
        ESetExtent,
sl@0
    46
        ESetExtentErr,
sl@0
    47
        ESetSize,
sl@0
    48
        ESetSizeErr,
sl@0
    49
        ECheckSize,
sl@0
    50
        EFlushSession,
sl@0
    51
        EEnableWindowSizeCache,
sl@0
    52
        EMaxAction,
sl@0
    53
        };
sl@0
    54
public:
sl@0
    55
    CTWindowSizeCacheTest(CTestStep* aStep);
sl@0
    56
    ~CTWindowSizeCacheTest();
sl@0
    57
    TestState DoTestL();
sl@0
    58
    void ConstructL();
sl@0
    59
//    
sl@0
    60
    void TestCreateRWindowL(TSizeCacheStatus aEnableWindowSizeCache);
sl@0
    61
    void TestCreateRBlankWindowL(TSizeCacheStatus aEnableWindowSizeCache);
sl@0
    62
    void TestCreateRBackedUpWindowL(TSizeCacheStatus aEnableWindowSizeCache, TDisplayMode aDisplayMode);
sl@0
    63
//    
sl@0
    64
    void TestRWindowNoCacheEntryL(TSizeCacheStatus aEnableWindowSizeCache);
sl@0
    65
    void TestRWindowNoCacheEntrySetExtentErrL(TSizeCacheStatus aEnableWindowSizeCache);
sl@0
    66
    void TestRWindowNoCacheEntrySetSizeErrL(TSizeCacheStatus aEnableWindowSizeCache);
sl@0
    67
    void TestRWindowNoCacheEntrySetExtentL(TSizeCacheStatus aEnableWindowSizeCache);
sl@0
    68
    void TestRWindowNoCacheEntrySetSizeL(TSizeCacheStatus aEnableWindowSizeCache);
sl@0
    69
    void TestRWindowNoCacheEntryEnableWindowSizeCacheL();
sl@0
    70
//
sl@0
    71
    void TestRWindowCacheEntryExistsCacheCleanL(TSizeCacheStatus aEnableWindowSizeCache);
sl@0
    72
    void TestRWindowCacheEntryExistsCacheCleanSizeL(TSizeCacheStatus aEnableWindowSizeCache);
sl@0
    73
    void TestRWindowCacheEntryExistsCacheCleanEnableWindowSizeCacheL();
sl@0
    74
    void TestRWindowCacheEntryExistsCacheCleanEnableWindowSizeCacheLSizeL();
sl@0
    75
//
sl@0
    76
    void TestRWindowCacheEntryExistsCacheDirtySetSizeL(TSizeCacheStatus aEnableWindowSizeCache);
sl@0
    77
    void TestRWindowCacheEntryExistsCacheDirtySetExtentL(TSizeCacheStatus aEnableWindowSizeCache);
sl@0
    78
    void TestRWindowCacheEntryExistsCacheDirtySetSizeErrL(TSizeCacheStatus aEnableWindowSizeCache);
sl@0
    79
    void TestRWindowCacheEntryExistsCacheDirtySetExtentErrL(TSizeCacheStatus aEnableWindowSizeCache);
sl@0
    80
    void TestRWindowCacheEntryExistsCacheDirtySetSizeTwiceL(TSizeCacheStatus aEnableWindowSizeCache);
sl@0
    81
    void TestRWindowCacheEntryExistsCacheDirtySetSizeSetExtentL(TSizeCacheStatus aEnableWindowSizeCache);
sl@0
    82
    void TestRWindowCacheEntryExistsCacheDirtySetSizeSetSizeErrL(TSizeCacheStatus aEnableWindowSizeCache);
sl@0
    83
    void TestRWindowCacheEntryExistsCacheDirtySetSizeSetExtentErrL(TSizeCacheStatus aEnableWindowSizeCache);
sl@0
    84
    void TestRWindowCacheEntryExistsCacheDirtySetSizeEnableWindowSizeCacheL();
sl@0
    85
//    
sl@0
    86
    void TestRWindowCacheEntryExistsCacheDirtyToCleanSetSizeL(TSizeCacheStatus aEnableWindowSizeCache);
sl@0
    87
    void TestRWindowCacheEntryExistsCacheDirtyToCleanSetExtentL(TSizeCacheStatus aEnableWindowSizeCache);
sl@0
    88
    void TestRWindowCacheEntryExistsCacheDirtyToCleanSetSizeErrL(TSizeCacheStatus aEnableWindowSizeCache);
sl@0
    89
    void TestRWindowCacheEntryExistsCacheDirtyToCleanSetExtentErrL(TSizeCacheStatus aEnableWindowSizeCache);
sl@0
    90
    void TestRWindowCacheEntryExistsCacheDirtyToCleanSetSizeTwiceL(TSizeCacheStatus aEnableWindowSizeCache);
sl@0
    91
    void TestRWindowCacheEntryExistsCacheDirtyToCleanSetSizeSetExtentL(TSizeCacheStatus aEnableWindowSizeCache);
sl@0
    92
    void TestRWindowCacheEntryExistsCacheDirtyToCleanSetSizeSetSizeErrL(TSizeCacheStatus aEnableWindowSizeCache);
sl@0
    93
    void TestRWindowCacheEntryExistsCacheDirtyToCleanSetSizeSetExtentErrL(TSizeCacheStatus aEnableWindowSizeCache);
sl@0
    94
    void TestRWindowCacheEntryExistsCacheDirtyToCleanSetSizeEnableWindowSizeCacheL();
sl@0
    95
//
sl@0
    96
    void TestRBlankWindowSetSizeSetExtentL(TSizeCacheStatus aEnableWindowSizeCache);
sl@0
    97
    void TestRBackedUpWindowSetSizeErrSetExtentErrL(TSizeCacheStatus aEnableWindowSizeCache);
sl@0
    98
//    
sl@0
    99
    void SetRandomSeed(TInt64 aSeed);
sl@0
   100
    inline TInt NextRandom(TUint aMax = 0);
sl@0
   101
//    
sl@0
   102
    TUint64 TestRWindowSizePerformanceL(TSizeCacheStatus aEnableWindowSizeCache, TUint aIterations);
sl@0
   103
//    
sl@0
   104
    static void CleanupWindowPool(TAny* aPtr);
sl@0
   105
    void RWindowPerformAction(TRWindowAction aAction, TSizeCacheStatus aEnableWindowSizeCache, RWsSession& aWs, RWindow& aWindow, TSize& aExpectedSize);
sl@0
   106
    void TestRandomisedStressL(TSizeCacheStatus aEnableWindowSizeCache, TUint aIterations);
sl@0
   107
    void TestRandomisedStressMultiSessionL(TSizeCacheStatus aEnableWindowSizeCache, TUint aIterations);
sl@0
   108
    void TestRandomisedStressCacheEntryVolumeL(TSizeCacheStatus aEnableWindowSizeCache, TUint aIterations, TUint aWindowPoolSize);
sl@0
   109
    void TestStressEnableWindowSizeCacheL(TUint aIterations);
sl@0
   110
    
sl@0
   111
protected:
sl@0
   112
//from  CTGraphicsStep
sl@0
   113
    virtual void RunTestCaseL(TInt aCurTestCase);
sl@0
   114
    
sl@0
   115
private:
sl@0
   116
    TInt64 iSeed;
sl@0
   117
    };
sl@0
   118
sl@0
   119
//-----------------------------------------------------------
sl@0
   120
inline TInt CTWindowSizeCacheTest::NextRandom(TUint aMax)
sl@0
   121
    {
sl@0
   122
    TInt random = Math::Rand(iSeed);
sl@0
   123
    if (aMax != 0)
sl@0
   124
        {
sl@0
   125
        random = random % aMax;
sl@0
   126
        }
sl@0
   127
    return random;
sl@0
   128
    }
sl@0
   129
sl@0
   130
//-----------------------------------------------------------
sl@0
   131
class CTWindowSizeCacheTestStep : public CTGraphicsStep
sl@0
   132
    {
sl@0
   133
public:
sl@0
   134
    CTWindowSizeCacheTestStep();
sl@0
   135
protected:
sl@0
   136
    //from CTGraphicsStep
sl@0
   137
    virtual CTGraphicsBase* CreateTestL();
sl@0
   138
    };
sl@0
   139
sl@0
   140
_LIT(KTWindowSizeCacheTestStep,"TWindowSizeCacheTest");
sl@0
   141
sl@0
   142
//-----------------------------------------------------------
sl@0
   143
#endif // TWINDOWSIZECACHE