Update contrib.
1 // Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // Tests EikFileUtils::SortByTable() function.
22 LOCAL_D RTest test(_L("t_fileutils.exe"));
24 const TInt KSortTableUid1=0x3f631;
25 const TInt KSortTableUid2=0x276a9;
28 @SYMTestCaseID SYSLIB-BAFL-CT-0486
29 @SYMTestCaseDesc Tests for the sorting of files containing an array of UIDs.
31 @SYMTestActions Tests BaflUtils::SortByTable() function.
32 @SYMTestExpectedResults Tests must not fail
35 void TestSortByTableL()
38 TInt theAttribs=KEntryAttMatchMask|KEntryAttAllowUid;
39 TFileName theCurrentPath = _L("Z:\\system\\documents\\baflsortbytabletest\\");
42 User::LeaveIfError(fileSession.Connect());
43 CleanupClosePushL(fileSession);
45 TInt ret=fileSession.GetDir(theCurrentPath,theAttribs,ESortByName,theFileList);
47 CleanupStack::PushL(theFileList);
49 CBaflFileSortTable*theTable = new (ELeave) CBaflFileSortTable();
50 CleanupStack::PushL(theTable);
54 TRAP(insertErr,theTable->InsertL(0,TUid::Uid(KSortTableUid1)));
55 test(insertErr==KErrNone);
57 TRAP(insertErr,theTable->InsertL(1,TUid::Uid(KSortTableUid2)));
58 test(insertErr==KErrNone);
60 test.Printf(_L("\nGet the names of the files sorted by alphabetical order\n"));
61 for(TInt theIndex1 = 0; theIndex1 < theFileList->Count(); theIndex1++)
63 TEntry theEntry = (*theFileList)[theIndex1];
64 TUid theUid1 = theEntry[2];
65 test.Printf(_L("The %d file in list %S, Uid = 0x%x\n"), theIndex1 + 1, &theEntry.iName, theUid1.iUid);
69 test(theEntry.iName == _L("addcert.rsc"));
72 test(theEntry.iName == _L("help.rsc"));
75 test(theEntry.iName == _L("msgeditor.rsc"));
78 test(theEntry.iName == _L("smlprogress.rsc"));
85 TInt sortErr = BaflUtils::SortByTable(*theFileList, theTable);
86 test(sortErr==KErrNone);
88 test.Printf(_L("\nGet the names of the files sorted by the Uid's table\n"));
89 for(TInt theIndex = 0; theIndex < theFileList->Count(); theIndex++)
91 TEntry theEntry = (*theFileList)[theIndex];
92 TUid theUid1 = theEntry[2];
94 test.Printf(_L("The %d file in list %S, Uid = 0x%x\n"), theIndex + 1, &theEntry.iName, theUid1.iUid);
98 test(theEntry.iName == _L("msgeditor.rsc"));
101 test(theEntry.iName == _L("help.rsc"));
104 test(theEntry.iName == _L("addcert.rsc"));
107 test(theEntry.iName == _L("smlprogress.rsc"));
113 CleanupStack::PopAndDestroy(3, &fileSession);
121 TRAPD(testsortErr,TestSortByTableL());
122 test(testsortErr==KErrNone);
128 GLDEF_C TInt E32Main()
133 test.Start(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0486 SORT BY TABLE TEST "));
135 // get clean-up stack
136 CTrapCleanup* cleanup = CTrapCleanup::New();
140 TRAPD(err,DoTestsL());