os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/UnitTestTest/UnitTestStateAccessor.inl
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/UnitTestTest/UnitTestStateAccessor.inl Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,137 @@
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 implementation of the accessor class upon the CUnitTest
1.18 +//
1.19 +//
1.20 +
1.21 +// ______________________________________________________________________________
1.22 +//
1.23 +_LIT(KTUnitTest_DumpName,"C:\\System\\Data\\Logs\\TUnitTest_StateDump.bin");
1.24 +
1.25 +inline TInt TUnitTest_StateAccessor::InvariantTest(TAny* aTestObject)
1.26 + {
1.27 + if(aTestObject)
1.28 + {
1.29 + // CUnitTest* UnitTest = REINTERPRET_CAST(CUnitTest*, aTestObject);
1.30 + // Implement the correct Invariant test for CUnitTest.
1.31 +//#pragma message( __FILE__LINE__ "TO DO : Implement the correct Invariant test for CUnitTest.")
1.32 + }
1.33 + return KErrNone;
1.34 + }
1.35 +
1.36 +inline TInt TUnitTest_StateAccessor::Internalize(TAny* aTestObject)
1.37 + {
1.38 + TInt error = KErrNone;
1.39 + if(aTestObject != NULL)
1.40 + {
1.41 + CUnitTest* UnitTest = REINTERPRET_CAST(CUnitTest*, aTestObject);
1.42 + TRAP(error,InternalizeL(UnitTest));
1.43 + }
1.44 + return error;
1.45 + }
1.46 +
1.47 +inline TInt TUnitTest_StateAccessor::Externalize(TAny* aTestObject)
1.48 + {
1.49 + TInt error = KErrNone;
1.50 + if(aTestObject != NULL)
1.51 + {
1.52 + CUnitTest* UnitTest = REINTERPRET_CAST(CUnitTest*, aTestObject);
1.53 + TRAP(error,ExternalizeL(UnitTest));
1.54 + }
1.55 + return error;
1.56 + }
1.57 +
1.58 +inline void TUnitTest_StateAccessor::InternalizeL(RFileReadStream& /* aStream */, CUnitTest* /* aLoadManager */)
1.59 + {
1.60 + // Not required
1.61 + }
1.62 +
1.63 +inline void TUnitTest_StateAccessor::ExternalizeL(RFileWriteStream& /* aStream */, CUnitTest* /* aLoadManager */)
1.64 + {
1.65 + // Not required
1.66 + }
1.67 +
1.68 +
1.69 +inline CUnitTestTestDerivation::CUnitTestTestDerivation(const TDesC& aName, CDataLogger& aDataLogger, MUnitTestObserver& aUnitTestObserver)
1.70 + : CUnitTest(aName, aDataLogger, aUnitTestObserver)
1.71 + {
1.72 + }
1.73 +
1.74 +inline void CUnitTestTestDerivation::ConstructL()
1.75 + {
1.76 + UnitTestConstructL();
1.77 + }
1.78 +
1.79 +inline CUnitTestTestDerivation* TUnitTest_StateAccessor::CreateUnitTest(CUnitTest& /*aUnitTest*/,
1.80 + const TDesC& aName,
1.81 + CDataLogger& aDataLogger,
1.82 + MUnitTestObserver& aUnitTestObserver)
1.83 + {
1.84 + return new(ELeave)CUnitTestTestDerivation(aName, aDataLogger, aUnitTestObserver);
1.85 + }
1.86 +
1.87 +
1.88 +inline void TUnitTest_StateAccessor::RunL(CUnitTest& aUnitTest)
1.89 + {
1.90 + aUnitTest.RunL();
1.91 + }
1.92 +
1.93 +inline void TUnitTest_StateAccessor::AddTransitionL(CUnitTest& aUnitTest, CTransition* aTransition)
1.94 + {
1.95 + aUnitTest.AddTransitionL(aTransition);
1.96 + }
1.97 +
1.98 +inline void TUnitTest_StateAccessor::AddBlockingTransitionL(CUnitTest& aUnitTest, CTransition* aTransition)
1.99 + {
1.100 + aUnitTest.AddBlockingTransitionL(aTransition);
1.101 + }
1.102 +
1.103 +inline void TUnitTest_StateAccessor::AddLeaveErrorCodeL(CUnitTest& aUnitTest, TInt& aLeaveErrorCode)
1.104 + {
1.105 + aUnitTest.AddLeaveErrorCodeL(aLeaveErrorCode);
1.106 + }
1.107 +
1.108 +
1.109 +// internal helpers
1.110 +inline void TUnitTest_StateAccessor::InternalizeL(CUnitTest* aUnitTest)
1.111 + {
1.112 + // Read in the dumped data
1.113 + RFs fs;
1.114 + User::LeaveIfError(fs.Connect());
1.115 + CleanupClosePushL(fs);
1.116 + // Read the object dump
1.117 + TParse filename;
1.118 + filename.Set(KTUnitTest_DumpName(),NULL,NULL);
1.119 + RFileReadStream stream;
1.120 + User::LeaveIfError(stream.Open(fs,filename.FullName(), EFileRead));
1.121 + CleanupClosePushL(stream);
1.122 + InternalizeL(stream, aUnitTest);
1.123 + CleanupStack::PopAndDestroy(2); // stream & fs
1.124 + }
1.125 +
1.126 +inline void TUnitTest_StateAccessor::ExternalizeL(CUnitTest* aUnitTest)
1.127 + {
1.128 + RFs fs;
1.129 + User::LeaveIfError(fs.Connect());
1.130 + CleanupClosePushL(fs);
1.131 + // Write out the object dump
1.132 + TParse filename;
1.133 + filename.Set(KTUnitTest_DumpName(),NULL,NULL);
1.134 + RFileWriteStream stream;
1.135 + User::LeaveIfError(stream.Replace(fs,filename.FullName(), EFileWrite));
1.136 + CleanupClosePushL(stream);
1.137 + ExternalizeL(stream, aUnitTest);
1.138 + CleanupStack::PopAndDestroy(2); // stream & fs
1.139 + }
1.140 +