os/ossrv/lowlevellibsandfws/pluginfw/Framework/EcomTestUtils/EcomTestIniFileUtils.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/EcomTestIniFileUtils.h"
20 #include "../EcomTestUtils/EcomTestUtils.h"
22 _LIT(KCDriveIniFileName, "c:\\private\\10009D8F\\EComSrvr.ini");
23 _LIT(KZDriveIniFileName, "z:\\private\\10009D8F\\EComSrvr.ini");
24 _LIT(KIniBackupFileName, "c:\\private\\10009D8F\\EComSrvr_backup.ini");
25 _LIT(KIniFileName, "z:\\test\\data\\EComSrvr.ini");
35 Disable Ssa by using the EComSrvr_SsaDisabled.ini
36 The function will make a backup of the existing EComSrvr.ini if there is one.
37 @param aTest the RTest that this method is called from
38 @param aFs A reference to an connected file server session.
40 void DisableSsa(RTest& aTest, RFs& /*aFs*/)
44 TParse backupIniFileName;
47 //check if ecomsrvr.ini file exists. If so make a backup
48 iniFileName.Set(KCDriveIniFileName, NULL, NULL);
49 backupIniFileName.Set(KIniBackupFileName, NULL, NULL);
50 TRAP(err, EComTestUtils::RfsReplaceFileL(
51 iniFileName.FullName(),
52 backupIniFileName.FullName()));
53 if(err != KErrNotFound) //it is ok if the file does not exist
55 TESTC(aTest, err, KErrNone);
58 //copy ecomsrvr.ini to disable ssa
59 tempFileName.Set(KIniFileName, NULL, NULL);
60 TRAP(err, EComTestUtils::FileManCopyFileL(
61 tempFileName.FullName(),
62 iniFileName.FullName()));
63 TESTC(aTest, err, KErrNone);
67 Enable Ssa by removing EComSrvr.ini if there is one
68 The function will make a backup of the existing EComSrvr.ini if there is one.
69 @param aTest the RTest that this method is called from
70 @param aFs A reference to an connected file server session.
72 void EnableSsa(RTest& aTest, RFs& /*aFs*/)
76 TParse backupIniFileName;
79 //check if ecomsrvr.ini file exists. If so make a backup
80 iniFileName.Set(KCDriveIniFileName, NULL, NULL);
81 backupIniFileName.Set(KIniBackupFileName, NULL, NULL);
82 TRAP(err, EComTestUtils::RfsReplaceFileL(
83 iniFileName.FullName(),
84 backupIniFileName.FullName()));
85 if(err != KErrNotFound) //it is ok if the file does not exist
87 TESTC(aTest, err, KErrNone);
92 Reset the ssa by replacing the ini file with the backup if
93 a backup was created in the first place
94 @param aTest the RTest that this method is called from
95 @param aFs A reference to an connected file server session.
97 void ResetSsa(RTest& aTest, RFs& /*aFs*/)
101 TParse backupIniFileName;
103 iniFileName.Set(KCDriveIniFileName, NULL, NULL);
104 backupIniFileName.Set(KIniBackupFileName, NULL, NULL);
106 //remove ecomsrvr.ini
107 TRAP(err, EComTestUtils::RfsDeleteFileL(iniFileName.FullName()));
108 TESTC(aTest, err, KErrNone);
110 //if the ecomsrvr.ini file initially existed put it back using
112 TRAP(err, EComTestUtils::RfsReplaceFileL(
113 backupIniFileName.FullName(),
114 iniFileName.FullName()));
115 if(err != KErrNotFound) //it is ok if the file does not exist
117 TESTC(aTest, err, KErrNone);
122 Cheks if z:\\private\\10009D8F\\EComSrvr.ini exists. If it does
123 then fails the test to ensure the following tests are not run.
124 @param aTest the RTest that this method is called from
125 @param aFs A reference to an connected file server session.
127 void TestEnableDisableSsaL(RTest& aTest, RFs& aFs)
130 iniFileName.Set(KZDriveIniFileName, NULL, NULL);
131 TBool isFileExisting = BaflUtils::FileExists(aFs, iniFileName.FullName());
135 //If the file already exists on z: drive then the test that calls
136 //this method cannot be executed. Probably the test is trying to
137 //disable/enable SSA behaviour using the c: drive location. Since
138 //z:drive has higher priority it will never be possible to enable
140 TESTC(aTest, isFileExisting, EFalse);
141 RDebug::Print(_L("EcomSrvr.ini file exists in z: drive. This test cannot be executed.\n"));