sl@0: // Copyright (c) 2005-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: // sl@0: sl@0: #include sl@0: #include sl@0: #include sl@0: #include "../EcomTestUtils/EcomTestCompTestabilityUtils.h" sl@0: #include "../EcomTestUtils/EcomTestIniFileUtils.h" sl@0: #include "../EcomTestUtils/EcomTestUtils.h" sl@0: sl@0: _LIT(KIniEcomTestBehaviourFileNameInit, "z:\\test\\data\\EComTestBehaviour.ini"); sl@0: _LIT(KIniEcomTestBehaviourFileNameFinal, "c:\\EComTestBehaviour.ini"); sl@0: sl@0: // sl@0: // sl@0: //Test macroes and functions sl@0: // sl@0: // sl@0: sl@0: static void Check(RTest& aTest, TInt aValue, TInt aExpected, TInt aLine) sl@0: { sl@0: if(aValue != aExpected) sl@0: { sl@0: RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue); sl@0: aTest(EFalse, aLine); sl@0: } sl@0: } sl@0: #define TEST2(aTest, aValue, aExpected) ::Check(aTest, aValue, aExpected, __LINE__) sl@0: sl@0: // sl@0: // sl@0: //Helper functions sl@0: // sl@0: // sl@0: /** sl@0: Enable ECom test behaviour by copying the EComTestBehaviour.ini sl@0: @param aTest the RTest that this method is called from sl@0: @param aFs A reference to an connected file server session. sl@0: */ sl@0: void EnableEcomTestBehaviour(RTest& aTest, RFs& /*aFs*/) sl@0: { sl@0: TInt err = KErrNone; sl@0: TParse initFileName; sl@0: TParse finalFileName; sl@0: sl@0: initFileName.Set(KIniEcomTestBehaviourFileNameInit, NULL, NULL); sl@0: finalFileName.Set(KIniEcomTestBehaviourFileNameFinal, NULL, NULL); sl@0: sl@0: //copy the file to enable test behaviour sl@0: TRAP(err, EComTestUtils::FileManCopyFileL( sl@0: initFileName.FullName(), sl@0: finalFileName.FullName())); sl@0: TEST2(aTest, err, KErrNone); sl@0: } sl@0: sl@0: /** sl@0: Enable ECom test behaviour by deleting the EComTestBehaviour.ini sl@0: @param aTest the RTest that this method is called from sl@0: @param aFs A reference to an connected file server session. sl@0: */ sl@0: void DisableEcomTestBehaviour(RTest& aTest, RFs& /*aFs*/) sl@0: { sl@0: TInt err = KErrNone; sl@0: TParse finalFileName; sl@0: sl@0: finalFileName.Set(KIniEcomTestBehaviourFileNameFinal, NULL, NULL); sl@0: sl@0: //delete the file to disable test behaviour sl@0: TRAP(err, EComTestUtils::RfsDeleteFileL(finalFileName.FullName())); sl@0: TEST2(aTest, err, KErrNone); sl@0: } sl@0: