sl@0: // Copyright (c) 2004-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: // Tests EikFileUtils::SortByTable() function. sl@0: // sl@0: // sl@0: sl@0: #include sl@0: #include sl@0: #include sl@0: sl@0: LOCAL_D RTest test(_L("t_fileutils.exe")); sl@0: sl@0: const TInt KSortTableUid1=0x3f631; sl@0: const TInt KSortTableUid2=0x276a9; sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-BAFL-CT-0486 sl@0: @SYMTestCaseDesc Tests for the sorting of files containing an array of UIDs. sl@0: @SYMTestPriority High sl@0: @SYMTestActions Tests BaflUtils::SortByTable() function. sl@0: @SYMTestExpectedResults Tests must not fail sl@0: @SYMREQ REQ0000 sl@0: */ sl@0: void TestSortByTableL() sl@0: { sl@0: CDir* theFileList; sl@0: TInt theAttribs=KEntryAttMatchMask|KEntryAttAllowUid; sl@0: TFileName theCurrentPath = _L("Z:\\system\\documents\\baflsortbytabletest\\"); sl@0: sl@0: RFs fileSession; sl@0: User::LeaveIfError(fileSession.Connect()); sl@0: CleanupClosePushL(fileSession); sl@0: sl@0: TInt ret=fileSession.GetDir(theCurrentPath,theAttribs,ESortByName,theFileList); sl@0: test(ret==KErrNone); sl@0: CleanupStack::PushL(theFileList); sl@0: sl@0: CBaflFileSortTable*theTable = new (ELeave) CBaflFileSortTable(); sl@0: CleanupStack::PushL(theTable); sl@0: sl@0: TInt insertErr; sl@0: sl@0: TRAP(insertErr,theTable->InsertL(0,TUid::Uid(KSortTableUid1))); sl@0: test(insertErr==KErrNone); sl@0: sl@0: TRAP(insertErr,theTable->InsertL(1,TUid::Uid(KSortTableUid2))); sl@0: test(insertErr==KErrNone); sl@0: sl@0: test.Printf(_L("\nGet the names of the files sorted by alphabetical order\n")); sl@0: for(TInt theIndex1 = 0; theIndex1 < theFileList->Count(); theIndex1++) sl@0: { sl@0: TEntry theEntry = (*theFileList)[theIndex1]; sl@0: TUid theUid1 = theEntry[2]; sl@0: test.Printf(_L("The %d file in list %S, Uid = 0x%x\n"), theIndex1 + 1, &theEntry.iName, theUid1.iUid); sl@0: switch(theIndex1) sl@0: { sl@0: case 0: sl@0: test(theEntry.iName == _L("addcert.rsc")); sl@0: break; sl@0: case 1: sl@0: test(theEntry.iName == _L("help.rsc")); sl@0: break; sl@0: case 2: sl@0: test(theEntry.iName == _L("msgeditor.rsc")); sl@0: break; sl@0: case 3: sl@0: test(theEntry.iName == _L("smlprogress.rsc")); sl@0: break; sl@0: default: sl@0: break; sl@0: } sl@0: } sl@0: sl@0: TInt sortErr = BaflUtils::SortByTable(*theFileList, theTable); sl@0: test(sortErr==KErrNone); sl@0: sl@0: test.Printf(_L("\nGet the names of the files sorted by the Uid's table\n")); sl@0: for(TInt theIndex = 0; theIndex < theFileList->Count(); theIndex++) sl@0: { sl@0: TEntry theEntry = (*theFileList)[theIndex]; sl@0: TUid theUid1 = theEntry[2]; sl@0: sl@0: test.Printf(_L("The %d file in list %S, Uid = 0x%x\n"), theIndex + 1, &theEntry.iName, theUid1.iUid); sl@0: switch(theIndex) sl@0: { sl@0: case 0: sl@0: test(theEntry.iName == _L("msgeditor.rsc")); sl@0: break; sl@0: case 1: sl@0: test(theEntry.iName == _L("help.rsc")); sl@0: break; sl@0: case 2: sl@0: test(theEntry.iName == _L("addcert.rsc")); sl@0: break; sl@0: case 3: sl@0: test(theEntry.iName == _L("smlprogress.rsc")); sl@0: break; sl@0: default: sl@0: break; sl@0: } sl@0: } sl@0: CleanupStack::PopAndDestroy(3, &fileSession); sl@0: } sl@0: sl@0: sl@0: void DoTestsL() sl@0: { sl@0: __UHEAP_MARK; sl@0: sl@0: TRAPD(testsortErr,TestSortByTableL()); sl@0: test(testsortErr==KErrNone); sl@0: sl@0: __UHEAP_MARKEND; sl@0: } sl@0: sl@0: sl@0: GLDEF_C TInt E32Main() sl@0: { sl@0: __UHEAP_MARK; sl@0: sl@0: test.Title(); sl@0: test.Start(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0486 SORT BY TABLE TEST ")); sl@0: sl@0: // get clean-up stack sl@0: CTrapCleanup* cleanup = CTrapCleanup::New(); sl@0: sl@0: test (cleanup!=0); sl@0: sl@0: TRAPD(err,DoTestsL()); sl@0: test(err==KErrNone); sl@0: sl@0: delete cleanup; sl@0: test.End(); sl@0: test.Close(); sl@0: sl@0: __UHEAP_MARKEND; sl@0: return(KErrNone); sl@0: }