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 |
#ifndef __TSURFACEMANAGERMULTIPROCESS_H__
|
sl@0
|
23 |
#define __TSURFACEMANAGERMULTIPROCESS_H__
|
sl@0
|
24 |
|
sl@0
|
25 |
#include "tsmgmultprocessshared.h"
|
sl@0
|
26 |
|
sl@0
|
27 |
class CTSurfaceManagerMultiProcess : public CTGraphicsBase
|
sl@0
|
28 |
{
|
sl@0
|
29 |
public:
|
sl@0
|
30 |
CTSurfaceManagerMultiProcess(CTestStep* aStep);
|
sl@0
|
31 |
~CTSurfaceManagerMultiProcess();
|
sl@0
|
32 |
protected:
|
sl@0
|
33 |
//from CTGraphicsStep
|
sl@0
|
34 |
virtual void RunTestCaseL(TInt aCurTestCase);
|
sl@0
|
35 |
private:
|
sl@0
|
36 |
void TestMapSurfaceExistinChunkL();
|
sl@0
|
37 |
void TestSynchronizeCacheMultiProcessL();
|
sl@0
|
38 |
void TestCloseChannelsMultiProcessL();
|
sl@0
|
39 |
void TestCloseChannelsMultiProcess2L();
|
sl@0
|
40 |
void TestSurfaceInfoUnopenedSurfaceL();
|
sl@0
|
41 |
void TestCloseChannelsMultiProcess1L();
|
sl@0
|
42 |
void TestSurfaceInfoUsingSurfaceIdL();
|
sl@0
|
43 |
void TestOpeningSurfaceUsingSurfaceIdL();
|
sl@0
|
44 |
void TestOpenSurfaceInvalidParamsL();
|
sl@0
|
45 |
void TestClosingUnopenedSurfaceL();
|
sl@0
|
46 |
void CreateOpenCloseThreeProcessL();
|
sl@0
|
47 |
void TestSurfaceAccessWhenCreatingProcessDiesL();
|
sl@0
|
48 |
void TestClosingSurfaceWhenCreatingProcessDiesL();
|
sl@0
|
49 |
void TestCloseSurfaceInThirdProcessL();
|
sl@0
|
50 |
void TestNoAccessWhenSurfaceClosedTwoProcessL();
|
sl@0
|
51 |
void TestOpeningOnProcessAfterClosingOnOtherL();
|
sl@0
|
52 |
void TestAccessAfterClosingL();
|
sl@0
|
53 |
void TestClosingAfterClosingOnOtherProcessL();
|
sl@0
|
54 |
void TestErrSufaceAccessNotOpenL();
|
sl@0
|
55 |
void TestReadFromBufferInSecondProcessL();
|
sl@0
|
56 |
void TestGetSurfaceHintMultiProcessL();
|
sl@0
|
57 |
void TestSetSurfaceHintMultiProcessL();
|
sl@0
|
58 |
void TestAddSurfaceHintMultiProcessL();
|
sl@0
|
59 |
void TestOutofMemoryCasesL();
|
sl@0
|
60 |
private:
|
sl@0
|
61 |
TLeaveInfo iInfo2;
|
sl@0
|
62 |
};
|
sl@0
|
63 |
|
sl@0
|
64 |
|
sl@0
|
65 |
class CTSurfaceManagerMultiProcessStep : public CTGraphicsStep
|
sl@0
|
66 |
{
|
sl@0
|
67 |
public:
|
sl@0
|
68 |
CTSurfaceManagerMultiProcessStep();
|
sl@0
|
69 |
protected:
|
sl@0
|
70 |
//from CTGraphicsStep
|
sl@0
|
71 |
virtual CTGraphicsBase* CreateTestL();
|
sl@0
|
72 |
virtual void TestSetupL();
|
sl@0
|
73 |
virtual void TestClose();
|
sl@0
|
74 |
};
|
sl@0
|
75 |
|
sl@0
|
76 |
_LIT(KTSurfaceManagerMultiProcessStep,"TSurfaceManagerMultiProcess");
|
sl@0
|
77 |
|
sl@0
|
78 |
|
sl@0
|
79 |
#endif
|