sl@0
|
1 |
// Copyright (c) 2010 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
|
sl@0
|
20 |
*/
|
sl@0
|
21 |
|
sl@0
|
22 |
#if (!defined __T_FMGRBURSIM__)
|
sl@0
|
23 |
#define __T_FMGRBURSIM__
|
sl@0
|
24 |
|
sl@0
|
25 |
#include "t_fmgrburdefs.h"
|
sl@0
|
26 |
#include <babackup.h>
|
sl@0
|
27 |
#include <e32property.h>
|
sl@0
|
28 |
|
sl@0
|
29 |
/**
|
sl@0
|
30 |
* Simulation base class for simulating a backup and restore operation.
|
sl@0
|
31 |
* The functionality allows copying and restoring a feature.dat file, and
|
sl@0
|
32 |
* checking that the registration file exists.
|
sl@0
|
33 |
*/
|
sl@0
|
34 |
class CFeatMgrBURSim: public CBase
|
sl@0
|
35 |
{
|
sl@0
|
36 |
public:
|
sl@0
|
37 |
virtual ~CFeatMgrBURSim();
|
sl@0
|
38 |
|
sl@0
|
39 |
static CFeatMgrBURSim* NewLC();
|
sl@0
|
40 |
public:
|
sl@0
|
41 |
|
sl@0
|
42 |
/** Use external API to start a backup. */
|
sl@0
|
43 |
void Simulate_StartBackupL();
|
sl@0
|
44 |
/** Use external API to stop a backup. */
|
sl@0
|
45 |
void Simulate_EndBackupL( TBool aNormal = ETrue );
|
sl@0
|
46 |
/** Use external API to start a restore. */
|
sl@0
|
47 |
void Simulate_StartRestoreL();
|
sl@0
|
48 |
/** Use external API to stop a restore. */
|
sl@0
|
49 |
void Simulate_EndRestoreL( TBool aNormal = ETrue );
|
sl@0
|
50 |
|
sl@0
|
51 |
|
sl@0
|
52 |
void Simulate_StartUndefinedL();
|
sl@0
|
53 |
void Simulate_EndUndefinedL( TBool aNormal = ETrue );
|
sl@0
|
54 |
|
sl@0
|
55 |
/**
|
sl@0
|
56 |
* Confirm that the registration.xml file is present.
|
sl@0
|
57 |
* @leave KErrNotFound if file not present.
|
sl@0
|
58 |
*/
|
sl@0
|
59 |
void Simulate_CheckRegFileL();
|
sl@0
|
60 |
|
sl@0
|
61 |
private:
|
sl@0
|
62 |
CFeatMgrBURSim();
|
sl@0
|
63 |
void ConstructL();
|
sl@0
|
64 |
private:
|
sl@0
|
65 |
CBaBackupSessionWrapper* iBackupClient;
|
sl@0
|
66 |
};
|
sl@0
|
67 |
|
sl@0
|
68 |
#endif
|