os/ossrv/lowlevellibsandfws/pluginfw/Framework/EcomTestUtils/EcomTestIniFileUtils.cpp
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/lowlevellibsandfws/pluginfw/Framework/EcomTestUtils/EcomTestIniFileUtils.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,143 @@
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/EcomTestIniFileUtils.h"
1.23 +#include "../EcomTestUtils/EcomTestUtils.h"
1.24 +
1.25 +_LIT(KCDriveIniFileName, "c:\\private\\10009D8F\\EComSrvr.ini");
1.26 +_LIT(KZDriveIniFileName, "z:\\private\\10009D8F\\EComSrvr.ini");
1.27 +_LIT(KIniBackupFileName, "c:\\private\\10009D8F\\EComSrvr_backup.ini");
1.28 +_LIT(KIniFileName, "z:\\test\\data\\EComSrvr.ini");
1.29 +
1.30 +
1.31 +//
1.32 +//
1.33 +//Helper functions
1.34 +//
1.35 +//
1.36 +
1.37 +/**
1.38 +Disable Ssa by using the EComSrvr_SsaDisabled.ini
1.39 +The function will make a backup of the existing EComSrvr.ini if there is one.
1.40 +@param aTest the RTest that this method is called from
1.41 +@param aFs A reference to an connected file server session.
1.42 +*/
1.43 +void DisableSsa(RTest& aTest, RFs& /*aFs*/)
1.44 + {
1.45 + TInt err = KErrNone;
1.46 + TParse iniFileName;
1.47 + TParse backupIniFileName;
1.48 + TParse tempFileName;
1.49 +
1.50 + //check if ecomsrvr.ini file exists. If so make a backup
1.51 + iniFileName.Set(KCDriveIniFileName, NULL, NULL);
1.52 + backupIniFileName.Set(KIniBackupFileName, NULL, NULL);
1.53 + TRAP(err, EComTestUtils::RfsReplaceFileL(
1.54 + iniFileName.FullName(),
1.55 + backupIniFileName.FullName()));
1.56 + if(err != KErrNotFound) //it is ok if the file does not exist
1.57 + {
1.58 + TESTC(aTest, err, KErrNone);
1.59 + }
1.60 +
1.61 + //copy ecomsrvr.ini to disable ssa
1.62 + tempFileName.Set(KIniFileName, NULL, NULL);
1.63 + TRAP(err, EComTestUtils::FileManCopyFileL(
1.64 + tempFileName.FullName(),
1.65 + iniFileName.FullName()));
1.66 + TESTC(aTest, err, KErrNone);
1.67 + }
1.68 +
1.69 +/**
1.70 +Enable Ssa by removing EComSrvr.ini if there is one
1.71 +The function will make a backup of the existing EComSrvr.ini if there is one.
1.72 +@param aTest the RTest that this method is called from
1.73 +@param aFs A reference to an connected file server session.
1.74 +*/
1.75 +void EnableSsa(RTest& aTest, RFs& /*aFs*/)
1.76 + {
1.77 + TInt err = KErrNone;
1.78 + TParse iniFileName;
1.79 + TParse backupIniFileName;
1.80 + TParse tempFileName;
1.81 +
1.82 + //check if ecomsrvr.ini file exists. If so make a backup
1.83 + iniFileName.Set(KCDriveIniFileName, NULL, NULL);
1.84 + backupIniFileName.Set(KIniBackupFileName, NULL, NULL);
1.85 + TRAP(err, EComTestUtils::RfsReplaceFileL(
1.86 + iniFileName.FullName(),
1.87 + backupIniFileName.FullName()));
1.88 + if(err != KErrNotFound) //it is ok if the file does not exist
1.89 + {
1.90 + TESTC(aTest, err, KErrNone);
1.91 + }
1.92 + }
1.93 +
1.94 +/**
1.95 +Reset the ssa by replacing the ini file with the backup if
1.96 +a backup was created in the first place
1.97 +@param aTest the RTest that this method is called from
1.98 +@param aFs A reference to an connected file server session.
1.99 +*/
1.100 +void ResetSsa(RTest& aTest, RFs& /*aFs*/)
1.101 + {
1.102 + TInt err = KErrNone;
1.103 + TParse iniFileName;
1.104 + TParse backupIniFileName;
1.105 +
1.106 + iniFileName.Set(KCDriveIniFileName, NULL, NULL);
1.107 + backupIniFileName.Set(KIniBackupFileName, NULL, NULL);
1.108 +
1.109 + //remove ecomsrvr.ini
1.110 + TRAP(err, EComTestUtils::RfsDeleteFileL(iniFileName.FullName()));
1.111 + TESTC(aTest, err, KErrNone);
1.112 +
1.113 + //if the ecomsrvr.ini file initially existed put it back using
1.114 + //the backup
1.115 + TRAP(err, EComTestUtils::RfsReplaceFileL(
1.116 + backupIniFileName.FullName(),
1.117 + iniFileName.FullName()));
1.118 + if(err != KErrNotFound) //it is ok if the file does not exist
1.119 + {
1.120 + TESTC(aTest, err, KErrNone);
1.121 + }
1.122 + }
1.123 +
1.124 +/**
1.125 +Cheks if z:\\private\\10009D8F\\EComSrvr.ini exists. If it does
1.126 +then fails the test to ensure the following tests are not run.
1.127 +@param aTest the RTest that this method is called from
1.128 +@param aFs A reference to an connected file server session.
1.129 +*/
1.130 +void TestEnableDisableSsaL(RTest& aTest, RFs& aFs)
1.131 + {
1.132 + TParse iniFileName;
1.133 + iniFileName.Set(KZDriveIniFileName, NULL, NULL);
1.134 + TBool isFileExisting = BaflUtils::FileExists(aFs, iniFileName.FullName());
1.135 +
1.136 + if(isFileExisting)
1.137 + {
1.138 + //If the file already exists on z: drive then the test that calls
1.139 + //this method cannot be executed. Probably the test is trying to
1.140 + //disable/enable SSA behaviour using the c: drive location. Since
1.141 + //z:drive has higher priority it will never be possible to enable
1.142 + //SSA behaviour.
1.143 + TESTC(aTest, isFileExisting, EFalse);
1.144 + RDebug::Print(_L("EcomSrvr.ini file exists in z: drive. This test cannot be executed.\n"));
1.145 + }
1.146 + }