sl@0
|
1 |
// Copyright (c) 2007-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 |
#if !defined(__TSURFACEMANAGERMULTITHREAD_H__)
|
sl@0
|
23 |
#define __TSURFACEMANAGERMULTITHREAD_H__
|
sl@0
|
24 |
|
sl@0
|
25 |
#include <test/tgraphicsharness.h>
|
sl@0
|
26 |
#include <graphics/surface.h>
|
sl@0
|
27 |
#include <graphics/surfacemanager.h>
|
sl@0
|
28 |
#include "tsmgmultprocessshared.h"
|
sl@0
|
29 |
|
sl@0
|
30 |
/**
|
sl@0
|
31 |
Enums for passing between the multi-threads within the testing process,
|
sl@0
|
32 |
used to define which tests should be run on the sides of other threads.
|
sl@0
|
33 |
*/
|
sl@0
|
34 |
enum TThreadTestCase
|
sl@0
|
35 |
{
|
sl@0
|
36 |
ECreateSurfaceMapInfo,
|
sl@0
|
37 |
ECreateSurfaceClose,
|
sl@0
|
38 |
EOpenCloseSurface,
|
sl@0
|
39 |
EOpenKillSurface,
|
sl@0
|
40 |
ECreateKillSurface,
|
sl@0
|
41 |
EOpenCloseSurfaceMultiThread,
|
sl@0
|
42 |
EOpenMapSurfaceInfoMultiThread,
|
sl@0
|
43 |
EMapSurfaceInfo,
|
sl@0
|
44 |
ECloseSurfaces,
|
sl@0
|
45 |
EOpenCloseMapSurfaceInfoMultiThread,
|
sl@0
|
46 |
EOpenCloseOpenMultiThread,
|
sl@0
|
47 |
ECloseBothSurfaces,
|
sl@0
|
48 |
ENoTestCase
|
sl@0
|
49 |
};
|
sl@0
|
50 |
|
sl@0
|
51 |
/**
|
sl@0
|
52 |
Enums for single test results e.g. OpenSurface
|
sl@0
|
53 |
*/
|
sl@0
|
54 |
enum TSingleTestResult
|
sl@0
|
55 |
{
|
sl@0
|
56 |
EAllZero = 0x00000000,
|
sl@0
|
57 |
EOpenSurfaceTestPassed = 0x00000001,
|
sl@0
|
58 |
ECloseSurfaceTestPassed = 0x00000010,
|
sl@0
|
59 |
EMapSurfaceTestPassed = 0x00000100,
|
sl@0
|
60 |
ESurfaceInfoTestPassed = 0x00001000,
|
sl@0
|
61 |
ESurfaceInfoTestPassed2 = 0x00004000,
|
sl@0
|
62 |
ECreateSurfaceTestPassed = 0x00010000,
|
sl@0
|
63 |
EOpenSurfaceTestFailed = 0x00000002,
|
sl@0
|
64 |
ECloseSurfaceTestFailed = 0x00000020,
|
sl@0
|
65 |
EMapSurfaceTestFailed = 0x00000200,
|
sl@0
|
66 |
ESurfaceInfoTestFailed = 0x00002000,
|
sl@0
|
67 |
ESurfaceInfoTestFailed2 = 0x00008000,
|
sl@0
|
68 |
ECreateSurfaceTestFailed = 0x00020000,
|
sl@0
|
69 |
};
|
sl@0
|
70 |
|
sl@0
|
71 |
_LIT(KTSurfaceManagerMultiThreadStep,"TSurfaceManagerMultiThread");
|
sl@0
|
72 |
|
sl@0
|
73 |
|
sl@0
|
74 |
/**
|
sl@0
|
75 |
A class to wrap up the execution in the other threads
|
sl@0
|
76 |
*/
|
sl@0
|
77 |
class CChildThreadWrapper : public CBase
|
sl@0
|
78 |
{
|
sl@0
|
79 |
public:
|
sl@0
|
80 |
CChildThreadWrapper(TAny* aInfo);
|
sl@0
|
81 |
CChildThreadWrapper();
|
sl@0
|
82 |
~CChildThreadWrapper();
|
sl@0
|
83 |
void CreateSurfaceThread();
|
sl@0
|
84 |
void MapSurfaceInfo();
|
sl@0
|
85 |
void CloseSurface();
|
sl@0
|
86 |
void OpenSurface();
|
sl@0
|
87 |
void CloseBothSurfaces();
|
sl@0
|
88 |
public:
|
sl@0
|
89 |
RSurfaceManager& iSurfaceManager;
|
sl@0
|
90 |
TSurfaceId& iSurfaceId;
|
sl@0
|
91 |
TSurfaceId iSurfaceIdNew;
|
sl@0
|
92 |
TThreadTestCase iThreadTestCase;
|
sl@0
|
93 |
};
|
sl@0
|
94 |
class CTSurfaceManagerMultiThread : public CTGraphicsBase
|
sl@0
|
95 |
{
|
sl@0
|
96 |
public:
|
sl@0
|
97 |
CTSurfaceManagerMultiThread(CTestStep* aStep);
|
sl@0
|
98 |
~CTSurfaceManagerMultiThread();
|
sl@0
|
99 |
|
sl@0
|
100 |
friend class CChildThreadWrapper;
|
sl@0
|
101 |
protected:
|
sl@0
|
102 |
//from CTGraphicsStep
|
sl@0
|
103 |
virtual void RunTestCaseL(TInt aCurTestCase);
|
sl@0
|
104 |
private:
|
sl@0
|
105 |
void TestAccessSurfaceWithoutOpeningL();
|
sl@0
|
106 |
void TestCloseSurfaceWithoutOpeningL();
|
sl@0
|
107 |
void TestAccessSurfaceClosedThreadL();
|
sl@0
|
108 |
void TestCloseSurfaceClosedThreadL();
|
sl@0
|
109 |
void TestAccessSurfaceOpenedClosedThreadL();
|
sl@0
|
110 |
void TestCloseSurfaceOpenedClosedThreadL();
|
sl@0
|
111 |
void TestAccessSurfaceOpenedKilledThreadL();
|
sl@0
|
112 |
void TestCloseSurfaceOpenedKilledThreadL();
|
sl@0
|
113 |
void TestAccessSurfaceCreateKilledThreadL();
|
sl@0
|
114 |
void TestCloseSurfaceCreateKilledThreadL();
|
sl@0
|
115 |
void TestAccessSurfaceThreeThreadsL();
|
sl@0
|
116 |
void TestAccessSurfaceDieCloseOtherThreadsL();
|
sl@0
|
117 |
void TestOpenSurfaceDieCloseOtherThreadsL();
|
sl@0
|
118 |
void TestAccessSurfaceInExistingSharedChunkL();
|
sl@0
|
119 |
void TestCloseSurfaceExistingSharedChunkL();
|
sl@0
|
120 |
|
sl@0
|
121 |
static void CloseSurfaceWhenLeave(TAny* aSurfaceId) ;
|
sl@0
|
122 |
public:
|
sl@0
|
123 |
/**
|
sl@0
|
124 |
Information to be passed into the rendering threads
|
sl@0
|
125 |
*/
|
sl@0
|
126 |
struct TInfo
|
sl@0
|
127 |
{
|
sl@0
|
128 |
RSurfaceManager iSurfaceManager;
|
sl@0
|
129 |
TSurfaceId iSurfaceId;
|
sl@0
|
130 |
TSurfaceId iSurfaceIdNew;
|
sl@0
|
131 |
TThreadTestCase iThreadTestCase;
|
sl@0
|
132 |
};
|
sl@0
|
133 |
|
sl@0
|
134 |
static TInt ThreadSecondStart(TAny* aInfo);
|
sl@0
|
135 |
static TInt ThreadThirdStart(TAny* aInfo);
|
sl@0
|
136 |
|
sl@0
|
137 |
private:
|
sl@0
|
138 |
RSurfaceManager iSurfaceManager;
|
sl@0
|
139 |
TSurfaceId iSurfaceId;
|
sl@0
|
140 |
TSurfaceId iSurfaceIdNew;
|
sl@0
|
141 |
TInfo iInfo;
|
sl@0
|
142 |
TInfo iInfo2;
|
sl@0
|
143 |
|
sl@0
|
144 |
};
|
sl@0
|
145 |
|
sl@0
|
146 |
|
sl@0
|
147 |
class CTSurfaceManagerMultiThreadStep : public CTGraphicsStep
|
sl@0
|
148 |
{
|
sl@0
|
149 |
public:
|
sl@0
|
150 |
CTSurfaceManagerMultiThreadStep();
|
sl@0
|
151 |
protected:
|
sl@0
|
152 |
//from CTGraphicsStep
|
sl@0
|
153 |
virtual CTGraphicsBase* CreateTestL();
|
sl@0
|
154 |
virtual void TestSetupL();
|
sl@0
|
155 |
virtual void TestClose();
|
sl@0
|
156 |
};
|
sl@0
|
157 |
|
sl@0
|
158 |
|
sl@0
|
159 |
_LIT(KMultiThreadSemaphore, "Multi Thread Semaphore");
|
sl@0
|
160 |
_LIT(KMainThreadSemaphore, "Main Thread Semaphore");
|
sl@0
|
161 |
|
sl@0
|
162 |
#endif
|