os/persistentdata/featuremgmt/featuremgr/test/rtest/src/t_fmgrbursim.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
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
#include "t_fmgrbursim.h"
sl@0
    23
#include "t_fmgrburdefs.h"
sl@0
    24
sl@0
    25
CFeatMgrBURSim* CFeatMgrBURSim::NewLC()
sl@0
    26
	{
sl@0
    27
	CFeatMgrBURSim* newInstance = new (ELeave) CFeatMgrBURSim();
sl@0
    28
	CleanupStack::PushL( newInstance );
sl@0
    29
	newInstance->ConstructL();
sl@0
    30
	return newInstance;	
sl@0
    31
	}
sl@0
    32
sl@0
    33
void CFeatMgrBURSim::ConstructL()
sl@0
    34
	{
sl@0
    35
	iBackupClient = CBaBackupSessionWrapper::NewL();
sl@0
    36
	}
sl@0
    37
sl@0
    38
CFeatMgrBURSim::CFeatMgrBURSim()
sl@0
    39
	{
sl@0
    40
	}
sl@0
    41
sl@0
    42
CFeatMgrBURSim::~CFeatMgrBURSim()
sl@0
    43
	{
sl@0
    44
	delete iBackupClient;	
sl@0
    45
	}
sl@0
    46
sl@0
    47
// BUR simulation functions
sl@0
    48
sl@0
    49
/** 
sl@0
    50
 * Use the babackup API to "start" a backup.  
sl@0
    51
 * Ultimate effect is to cause the correct case statement inside 
sl@0
    52
 * ChangeFileLockL to be called.
sl@0
    53
 */
sl@0
    54
void CFeatMgrBURSim::Simulate_StartBackupL()
sl@0
    55
	{
sl@0
    56
	iBackupClient->CloseFileL( KEfmBackupFileName, MBackupObserver::EReleaseLockReadOnly );		
sl@0
    57
sl@0
    58
	// Set BUR property to trigger 
sl@0
    59
	TInt ret = RProperty::Set(KTestUid , conn::KUidBackupRestoreKey, conn::EBackupBase|conn::EBURBackupPartial);
sl@0
    60
	if (ret != KErrNone && ret != KErrNotFound)
sl@0
    61
		{
sl@0
    62
		User::Leave(ret);
sl@0
    63
		}
sl@0
    64
	
sl@0
    65
	// allow observers to be notified
sl@0
    66
	User::After(100000);
sl@0
    67
	}
sl@0
    68
sl@0
    69
sl@0
    70
/** 
sl@0
    71
 * Use the babackup API to "end" a backup.  
sl@0
    72
 * Ultimate effect is to cause the correct case statement inside 
sl@0
    73
 * ChangeFileLockL to be called. 
sl@0
    74
 */
sl@0
    75
void CFeatMgrBURSim::Simulate_EndBackupL( TBool /* aNormal */ )
sl@0
    76
	{
sl@0
    77
	iBackupClient->CloseFileL( KEfmBackupFileName, MBackupObserver::ETakeLock );
sl@0
    78
sl@0
    79
	// allow observers to be notified
sl@0
    80
	User::After(100000);
sl@0
    81
	}
sl@0
    82
sl@0
    83
// Restore type
sl@0
    84
sl@0
    85
/** 
sl@0
    86
 * Use the babackup API to "start" a restore.  
sl@0
    87
 * Ultimate effect is to cause the correct case statement inside 
sl@0
    88
 * ChangeFileLockL to be called.
sl@0
    89
 */
sl@0
    90
void CFeatMgrBURSim::Simulate_StartRestoreL()
sl@0
    91
	{
sl@0
    92
	iBackupClient->CloseFileL( KEfmBackupFileName, MBackupObserver::EReleaseLockNoAccess );
sl@0
    93
sl@0
    94
	// Set BUR property to trigger 
sl@0
    95
	TInt ret = RProperty::Set(KTestUid , conn::KUidBackupRestoreKey, conn::EBackupBase|conn::EBURRestorePartial);
sl@0
    96
	if (ret != KErrNone && ret != KErrNotFound)
sl@0
    97
		{
sl@0
    98
		User::Leave(ret);
sl@0
    99
		}
sl@0
   100
sl@0
   101
	// allow observers to be notified
sl@0
   102
	User::After(100000);
sl@0
   103
	}
sl@0
   104
sl@0
   105
sl@0
   106
/** 
sl@0
   107
 * Use the babackup API to "end" a restore.  
sl@0
   108
 * Ultimate effect is to cause the correct case statement inside 
sl@0
   109
 * ChangeFileLockL to be called.
sl@0
   110
 */
sl@0
   111
void CFeatMgrBURSim::Simulate_EndRestoreL( TBool /* aNormal */ )
sl@0
   112
	{
sl@0
   113
	iBackupClient->CloseFileL( KEfmBackupFileName, MBackupObserver::ETakeLock );		
sl@0
   114
	
sl@0
   115
	// allow observers to be notified
sl@0
   116
	User::After(100000);
sl@0
   117
	}
sl@0
   118
sl@0
   119
sl@0
   120
// Undefined type
sl@0
   121
sl@0
   122
sl@0
   123
// Edge cases
sl@0
   124
sl@0
   125
void CFeatMgrBURSim::Simulate_StartUndefinedL()
sl@0
   126
	{
sl@0
   127
	// Use the babackup API to "start" (neither a backup or restore explicitly).  
sl@0
   128
	// Ultimate effect is to cause the correct case statement inside 
sl@0
   129
	// CFeatMgrFeatureRegistry::HandleBackupOperationEventL
sl@0
   130
	// to be called.
sl@0
   131
	User::Leave( KErrNotSupported );
sl@0
   132
	}
sl@0
   133
sl@0
   134
sl@0
   135
void CFeatMgrBURSim::Simulate_EndUndefinedL( TBool /* aNormal */ )
sl@0
   136
	{
sl@0
   137
	// Use the babackup API to "end" (neither a backup or restore explicitly).  
sl@0
   138
	// Ultimate effect is to cause the correct case statement inside 
sl@0
   139
	// CFeatMgrFeatureRegistry::HandleBackupOperationEventL
sl@0
   140
	// to be called.
sl@0
   141
	User::Leave( KErrNotSupported );
sl@0
   142
	}
sl@0
   143
sl@0
   144
/** 
sl@0
   145
 * CheckRegFileL
sl@0
   146
 * Open the babackup file to confirm that the file is present
sl@0
   147
 * this leaves if the KErrNotFound is returned
sl@0
   148
 */
sl@0
   149
void CFeatMgrBURSim::Simulate_CheckRegFileL()
sl@0
   150
	{
sl@0
   151
	RFs fs;
sl@0
   152
	User::LeaveIfError(fs.Connect());
sl@0
   153
	CleanupClosePushL(fs);
sl@0
   154
	RFile file;
sl@0
   155
	TInt err = file.Open(fs, KRegistrationFile, EFileRead);
sl@0
   156
	
sl@0
   157
	if( err != KErrNone )
sl@0
   158
		{
sl@0
   159
		User::Leave(err);
sl@0
   160
		}
sl@0
   161
sl@0
   162
	file.Close();
sl@0
   163
	CleanupStack::PopAndDestroy(&fs);
sl@0
   164
	}