sl@0
|
1 |
/*
|
sl@0
|
2 |
* Copyright (c) 2007-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 |
*
|
sl@0
|
16 |
*/
|
sl@0
|
17 |
|
sl@0
|
18 |
|
sl@0
|
19 |
#ifndef TUPSPLUGINS_H
|
sl@0
|
20 |
#define TUPSPLUGINS_H
|
sl@0
|
21 |
|
sl@0
|
22 |
#include <e32base.h>
|
sl@0
|
23 |
#include <e32cmn.h>
|
sl@0
|
24 |
#include <f32file.h>
|
sl@0
|
25 |
#include <test/tefunit.h>
|
sl@0
|
26 |
#include <ups/promptrequest.h>
|
sl@0
|
27 |
#include <ups/upsdb.h>
|
sl@0
|
28 |
#include <ups/dialogcreator.h>
|
sl@0
|
29 |
#include <ups/fingerprint.h>
|
sl@0
|
30 |
#include <ups/policyevaluator.h>
|
sl@0
|
31 |
|
sl@0
|
32 |
#include "activewaiter.h"
|
sl@0
|
33 |
#include "pluginmanager.h"
|
sl@0
|
34 |
#include "policycache.h"
|
sl@0
|
35 |
#include "util.h"
|
sl@0
|
36 |
|
sl@0
|
37 |
class CTestPlugins : public CActiveTestFixture, public MActiveWaiterObserver
|
sl@0
|
38 |
{
|
sl@0
|
39 |
public:
|
sl@0
|
40 |
// From CTestFixture
|
sl@0
|
41 |
void SetupL();
|
sl@0
|
42 |
void TearDownL();
|
sl@0
|
43 |
|
sl@0
|
44 |
// Implement MActiveWaiterObserver
|
sl@0
|
45 |
void DoCancel();
|
sl@0
|
46 |
|
sl@0
|
47 |
// Policy Evaluator Unit Test
|
sl@0
|
48 |
void TestCacheL();
|
sl@0
|
49 |
void TestPluginManagerL();
|
sl@0
|
50 |
void TestLengthsL();
|
sl@0
|
51 |
void TestOOML();
|
sl@0
|
52 |
|
sl@0
|
53 |
// Create a suite of all the tests
|
sl@0
|
54 |
static CTestSuite* CreateSuiteL(const TDesC& aName);
|
sl@0
|
55 |
|
sl@0
|
56 |
private:
|
sl@0
|
57 |
class TExpectedValue
|
sl@0
|
58 |
{
|
sl@0
|
59 |
public:
|
sl@0
|
60 |
TInt iFlags;
|
sl@0
|
61 |
TInt iMajorVersion;
|
sl@0
|
62 |
TInt iMinorVersion;
|
sl@0
|
63 |
TInt iPolicyEvaluator;
|
sl@0
|
64 |
TBool iSilent;
|
sl@0
|
65 |
TBuf8<32> iClientEntity;
|
sl@0
|
66 |
};
|
sl@0
|
67 |
|
sl@0
|
68 |
TBool DoRequestL(const TExpectedValue& aExpected, const UserPromptService::CPromptRequest& aRequest);
|
sl@0
|
69 |
TBool DoOomRequestL(const TExpectedValue& aExpected, const UserPromptService::CPromptRequest& aRequest);
|
sl@0
|
70 |
|
sl@0
|
71 |
UserPromptService::CPromptRequest* GetRequestParamsLC(const TDesC& aSection, const TDesC8& aClientEntity);
|
sl@0
|
72 |
void GetResponseL(const TDesC& aSection);
|
sl@0
|
73 |
TBool CheckPolicyL(const TExpectedValue& aExpected, const UserPromptService::CPolicy* aPolicy);
|
sl@0
|
74 |
void GetExpectedValuesL(const TDesC& aSection);
|
sl@0
|
75 |
void LoadTestDataL(TInt aNumRequests);
|
sl@0
|
76 |
|
sl@0
|
77 |
UserPromptService::CPolicy::TOptions iResponse;
|
sl@0
|
78 |
UserPromptService::CDecisionRecord* iDecisionRecord;
|
sl@0
|
79 |
|
sl@0
|
80 |
CActiveWaiter* iActiveWaiter;
|
sl@0
|
81 |
TInt iExpectedError;
|
sl@0
|
82 |
RFs iFs;
|
sl@0
|
83 |
RPointerArray<UserPromptService::CPromptRequest> iRequests;
|
sl@0
|
84 |
RPointerArray<TExpectedValue> iExpectedValues;
|
sl@0
|
85 |
TBool iOom; ///< Whether an OOM test is running
|
sl@0
|
86 |
TBool iInteractive; ///< Whether to display the techview dialog
|
sl@0
|
87 |
};
|
sl@0
|
88 |
|
sl@0
|
89 |
#endif // TUPSPLUGINS_H
|
sl@0
|
90 |
|