1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/persistentdata/featuremgmt/featuremgr/test/rtest/inc/t_fmgrbursim.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,68 @@
1.4 +// Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +//
1.18 +
1.19 +/**
1.20 + @file
1.21 + @test
1.22 + @internalComponent
1.23 +*/
1.24 +
1.25 +#if (!defined __T_FMGRBURSIM__)
1.26 +#define __T_FMGRBURSIM__
1.27 +
1.28 +#include "t_fmgrburdefs.h"
1.29 +#include <babackup.h>
1.30 +#include <e32property.h>
1.31 +
1.32 +/**
1.33 + * Simulation base class for simulating a backup and restore operation.
1.34 + * The functionality allows copying and restoring a feature.dat file, and
1.35 + * checking that the registration file exists.
1.36 + */
1.37 +class CFeatMgrBURSim: public CBase
1.38 + {
1.39 +public:
1.40 + virtual ~CFeatMgrBURSim();
1.41 +
1.42 + static CFeatMgrBURSim* NewLC();
1.43 +public:
1.44 +
1.45 + /** Use external API to start a backup. */
1.46 + void Simulate_StartBackupL();
1.47 + /** Use external API to stop a backup. */
1.48 + void Simulate_EndBackupL( TBool aNormal = ETrue );
1.49 + /** Use external API to start a restore. */
1.50 + void Simulate_StartRestoreL();
1.51 + /** Use external API to stop a restore. */
1.52 + void Simulate_EndRestoreL( TBool aNormal = ETrue );
1.53 +
1.54 +
1.55 + void Simulate_StartUndefinedL();
1.56 + void Simulate_EndUndefinedL( TBool aNormal = ETrue );
1.57 +
1.58 + /**
1.59 + * Confirm that the registration.xml file is present.
1.60 + * @leave KErrNotFound if file not present.
1.61 + */
1.62 + void Simulate_CheckRegFileL();
1.63 +
1.64 +private:
1.65 + CFeatMgrBURSim();
1.66 + void ConstructL();
1.67 +private:
1.68 + CBaBackupSessionWrapper* iBackupClient;
1.69 + };
1.70 +
1.71 +#endif