os/ossrv/lowlevellibsandfws/pluginfw/Framework/EcomTestUtils/EcomTestCompTestabilityUtils.cpp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/lowlevellibsandfws/pluginfw/Framework/EcomTestUtils/EcomTestCompTestabilityUtils.cpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,84 @@
     1.4 +// Copyright (c) 2005-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 +//
    1.18 +
    1.19 +#include <e32base.h>
    1.20 +#include <bautils.h>
    1.21 +#include <f32file.h>
    1.22 +#include "../EcomTestUtils/EcomTestCompTestabilityUtils.h"
    1.23 +#include "../EcomTestUtils/EcomTestIniFileUtils.h"
    1.24 +#include "../EcomTestUtils/EcomTestUtils.h"
    1.25 +
    1.26 +_LIT(KIniEcomTestBehaviourFileNameInit, "z:\\test\\data\\EComTestBehaviour.ini");
    1.27 +_LIT(KIniEcomTestBehaviourFileNameFinal, "c:\\EComTestBehaviour.ini");
    1.28 +
    1.29 +//
    1.30 +//
    1.31 +//Test macroes and functions
    1.32 +//
    1.33 +//
    1.34 +
    1.35 +static  void Check(RTest& aTest, TInt aValue, TInt aExpected, TInt aLine)
    1.36 +	{
    1.37 +	if(aValue != aExpected)
    1.38 +		{
    1.39 +		RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
    1.40 +		aTest(EFalse, aLine);
    1.41 +		}
    1.42 +	}
    1.43 +#define TEST2(aTest, aValue, aExpected) ::Check(aTest, aValue, aExpected, __LINE__)
    1.44 +
    1.45 +//
    1.46 +//
    1.47 +//Helper functions
    1.48 +//
    1.49 +//
    1.50 +/**
    1.51 +Enable ECom test behaviour by copying the EComTestBehaviour.ini
    1.52 +@param aTest the RTest that this method is called from
    1.53 +@param	aFs A reference to an connected file server session.
    1.54 +*/
    1.55 +void EnableEcomTestBehaviour(RTest& aTest, RFs& /*aFs*/)
    1.56 +	{
    1.57 +	TInt err = KErrNone;
    1.58 +	TParse initFileName;
    1.59 +	TParse finalFileName;
    1.60 +
    1.61 +	initFileName.Set(KIniEcomTestBehaviourFileNameInit, NULL, NULL);
    1.62 +	finalFileName.Set(KIniEcomTestBehaviourFileNameFinal, NULL, NULL);
    1.63 +	
    1.64 +	//copy the file to enable test behaviour
    1.65 +	TRAP(err, EComTestUtils::FileManCopyFileL(
    1.66 +					initFileName.FullName(),
    1.67 +	                finalFileName.FullName()));
    1.68 +	TEST2(aTest, err, KErrNone);
    1.69 +	}
    1.70 +
    1.71 +/**
    1.72 +Enable ECom test behaviour by deleting the EComTestBehaviour.ini
    1.73 +@param aTest the RTest that this method is called from
    1.74 +@param	aFs A reference to an connected file server session.
    1.75 +*/
    1.76 +void DisableEcomTestBehaviour(RTest& aTest, RFs& /*aFs*/)
    1.77 +	{
    1.78 +	TInt err = KErrNone;
    1.79 +	TParse finalFileName;
    1.80 +
    1.81 +	finalFileName.Set(KIniEcomTestBehaviourFileNameFinal, NULL, NULL);
    1.82 +	
    1.83 +	//delete the file to disable test behaviour
    1.84 +	TRAP(err, EComTestUtils::RfsDeleteFileL(finalFileName.FullName()));
    1.85 +	TEST2(aTest, err, KErrNone);
    1.86 +	}
    1.87 +