sl@0
|
1 |
|
sl@0
|
2 |
// Copyright (c) 2004-2009 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 |
#ifndef ECamAdvSetTest_H
|
sl@0
|
18 |
#define ECamAdvSetTest_H
|
sl@0
|
19 |
|
sl@0
|
20 |
#include <testframework.h>
|
sl@0
|
21 |
#include <ecamadvsettings.h>
|
sl@0
|
22 |
#include "ECamObserverTest.h"
|
sl@0
|
23 |
|
sl@0
|
24 |
class RECamAdvSetTest : public RTestStep
|
sl@0
|
25 |
{
|
sl@0
|
26 |
public:
|
sl@0
|
27 |
static RECamAdvSetTest* NewL(TBool aAllocTest);
|
sl@0
|
28 |
protected:
|
sl@0
|
29 |
// from RTestStep;
|
sl@0
|
30 |
TVerdict DoTestStepL();
|
sl@0
|
31 |
TVerdict DoAdvTestStepL();
|
sl@0
|
32 |
private:
|
sl@0
|
33 |
RECamAdvSetTest(TBool aAllocTest);
|
sl@0
|
34 |
};
|
sl@0
|
35 |
|
sl@0
|
36 |
class RECamAdvSetNotificationTest : public RECamObserverTest
|
sl@0
|
37 |
{
|
sl@0
|
38 |
public:
|
sl@0
|
39 |
static RECamAdvSetNotificationTest* NewL(TBool aAllocTest);
|
sl@0
|
40 |
|
sl@0
|
41 |
protected:
|
sl@0
|
42 |
// from RTestStep;
|
sl@0
|
43 |
TVerdict DoTestStepL();
|
sl@0
|
44 |
void ConstructL();
|
sl@0
|
45 |
|
sl@0
|
46 |
private:
|
sl@0
|
47 |
RECamAdvSetNotificationTest(TBool aAllocTest);
|
sl@0
|
48 |
};
|
sl@0
|
49 |
|
sl@0
|
50 |
class RECamAdvSetDefaultsTest : public RECamObserverTest
|
sl@0
|
51 |
{
|
sl@0
|
52 |
public:
|
sl@0
|
53 |
static RECamAdvSetDefaultsTest* NewL(TBool aAllocTest);
|
sl@0
|
54 |
protected:
|
sl@0
|
55 |
// from RTestStep;
|
sl@0
|
56 |
TVerdict DoTestStepL();
|
sl@0
|
57 |
|
sl@0
|
58 |
private:
|
sl@0
|
59 |
void TestISOTypesL(CCamera::CCameraAdvancedSettings* aSettings, CCamera::CCameraAdvancedSettings::TISORateType aIsoRateType, RArray<TInt> aSupportedIsoRates, TVerdict& aResult);
|
sl@0
|
60 |
private:
|
sl@0
|
61 |
RECamAdvSetDefaultsTest(TBool aAllocTest);
|
sl@0
|
62 |
TUid iInputEventUid;
|
sl@0
|
63 |
};
|
sl@0
|
64 |
|
sl@0
|
65 |
class RECamAdvSetGettersTest : public RECamObserverTest
|
sl@0
|
66 |
{
|
sl@0
|
67 |
public:
|
sl@0
|
68 |
static RECamAdvSetGettersTest* NewL(TBool aAllocTest);
|
sl@0
|
69 |
protected:
|
sl@0
|
70 |
// from RTestStep;
|
sl@0
|
71 |
TVerdict DoTestStepL();
|
sl@0
|
72 |
private:
|
sl@0
|
73 |
RECamAdvSetGettersTest(TBool aAllocTest);
|
sl@0
|
74 |
TUid iInputEventUid;
|
sl@0
|
75 |
};
|
sl@0
|
76 |
|
sl@0
|
77 |
class RECamAdvSetTwoCamTest : public RECamObserverTest
|
sl@0
|
78 |
{
|
sl@0
|
79 |
public:
|
sl@0
|
80 |
static RECamAdvSetTwoCamTest* NewL(TBool aAllocTest);
|
sl@0
|
81 |
protected:
|
sl@0
|
82 |
// from RTestStep;
|
sl@0
|
83 |
TVerdict DoTestStepL();
|
sl@0
|
84 |
private:
|
sl@0
|
85 |
RECamAdvSetTwoCamTest(TBool aAllocTest);
|
sl@0
|
86 |
TUid iInputEventUid;
|
sl@0
|
87 |
};
|
sl@0
|
88 |
|
sl@0
|
89 |
class RECamAdvSetNegTest : public RECamObserverTest
|
sl@0
|
90 |
{
|
sl@0
|
91 |
public:
|
sl@0
|
92 |
static RECamAdvSetNegTest* NewL(TBool aAllocTest);
|
sl@0
|
93 |
protected:
|
sl@0
|
94 |
// from RTestStep;
|
sl@0
|
95 |
TVerdict DoTestStepL();
|
sl@0
|
96 |
private:
|
sl@0
|
97 |
RECamAdvSetNegTest(TBool aAllocTest);
|
sl@0
|
98 |
TUid iInputEventUid;
|
sl@0
|
99 |
};
|
sl@0
|
100 |
|
sl@0
|
101 |
class RECamAdvSetBaselineTest : public RECamObserverTest
|
sl@0
|
102 |
{
|
sl@0
|
103 |
public:
|
sl@0
|
104 |
static RECamAdvSetBaselineTest* NewL(TBool aAllocTest);
|
sl@0
|
105 |
protected:
|
sl@0
|
106 |
// from RTestStep;
|
sl@0
|
107 |
TVerdict DoTestStepL();
|
sl@0
|
108 |
private:
|
sl@0
|
109 |
RECamAdvSetBaselineTest(TBool aAllocTest);
|
sl@0
|
110 |
TUid iInputEventUid;
|
sl@0
|
111 |
};
|
sl@0
|
112 |
|
sl@0
|
113 |
class RECamAdvSetTest2 : public RTestStep
|
sl@0
|
114 |
{
|
sl@0
|
115 |
public:
|
sl@0
|
116 |
static RECamAdvSetTest2* NewL(TBool aAllocTest);
|
sl@0
|
117 |
protected:
|
sl@0
|
118 |
// from RTestStep;
|
sl@0
|
119 |
TVerdict DoTestStepL();
|
sl@0
|
120 |
void RatioSubStepL(CCamera::CCameraAdvancedSettings* aCamera, TInt aSuppRange, TInt aTestValue, TInt aExpValues);
|
sl@0
|
121 |
void FlashSubStepL(CCamera::CCameraAdvancedSettings*, TInt aSuppRange, TInt aTestValue, TInt aExpValues);
|
sl@0
|
122 |
void OvrSubStepL(CCamera& aCamera, TInt aSuppRange, TInt aTestValue, TInt aExpValues);
|
sl@0
|
123 |
private:
|
sl@0
|
124 |
RECamAdvSetTest2(TBool aAllocTest);
|
sl@0
|
125 |
};
|
sl@0
|
126 |
|
sl@0
|
127 |
class RECamContinuousZoomAllocTest : public RECamContinousZoomObserverTest
|
sl@0
|
128 |
{
|
sl@0
|
129 |
public:
|
sl@0
|
130 |
static RECamContinuousZoomAllocTest* NewL(TBool aAllocTest);
|
sl@0
|
131 |
protected:
|
sl@0
|
132 |
// from RTestStep;
|
sl@0
|
133 |
TVerdict DoTestStepL();
|
sl@0
|
134 |
TVerdict DoAllocTestStepL();
|
sl@0
|
135 |
private:
|
sl@0
|
136 |
RECamContinuousZoomAllocTest(TBool aAllocTest);
|
sl@0
|
137 |
};
|
sl@0
|
138 |
|
sl@0
|
139 |
class RECamContinuousZoomTest : public RECamContinousZoomObserverTest
|
sl@0
|
140 |
{
|
sl@0
|
141 |
public:
|
sl@0
|
142 |
static RECamContinuousZoomTest* NewL(TBool aAllocTest);
|
sl@0
|
143 |
protected:
|
sl@0
|
144 |
// from RTestStep;
|
sl@0
|
145 |
TVerdict DoTestStepL();
|
sl@0
|
146 |
private:
|
sl@0
|
147 |
RECamContinuousZoomTest(TBool aAllocTest);
|
sl@0
|
148 |
};
|
sl@0
|
149 |
|
sl@0
|
150 |
class RECamDependantSupportedDriveModesTest : public RTestStep
|
sl@0
|
151 |
{
|
sl@0
|
152 |
public:
|
sl@0
|
153 |
static RECamDependantSupportedDriveModesTest* NewL(TBool aAllocTest);
|
sl@0
|
154 |
protected:
|
sl@0
|
155 |
// from RTestStep;
|
sl@0
|
156 |
TVerdict DoTestStepL();
|
sl@0
|
157 |
private:
|
sl@0
|
158 |
RECamDependantSupportedDriveModesTest(TBool aAllocTest);
|
sl@0
|
159 |
};
|
sl@0
|
160 |
|
sl@0
|
161 |
#endif // ECamAdvSetTest_H
|