sl@0
|
1 |
// Copyright (c) 2006-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 <e32test.h>
|
sl@0
|
17 |
#include <bautils.h>
|
sl@0
|
18 |
#include <barsread2.h>
|
sl@0
|
19 |
#include <barsc2.h>
|
sl@0
|
20 |
#include <baspi.h>
|
sl@0
|
21 |
#include "BaArchiveImpl.h"
|
sl@0
|
22 |
|
sl@0
|
23 |
|
sl@0
|
24 |
LOCAL_D RTest TheTest(_L("T_RSCARCHIVE"));
|
sl@0
|
25 |
LOCAL_D RFs TheFs;
|
sl@0
|
26 |
|
sl@0
|
27 |
//Test files
|
sl@0
|
28 |
_LIT(KXipSpiFile,"z:\\system\\data\\Spi_ECom.SPI");
|
sl@0
|
29 |
_LIT(KNonXipSpiFile, "c:\\system\\data\\Spi_ECom.SPI");
|
sl@0
|
30 |
|
sl@0
|
31 |
|
sl@0
|
32 |
//----------------------UTILITY FUNCTIONS----------------------------------
|
sl@0
|
33 |
LOCAL_C void CopyFileL(const TDesC& aFrom,const TDesC& aTo)
|
sl@0
|
34 |
{
|
sl@0
|
35 |
TheFs.Delete(aTo);
|
sl@0
|
36 |
CFileMan* man=CFileMan::NewL(TheFs);
|
sl@0
|
37 |
TInt r=man->Copy(aFrom,aTo, CFileMan::ERecurse);
|
sl@0
|
38 |
delete man;
|
sl@0
|
39 |
User::LeaveIfError(r);
|
sl@0
|
40 |
User::LeaveIfError(TheFs.SetAtt(aTo,0,KEntryAttReadOnly)); // clear RO
|
sl@0
|
41 |
}
|
sl@0
|
42 |
|
sl@0
|
43 |
LOCAL_C void DeleteFile(const TDesC& aFileName)
|
sl@0
|
44 |
{
|
sl@0
|
45 |
// make sure the file is read/write
|
sl@0
|
46 |
TInt err = TheFs.SetAtt(aFileName, 0, KEntryAttReadOnly);
|
sl@0
|
47 |
if(err != KErrNone)
|
sl@0
|
48 |
{
|
sl@0
|
49 |
RDebug::Print(_L("error changing attributes file = %d"),err);
|
sl@0
|
50 |
}
|
sl@0
|
51 |
// delete the file
|
sl@0
|
52 |
err = BaflUtils::DeleteFile(TheFs, aFileName);
|
sl@0
|
53 |
if(err != KErrNone)
|
sl@0
|
54 |
{
|
sl@0
|
55 |
RDebug::Print(_L("error deleting file = %d"),err);
|
sl@0
|
56 |
}
|
sl@0
|
57 |
}
|
sl@0
|
58 |
|
sl@0
|
59 |
LOCAL_C void DeleteTestFile()
|
sl@0
|
60 |
{
|
sl@0
|
61 |
DeleteFile(KNonXipSpiFile);
|
sl@0
|
62 |
//Testcase 1 files
|
sl@0
|
63 |
DeleteFile(_L("c:\\system\\data\\spi_ecom-0-0.spi"));
|
sl@0
|
64 |
DeleteFile(_L("c:\\system\\data\\spi_ecom-1-0.spi"));
|
sl@0
|
65 |
//Testcase 2 files
|
sl@0
|
66 |
DeleteFile(_L("c:\\system\\data\\ecom-1-0.spi"));
|
sl@0
|
67 |
DeleteFile(_L("c:\\system\\data\\ecom-1-0.s02"));
|
sl@0
|
68 |
DeleteFile(_L("c:\\system\\data\\ecom-2-0.spi"));
|
sl@0
|
69 |
DeleteFile(_L("c:\\system\\data\\ecom-2-0.s02"));
|
sl@0
|
70 |
//Testcase 3 files
|
sl@0
|
71 |
DeleteFile(_L("c:\\system\\data\\cecom-0-0.spi"));
|
sl@0
|
72 |
DeleteFile(_L("c:\\system\\data\\cecom-1-0.spi"));
|
sl@0
|
73 |
//Testcase 5 files
|
sl@0
|
74 |
DeleteFile(_L("c:\\system\\data\\spi_ecom_case-0-0.spi"));
|
sl@0
|
75 |
DeleteFile(_L("c:\\system\\data\\spi_ecom_case-1-0.spi"));
|
sl@0
|
76 |
}
|
sl@0
|
77 |
|
sl@0
|
78 |
LOCAL_C void CopyTestFile()
|
sl@0
|
79 |
{
|
sl@0
|
80 |
CopyFileL(KXipSpiFile,KNonXipSpiFile);
|
sl@0
|
81 |
//Testcase1 files
|
sl@0
|
82 |
CopyFileL(_L("z:\\system\\data\\spi_ecom-0-0.spi"),_L("c:\\system\\data\\spi_ecom-0-0.spi"));
|
sl@0
|
83 |
CopyFileL(_L("z:\\system\\data\\spi_ecom-1-0.spi"),_L("c:\\system\\data\\spi_ecom-1-0.spi"));
|
sl@0
|
84 |
//Testcase2 files
|
sl@0
|
85 |
CopyFileL(_L("z:\\system\\data\\ecom-1-0.spi"),_L("c:\\system\\data\\ecom-1-0.spi"));
|
sl@0
|
86 |
CopyFileL(_L("z:\\system\\data\\ecom-1-0.s02"),_L("c:\\system\\data\\ecom-1-0.s02"));
|
sl@0
|
87 |
CopyFileL(_L("z:\\system\\data\\ecom-2-0.spi"),_L("c:\\system\\data\\ecom-2-0.spi"));
|
sl@0
|
88 |
CopyFileL(_L("z:\\system\\data\\ecom-2-0.s02"),_L("c:\\system\\data\\ecom-2-0.s02"));
|
sl@0
|
89 |
//Testcase 3 files
|
sl@0
|
90 |
CopyFileL(_L("z:\\system\\data\\cecom-0-0.spi"),_L("c:\\system\\data\\cecom-0-0.spi"));
|
sl@0
|
91 |
CopyFileL(_L("z:\\system\\data\\cecom-1-0.spi"),_L("c:\\system\\data\\cecom-1-0.spi"));
|
sl@0
|
92 |
//Testcase 5 files
|
sl@0
|
93 |
CopyFileL(_L("z:\\system\\data\\spi_ecom_case-0-0.spi"),_L("c:\\system\\data\\spi_ecom_case-0-0.spi"));
|
sl@0
|
94 |
CopyFileL(_L("z:\\system\\data\\spi_ecom_case-1-0.spi"),_L("c:\\system\\data\\spi_ecom_case-1-0.spi"));
|
sl@0
|
95 |
}
|
sl@0
|
96 |
|
sl@0
|
97 |
//Test macroses and functions
|
sl@0
|
98 |
LOCAL_C void Check(TInt aValue, TInt aLine)
|
sl@0
|
99 |
{
|
sl@0
|
100 |
if(!aValue)
|
sl@0
|
101 |
{
|
sl@0
|
102 |
::DeleteTestFile();
|
sl@0
|
103 |
TheTest(EFalse, aLine);
|
sl@0
|
104 |
}
|
sl@0
|
105 |
}
|
sl@0
|
106 |
|
sl@0
|
107 |
#define TEST(arg) ::Check((arg), __LINE__)
|
sl@0
|
108 |
|
sl@0
|
109 |
//---------------------TEST CASE for RResoureArchive------------------
|
sl@0
|
110 |
class RStaticPluginInfoTest
|
sl@0
|
111 |
{
|
sl@0
|
112 |
public:
|
sl@0
|
113 |
static void TestCase1L(const TDesC& aPath);
|
sl@0
|
114 |
static void TestCase2L(const TDesC& aPath);
|
sl@0
|
115 |
static void TestCase3L(const TDesC& aPath);
|
sl@0
|
116 |
static void TestCase4L(const TDesC& aPath);
|
sl@0
|
117 |
static void TestCase5L(const TDesC& aPath);
|
sl@0
|
118 |
};
|
sl@0
|
119 |
|
sl@0
|
120 |
typedef void (*FunctionPtr)(const TDesC&);
|
sl@0
|
121 |
|
sl@0
|
122 |
static void DoBasicTestingL(FunctionPtr aFunctionPtr,const TDesC& aPath,const TDesC& aDescription)
|
sl@0
|
123 |
{
|
sl@0
|
124 |
TheTest.Next(aDescription);
|
sl@0
|
125 |
__UHEAP_MARK;
|
sl@0
|
126 |
TInt startProcessHandleCount;
|
sl@0
|
127 |
TInt startThreadHandleCount;
|
sl@0
|
128 |
RThread().HandleCount(startProcessHandleCount, startThreadHandleCount);
|
sl@0
|
129 |
|
sl@0
|
130 |
aFunctionPtr(aPath);
|
sl@0
|
131 |
|
sl@0
|
132 |
TInt endProcessHandleCount;
|
sl@0
|
133 |
TInt endThreadHandleCount;
|
sl@0
|
134 |
RThread().HandleCount(endProcessHandleCount, endThreadHandleCount);
|
sl@0
|
135 |
|
sl@0
|
136 |
TEST(startProcessHandleCount == endProcessHandleCount);
|
sl@0
|
137 |
TEST(startThreadHandleCount == endThreadHandleCount);
|
sl@0
|
138 |
|
sl@0
|
139 |
__UHEAP_MARKEND;
|
sl@0
|
140 |
}
|
sl@0
|
141 |
|
sl@0
|
142 |
|
sl@0
|
143 |
static void DoOOMTestingL(FunctionPtr aFunctionPtr,const TDesC& aPath,const TDesC& aDescription)
|
sl@0
|
144 |
{
|
sl@0
|
145 |
TheTest.Next(aDescription);
|
sl@0
|
146 |
TInt err;
|
sl@0
|
147 |
TInt tryCount = 0;
|
sl@0
|
148 |
do
|
sl@0
|
149 |
{
|
sl@0
|
150 |
__UHEAP_MARK;
|
sl@0
|
151 |
// find out the number of open handles
|
sl@0
|
152 |
TInt startProcessHandleCount;
|
sl@0
|
153 |
TInt startThreadHandleCount;
|
sl@0
|
154 |
RThread().HandleCount(startProcessHandleCount, startThreadHandleCount);
|
sl@0
|
155 |
__UHEAP_SETFAIL(RHeap::EDeterministic, ++tryCount);
|
sl@0
|
156 |
|
sl@0
|
157 |
TRAP(err,aFunctionPtr(aPath));
|
sl@0
|
158 |
|
sl@0
|
159 |
__UHEAP_SETFAIL(RHeap::ENone, 0);
|
sl@0
|
160 |
|
sl@0
|
161 |
//Add ReleaseLanguage for Test4
|
sl@0
|
162 |
BaflUtils::ReleaseIdealLanguage();
|
sl@0
|
163 |
|
sl@0
|
164 |
// check that no handles have leaked
|
sl@0
|
165 |
TInt endProcessHandleCount;
|
sl@0
|
166 |
TInt endThreadHandleCount;
|
sl@0
|
167 |
RThread().HandleCount(endProcessHandleCount, endThreadHandleCount);
|
sl@0
|
168 |
|
sl@0
|
169 |
TEST(startProcessHandleCount == endProcessHandleCount);
|
sl@0
|
170 |
TEST(startThreadHandleCount == endThreadHandleCount);
|
sl@0
|
171 |
__UHEAP_MARKEND;
|
sl@0
|
172 |
} while(err == KErrNoMemory);
|
sl@0
|
173 |
RDebug::Print(_L("Success at count=%d\n"),tryCount);
|
sl@0
|
174 |
}
|
sl@0
|
175 |
|
sl@0
|
176 |
/**
|
sl@0
|
177 |
@SYMTestCaseID SYSLIB-BAFL-UT-1698
|
sl@0
|
178 |
@SYMTestCaseDesc Test for creating and deleting newly added constructor for CResourceArchiveImpl
|
sl@0
|
179 |
@SYMTestPriority High
|
sl@0
|
180 |
@SYMTestActions
|
sl@0
|
181 |
-create and delete CResourceArchiveImpl
|
sl@0
|
182 |
-check for the resource file entry from multiple spi files
|
sl@0
|
183 |
-and test for the replacing/hiding feature
|
sl@0
|
184 |
files used
|
sl@0
|
185 |
-----------------------------------------------------------
|
sl@0
|
186 |
spi_ecom-0-0.spi | spi_ecom-1-0.spi | Visible resources
|
sl@0
|
187 |
-----------------------------------------------------------
|
sl@0
|
188 |
Spi_EComRsc1 | hide Spi_EComRsc1 | Spi_EComRsc2(id=1)
|
sl@0
|
189 |
Spi_EComRsc2 | Spi_EComRsc2 | Spi_EComRsc3(id=0)
|
sl@0
|
190 |
Spi_EComRsc3 | Spi_EComRsc4 | Spi_EComRsc4(id=1)
|
sl@0
|
191 |
@SYMTestExpectedResults The test must not fail.
|
sl@0
|
192 |
@SYMREQ CR0759
|
sl@0
|
193 |
*/
|
sl@0
|
194 |
void RStaticPluginInfoTest::TestCase1L(const TDesC& aPath)
|
sl@0
|
195 |
{
|
sl@0
|
196 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-UT-1698 "));
|
sl@0
|
197 |
//create and delete
|
sl@0
|
198 |
CResourceArchiveImpl* impl=CResourceArchiveImpl::NewL(TheFs,aPath,_L("Spi_ECom"));
|
sl@0
|
199 |
delete impl;
|
sl@0
|
200 |
|
sl@0
|
201 |
//check and read resource entry
|
sl@0
|
202 |
impl=CResourceArchiveImpl::NewL(TheFs,aPath,_L("Spi_ECom"));
|
sl@0
|
203 |
CleanupStack::PushL(impl);
|
sl@0
|
204 |
HBufC* rscName=NULL;
|
sl@0
|
205 |
CResourceFile* rscFile=NULL;
|
sl@0
|
206 |
TInt count=0;
|
sl@0
|
207 |
while (impl->NextResourceExist())
|
sl@0
|
208 |
{
|
sl@0
|
209 |
TFileName expectedFile;
|
sl@0
|
210 |
expectedFile.Append(aPath);
|
sl@0
|
211 |
//test the rsc entry file association
|
sl@0
|
212 |
if (count==0 || count==2)
|
sl@0
|
213 |
{
|
sl@0
|
214 |
expectedFile.Append(_L("spi_ecom-1-0.spi"));
|
sl@0
|
215 |
TEST(impl->iRscList[count].iFileNamePtr.Compare(expectedFile)==0);
|
sl@0
|
216 |
}
|
sl@0
|
217 |
else
|
sl@0
|
218 |
{
|
sl@0
|
219 |
expectedFile.Append(_L("spi_ecom-0-0.spi"));
|
sl@0
|
220 |
TEST(impl->iRscList[count].iFileNamePtr.Compare(expectedFile)==0);
|
sl@0
|
221 |
}
|
sl@0
|
222 |
count++;
|
sl@0
|
223 |
rscFile=impl->NextL(rscName);
|
sl@0
|
224 |
TEST(rscFile!=NULL);
|
sl@0
|
225 |
TEST(rscName!=NULL);
|
sl@0
|
226 |
TBuf<12> buf;
|
sl@0
|
227 |
TInt temp=count+1;
|
sl@0
|
228 |
buf.AppendFormat(_L("Spi_EComRsc%d"),temp);
|
sl@0
|
229 |
TEST(rscName->Compare(buf)==0);
|
sl@0
|
230 |
delete rscName;
|
sl@0
|
231 |
rscName=NULL;
|
sl@0
|
232 |
delete rscFile;
|
sl@0
|
233 |
rscFile=NULL;
|
sl@0
|
234 |
}
|
sl@0
|
235 |
TEST(count==3);
|
sl@0
|
236 |
|
sl@0
|
237 |
//Testing Reset
|
sl@0
|
238 |
TEST(!impl->NextResourceExist());
|
sl@0
|
239 |
impl->Reset();
|
sl@0
|
240 |
TEST(impl->NextResourceExist());
|
sl@0
|
241 |
|
sl@0
|
242 |
//Testing Type
|
sl@0
|
243 |
const TUid KEcomSpiFileTypeUid = {0x10205C2C};
|
sl@0
|
244 |
TEST(impl->Type()==KEcomSpiFileTypeUid);
|
sl@0
|
245 |
|
sl@0
|
246 |
CleanupStack::PopAndDestroy();
|
sl@0
|
247 |
}
|
sl@0
|
248 |
|
sl@0
|
249 |
|
sl@0
|
250 |
/**
|
sl@0
|
251 |
@SYMTestCaseID SYSLIB-BAFL-CT-1695
|
sl@0
|
252 |
@SYMTestCaseDesc Test that loading of multiple localised spis return a correct list
|
sl@0
|
253 |
of resource files
|
sl@0
|
254 |
@SYMTestPriority High
|
sl@0
|
255 |
@SYMTestActions Set different language downgrade path before using CResourceArchiveImpl
|
sl@0
|
256 |
to open a path containing a mix of spi files. Check that the list returned when
|
sl@0
|
257 |
calling NextL contains the expected resource files.
|
sl@0
|
258 |
-------------------------------------------------------------------------------
|
sl@0
|
259 |
Ecom-1-0.spi | Ecom-1-0.s02 | Ecom-2-0.spi | Ecom-2-0.s02 |DGP(1) | DGP(2-1)
|
sl@0
|
260 |
ROFS(1) | (ROFS1) | (ROFS2) | (ROFS2) |
|
sl@0
|
261 |
-------------------------------------------------------------------------------
|
sl@0
|
262 |
A.RSC | A.R02 | B.RSC | Hide D.R02 |A.RSC(1) | A.R02(1)
|
sl@0
|
263 |
B.RSC | D.R02 | | C.R02 |B.RSC(2) | B.RSC(2)
|
sl@0
|
264 |
C.RSC | | | |C.RSC(1) | C.R02(2)
|
sl@0
|
265 |
-------------------------------------------------------------------------------
|
sl@0
|
266 |
@SYMTestExpectedResults The test must not fail.
|
sl@0
|
267 |
@SYMREQ CR0759
|
sl@0
|
268 |
*/
|
sl@0
|
269 |
void RStaticPluginInfoTest::TestCase2L(const TDesC& aPath)
|
sl@0
|
270 |
{
|
sl@0
|
271 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-1695 "));
|
sl@0
|
272 |
//Language DownGradePath(1)
|
sl@0
|
273 |
CResourceArchiveImpl* impl=CResourceArchiveImpl::NewL(TheFs,aPath,_L("ECom"));
|
sl@0
|
274 |
CleanupStack::PushL(impl);
|
sl@0
|
275 |
HBufC* rscName=NULL;
|
sl@0
|
276 |
CResourceFile* rscFile=NULL;
|
sl@0
|
277 |
TInt count=0;
|
sl@0
|
278 |
while (impl->NextResourceExist())
|
sl@0
|
279 |
{
|
sl@0
|
280 |
TFileName expectedFile;
|
sl@0
|
281 |
expectedFile.Append(aPath);
|
sl@0
|
282 |
rscFile=impl->NextL(rscName);
|
sl@0
|
283 |
if (count==0)
|
sl@0
|
284 |
{
|
sl@0
|
285 |
TEST(rscName->Compare(_L("Spi_EComRscA"))==0);
|
sl@0
|
286 |
//also testing the spi file association of the resource entry
|
sl@0
|
287 |
expectedFile.Append(_L("ecom-1-0.spi"));
|
sl@0
|
288 |
TEST(impl->iRscList[count].iFileNamePtr.Compare(expectedFile)==0);
|
sl@0
|
289 |
}
|
sl@0
|
290 |
if (count==1)
|
sl@0
|
291 |
{
|
sl@0
|
292 |
TEST(rscName->Compare(_L("Spi_EComRscB"))==0);
|
sl@0
|
293 |
expectedFile.Append(_L("ecom-2-0.spi"));
|
sl@0
|
294 |
TEST(impl->iRscList[count].iFileNamePtr.Compare(expectedFile)==0);
|
sl@0
|
295 |
}
|
sl@0
|
296 |
if (count==2)
|
sl@0
|
297 |
{
|
sl@0
|
298 |
TEST(rscName->Compare(_L("Spi_EComRscC"))==0);
|
sl@0
|
299 |
expectedFile.Append(_L("ecom-1-0.spi"));
|
sl@0
|
300 |
TEST(impl->iRscList[count].iFileNamePtr.Compare(expectedFile)==0);
|
sl@0
|
301 |
}
|
sl@0
|
302 |
count++;
|
sl@0
|
303 |
delete rscName;
|
sl@0
|
304 |
rscName=NULL;
|
sl@0
|
305 |
delete rscFile;
|
sl@0
|
306 |
rscFile=NULL;
|
sl@0
|
307 |
}
|
sl@0
|
308 |
TEST(count==3);
|
sl@0
|
309 |
CleanupStack::PopAndDestroy();
|
sl@0
|
310 |
|
sl@0
|
311 |
//Language DownGradePath(2-1)
|
sl@0
|
312 |
User::LeaveIfError(BaflUtils::SetIdealLanguage(ELangFrench));
|
sl@0
|
313 |
impl=CResourceArchiveImpl::NewL(TheFs,aPath,_L("ECom"));
|
sl@0
|
314 |
CleanupStack::PushL(impl);
|
sl@0
|
315 |
rscName=NULL;
|
sl@0
|
316 |
rscFile=NULL;
|
sl@0
|
317 |
count=0;
|
sl@0
|
318 |
while (impl->NextResourceExist())
|
sl@0
|
319 |
{
|
sl@0
|
320 |
TFileName expectedFile;
|
sl@0
|
321 |
expectedFile.Append(aPath);
|
sl@0
|
322 |
rscFile=impl->NextL(rscName);
|
sl@0
|
323 |
if (count==0)
|
sl@0
|
324 |
{
|
sl@0
|
325 |
TEST(rscName->Compare(_L("Spi_EComRscA"))==0);
|
sl@0
|
326 |
//also testing the spi file association of the resource entry
|
sl@0
|
327 |
expectedFile.Append(_L("ecom-1-0.s02"));
|
sl@0
|
328 |
TEST(impl->iRscList[count].iFileNamePtr.Compare(expectedFile)==0);
|
sl@0
|
329 |
}
|
sl@0
|
330 |
if (count==1)
|
sl@0
|
331 |
{
|
sl@0
|
332 |
TEST(rscName->Compare(_L("Spi_EComRscB"))==0);
|
sl@0
|
333 |
expectedFile.Append(_L("ecom-2-0.spi"));
|
sl@0
|
334 |
TEST(impl->iRscList[count].iFileNamePtr.Compare(expectedFile)==0);
|
sl@0
|
335 |
}
|
sl@0
|
336 |
if (count==2)
|
sl@0
|
337 |
{
|
sl@0
|
338 |
TEST(rscName->Compare(_L("Spi_EComRscC"))==0);
|
sl@0
|
339 |
expectedFile.Append(_L("ecom-2-0.s02"));
|
sl@0
|
340 |
TEST(impl->iRscList[count].iFileNamePtr.Compare(expectedFile)==0);
|
sl@0
|
341 |
}
|
sl@0
|
342 |
count++;
|
sl@0
|
343 |
delete rscName;
|
sl@0
|
344 |
rscName=NULL;
|
sl@0
|
345 |
delete rscFile;
|
sl@0
|
346 |
rscFile=NULL;
|
sl@0
|
347 |
}
|
sl@0
|
348 |
TEST(count==3);
|
sl@0
|
349 |
CleanupStack::PopAndDestroy();
|
sl@0
|
350 |
|
sl@0
|
351 |
BaflUtils::ReleaseIdealLanguage();
|
sl@0
|
352 |
}
|
sl@0
|
353 |
|
sl@0
|
354 |
/**
|
sl@0
|
355 |
@SYMTestCaseID SYSLIB-BAFL-CT-1696
|
sl@0
|
356 |
@SYMTestCaseDesc Test opening corrupt file and an inconsistent list of spi files
|
sl@0
|
357 |
@SYMTestPriority High
|
sl@0
|
358 |
@SYMTestActions Try to open an invalid/corrupt spi file. Try to open a list
|
sl@0
|
359 |
of spi files where one of them has a different spi type, expect this to leave
|
sl@0
|
360 |
with KErrCorrupt.
|
sl@0
|
361 |
@SYMTestExpectedResults The test must not fail.
|
sl@0
|
362 |
@SYMREQ CR0759
|
sl@0
|
363 |
*/
|
sl@0
|
364 |
//negative testing using cecom-0-0.spi(Corrupt) and cecom-1-0.spi(OK)
|
sl@0
|
365 |
void RStaticPluginInfoTest::TestCase3L(const TDesC& aPath)
|
sl@0
|
366 |
{
|
sl@0
|
367 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-1696 "));
|
sl@0
|
368 |
TInt err=KErrNone;
|
sl@0
|
369 |
CResourceArchiveImpl* impl=NULL;
|
sl@0
|
370 |
//Testing opening single corrupt spi file
|
sl@0
|
371 |
TFileName filename;
|
sl@0
|
372 |
filename.Append(aPath);
|
sl@0
|
373 |
filename.Append(_L("cecom-0-0.spi"));
|
sl@0
|
374 |
TRAP(err,impl=CResourceArchiveImpl::NewL(TheFs,filename));
|
sl@0
|
375 |
if (err==KErrNoMemory)
|
sl@0
|
376 |
User::LeaveNoMemory();
|
sl@0
|
377 |
TEST(err==KErrCorrupt);
|
sl@0
|
378 |
delete impl;
|
sl@0
|
379 |
|
sl@0
|
380 |
//Testing opening spi files where one is not a valid spi file
|
sl@0
|
381 |
TRAP(err,impl=CResourceArchiveImpl::NewL(TheFs,aPath,_L("CECom")));
|
sl@0
|
382 |
if (err==KErrNoMemory)
|
sl@0
|
383 |
User::LeaveNoMemory();
|
sl@0
|
384 |
TEST(err==KErrCorrupt);
|
sl@0
|
385 |
delete impl;
|
sl@0
|
386 |
}
|
sl@0
|
387 |
|
sl@0
|
388 |
/**
|
sl@0
|
389 |
@SYMTestCaseID SYSLIB-BAFL-CT-1697
|
sl@0
|
390 |
@SYMTestCaseDesc Test opening file which does not exist
|
sl@0
|
391 |
@SYMTestPriority High
|
sl@0
|
392 |
@SYMTestActions Try to open spi files in a specified path but there
|
sl@0
|
393 |
is no file that matches the specified pattern to look for.
|
sl@0
|
394 |
@SYMTestExpectedResults The test must not fail.
|
sl@0
|
395 |
@SYMREQ CR0759
|
sl@0
|
396 |
*/
|
sl@0
|
397 |
void RStaticPluginInfoTest::TestCase4L(const TDesC& aPath)
|
sl@0
|
398 |
{
|
sl@0
|
399 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-1697 "));
|
sl@0
|
400 |
TInt err=KErrNone;
|
sl@0
|
401 |
TRAP(err,CResourceArchiveImpl* impl=CResourceArchiveImpl::NewL(TheFs,aPath,_L("SpiECom")));
|
sl@0
|
402 |
if (err==KErrNoMemory)
|
sl@0
|
403 |
User::LeaveNoMemory();
|
sl@0
|
404 |
TEST(err==KErrNotFound);
|
sl@0
|
405 |
}
|
sl@0
|
406 |
|
sl@0
|
407 |
/**
|
sl@0
|
408 |
@SYMTestCaseID SYSLIB-BAFL-UT-3473
|
sl@0
|
409 |
@SYMTestCaseDesc Test that resource selection is case insensitive
|
sl@0
|
410 |
@SYMTestPriority High
|
sl@0
|
411 |
@SYMTestActions
|
sl@0
|
412 |
-create a CResourceArchiveImpl
|
sl@0
|
413 |
-check the correct resource file entry is chosen from multiple spi files
|
sl@0
|
414 |
------------------------------------------------------------------
|
sl@0
|
415 |
Spi_ECom_Case-0-0.spi | Spi_ECom_Case-1-0.spi | Visible resources
|
sl@0
|
416 |
------------------------------------------------------------------
|
sl@0
|
417 |
Spi_EComRsc1 | Spi_ECOMRSC1 | Spi_ECOMRSC1(id=1)
|
sl@0
|
418 |
Spi_ECOMRSC2 | Spi_EComRsc2 | Spi_EComRsc2(id=1)
|
sl@0
|
419 |
------------------------------------------------------------------
|
sl@0
|
420 |
@SYMTestExpectedResults The overridden resource is chosen regardless of case.
|
sl@0
|
421 |
@SYMDEF DEF105972
|
sl@0
|
422 |
@SYMUnit CResourceArchiveImpl::ProcessEntryL()
|
sl@0
|
423 |
*/
|
sl@0
|
424 |
void RStaticPluginInfoTest::TestCase5L(const TDesC& aPath)
|
sl@0
|
425 |
{
|
sl@0
|
426 |
//check and read resource entry
|
sl@0
|
427 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-UT-3473 "));
|
sl@0
|
428 |
CResourceArchiveImpl* impl=CResourceArchiveImpl::NewL(TheFs,aPath,_L("Spi_ECom_Case"));
|
sl@0
|
429 |
CleanupStack::PushL(impl);
|
sl@0
|
430 |
HBufC* rscName=NULL;
|
sl@0
|
431 |
CResourceFile* rscFile=NULL;
|
sl@0
|
432 |
TInt count=0;
|
sl@0
|
433 |
while (impl->NextResourceExist())
|
sl@0
|
434 |
{
|
sl@0
|
435 |
TFileName expectedFile;
|
sl@0
|
436 |
expectedFile.Append(aPath);
|
sl@0
|
437 |
//test that the overridden resource is always chosen
|
sl@0
|
438 |
expectedFile.Append(_L("spi_ecom_case-1-0.spi"));
|
sl@0
|
439 |
TEST(impl->iRscList[count].iFileNamePtr.CompareF(expectedFile)==0);
|
sl@0
|
440 |
|
sl@0
|
441 |
count++;
|
sl@0
|
442 |
rscFile=impl->NextL(rscName);
|
sl@0
|
443 |
TEST(rscFile!=NULL);
|
sl@0
|
444 |
TEST(rscName!=NULL);
|
sl@0
|
445 |
delete rscName;
|
sl@0
|
446 |
rscName=NULL;
|
sl@0
|
447 |
delete rscFile;
|
sl@0
|
448 |
rscFile=NULL;
|
sl@0
|
449 |
}
|
sl@0
|
450 |
TEST(count==2);
|
sl@0
|
451 |
|
sl@0
|
452 |
impl->Reset();
|
sl@0
|
453 |
CleanupStack::PopAndDestroy();
|
sl@0
|
454 |
}
|
sl@0
|
455 |
|
sl@0
|
456 |
LOCAL_C void DoAllTestsL()
|
sl@0
|
457 |
{
|
sl@0
|
458 |
CleanupClosePushL(TheFs);
|
sl@0
|
459 |
User::LeaveIfError(TheFs.Connect());
|
sl@0
|
460 |
|
sl@0
|
461 |
TheTest.Printf(_L("Copying SPI files to RAM\r\n"));
|
sl@0
|
462 |
|
sl@0
|
463 |
//Copying test spi file and individual rsc files that are included inside spi
|
sl@0
|
464 |
CopyTestFile();
|
sl@0
|
465 |
|
sl@0
|
466 |
//Basic Test
|
sl@0
|
467 |
DoBasicTestingL(RStaticPluginInfoTest::TestCase1L,_L("z:\\system\\data\\"),_L("Test Case 1 Basic Xip"));
|
sl@0
|
468 |
DoBasicTestingL(RStaticPluginInfoTest::TestCase1L,_L("c:\\system\\data\\"),_L("Test Case 1 Basic Non-Xip"));
|
sl@0
|
469 |
DoBasicTestingL(RStaticPluginInfoTest::TestCase2L,_L("z:\\system\\data\\"),_L("Test Case 2 Basic Xip"));
|
sl@0
|
470 |
DoBasicTestingL(RStaticPluginInfoTest::TestCase2L,_L("c:\\system\\data\\"),_L("Test Case 2 Basic Non-Xip"));
|
sl@0
|
471 |
DoBasicTestingL(RStaticPluginInfoTest::TestCase3L,_L("z:\\system\\data\\"),_L("Test Case 3 Basic Xip"));
|
sl@0
|
472 |
DoBasicTestingL(RStaticPluginInfoTest::TestCase3L,_L("c:\\system\\data\\"),_L("Test Case 3 Basic Non-Xip"));
|
sl@0
|
473 |
DoBasicTestingL(RStaticPluginInfoTest::TestCase4L,_L("z:\\system\\data\\"),_L("Test Case 4 Basic Xip"));
|
sl@0
|
474 |
DoBasicTestingL(RStaticPluginInfoTest::TestCase4L,_L("c:\\system\\data\\"),_L("Test Case 4 Basic Non-Xip"));
|
sl@0
|
475 |
DoBasicTestingL(RStaticPluginInfoTest::TestCase5L,_L("z:\\system\\data\\"),_L("Test Case 5 Basic Xip"));
|
sl@0
|
476 |
DoBasicTestingL(RStaticPluginInfoTest::TestCase5L,_L("c:\\system\\data\\"),_L("Test Case 5 Basic Non-Xip"));
|
sl@0
|
477 |
|
sl@0
|
478 |
//OOM Test
|
sl@0
|
479 |
DoOOMTestingL(RStaticPluginInfoTest::TestCase1L,_L("z:\\system\\data\\"),_L("Test Case 1 OOM Xip"));
|
sl@0
|
480 |
DoOOMTestingL(RStaticPluginInfoTest::TestCase1L,_L("c:\\system\\data\\"),_L("Test Case 1 OOM Non-Xip"));
|
sl@0
|
481 |
DoOOMTestingL(RStaticPluginInfoTest::TestCase2L,_L("z:\\system\\data\\"),_L("Test Case 2 OOM Xip"));
|
sl@0
|
482 |
DoOOMTestingL(RStaticPluginInfoTest::TestCase2L,_L("c:\\system\\data\\"),_L("Test Case 2 OOM Non-Xip"));
|
sl@0
|
483 |
DoOOMTestingL(RStaticPluginInfoTest::TestCase3L,_L("z:\\system\\data\\"),_L("Test Case 3 OOM Xip"));
|
sl@0
|
484 |
DoOOMTestingL(RStaticPluginInfoTest::TestCase3L,_L("c:\\system\\data\\"),_L("Test Case 3 OOM Non-Xip"));
|
sl@0
|
485 |
DoOOMTestingL(RStaticPluginInfoTest::TestCase4L,_L("z:\\system\\data\\"),_L("Test Case 4 OOM Xip"));
|
sl@0
|
486 |
DoOOMTestingL(RStaticPluginInfoTest::TestCase4L,_L("c:\\system\\data\\"),_L("Test Case 4 OOM Non-Xip"));
|
sl@0
|
487 |
DoOOMTestingL(RStaticPluginInfoTest::TestCase5L,_L("z:\\system\\data\\"),_L("Test Case 5 OOM Xip"));
|
sl@0
|
488 |
DoOOMTestingL(RStaticPluginInfoTest::TestCase5L,_L("c:\\system\\data\\"),_L("Test Case 5 OOM Non-Xip"));
|
sl@0
|
489 |
|
sl@0
|
490 |
//Clearing all the test files we have copied to C
|
sl@0
|
491 |
DeleteTestFile();
|
sl@0
|
492 |
|
sl@0
|
493 |
CleanupStack::PopAndDestroy(1, &TheFs);
|
sl@0
|
494 |
}
|
sl@0
|
495 |
|
sl@0
|
496 |
GLDEF_C TInt E32Main()
|
sl@0
|
497 |
{
|
sl@0
|
498 |
__UHEAP_MARK;
|
sl@0
|
499 |
CTrapCleanup *cleanup=CTrapCleanup::New();
|
sl@0
|
500 |
TheTest.Title();
|
sl@0
|
501 |
TheTest.Start(_L("Testing RResourceArchive internal class"));
|
sl@0
|
502 |
TRAPD(err,DoAllTestsL());
|
sl@0
|
503 |
TheTest.Printf(_L("Error code is %d\n"),err);
|
sl@0
|
504 |
TEST(err==KErrNone);
|
sl@0
|
505 |
TheTest.End();
|
sl@0
|
506 |
TheTest.Close();
|
sl@0
|
507 |
delete cleanup;
|
sl@0
|
508 |
__UHEAP_MARKEND;
|
sl@0
|
509 |
return(0);
|
sl@0
|
510 |
}
|
sl@0
|
511 |
|