Update contrib.
1 // Copyright (c) 1996-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
19 @internalComponent - Internal Symbian test code
22 #ifndef __TWINDOWSIZECACHE_H__
23 #define __TWINDOWSIZECACHE_H__
29 #include "../nga/CLIENT/w32comm.h"
31 #include "../tlib/testbase.h"
32 #include "TGraphicsHarness.h"
34 //-----------------------------------------------------------
35 class CTWindowSizeCacheTest : public CTWsGraphicsBase
40 ETestSizeCacheNotEnabled,
41 ETestSizeCacheEnabled,
51 EEnableWindowSizeCache,
55 CTWindowSizeCacheTest(CTestStep* aStep);
56 ~CTWindowSizeCacheTest();
60 void TestCreateRWindowL(TSizeCacheStatus aEnableWindowSizeCache);
61 void TestCreateRBlankWindowL(TSizeCacheStatus aEnableWindowSizeCache);
62 void TestCreateRBackedUpWindowL(TSizeCacheStatus aEnableWindowSizeCache, TDisplayMode aDisplayMode);
64 void TestRWindowNoCacheEntryL(TSizeCacheStatus aEnableWindowSizeCache);
65 void TestRWindowNoCacheEntrySetExtentErrL(TSizeCacheStatus aEnableWindowSizeCache);
66 void TestRWindowNoCacheEntrySetSizeErrL(TSizeCacheStatus aEnableWindowSizeCache);
67 void TestRWindowNoCacheEntrySetExtentL(TSizeCacheStatus aEnableWindowSizeCache);
68 void TestRWindowNoCacheEntrySetSizeL(TSizeCacheStatus aEnableWindowSizeCache);
69 void TestRWindowNoCacheEntryEnableWindowSizeCacheL();
71 void TestRWindowCacheEntryExistsCacheCleanL(TSizeCacheStatus aEnableWindowSizeCache);
72 void TestRWindowCacheEntryExistsCacheCleanSizeL(TSizeCacheStatus aEnableWindowSizeCache);
73 void TestRWindowCacheEntryExistsCacheCleanEnableWindowSizeCacheL();
74 void TestRWindowCacheEntryExistsCacheCleanEnableWindowSizeCacheLSizeL();
76 void TestRWindowCacheEntryExistsCacheDirtySetSizeL(TSizeCacheStatus aEnableWindowSizeCache);
77 void TestRWindowCacheEntryExistsCacheDirtySetExtentL(TSizeCacheStatus aEnableWindowSizeCache);
78 void TestRWindowCacheEntryExistsCacheDirtySetSizeErrL(TSizeCacheStatus aEnableWindowSizeCache);
79 void TestRWindowCacheEntryExistsCacheDirtySetExtentErrL(TSizeCacheStatus aEnableWindowSizeCache);
80 void TestRWindowCacheEntryExistsCacheDirtySetSizeTwiceL(TSizeCacheStatus aEnableWindowSizeCache);
81 void TestRWindowCacheEntryExistsCacheDirtySetSizeSetExtentL(TSizeCacheStatus aEnableWindowSizeCache);
82 void TestRWindowCacheEntryExistsCacheDirtySetSizeSetSizeErrL(TSizeCacheStatus aEnableWindowSizeCache);
83 void TestRWindowCacheEntryExistsCacheDirtySetSizeSetExtentErrL(TSizeCacheStatus aEnableWindowSizeCache);
84 void TestRWindowCacheEntryExistsCacheDirtySetSizeEnableWindowSizeCacheL();
86 void TestRWindowCacheEntryExistsCacheDirtyToCleanSetSizeL(TSizeCacheStatus aEnableWindowSizeCache);
87 void TestRWindowCacheEntryExistsCacheDirtyToCleanSetExtentL(TSizeCacheStatus aEnableWindowSizeCache);
88 void TestRWindowCacheEntryExistsCacheDirtyToCleanSetSizeErrL(TSizeCacheStatus aEnableWindowSizeCache);
89 void TestRWindowCacheEntryExistsCacheDirtyToCleanSetExtentErrL(TSizeCacheStatus aEnableWindowSizeCache);
90 void TestRWindowCacheEntryExistsCacheDirtyToCleanSetSizeTwiceL(TSizeCacheStatus aEnableWindowSizeCache);
91 void TestRWindowCacheEntryExistsCacheDirtyToCleanSetSizeSetExtentL(TSizeCacheStatus aEnableWindowSizeCache);
92 void TestRWindowCacheEntryExistsCacheDirtyToCleanSetSizeSetSizeErrL(TSizeCacheStatus aEnableWindowSizeCache);
93 void TestRWindowCacheEntryExistsCacheDirtyToCleanSetSizeSetExtentErrL(TSizeCacheStatus aEnableWindowSizeCache);
94 void TestRWindowCacheEntryExistsCacheDirtyToCleanSetSizeEnableWindowSizeCacheL();
96 void TestRBlankWindowSetSizeSetExtentL(TSizeCacheStatus aEnableWindowSizeCache);
97 void TestRBackedUpWindowSetSizeErrSetExtentErrL(TSizeCacheStatus aEnableWindowSizeCache);
99 void SetRandomSeed(TInt64 aSeed);
100 inline TInt NextRandom(TUint aMax = 0);
102 TUint64 TestRWindowSizePerformanceL(TSizeCacheStatus aEnableWindowSizeCache, TUint aIterations);
104 static void CleanupWindowPool(TAny* aPtr);
105 void RWindowPerformAction(TRWindowAction aAction, TSizeCacheStatus aEnableWindowSizeCache, RWsSession& aWs, RWindow& aWindow, TSize& aExpectedSize);
106 void TestRandomisedStressL(TSizeCacheStatus aEnableWindowSizeCache, TUint aIterations);
107 void TestRandomisedStressMultiSessionL(TSizeCacheStatus aEnableWindowSizeCache, TUint aIterations);
108 void TestRandomisedStressCacheEntryVolumeL(TSizeCacheStatus aEnableWindowSizeCache, TUint aIterations, TUint aWindowPoolSize);
109 void TestStressEnableWindowSizeCacheL(TUint aIterations);
112 //from CTGraphicsStep
113 virtual void RunTestCaseL(TInt aCurTestCase);
119 //-----------------------------------------------------------
120 inline TInt CTWindowSizeCacheTest::NextRandom(TUint aMax)
122 TInt random = Math::Rand(iSeed);
125 random = random % aMax;
130 //-----------------------------------------------------------
131 class CTWindowSizeCacheTestStep : public CTGraphicsStep
134 CTWindowSizeCacheTestStep();
136 //from CTGraphicsStep
137 virtual CTGraphicsBase* CreateTestL();
140 _LIT(KTWindowSizeCacheTestStep,"TWindowSizeCacheTest");
142 //-----------------------------------------------------------
143 #endif // TWINDOWSIZECACHE