os/ossrv/lowlevellibsandfws/pluginfw/Framework/RegistryDataTest/RegistryDataStateAccessor.h
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/lowlevellibsandfws/pluginfw/Framework/RegistryDataTest/RegistryDataStateAccessor.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,81 @@
1.4 +// Copyright (c) 1997-2009 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 +// The definition of the state accessor class for the CRegistryData.
1.18 +//
1.19 +//
1.20 +
1.21 +#ifndef __REGISTRYDATASTATEACCESSOR_H__
1.22 +#define __REGISTRYDATASTATEACCESSOR_H__
1.23 +
1.24 +#include "StateAccessor.h"
1.25 +#include "RegistryData.h"
1.26 +#include <test_bed/testbeddefinitions.h>
1.27 +
1.28 +// ______________________________________________________________________________
1.29 +//
1.30 +/**
1.31 + @internalComponent
1.32 + Comments : State accessor for the CRegistryData object under test.
1.33 + */
1.34 +class TRegistryData_StateAccessor : public MStateAccessor
1.35 + {
1.36 +public:
1.37 + /**
1.38 + @fn InvariantTest(TAny* aTestObject)
1.39 + Intended Usage : Checks if CRegistryData has violated its invariants.
1.40 + @since 7.0
1.41 + @param TAny* A pointer to the object under test.
1.42 + @return TInt KErrNone if the invariants were valid, error code otherwise.
1.43 + @pre TRegistryData_StateAccessor is fully constructed.
1.44 + @post The class under test is set to the state specified.
1.45 + */
1.46 + TInt InvariantTest(TAny* aTestObject);
1.47 +
1.48 + /**
1.49 + @fn Internalize(TAny* aTestObject)
1.50 + Intended Usage : Implemented by the developer to set the state of the object under test.
1.51 + @since 7.0
1.52 + @param TAny* A pointer to the object under test.
1.53 + @return TInt KErrNone if the state was set, error code otherwise.
1.54 + @pre TRegistryData_StateAccessor is fully constructed.
1.55 + @post The class under test is set to the state specified.
1.56 + */
1.57 + TInt Internalize(TAny* aTestObject);
1.58 +
1.59 + /**
1.60 + @fn Externalize(TAny* aTestObject)
1.61 + Intended Usage : Implemented by the developer to persist the state of the object under test.
1.62 + @since 7.0
1.63 + @param TAny* A pointer to the object under test.
1.64 + @return TInt KErrNone if the state was persisted, error code otherwise.
1.65 + @pre TRegistryData_StateAccessor is fully constructed.
1.66 + @post No change to the class under test.
1.67 + */
1.68 + TInt Externalize(TAny* aTestObject);
1.69 + void BuildIndexesL(CRegistryData& aRegData);
1.70 + TInt IndexedFind(CRegistryData& aRegData, const TUid& aImplementationUid);
1.71 + TBool MatchOnUid();
1.72 + void RestoreL(CRegistryData& aRegData, RFileReadStream& aStore);
1.73 + void StoreL(CRegistryData& aRegData, RFileWriteStream& aStore);
1.74 +
1.75 + TBool IsRegisteredDrive(CRegistryData& aRegData, TDriveUnit aDriveUnit);
1.76 +
1.77 +private:
1.78 + // These need to be stored here (rather than in the UnitTestContext) because TIndex
1.79 + // is a private class in CRegistryData (but this is a friend).
1.80 + CRegistryData::TInterfaceIndex iIndexItem;
1.81 + CRegistryData::TInterfaceIndex iKey;
1.82 + }; // TRegistryData_StateAccessor
1.83 +
1.84 +#endif // __REGISTRYDATASTATEACCESSOR_H__