os/ossrv/lowlevellibsandfws/pluginfw/Framework/EcomTestUtils/EcomTestCompTestabilityUtils.cpp
Update contrib.
1 // Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
19 #include "../EcomTestUtils/EcomTestCompTestabilityUtils.h"
20 #include "../EcomTestUtils/EcomTestIniFileUtils.h"
21 #include "../EcomTestUtils/EcomTestUtils.h"
23 _LIT(KIniEcomTestBehaviourFileNameInit, "z:\\test\\data\\EComTestBehaviour.ini");
24 _LIT(KIniEcomTestBehaviourFileNameFinal, "c:\\EComTestBehaviour.ini");
28 //Test macroes and functions
32 static void Check(RTest& aTest, TInt aValue, TInt aExpected, TInt aLine)
34 if(aValue != aExpected)
36 RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
40 #define TEST2(aTest, aValue, aExpected) ::Check(aTest, aValue, aExpected, __LINE__)
48 Enable ECom test behaviour by copying the EComTestBehaviour.ini
49 @param aTest the RTest that this method is called from
50 @param aFs A reference to an connected file server session.
52 void EnableEcomTestBehaviour(RTest& aTest, RFs& /*aFs*/)
58 initFileName.Set(KIniEcomTestBehaviourFileNameInit, NULL, NULL);
59 finalFileName.Set(KIniEcomTestBehaviourFileNameFinal, NULL, NULL);
61 //copy the file to enable test behaviour
62 TRAP(err, EComTestUtils::FileManCopyFileL(
63 initFileName.FullName(),
64 finalFileName.FullName()));
65 TEST2(aTest, err, KErrNone);
69 Enable ECom test behaviour by deleting the EComTestBehaviour.ini
70 @param aTest the RTest that this method is called from
71 @param aFs A reference to an connected file server session.
73 void DisableEcomTestBehaviour(RTest& aTest, RFs& /*aFs*/)
78 finalFileName.Set(KIniEcomTestBehaviourFileNameFinal, NULL, NULL);
80 //delete the file to disable test behaviour
81 TRAP(err, EComTestUtils::RfsDeleteFileL(finalFileName.FullName()));
82 TEST2(aTest, err, KErrNone);