sl@0: // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // The implementation of the accessor class upon the CUnitTest sl@0: // sl@0: // sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: _LIT(KTUnitTest_DumpName,"C:\\System\\Data\\Logs\\TUnitTest_StateDump.bin"); sl@0: sl@0: inline TInt TUnitTest_StateAccessor::InvariantTest(TAny* aTestObject) sl@0: { sl@0: if(aTestObject) sl@0: { sl@0: // CUnitTest* UnitTest = REINTERPRET_CAST(CUnitTest*, aTestObject); sl@0: // Implement the correct Invariant test for CUnitTest. sl@0: //#pragma message( __FILE__LINE__ "TO DO : Implement the correct Invariant test for CUnitTest.") sl@0: } sl@0: return KErrNone; sl@0: } sl@0: sl@0: inline TInt TUnitTest_StateAccessor::Internalize(TAny* aTestObject) sl@0: { sl@0: TInt error = KErrNone; sl@0: if(aTestObject != NULL) sl@0: { sl@0: CUnitTest* UnitTest = REINTERPRET_CAST(CUnitTest*, aTestObject); sl@0: TRAP(error,InternalizeL(UnitTest)); sl@0: } sl@0: return error; sl@0: } sl@0: sl@0: inline TInt TUnitTest_StateAccessor::Externalize(TAny* aTestObject) sl@0: { sl@0: TInt error = KErrNone; sl@0: if(aTestObject != NULL) sl@0: { sl@0: CUnitTest* UnitTest = REINTERPRET_CAST(CUnitTest*, aTestObject); sl@0: TRAP(error,ExternalizeL(UnitTest)); sl@0: } sl@0: return error; sl@0: } sl@0: sl@0: inline void TUnitTest_StateAccessor::InternalizeL(RFileReadStream& /* aStream */, CUnitTest* /* aLoadManager */) sl@0: { sl@0: // Not required sl@0: } sl@0: sl@0: inline void TUnitTest_StateAccessor::ExternalizeL(RFileWriteStream& /* aStream */, CUnitTest* /* aLoadManager */) sl@0: { sl@0: // Not required sl@0: } sl@0: sl@0: sl@0: inline CUnitTestTestDerivation::CUnitTestTestDerivation(const TDesC& aName, CDataLogger& aDataLogger, MUnitTestObserver& aUnitTestObserver) sl@0: : CUnitTest(aName, aDataLogger, aUnitTestObserver) sl@0: { sl@0: } sl@0: sl@0: inline void CUnitTestTestDerivation::ConstructL() sl@0: { sl@0: UnitTestConstructL(); sl@0: } sl@0: sl@0: inline CUnitTestTestDerivation* TUnitTest_StateAccessor::CreateUnitTest(CUnitTest& /*aUnitTest*/, sl@0: const TDesC& aName, sl@0: CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aUnitTestObserver) sl@0: { sl@0: return new(ELeave)CUnitTestTestDerivation(aName, aDataLogger, aUnitTestObserver); sl@0: } sl@0: sl@0: sl@0: inline void TUnitTest_StateAccessor::RunL(CUnitTest& aUnitTest) sl@0: { sl@0: aUnitTest.RunL(); sl@0: } sl@0: sl@0: inline void TUnitTest_StateAccessor::AddTransitionL(CUnitTest& aUnitTest, CTransition* aTransition) sl@0: { sl@0: aUnitTest.AddTransitionL(aTransition); sl@0: } sl@0: sl@0: inline void TUnitTest_StateAccessor::AddBlockingTransitionL(CUnitTest& aUnitTest, CTransition* aTransition) sl@0: { sl@0: aUnitTest.AddBlockingTransitionL(aTransition); sl@0: } sl@0: sl@0: inline void TUnitTest_StateAccessor::AddLeaveErrorCodeL(CUnitTest& aUnitTest, TInt& aLeaveErrorCode) sl@0: { sl@0: aUnitTest.AddLeaveErrorCodeL(aLeaveErrorCode); sl@0: } sl@0: sl@0: sl@0: // internal helpers sl@0: inline void TUnitTest_StateAccessor::InternalizeL(CUnitTest* aUnitTest) sl@0: { sl@0: // Read in the dumped data sl@0: RFs fs; sl@0: User::LeaveIfError(fs.Connect()); sl@0: CleanupClosePushL(fs); sl@0: // Read the object dump sl@0: TParse filename; sl@0: filename.Set(KTUnitTest_DumpName(),NULL,NULL); sl@0: RFileReadStream stream; sl@0: User::LeaveIfError(stream.Open(fs,filename.FullName(), EFileRead)); sl@0: CleanupClosePushL(stream); sl@0: InternalizeL(stream, aUnitTest); sl@0: CleanupStack::PopAndDestroy(2); // stream & fs sl@0: } sl@0: sl@0: inline void TUnitTest_StateAccessor::ExternalizeL(CUnitTest* aUnitTest) sl@0: { sl@0: RFs fs; sl@0: User::LeaveIfError(fs.Connect()); sl@0: CleanupClosePushL(fs); sl@0: // Write out the object dump sl@0: TParse filename; sl@0: filename.Set(KTUnitTest_DumpName(),NULL,NULL); sl@0: RFileWriteStream stream; sl@0: User::LeaveIfError(stream.Replace(fs,filename.FullName(), EFileWrite)); sl@0: CleanupClosePushL(stream); sl@0: ExternalizeL(stream, aUnitTest); sl@0: CleanupStack::PopAndDestroy(2); // stream & fs sl@0: } sl@0: