os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/ComponentTesterTest/ComponentTesterStateAccessor.inl
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
// The implementation of the accessor class upon the CComponentTester
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
// ______________________________________________________________________________
sl@0
    19
//
sl@0
    20
_LIT(KTComponentTester_DumpName,"C:\\System\\Data\\Logs\\TComponentTester_StateDump.bin");
sl@0
    21
sl@0
    22
inline TInt TComponentTester_StateAccessor::InvariantTest(TAny* aTestObject)
sl@0
    23
	{
sl@0
    24
	if(aTestObject)
sl@0
    25
		{
sl@0
    26
		CComponentTester* theComponentTester = REINTERPRET_CAST(CComponentTester*, aTestObject);
sl@0
    27
		if(theComponentTester->iUnitTests == NULL)
sl@0
    28
			return KTestBedFailedInvariant;
sl@0
    29
		}
sl@0
    30
	return KErrNone;
sl@0
    31
	}
sl@0
    32
sl@0
    33
inline TInt TComponentTester_StateAccessor::Internalize(TAny* aTestObject)
sl@0
    34
	{
sl@0
    35
	TInt error = KErrNone;
sl@0
    36
	if(aTestObject != NULL)
sl@0
    37
		{
sl@0
    38
		CComponentTester* ComponentTester = REINTERPRET_CAST(CComponentTester*, aTestObject);
sl@0
    39
		TRAP(error,InternalizeL(ComponentTester));
sl@0
    40
		}
sl@0
    41
	return error;
sl@0
    42
	}
sl@0
    43
sl@0
    44
inline TInt TComponentTester_StateAccessor::Externalize(TAny* aTestObject)
sl@0
    45
	{
sl@0
    46
	TInt error = KErrNone;
sl@0
    47
	if(aTestObject != NULL)
sl@0
    48
		{
sl@0
    49
		CComponentTester* ComponentTester = REINTERPRET_CAST(CComponentTester*, aTestObject);
sl@0
    50
		TRAP(error,ExternalizeL(ComponentTester));
sl@0
    51
		}
sl@0
    52
	return error;
sl@0
    53
	}
sl@0
    54
sl@0
    55
inline void TComponentTester_StateAccessor::InternalizeL(RFileReadStream& /* aStream */, CComponentTester* /* aLoadManager */)
sl@0
    56
	{
sl@0
    57
	// Not required
sl@0
    58
	}
sl@0
    59
sl@0
    60
inline void TComponentTester_StateAccessor::ExternalizeL(RFileWriteStream& /* aStream */, CComponentTester* /* aLoadManager */)
sl@0
    61
	{
sl@0
    62
	// Not required
sl@0
    63
	}
sl@0
    64
sl@0
    65
sl@0
    66
inline CComponentTesterTestDerivation::CComponentTesterTestDerivation(CDataLogger& aDataLogger, MComponentTestObserver& aObserver)
sl@0
    67
	: CComponentTester(aDataLogger, aObserver)
sl@0
    68
	{
sl@0
    69
	}
sl@0
    70
sl@0
    71
inline void CComponentTesterTestDerivation::ConstructL()
sl@0
    72
	{
sl@0
    73
	ComponentTesterConstructL();
sl@0
    74
	}
sl@0
    75
sl@0
    76
inline CComponentTesterTestDerivation* TComponentTester_StateAccessor::CreateComponentTester(CComponentTester& /*aCompTest*/, 
sl@0
    77
																							 CDataLogger& aDataLogger, 
sl@0
    78
																							 MComponentTestObserver& aObserver)
sl@0
    79
	{
sl@0
    80
	return new(ELeave)CComponentTesterTestDerivation(aDataLogger, aObserver);
sl@0
    81
	}
sl@0
    82
sl@0
    83
inline void TComponentTester_StateAccessor::AddUnitTestL(CComponentTester& aCompTest, CUnitTest* aUnitTest)
sl@0
    84
	{
sl@0
    85
	aCompTest.AddUnitTestL(aUnitTest);
sl@0
    86
	}
sl@0
    87
sl@0
    88
inline void TComponentTester_StateAccessor::AddParamUnitTestL(CComponentTester& aCompTest, CUnitTest* aUnitTest)
sl@0
    89
	{
sl@0
    90
	aCompTest.AddParamUnitTestL(aUnitTest);
sl@0
    91
	}
sl@0
    92
sl@0
    93
inline void TComponentTester_StateAccessor::RunL(CComponentTester& aCompTest)
sl@0
    94
	{
sl@0
    95
	aCompTest.RunL();
sl@0
    96
	}
sl@0
    97
sl@0
    98
// internal helpers
sl@0
    99
inline void TComponentTester_StateAccessor::InternalizeL(CComponentTester* aComponentTester)
sl@0
   100
	{
sl@0
   101
	// Read in the dumped data
sl@0
   102
	RFs fs;
sl@0
   103
	User::LeaveIfError(fs.Connect());
sl@0
   104
	CleanupClosePushL(fs);
sl@0
   105
	// Read the object dump
sl@0
   106
	TParse filename;
sl@0
   107
	filename.Set(KTComponentTester_DumpName(),NULL,NULL);
sl@0
   108
	RFileReadStream stream;
sl@0
   109
	User::LeaveIfError(stream.Open(fs,filename.FullName(), EFileRead));
sl@0
   110
	CleanupClosePushL(stream);
sl@0
   111
	InternalizeL(stream, aComponentTester);
sl@0
   112
	CleanupStack::PopAndDestroy(2);	// stream & fs
sl@0
   113
	}
sl@0
   114
sl@0
   115
inline void TComponentTester_StateAccessor::ExternalizeL(CComponentTester* aComponentTester)
sl@0
   116
	{
sl@0
   117
	RFs fs;
sl@0
   118
	User::LeaveIfError(fs.Connect());
sl@0
   119
	CleanupClosePushL(fs);
sl@0
   120
	// Write out the object dump
sl@0
   121
	TParse filename;
sl@0
   122
	filename.Set(KTComponentTester_DumpName(),NULL,NULL);
sl@0
   123
	RFileWriteStream stream;
sl@0
   124
	User::LeaveIfError(stream.Replace(fs,filename.FullName(), EFileWrite));
sl@0
   125
	CleanupClosePushL(stream);
sl@0
   126
	ExternalizeL(stream, aComponentTester);
sl@0
   127
	CleanupStack::PopAndDestroy(2);	// stream & fs
sl@0
   128
	}
sl@0
   129