sl@0: // Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: /** sl@0: @file sl@0: @test sl@0: @internalComponent sl@0: */ sl@0: sl@0: #if (!defined __T_FMGRBURSIM__) sl@0: #define __T_FMGRBURSIM__ sl@0: sl@0: #include "t_fmgrburdefs.h" sl@0: #include sl@0: #include sl@0: sl@0: /** sl@0: * Simulation base class for simulating a backup and restore operation. sl@0: * The functionality allows copying and restoring a feature.dat file, and sl@0: * checking that the registration file exists. sl@0: */ sl@0: class CFeatMgrBURSim: public CBase sl@0: { sl@0: public: sl@0: virtual ~CFeatMgrBURSim(); sl@0: sl@0: static CFeatMgrBURSim* NewLC(); sl@0: public: sl@0: sl@0: /** Use external API to start a backup. */ sl@0: void Simulate_StartBackupL(); sl@0: /** Use external API to stop a backup. */ sl@0: void Simulate_EndBackupL( TBool aNormal = ETrue ); sl@0: /** Use external API to start a restore. */ sl@0: void Simulate_StartRestoreL(); sl@0: /** Use external API to stop a restore. */ sl@0: void Simulate_EndRestoreL( TBool aNormal = ETrue ); sl@0: sl@0: sl@0: void Simulate_StartUndefinedL(); sl@0: void Simulate_EndUndefinedL( TBool aNormal = ETrue ); sl@0: sl@0: /** sl@0: * Confirm that the registration.xml file is present. sl@0: * @leave KErrNotFound if file not present. sl@0: */ sl@0: void Simulate_CheckRegFileL(); sl@0: sl@0: private: sl@0: CFeatMgrBURSim(); sl@0: void ConstructL(); sl@0: private: sl@0: CBaBackupSessionWrapper* iBackupClient; sl@0: }; sl@0: sl@0: #endif