sl@0
|
1 |
/*
|
sl@0
|
2 |
* Copyright (c) 2005-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 the License "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 |
* Implements default base classes for captestframework
|
sl@0
|
16 |
*
|
sl@0
|
17 |
*/
|
sl@0
|
18 |
|
sl@0
|
19 |
|
sl@0
|
20 |
|
sl@0
|
21 |
|
sl@0
|
22 |
/**
|
sl@0
|
23 |
@file
|
sl@0
|
24 |
*/
|
sl@0
|
25 |
|
sl@0
|
26 |
#ifndef CAPTESTUTILITY_H__
|
sl@0
|
27 |
#define CAPTESTUTILITY_H__
|
sl@0
|
28 |
|
sl@0
|
29 |
#include <e32base.h>
|
sl@0
|
30 |
#include <s32file.h>
|
sl@0
|
31 |
#include "captestframework.h"
|
sl@0
|
32 |
|
sl@0
|
33 |
// CDefaultCapabilityTest
|
sl@0
|
34 |
class CDefaultCapabilityTest : public CBase, public MCapabilityTest
|
sl@0
|
35 |
{
|
sl@0
|
36 |
public:
|
sl@0
|
37 |
IMPORT_C const TDesC& Name() const;
|
sl@0
|
38 |
IMPORT_C const TDesC& SubName() const;
|
sl@0
|
39 |
|
sl@0
|
40 |
IMPORT_C TCapabilitySet CapabilitiesRequired() const;
|
sl@0
|
41 |
IMPORT_C TUid VidRequired() const;
|
sl@0
|
42 |
IMPORT_C TUid SidRequired() const;
|
sl@0
|
43 |
|
sl@0
|
44 |
IMPORT_C ~CDefaultCapabilityTest();
|
sl@0
|
45 |
|
sl@0
|
46 |
protected:
|
sl@0
|
47 |
IMPORT_C void SetNameL(const TDesC& aName);
|
sl@0
|
48 |
void SetExpectPermissionDenied(TBool aExpectPermissionDenied = ETrue);
|
sl@0
|
49 |
|
sl@0
|
50 |
IMPORT_C void SetCapabilityRequired(const TCapability& aCapability);
|
sl@0
|
51 |
IMPORT_C void SetSidRequired(const TUid& aSid);
|
sl@0
|
52 |
IMPORT_C void SetVidRequired(const TUid& aVid);
|
sl@0
|
53 |
|
sl@0
|
54 |
IMPORT_C TInt CheckFailL(TInt aResult, const TDesC& aTestName);
|
sl@0
|
55 |
IMPORT_C void RunTestL(RFile& aLogFile);
|
sl@0
|
56 |
|
sl@0
|
57 |
void SetFail() { iFail = ETrue;}
|
sl@0
|
58 |
virtual void RunTestL() =0;
|
sl@0
|
59 |
private:
|
sl@0
|
60 |
HBufC* iTestName;
|
sl@0
|
61 |
HBufC* iTestSubName;
|
sl@0
|
62 |
|
sl@0
|
63 |
RFile* iLogFile;
|
sl@0
|
64 |
RFileWriteStream* iLogWriteStream;
|
sl@0
|
65 |
TBool iExpectPermissionDenied;
|
sl@0
|
66 |
TCapabilitySet iCapabilitySet;
|
sl@0
|
67 |
TUid iVidRequired;
|
sl@0
|
68 |
TUid iSidRequired;
|
sl@0
|
69 |
TBool iFail;
|
sl@0
|
70 |
};
|
sl@0
|
71 |
|
sl@0
|
72 |
// CDefaultCapabilityTestFactory
|
sl@0
|
73 |
class CDefaultCapabilityTestFactory : public CBase, public MCapabilityTestFactory
|
sl@0
|
74 |
|
sl@0
|
75 |
{
|
sl@0
|
76 |
public:
|
sl@0
|
77 |
IMPORT_C virtual TInt NumberOfTests();
|
sl@0
|
78 |
IMPORT_C virtual MCapabilityTest* Test(TInt aTestNumber);
|
sl@0
|
79 |
|
sl@0
|
80 |
IMPORT_C void AddTestL(CDefaultCapabilityTest* aTest);
|
sl@0
|
81 |
|
sl@0
|
82 |
IMPORT_C ~CDefaultCapabilityTestFactory();
|
sl@0
|
83 |
|
sl@0
|
84 |
private:
|
sl@0
|
85 |
RPointerArray<CDefaultCapabilityTest> iTests;
|
sl@0
|
86 |
};
|
sl@0
|
87 |
|
sl@0
|
88 |
// inline functions from CSwiCapabilityTest
|
sl@0
|
89 |
|
sl@0
|
90 |
inline void CDefaultCapabilityTest::SetExpectPermissionDenied(TBool aExpectPermissionDenied)
|
sl@0
|
91 |
{
|
sl@0
|
92 |
iExpectPermissionDenied = aExpectPermissionDenied;
|
sl@0
|
93 |
}
|
sl@0
|
94 |
|
sl@0
|
95 |
#endif //#ifndef CAPTESTUTILITY_H__
|