sl@0
|
1 |
// Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
#include <e32base.h>
|
sl@0
|
17 |
#include <bautils.h>
|
sl@0
|
18 |
#include <f32file.h>
|
sl@0
|
19 |
#include "../EcomTestUtils/EcomTestIniFileUtils.h"
|
sl@0
|
20 |
#include "../EcomTestUtils/EcomTestUtils.h"
|
sl@0
|
21 |
|
sl@0
|
22 |
_LIT(KCDriveIniFileName, "c:\\private\\10009D8F\\EComSrvr.ini");
|
sl@0
|
23 |
_LIT(KZDriveIniFileName, "z:\\private\\10009D8F\\EComSrvr.ini");
|
sl@0
|
24 |
_LIT(KIniBackupFileName, "c:\\private\\10009D8F\\EComSrvr_backup.ini");
|
sl@0
|
25 |
_LIT(KIniFileName, "z:\\test\\data\\EComSrvr.ini");
|
sl@0
|
26 |
|
sl@0
|
27 |
|
sl@0
|
28 |
//
|
sl@0
|
29 |
//
|
sl@0
|
30 |
//Helper functions
|
sl@0
|
31 |
//
|
sl@0
|
32 |
//
|
sl@0
|
33 |
|
sl@0
|
34 |
/**
|
sl@0
|
35 |
Disable Ssa by using the EComSrvr_SsaDisabled.ini
|
sl@0
|
36 |
The function will make a backup of the existing EComSrvr.ini if there is one.
|
sl@0
|
37 |
@param aTest the RTest that this method is called from
|
sl@0
|
38 |
@param aFs A reference to an connected file server session.
|
sl@0
|
39 |
*/
|
sl@0
|
40 |
void DisableSsa(RTest& aTest, RFs& /*aFs*/)
|
sl@0
|
41 |
{
|
sl@0
|
42 |
TInt err = KErrNone;
|
sl@0
|
43 |
TParse iniFileName;
|
sl@0
|
44 |
TParse backupIniFileName;
|
sl@0
|
45 |
TParse tempFileName;
|
sl@0
|
46 |
|
sl@0
|
47 |
//check if ecomsrvr.ini file exists. If so make a backup
|
sl@0
|
48 |
iniFileName.Set(KCDriveIniFileName, NULL, NULL);
|
sl@0
|
49 |
backupIniFileName.Set(KIniBackupFileName, NULL, NULL);
|
sl@0
|
50 |
TRAP(err, EComTestUtils::RfsReplaceFileL(
|
sl@0
|
51 |
iniFileName.FullName(),
|
sl@0
|
52 |
backupIniFileName.FullName()));
|
sl@0
|
53 |
if(err != KErrNotFound) //it is ok if the file does not exist
|
sl@0
|
54 |
{
|
sl@0
|
55 |
TESTC(aTest, err, KErrNone);
|
sl@0
|
56 |
}
|
sl@0
|
57 |
|
sl@0
|
58 |
//copy ecomsrvr.ini to disable ssa
|
sl@0
|
59 |
tempFileName.Set(KIniFileName, NULL, NULL);
|
sl@0
|
60 |
TRAP(err, EComTestUtils::FileManCopyFileL(
|
sl@0
|
61 |
tempFileName.FullName(),
|
sl@0
|
62 |
iniFileName.FullName()));
|
sl@0
|
63 |
TESTC(aTest, err, KErrNone);
|
sl@0
|
64 |
}
|
sl@0
|
65 |
|
sl@0
|
66 |
/**
|
sl@0
|
67 |
Enable Ssa by removing EComSrvr.ini if there is one
|
sl@0
|
68 |
The function will make a backup of the existing EComSrvr.ini if there is one.
|
sl@0
|
69 |
@param aTest the RTest that this method is called from
|
sl@0
|
70 |
@param aFs A reference to an connected file server session.
|
sl@0
|
71 |
*/
|
sl@0
|
72 |
void EnableSsa(RTest& aTest, RFs& /*aFs*/)
|
sl@0
|
73 |
{
|
sl@0
|
74 |
TInt err = KErrNone;
|
sl@0
|
75 |
TParse iniFileName;
|
sl@0
|
76 |
TParse backupIniFileName;
|
sl@0
|
77 |
TParse tempFileName;
|
sl@0
|
78 |
|
sl@0
|
79 |
//check if ecomsrvr.ini file exists. If so make a backup
|
sl@0
|
80 |
iniFileName.Set(KCDriveIniFileName, NULL, NULL);
|
sl@0
|
81 |
backupIniFileName.Set(KIniBackupFileName, NULL, NULL);
|
sl@0
|
82 |
TRAP(err, EComTestUtils::RfsReplaceFileL(
|
sl@0
|
83 |
iniFileName.FullName(),
|
sl@0
|
84 |
backupIniFileName.FullName()));
|
sl@0
|
85 |
if(err != KErrNotFound) //it is ok if the file does not exist
|
sl@0
|
86 |
{
|
sl@0
|
87 |
TESTC(aTest, err, KErrNone);
|
sl@0
|
88 |
}
|
sl@0
|
89 |
}
|
sl@0
|
90 |
|
sl@0
|
91 |
/**
|
sl@0
|
92 |
Reset the ssa by replacing the ini file with the backup if
|
sl@0
|
93 |
a backup was created in the first place
|
sl@0
|
94 |
@param aTest the RTest that this method is called from
|
sl@0
|
95 |
@param aFs A reference to an connected file server session.
|
sl@0
|
96 |
*/
|
sl@0
|
97 |
void ResetSsa(RTest& aTest, RFs& /*aFs*/)
|
sl@0
|
98 |
{
|
sl@0
|
99 |
TInt err = KErrNone;
|
sl@0
|
100 |
TParse iniFileName;
|
sl@0
|
101 |
TParse backupIniFileName;
|
sl@0
|
102 |
|
sl@0
|
103 |
iniFileName.Set(KCDriveIniFileName, NULL, NULL);
|
sl@0
|
104 |
backupIniFileName.Set(KIniBackupFileName, NULL, NULL);
|
sl@0
|
105 |
|
sl@0
|
106 |
//remove ecomsrvr.ini
|
sl@0
|
107 |
TRAP(err, EComTestUtils::RfsDeleteFileL(iniFileName.FullName()));
|
sl@0
|
108 |
TESTC(aTest, err, KErrNone);
|
sl@0
|
109 |
|
sl@0
|
110 |
//if the ecomsrvr.ini file initially existed put it back using
|
sl@0
|
111 |
//the backup
|
sl@0
|
112 |
TRAP(err, EComTestUtils::RfsReplaceFileL(
|
sl@0
|
113 |
backupIniFileName.FullName(),
|
sl@0
|
114 |
iniFileName.FullName()));
|
sl@0
|
115 |
if(err != KErrNotFound) //it is ok if the file does not exist
|
sl@0
|
116 |
{
|
sl@0
|
117 |
TESTC(aTest, err, KErrNone);
|
sl@0
|
118 |
}
|
sl@0
|
119 |
}
|
sl@0
|
120 |
|
sl@0
|
121 |
/**
|
sl@0
|
122 |
Cheks if z:\\private\\10009D8F\\EComSrvr.ini exists. If it does
|
sl@0
|
123 |
then fails the test to ensure the following tests are not run.
|
sl@0
|
124 |
@param aTest the RTest that this method is called from
|
sl@0
|
125 |
@param aFs A reference to an connected file server session.
|
sl@0
|
126 |
*/
|
sl@0
|
127 |
void TestEnableDisableSsaL(RTest& aTest, RFs& aFs)
|
sl@0
|
128 |
{
|
sl@0
|
129 |
TParse iniFileName;
|
sl@0
|
130 |
iniFileName.Set(KZDriveIniFileName, NULL, NULL);
|
sl@0
|
131 |
TBool isFileExisting = BaflUtils::FileExists(aFs, iniFileName.FullName());
|
sl@0
|
132 |
|
sl@0
|
133 |
if(isFileExisting)
|
sl@0
|
134 |
{
|
sl@0
|
135 |
//If the file already exists on z: drive then the test that calls
|
sl@0
|
136 |
//this method cannot be executed. Probably the test is trying to
|
sl@0
|
137 |
//disable/enable SSA behaviour using the c: drive location. Since
|
sl@0
|
138 |
//z:drive has higher priority it will never be possible to enable
|
sl@0
|
139 |
//SSA behaviour.
|
sl@0
|
140 |
TESTC(aTest, isFileExisting, EFalse);
|
sl@0
|
141 |
RDebug::Print(_L("EcomSrvr.ini file exists in z: drive. This test cannot be executed.\n"));
|
sl@0
|
142 |
}
|
sl@0
|
143 |
}
|