diff -r 000000000000 -r e4d67989cc36 lowlevellibsandfws/pluginfw/Test_Bed/ComponentInfoTest/ComponentInfoStateAccessor.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lowlevellibsandfws/pluginfw/Test_Bed/ComponentInfoTest/ComponentInfoStateAccessor.h Tue Feb 02 02:01:42 2010 +0200 @@ -0,0 +1,145 @@ +// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies). +// All rights reserved. +// This component and the accompanying materials are made available +// under the terms of "Eclipse Public License v1.0" +// which accompanies this distribution, and is available +// at the URL "http://www.eclipse.org/legal/epl-v10.html". +// +// Initial Contributors: +// Nokia Corporation - initial contribution. +// +// Contributors: +// +// Description: +// The definition of the accessor class upon the CComponentInfo +// +// + +#ifndef __COMPONENTINFOSTATEACCESSOR_H__ +#define __COMPONENTINFOSTATEACCESSOR_H__ + +#include +#include +#include +#include + +#include "TestUtilities.h" +#include +#include "StateAccessor.h" +#include "ComponentInfo.h" + +// ______________________________________________________________________________ +// +/** + @internalComponent + + Comments : State accessor for the CComponentInfo object under test. + */ +class TComponentInfo_StateAccessor : public MStateAccessor + { +public: + /** + @fn InvariantTest(TAny* aTestObject) + Intended Usage : To check CComponentInfo for Invariant violation. + @since 7.0 + @param aTestObject A pointer to the object under test. + @return KErrNone if the invariants were valid, error code otherwise. + @pre TComponentInfo_StateAccessor is fully constructed. + @post The class under test is set to the state specified. + */ + inline TInt InvariantTest(TAny* aTestObject); + + /** + @fn Internalize(TAny* aTestObject) + Intended Usage : Implemented by the developer to set the state of the object under test. + @since 7.0 + @param aTestObject The object to be tested + @return KErrNone if the internalize was successful. + @return One of the EPOC standard error codes indicating the reason + for the failure to load the object state. + @pre TComponentInfo_StateAccessor is fully constructed, and + valid test object must be passed in. + @post The class under test is set to the state specified + */ + inline virtual TInt Internalize(TAny* aTestObject); + + /** + @fn Externalize(TAny* aTestObject) + Intended Usage : Implemented by the developer to persist the state of the object under test. + @since 7.0 + @param aTestObject The object to be tested + @return KErrNone if the internalize was successful. + @return One of the EPOC standard error codes indicating the reason + for the failure to externalize the object. + @pre TComponentInfo_StateAccessor is fully constructed, and + valid test object must be passed in. + @post Returns an error code dependant on the result of the test + */ + inline virtual TInt Externalize(TAny* aTestObject); + + /** + @fn InternalizeL(RFileReadStream& aStream, CComponentInfo* aComponentInfo) + Intended Usage : Implemented by the developer to set the state of the object under test. + Error Condition : Leaves with an error code. + @leave KErrNoMemory + @leave @see RFileReadStream + @since 7.0 + @param aStream The filestream to read from . + @param aComponentInfo A pointer to the CComponentInfo object under test. + @return None. + @pre TComponentInfo_StateAccessor is fully constructed. + @post The class under test is set to the state specified. + */ + inline void InternalizeL(RFileReadStream& aStream, CComponentInfo* aComponentInfo); + + /** + @fn ExternalizeL(RFileWriteStream& aStream, CComponentInfo* aComponentInfo) + Intended Usage : Implemented by the developer to persist the state of the object under test. + Error Condition : Leaves with an error code. + @leave KErrNoMemory + @leave @see RFileWriteStream + @since 7.0 + @param aStream The filestream to persist into. + @param aComponentInfo A pointer to the CComponentInfo object under test. + @return None. + @pre TComponentInfo_StateAccessor is fully constructed. + @post No change to the class under test, its internal state. + is persisted. + */ + inline void ExternalizeL(RFileWriteStream& aStream, CComponentInfo* aComponentInfo); + +private: + /** + @fn InternalizeL(CComponentInfo* aComponentInfo) + Intended Usage : Implemented by the developer to set the state of the object under test. + Error Condition : Leaves with an error code. + @leave KErrNoMemory + @leave @see RFileReadStream + @since 7.0 + @param TAny* A pointer to the object under test. + @return None. + @pre TComponentInfo_StateAccessor is fully constructed. + @post The class under test is set to the state specified. + */ + inline void InternalizeL(CComponentInfo* aComponentInfo); + + /** + @fn ExternalizeL(CComponentInfo* aComponentInfo) + Intended Usage : Implemented by the developer to persist the state of the object under test. + Error Condition : Leaves with an error code. + @leave KErrNoMemory + @leave @see RFileWriteStream + @since 7.0 + @param TAny* A pointer to the object under test. + @return None. + @pre TComponentInfo_StateAccessor is fully constructed. + @post No change to the class under test, its internal state. + is persisted. + */ + inline void ExternalizeL(CComponentInfo* aComponentInfo); + }; // TComponentInfo_StateAccessor + +#include "ComponentInfoStateAccessor.inl" + +#endif // __COMPONENTINFOSTATEACCESSOR_H__ +