os/ossrv/lowlevellibsandfws/pluginfw/Framework/RegistryDataTest/RegistryDataStateAccessor.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 1997-2009 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
// The definition of the state accessor class for the CRegistryData.
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#ifndef __REGISTRYDATASTATEACCESSOR_H__
sl@0
    19
#define __REGISTRYDATASTATEACCESSOR_H__
sl@0
    20
sl@0
    21
#include "StateAccessor.h"
sl@0
    22
#include "RegistryData.h"
sl@0
    23
#include <test_bed/testbeddefinitions.h>
sl@0
    24
sl@0
    25
// ______________________________________________________________________________
sl@0
    26
//
sl@0
    27
/**
sl@0
    28
	@internalComponent
sl@0
    29
	Comments : State accessor for the CRegistryData object under test.
sl@0
    30
 */
sl@0
    31
class TRegistryData_StateAccessor : public MStateAccessor
sl@0
    32
	{
sl@0
    33
public:
sl@0
    34
	/**
sl@0
    35
		@fn				InvariantTest(TAny* aTestObject)
sl@0
    36
		Intended Usage	: Checks if CRegistryData has violated its invariants.
sl@0
    37
		@since			7.0
sl@0
    38
		@param			TAny* A pointer to the object under test.
sl@0
    39
		@return			TInt KErrNone if the invariants were valid, error code otherwise.
sl@0
    40
		@pre 			TRegistryData_StateAccessor is fully constructed.
sl@0
    41
		@post			The class under test is set to the state specified.
sl@0
    42
	 */
sl@0
    43
	TInt InvariantTest(TAny* aTestObject);
sl@0
    44
sl@0
    45
	/**
sl@0
    46
		@fn				Internalize(TAny* aTestObject)
sl@0
    47
		Intended Usage	: Implemented by the developer to set the state of the object under test.
sl@0
    48
		@since			7.0
sl@0
    49
		@param			TAny* A pointer to the object under test.
sl@0
    50
		@return			TInt KErrNone if the state was set, error code otherwise.
sl@0
    51
		@pre 			TRegistryData_StateAccessor is fully constructed.
sl@0
    52
		@post			The class under test is set to the state specified.
sl@0
    53
	*/
sl@0
    54
	TInt Internalize(TAny* aTestObject);
sl@0
    55
sl@0
    56
	/**
sl@0
    57
		@fn				Externalize(TAny* aTestObject)
sl@0
    58
		Intended Usage	: Implemented by the developer to persist the state of the object under test.
sl@0
    59
		@since			7.0
sl@0
    60
		@param			TAny* A pointer to the object under test.
sl@0
    61
		@return			TInt KErrNone if the state was persisted, error code otherwise.
sl@0
    62
		@pre 			TRegistryData_StateAccessor is fully constructed.
sl@0
    63
		@post			No change to the class under test.
sl@0
    64
	*/
sl@0
    65
	TInt Externalize(TAny* aTestObject);
sl@0
    66
	void BuildIndexesL(CRegistryData& aRegData);
sl@0
    67
	TInt IndexedFind(CRegistryData& aRegData, const TUid& aImplementationUid);
sl@0
    68
	TBool MatchOnUid();
sl@0
    69
	void RestoreL(CRegistryData& aRegData, RFileReadStream& aStore);
sl@0
    70
	void StoreL(CRegistryData& aRegData, RFileWriteStream& aStore);
sl@0
    71
sl@0
    72
	TBool IsRegisteredDrive(CRegistryData& aRegData, TDriveUnit aDriveUnit);
sl@0
    73
sl@0
    74
private:
sl@0
    75
	// These need to be stored here (rather than in the UnitTestContext) because TIndex
sl@0
    76
	// is a private class in CRegistryData (but this is a friend).
sl@0
    77
	CRegistryData::TInterfaceIndex		iIndexItem;
sl@0
    78
	CRegistryData::TInterfaceIndex		iKey;
sl@0
    79
	};	// TRegistryData_StateAccessor
sl@0
    80
sl@0
    81
#endif		// __REGISTRYDATASTATEACCESSOR_H__