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: #include "t_fmgrbursim.h" sl@0: #include "t_fmgrburdefs.h" sl@0: sl@0: CFeatMgrBURSim* CFeatMgrBURSim::NewLC() sl@0: { sl@0: CFeatMgrBURSim* newInstance = new (ELeave) CFeatMgrBURSim(); sl@0: CleanupStack::PushL( newInstance ); sl@0: newInstance->ConstructL(); sl@0: return newInstance; sl@0: } sl@0: sl@0: void CFeatMgrBURSim::ConstructL() sl@0: { sl@0: iBackupClient = CBaBackupSessionWrapper::NewL(); sl@0: } sl@0: sl@0: CFeatMgrBURSim::CFeatMgrBURSim() sl@0: { sl@0: } sl@0: sl@0: CFeatMgrBURSim::~CFeatMgrBURSim() sl@0: { sl@0: delete iBackupClient; sl@0: } sl@0: sl@0: // BUR simulation functions sl@0: sl@0: /** sl@0: * Use the babackup API to "start" a backup. sl@0: * Ultimate effect is to cause the correct case statement inside sl@0: * ChangeFileLockL to be called. sl@0: */ sl@0: void CFeatMgrBURSim::Simulate_StartBackupL() sl@0: { sl@0: iBackupClient->CloseFileL( KEfmBackupFileName, MBackupObserver::EReleaseLockReadOnly ); sl@0: sl@0: // Set BUR property to trigger sl@0: TInt ret = RProperty::Set(KTestUid , conn::KUidBackupRestoreKey, conn::EBackupBase|conn::EBURBackupPartial); sl@0: if (ret != KErrNone && ret != KErrNotFound) sl@0: { sl@0: User::Leave(ret); sl@0: } sl@0: sl@0: // allow observers to be notified sl@0: User::After(100000); sl@0: } sl@0: sl@0: sl@0: /** sl@0: * Use the babackup API to "end" a backup. sl@0: * Ultimate effect is to cause the correct case statement inside sl@0: * ChangeFileLockL to be called. sl@0: */ sl@0: void CFeatMgrBURSim::Simulate_EndBackupL( TBool /* aNormal */ ) sl@0: { sl@0: iBackupClient->CloseFileL( KEfmBackupFileName, MBackupObserver::ETakeLock ); sl@0: sl@0: // allow observers to be notified sl@0: User::After(100000); sl@0: } sl@0: sl@0: // Restore type sl@0: sl@0: /** sl@0: * Use the babackup API to "start" a restore. sl@0: * Ultimate effect is to cause the correct case statement inside sl@0: * ChangeFileLockL to be called. sl@0: */ sl@0: void CFeatMgrBURSim::Simulate_StartRestoreL() sl@0: { sl@0: iBackupClient->CloseFileL( KEfmBackupFileName, MBackupObserver::EReleaseLockNoAccess ); sl@0: sl@0: // Set BUR property to trigger sl@0: TInt ret = RProperty::Set(KTestUid , conn::KUidBackupRestoreKey, conn::EBackupBase|conn::EBURRestorePartial); sl@0: if (ret != KErrNone && ret != KErrNotFound) sl@0: { sl@0: User::Leave(ret); sl@0: } sl@0: sl@0: // allow observers to be notified sl@0: User::After(100000); sl@0: } sl@0: sl@0: sl@0: /** sl@0: * Use the babackup API to "end" a restore. sl@0: * Ultimate effect is to cause the correct case statement inside sl@0: * ChangeFileLockL to be called. sl@0: */ sl@0: void CFeatMgrBURSim::Simulate_EndRestoreL( TBool /* aNormal */ ) sl@0: { sl@0: iBackupClient->CloseFileL( KEfmBackupFileName, MBackupObserver::ETakeLock ); sl@0: sl@0: // allow observers to be notified sl@0: User::After(100000); sl@0: } sl@0: sl@0: sl@0: // Undefined type sl@0: sl@0: sl@0: // Edge cases sl@0: sl@0: void CFeatMgrBURSim::Simulate_StartUndefinedL() sl@0: { sl@0: // Use the babackup API to "start" (neither a backup or restore explicitly). sl@0: // Ultimate effect is to cause the correct case statement inside sl@0: // CFeatMgrFeatureRegistry::HandleBackupOperationEventL sl@0: // to be called. sl@0: User::Leave( KErrNotSupported ); sl@0: } sl@0: sl@0: sl@0: void CFeatMgrBURSim::Simulate_EndUndefinedL( TBool /* aNormal */ ) sl@0: { sl@0: // Use the babackup API to "end" (neither a backup or restore explicitly). sl@0: // Ultimate effect is to cause the correct case statement inside sl@0: // CFeatMgrFeatureRegistry::HandleBackupOperationEventL sl@0: // to be called. sl@0: User::Leave( KErrNotSupported ); sl@0: } sl@0: sl@0: /** sl@0: * CheckRegFileL sl@0: * Open the babackup file to confirm that the file is present sl@0: * this leaves if the KErrNotFound is returned sl@0: */ sl@0: void CFeatMgrBURSim::Simulate_CheckRegFileL() sl@0: { sl@0: RFs fs; sl@0: User::LeaveIfError(fs.Connect()); sl@0: CleanupClosePushL(fs); sl@0: RFile file; sl@0: TInt err = file.Open(fs, KRegistrationFile, EFileRead); sl@0: sl@0: if( err != KErrNone ) sl@0: { sl@0: User::Leave(err); sl@0: } sl@0: sl@0: file.Close(); sl@0: CleanupStack::PopAndDestroy(&fs); sl@0: }