os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/TestManagerTest/TestManagerStateAccessor.h
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/TestManagerTest/TestManagerStateAccessor.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,140 @@
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 accessor class upon the CTestManager
1.18 +//
1.19 +//
1.20 +
1.21 +#ifndef __TESTMANAGERSTATEACCESSOR_H__
1.22 +#define __TESTMANAGERSTATEACCESSOR_H__
1.23 +
1.24 +#include <e32base.h>
1.25 +#include <f32file.h>
1.26 +#include <s32stor.h>
1.27 +#include <s32file.h>
1.28 +
1.29 +#include "TestUtilities.h"
1.30 +#include <ecom/test_bed/testbeddefinitions.h>
1.31 +#include "StateAccessor.h"
1.32 +#include "TestManager.h"
1.33 +
1.34 +// ______________________________________________________________________________
1.35 +//
1.36 +/**
1.37 + @internalComponent
1.38 +
1.39 + Comments : State accessor for the CTestManager object under test.
1.40 + */
1.41 +class TTestManager_StateAccessor : public MStateAccessor
1.42 + {
1.43 +public:
1.44 + /**
1.45 + @fn InvariantTest(TAny* aTestObject)
1.46 + Intended Usage :
1.47 + @since 6.0
1.48 + @param TAny* A pointer to the object under test.
1.49 + @return TInt KErrNone if the invariants were valid, error code otherwise.
1.50 + @pre TTestManager_StateAccessor is fully constructed.
1.51 + @post The class under test is set to the state specified.
1.52 + */
1.53 + inline TInt InvariantTest(TAny* aTestObject);
1.54 +
1.55 + /**
1.56 + @fn Internalize(TAny* aTestObject)
1.57 + Intended Usage : Implemented by the developer to set the state of the object under test.
1.58 + @since 6.0
1.59 + @param aTestObject The object to be tested
1.60 + @return KErrNone if the internalize was successful.
1.61 + @return One of the EPOC standard error codes indicating the reason
1.62 + for the failure to load the object state.
1.63 + @pre TTestManager_StateAccessor is fully constructed, and
1.64 + valid test object must be passed in.
1.65 + @post The class under test is set to the state specified
1.66 + */
1.67 + inline virtual TInt Internalize(TAny* aTestObject);
1.68 +
1.69 + /**
1.70 + @fn Externalize(TAny* aTestObject)
1.71 + Intended Usage : Implemented by the developer to persist the state of the object under test.
1.72 + @since 6.0
1.73 + @param aTestObject The object to be tested
1.74 + @return KErrNone if the internalize was successful.
1.75 + @return One of the EPOC standard error codes indicating the reason
1.76 + for the failure to externalize the object.
1.77 + @pre TTestManager_StateAccessor is fully constructed, and
1.78 + valid test object must be passed in.
1.79 + @post Returns an error code dependant on the result of the test
1.80 + */
1.81 + inline virtual TInt Externalize(TAny* aTestObject);
1.82 +
1.83 + /**
1.84 + @fn InternalizeL(RFileReadStream& aStream, CTestManager* aTestManager)
1.85 + Intended Usage : Implemented by the developer to set the state of the object under test.
1.86 + Error Condition : Leaves with an error code.
1.87 + @since 6.0
1.88 + @param aStream The filestream to read from .
1.89 + @param aTestManager A pointer to the CTestManager object under test.
1.90 + @return None.
1.91 + @pre TTestManager_StateAccessor is fully constructed.
1.92 + @post The class under test is set to the state specified.
1.93 + */
1.94 + inline void InternalizeL(RFileReadStream& aStream, CTestManager* aTestManager);
1.95 +
1.96 + /**
1.97 + @fn ExternalizeL(RFileWriteStream& aStream, CTestManager* aTestManager)
1.98 + Intended Usage : Implemented by the developer to persist the state of the object under test.
1.99 + Error Condition : Leaves with an error code.
1.100 + @since 6.0
1.101 + @param aStream The filestream to persist into.
1.102 + @param aTestManager A pointer to the CTestManager object under test.
1.103 + @return None.
1.104 + @pre TTestManager_StateAccessor is fully constructed.
1.105 + @post No change to the class under test, its internal state.
1.106 + is persisted.
1.107 + */
1.108 + inline void ExternalizeL(RFileWriteStream& aStream, CTestManager* aTestManager);
1.109 + void RunL(CTestManager& aTestMan);
1.110 + void TestComponentL(CTestManager& aTestMan, TInt& aComponentIndex);
1.111 + void ActivateManager(CTestManager& aTestMan);
1.112 +
1.113 +private:
1.114 + /**
1.115 + @fn InternalizeL(CTestManager* aTestManager)
1.116 + Intended Usage : Implemented by the developer to set the state of the object under test.
1.117 + Error Condition : Leaves with an error code.
1.118 + @since 6.0
1.119 + @param TAny* A pointer to the object under test.
1.120 + @return None.
1.121 + @pre TTestManager_StateAccessor is fully constructed.
1.122 + @post The class under test is set to the state specified.
1.123 + */
1.124 + inline void InternalizeL(CTestManager* aTestManager);
1.125 +
1.126 + /**
1.127 + @fn ExternalizeL(CTestManager* aTestManager)
1.128 + Intended Usage : Implemented by the developer to persist the state of the object under test.
1.129 + Error Condition : Leaves with an error code.
1.130 + @since 6.0
1.131 + @param TAny* A pointer to the object under test.
1.132 + @return None.
1.133 + @pre TTestManager_StateAccessor is fully constructed.
1.134 + @post No change to the class under test, its internal state.
1.135 + is persisted.
1.136 + */
1.137 + inline void ExternalizeL(CTestManager* aTestManager);
1.138 + }; // TTestManager_StateAccessor
1.139 +
1.140 +#include "TestManagerStateAccessor.inl"
1.141 +
1.142 +#endif // __TESTMANAGERSTATEACCESSOR_H__
1.143 +