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/EcomTestIniFileUtils.h" sl@0: #include "../EcomTestUtils/EcomTestUtils.h" sl@0: sl@0: _LIT(KCDriveIniFileName, "c:\\private\\10009D8F\\EComSrvr.ini"); sl@0: _LIT(KZDriveIniFileName, "z:\\private\\10009D8F\\EComSrvr.ini"); sl@0: _LIT(KIniBackupFileName, "c:\\private\\10009D8F\\EComSrvr_backup.ini"); sl@0: _LIT(KIniFileName, "z:\\test\\data\\EComSrvr.ini"); sl@0: sl@0: sl@0: // sl@0: // sl@0: //Helper functions sl@0: // sl@0: // sl@0: sl@0: /** sl@0: Disable Ssa by using the EComSrvr_SsaDisabled.ini sl@0: The function will make a backup of the existing EComSrvr.ini if there is one. 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 DisableSsa(RTest& aTest, RFs& /*aFs*/) sl@0: { sl@0: TInt err = KErrNone; sl@0: TParse iniFileName; sl@0: TParse backupIniFileName; sl@0: TParse tempFileName; sl@0: sl@0: //check if ecomsrvr.ini file exists. If so make a backup sl@0: iniFileName.Set(KCDriveIniFileName, NULL, NULL); sl@0: backupIniFileName.Set(KIniBackupFileName, NULL, NULL); sl@0: TRAP(err, EComTestUtils::RfsReplaceFileL( sl@0: iniFileName.FullName(), sl@0: backupIniFileName.FullName())); sl@0: if(err != KErrNotFound) //it is ok if the file does not exist sl@0: { sl@0: TESTC(aTest, err, KErrNone); sl@0: } sl@0: sl@0: //copy ecomsrvr.ini to disable ssa sl@0: tempFileName.Set(KIniFileName, NULL, NULL); sl@0: TRAP(err, EComTestUtils::FileManCopyFileL( sl@0: tempFileName.FullName(), sl@0: iniFileName.FullName())); sl@0: TESTC(aTest, err, KErrNone); sl@0: } sl@0: sl@0: /** sl@0: Enable Ssa by removing EComSrvr.ini if there is one sl@0: The function will make a backup of the existing EComSrvr.ini if there is one. 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 EnableSsa(RTest& aTest, RFs& /*aFs*/) sl@0: { sl@0: TInt err = KErrNone; sl@0: TParse iniFileName; sl@0: TParse backupIniFileName; sl@0: TParse tempFileName; sl@0: sl@0: //check if ecomsrvr.ini file exists. If so make a backup sl@0: iniFileName.Set(KCDriveIniFileName, NULL, NULL); sl@0: backupIniFileName.Set(KIniBackupFileName, NULL, NULL); sl@0: TRAP(err, EComTestUtils::RfsReplaceFileL( sl@0: iniFileName.FullName(), sl@0: backupIniFileName.FullName())); sl@0: if(err != KErrNotFound) //it is ok if the file does not exist sl@0: { sl@0: TESTC(aTest, err, KErrNone); sl@0: } sl@0: } sl@0: sl@0: /** sl@0: Reset the ssa by replacing the ini file with the backup if sl@0: a backup was created in the first place 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 ResetSsa(RTest& aTest, RFs& /*aFs*/) sl@0: { sl@0: TInt err = KErrNone; sl@0: TParse iniFileName; sl@0: TParse backupIniFileName; sl@0: sl@0: iniFileName.Set(KCDriveIniFileName, NULL, NULL); sl@0: backupIniFileName.Set(KIniBackupFileName, NULL, NULL); sl@0: sl@0: //remove ecomsrvr.ini sl@0: TRAP(err, EComTestUtils::RfsDeleteFileL(iniFileName.FullName())); sl@0: TESTC(aTest, err, KErrNone); sl@0: sl@0: //if the ecomsrvr.ini file initially existed put it back using sl@0: //the backup sl@0: TRAP(err, EComTestUtils::RfsReplaceFileL( sl@0: backupIniFileName.FullName(), sl@0: iniFileName.FullName())); sl@0: if(err != KErrNotFound) //it is ok if the file does not exist sl@0: { sl@0: TESTC(aTest, err, KErrNone); sl@0: } sl@0: } sl@0: sl@0: /** sl@0: Cheks if z:\\private\\10009D8F\\EComSrvr.ini exists. If it does sl@0: then fails the test to ensure the following tests are not run. 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 TestEnableDisableSsaL(RTest& aTest, RFs& aFs) sl@0: { sl@0: TParse iniFileName; sl@0: iniFileName.Set(KZDriveIniFileName, NULL, NULL); sl@0: TBool isFileExisting = BaflUtils::FileExists(aFs, iniFileName.FullName()); sl@0: sl@0: if(isFileExisting) sl@0: { sl@0: //If the file already exists on z: drive then the test that calls sl@0: //this method cannot be executed. Probably the test is trying to sl@0: //disable/enable SSA behaviour using the c: drive location. Since sl@0: //z:drive has higher priority it will never be possible to enable sl@0: //SSA behaviour. sl@0: TESTC(aTest, isFileExisting, EFalse); sl@0: RDebug::Print(_L("EcomSrvr.ini file exists in z: drive. This test cannot be executed.\n")); sl@0: } sl@0: }