sl@0
|
1 |
// Copyright (c) 2004-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 |
// Tests EikFileUtils::SortByTable() function.
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#include <e32test.h>
|
sl@0
|
19 |
#include <f32file.h>
|
sl@0
|
20 |
#include <bautils.h>
|
sl@0
|
21 |
|
sl@0
|
22 |
LOCAL_D RTest test(_L("t_fileutils.exe"));
|
sl@0
|
23 |
|
sl@0
|
24 |
const TInt KSortTableUid1=0x3f631;
|
sl@0
|
25 |
const TInt KSortTableUid2=0x276a9;
|
sl@0
|
26 |
|
sl@0
|
27 |
/**
|
sl@0
|
28 |
@SYMTestCaseID SYSLIB-BAFL-CT-0486
|
sl@0
|
29 |
@SYMTestCaseDesc Tests for the sorting of files containing an array of UIDs.
|
sl@0
|
30 |
@SYMTestPriority High
|
sl@0
|
31 |
@SYMTestActions Tests BaflUtils::SortByTable() function.
|
sl@0
|
32 |
@SYMTestExpectedResults Tests must not fail
|
sl@0
|
33 |
@SYMREQ REQ0000
|
sl@0
|
34 |
*/
|
sl@0
|
35 |
void TestSortByTableL()
|
sl@0
|
36 |
{
|
sl@0
|
37 |
CDir* theFileList;
|
sl@0
|
38 |
TInt theAttribs=KEntryAttMatchMask|KEntryAttAllowUid;
|
sl@0
|
39 |
TFileName theCurrentPath = _L("Z:\\system\\documents\\baflsortbytabletest\\");
|
sl@0
|
40 |
|
sl@0
|
41 |
RFs fileSession;
|
sl@0
|
42 |
User::LeaveIfError(fileSession.Connect());
|
sl@0
|
43 |
CleanupClosePushL(fileSession);
|
sl@0
|
44 |
|
sl@0
|
45 |
TInt ret=fileSession.GetDir(theCurrentPath,theAttribs,ESortByName,theFileList);
|
sl@0
|
46 |
test(ret==KErrNone);
|
sl@0
|
47 |
CleanupStack::PushL(theFileList);
|
sl@0
|
48 |
|
sl@0
|
49 |
CBaflFileSortTable*theTable = new (ELeave) CBaflFileSortTable();
|
sl@0
|
50 |
CleanupStack::PushL(theTable);
|
sl@0
|
51 |
|
sl@0
|
52 |
TInt insertErr;
|
sl@0
|
53 |
|
sl@0
|
54 |
TRAP(insertErr,theTable->InsertL(0,TUid::Uid(KSortTableUid1)));
|
sl@0
|
55 |
test(insertErr==KErrNone);
|
sl@0
|
56 |
|
sl@0
|
57 |
TRAP(insertErr,theTable->InsertL(1,TUid::Uid(KSortTableUid2)));
|
sl@0
|
58 |
test(insertErr==KErrNone);
|
sl@0
|
59 |
|
sl@0
|
60 |
test.Printf(_L("\nGet the names of the files sorted by alphabetical order\n"));
|
sl@0
|
61 |
for(TInt theIndex1 = 0; theIndex1 < theFileList->Count(); theIndex1++)
|
sl@0
|
62 |
{
|
sl@0
|
63 |
TEntry theEntry = (*theFileList)[theIndex1];
|
sl@0
|
64 |
TUid theUid1 = theEntry[2];
|
sl@0
|
65 |
test.Printf(_L("The %d file in list %S, Uid = 0x%x\n"), theIndex1 + 1, &theEntry.iName, theUid1.iUid);
|
sl@0
|
66 |
switch(theIndex1)
|
sl@0
|
67 |
{
|
sl@0
|
68 |
case 0:
|
sl@0
|
69 |
test(theEntry.iName == _L("addcert.rsc"));
|
sl@0
|
70 |
break;
|
sl@0
|
71 |
case 1:
|
sl@0
|
72 |
test(theEntry.iName == _L("help.rsc"));
|
sl@0
|
73 |
break;
|
sl@0
|
74 |
case 2:
|
sl@0
|
75 |
test(theEntry.iName == _L("msgeditor.rsc"));
|
sl@0
|
76 |
break;
|
sl@0
|
77 |
case 3:
|
sl@0
|
78 |
test(theEntry.iName == _L("smlprogress.rsc"));
|
sl@0
|
79 |
break;
|
sl@0
|
80 |
default:
|
sl@0
|
81 |
break;
|
sl@0
|
82 |
}
|
sl@0
|
83 |
}
|
sl@0
|
84 |
|
sl@0
|
85 |
TInt sortErr = BaflUtils::SortByTable(*theFileList, theTable);
|
sl@0
|
86 |
test(sortErr==KErrNone);
|
sl@0
|
87 |
|
sl@0
|
88 |
test.Printf(_L("\nGet the names of the files sorted by the Uid's table\n"));
|
sl@0
|
89 |
for(TInt theIndex = 0; theIndex < theFileList->Count(); theIndex++)
|
sl@0
|
90 |
{
|
sl@0
|
91 |
TEntry theEntry = (*theFileList)[theIndex];
|
sl@0
|
92 |
TUid theUid1 = theEntry[2];
|
sl@0
|
93 |
|
sl@0
|
94 |
test.Printf(_L("The %d file in list %S, Uid = 0x%x\n"), theIndex + 1, &theEntry.iName, theUid1.iUid);
|
sl@0
|
95 |
switch(theIndex)
|
sl@0
|
96 |
{
|
sl@0
|
97 |
case 0:
|
sl@0
|
98 |
test(theEntry.iName == _L("msgeditor.rsc"));
|
sl@0
|
99 |
break;
|
sl@0
|
100 |
case 1:
|
sl@0
|
101 |
test(theEntry.iName == _L("help.rsc"));
|
sl@0
|
102 |
break;
|
sl@0
|
103 |
case 2:
|
sl@0
|
104 |
test(theEntry.iName == _L("addcert.rsc"));
|
sl@0
|
105 |
break;
|
sl@0
|
106 |
case 3:
|
sl@0
|
107 |
test(theEntry.iName == _L("smlprogress.rsc"));
|
sl@0
|
108 |
break;
|
sl@0
|
109 |
default:
|
sl@0
|
110 |
break;
|
sl@0
|
111 |
}
|
sl@0
|
112 |
}
|
sl@0
|
113 |
CleanupStack::PopAndDestroy(3, &fileSession);
|
sl@0
|
114 |
}
|
sl@0
|
115 |
|
sl@0
|
116 |
|
sl@0
|
117 |
void DoTestsL()
|
sl@0
|
118 |
{
|
sl@0
|
119 |
__UHEAP_MARK;
|
sl@0
|
120 |
|
sl@0
|
121 |
TRAPD(testsortErr,TestSortByTableL());
|
sl@0
|
122 |
test(testsortErr==KErrNone);
|
sl@0
|
123 |
|
sl@0
|
124 |
__UHEAP_MARKEND;
|
sl@0
|
125 |
}
|
sl@0
|
126 |
|
sl@0
|
127 |
|
sl@0
|
128 |
GLDEF_C TInt E32Main()
|
sl@0
|
129 |
{
|
sl@0
|
130 |
__UHEAP_MARK;
|
sl@0
|
131 |
|
sl@0
|
132 |
test.Title();
|
sl@0
|
133 |
test.Start(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0486 SORT BY TABLE TEST "));
|
sl@0
|
134 |
|
sl@0
|
135 |
// get clean-up stack
|
sl@0
|
136 |
CTrapCleanup* cleanup = CTrapCleanup::New();
|
sl@0
|
137 |
|
sl@0
|
138 |
test (cleanup!=0);
|
sl@0
|
139 |
|
sl@0
|
140 |
TRAPD(err,DoTestsL());
|
sl@0
|
141 |
test(err==KErrNone);
|
sl@0
|
142 |
|
sl@0
|
143 |
delete cleanup;
|
sl@0
|
144 |
test.End();
|
sl@0
|
145 |
test.Close();
|
sl@0
|
146 |
|
sl@0
|
147 |
__UHEAP_MARKEND;
|
sl@0
|
148 |
return(KErrNone);
|
sl@0
|
149 |
}
|