os/ossrv/lowlevellibsandfws/apputils/tsrc/T_BaflUtils.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 1997-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 <baclipb.h>
sl@0
    18
#include <bautils.h>
sl@0
    19
#include <f32file.h>
sl@0
    20
#include <s32strm.h>
sl@0
    21
#include <s32file.h>
sl@0
    22
#include <e32lang.h>
sl@0
    23
sl@0
    24
#include <fbs.h>
sl@0
    25
sl@0
    26
sl@0
    27
LOCAL_D RTest theTest(_L("T_BaflUtils"));
sl@0
    28
sl@0
    29
const TInt KMaxDisplayedFullNameLen	= 29;
sl@0
    30
sl@0
    31
// File names for copying
sl@0
    32
sl@0
    33
const TPtrC KSystem1Folder				=_L("C:\\System1\\");
sl@0
    34
const TPtrC KSystem1Data1Folder			=_L("C:\\System1\\data1\\");
sl@0
    35
sl@0
    36
const TPtrC KSystem1Data1File1			=_L("C:\\System1\\data1\\file1.txt");
sl@0
    37
const TPtrC KFile1						=_L("C:\\file1.txt");
sl@0
    38
const TPtrC KSystem1Data1SrcFile1		=_L("C:\\System1\\data1\\src\\file1.txt");
sl@0
    39
const TPtrC KSystem1Data1DstFile2		=_L("C:\\System1\\data1\\dst\\file2.txt");
sl@0
    40
const TPtrC KSystem1Data1File123456789	=_L("C:\\System1\\data1\\file123456789.txt");
sl@0
    41
const TPtrC KSystem1Data1File2			=_L("C:\\System1\\data1\\file2.txt");
sl@0
    42
const TPtrC KSystem1Data1File5			=_L("C:\\System1\\data1\\file5.txt");
sl@0
    43
const TPtrC KSystem1Data1SrcFolder		=_L("C:\\System1\\data1\\src\\");
sl@0
    44
const TPtrC KSystem1Data1DstFolder		=_L("C:\\System1\\data1\\dst\\");
sl@0
    45
sl@0
    46
const TPtrC KZFile1						=_L("Z:\\file1.txt");
sl@0
    47
sl@0
    48
// Valid Paths / Folder Name
sl@0
    49
const TPtrC KValidPathName=_L("C:\\System1\\Data1\\");
sl@0
    50
const TPtrC KValidPathNameWithoutDrive=_L("\\System1\\Data1\\");
sl@0
    51
const TPtrC KValidPathNameWithoutDrive2=_L("\\System1\\Data1\\file1.txt");
sl@0
    52
const TPtrC KValidFileName=_L("C:\\file1.txt");
sl@0
    53
const TPtrC KValidFileNameNoExtension=_L("C:\\file1");
sl@0
    54
const TPtrC KValidPathAndFileName=_L("C:\\System1\\Data1\\file1.txt");
sl@0
    55
const TPtrC KValidFolderName=_L("C:\\System1\\Data1\\Dst\\");
sl@0
    56
const TPtrC KValidDrive=_L("C:\\");
sl@0
    57
const TPtrC KValidDrive2=_L("C:");
sl@0
    58
const TPtrC KValidDrive3=_L("C");
sl@0
    59
const TPtrC KValidDrive4=_L("Z:\\");
sl@0
    60
const TPtrC KCopyFileFrom=_L("C:\\System1\\Data1\\Src\\file1.txt");
sl@0
    61
const TPtrC KCopyFileTo=_L("C:\\System1\\Data1\\Dst\\file1.txt");
sl@0
    62
const TPtrC KDeleteFile=_L("C:\\System1\\Data1\\Dst\\file1.txt");
sl@0
    63
const TPtrC KRenameFromFile=_L("C:\\System1\\Data1\\file2.txt");
sl@0
    64
const TPtrC KRenameToFile=_L("C:\\System1\\Data1\\file2New.txt");
sl@0
    65
const TPtrC KValFolderName=_L("ValidFolderName");
sl@0
    66
const TPtrC KCurrentPath=_L("C:\\System1\\Data1\\");
sl@0
    67
const TPtrC KNoFolderName = _L("");
sl@0
    68
const TPtrC KSessionRoot = _L("\\");
sl@0
    69
sl@0
    70
// KFolderNameIsTooLong is 256 chars long
sl@0
    71
const TPtrC KFolderNameIsTooLong = _L("C:\\ThisFolderNameIsgoingToBeTooLongToBeCreatedOnTheSystemThisFolderNameIsgoingToBeTooLongToBeCreatedOnTheSystemThisFolderNameIsgoingToBeTooLongToBeCreatedOnTheSystemThisFolderNameIsgoingToBeTooLongToBeCreatedOnTheSystemThisFolderNameIsgoingToBeTooLongToBeC\\");
sl@0
    72
const TPtrC KAbbreviatesFileFrom=_L("C:\\System1\\Data1\\file5.txt");
sl@0
    73
const TPtrC KAbbreviatesFileFrom2=_L("C:\\System1\\Data1\\file123456789.txt");
sl@0
    74
sl@0
    75
sl@0
    76
// InValid Paths / Folder Names
sl@0
    77
const TPtrC KNoParameters=_L("");
sl@0
    78
const TPtrC KInValidParameters=_L("3: \\52324424");
sl@0
    79
const TPtrC KInValidPathName=_L("C:\\System1\\Data1\\InvalidPathName\\");
sl@0
    80
const TPtrC KInvalidFileName=_L("C:\\System1\\Data1\\thefiledoesnotexistatthislocation.txt");
sl@0
    81
const TPtrC KIllegalFileName=_L("C:\\System1\\Data1\\Illega<>.txt");
sl@0
    82
const TPtrC KIllegalFolderName=_L("C:\\System1\\Data*<\\");
sl@0
    83
const TPtrC KFolderNameWithWildcard=_L("C:\\System1\\data*\\");
sl@0
    84
const TPtrC KInValidFolderName=_L("C:\\System1\\Data1\\InValid3+FollderName");
sl@0
    85
const TPtrC KInValidDrive=_L("P:\\");
sl@0
    86
const TPtrC KAppAbbName=_L("\\System1");
sl@0
    87
sl@0
    88
sl@0
    89
//-----------------------------------------------------------------------------
sl@0
    90
//
sl@0
    91
// Timing macros.
sl@0
    92
//
sl@0
    93
//-----------------------------------------------------------------------------
sl@0
    94
const TInt KMaxIterations     =   100;
sl@0
    95
#define INCLUDE_VERBOSE
sl@0
    96
sl@0
    97
#define TIMERINSTALL \
sl@0
    98
	TTime start(0); \
sl@0
    99
	TTime end(0);   \
sl@0
   100
	TUint delta = 0; \
sl@0
   101
	TUint cummulative = 0; \
sl@0
   102
	TUint iterations = 0;
sl@0
   103
sl@0
   104
sl@0
   105
#define TIMERRESET \
sl@0
   106
	delta = 0, cummulative = 0, iterations = 0;
sl@0
   107
sl@0
   108
sl@0
   109
#define TIMERSTART \
sl@0
   110
	start.UniversalTime();
sl@0
   111
sl@0
   112
sl@0
   113
#define TIMERSTOP \
sl@0
   114
	end.UniversalTime(); \
sl@0
   115
	delta = I64LOW(end.MicroSecondsFrom(start).Int64()); \
sl@0
   116
	iterations++; \
sl@0
   117
	cummulative += delta;
sl@0
   118
sl@0
   119
sl@0
   120
#ifdef INCLUDE_VERBOSE
sl@0
   121
_LIT(KTimerResult,   "Average time = %dus over %d iterations\n");
sl@0
   122
_LIT(KTimingError,   "Error - no timing results to display\n");
sl@0
   123
sl@0
   124
sl@0
   125
# define TIMERRESULT \
sl@0
   126
	if (iterations) \
sl@0
   127
		{ \
sl@0
   128
		theTest.Printf(KTimerResult, cummulative/iterations, iterations); \
sl@0
   129
		} \
sl@0
   130
	else \
sl@0
   131
		{ \
sl@0
   132
		theTest.Printf(KTimingError); \
sl@0
   133
		}
sl@0
   134
sl@0
   135
#else
sl@0
   136
# define TIMERRESULT
sl@0
   137
#endif
sl@0
   138
sl@0
   139
sl@0
   140
#define TIMERAVERAGE \
sl@0
   141
		(iterations ? cummulative/iterations : 0xFFFFFFFF)
sl@0
   142
//-----------------------------------------------------------------------------
sl@0
   143
sl@0
   144
sl@0
   145
//
sl@0
   146
//BaflUtils::GetEquivalentLanguageList
sl@0
   147
//BaflUtils::NearestLanguageFileV2 
sl@0
   148
//test data
sl@0
   149
_LIT (KNullFilename, "");
sl@0
   150
_LIT (KRscFilename,  "C:\\geltest.rsc");
sl@0
   151
_LIT (KRscFilenameNoSuffix,  "C:\\geltest.");
sl@0
   152
sl@0
   153
_LIT (KAmericanLang, "C:\\geltest.r10");
sl@0
   154
_LIT (KFrenchLang,   "C:\\geltest.r02");
sl@0
   155
_LIT (KJapanEnglishLang, "C:\\geltest.r160");
sl@0
   156
_LIT (KEnglishLang, "C:\\geltest.r01");
sl@0
   157
_LIT (KInvalidDriveLetterV2, "q:\\geltest.rsc");
sl@0
   158
_LIT (KNoSuchLangFile, "c:\\geltest.r54");
sl@0
   159
sl@0
   160
//
sl@0
   161
//BaflUtils::PathExist test data
sl@0
   162
sl@0
   163
// Defines the maximum number of preconditions for each test case.
sl@0
   164
#define PATH_EXIST_MAX_PRECONDITIONS 1
sl@0
   165
sl@0
   166
// Literals for PathExist testing
sl@0
   167
const TPtrC KPathExistValid = _L("C:\\ValidPath\\Data1\\");
sl@0
   168
const TPtrC KPathExistInValid = _L("C:\\ValidPath\\Data1\\InvalidPathName\\");
sl@0
   169
const TPtrC KPathExistFullFile = _L("C:\\ValidPath\\Data1\\file1.txt");
sl@0
   170
sl@0
   171
const TPtrC KPathExist257 = _L("c:\\10Letters\\10Letters\\10Letters\\10Letters\\10Letters\\10Letters\\10Letters\\10Letters\\10Letters\\10Letters\\10Letters\\10Letters\\10Letters\\10Letters\\10Letters\\10Letters\\10Letters\\10Letters\\10Letters\\10Letters\\10Letters\\10Letters\\10Letters\\10Letters\\10Letters\\256\\");
sl@0
   172
const TPtrC KPathExist256 = _L("c:\\10Letters\\10Letters\\10Letters\\10Letters\\10Letters\\10Letters\\10Letters\\10Letters\\10Letters\\10Letters\\10Letters\\10Letters\\10Letters\\10Letters\\10Letters\\10Letters\\10Letters\\10Letters\\10Letters\\10Letters\\10Letters\\10Letters\\10Letters\\10Letters\\10Letters\\56\\");
sl@0
   173
const TPtrC KPathExist255 = _L("c:\\10Letters\\10Letters\\10Letters\\10Letters\\10Letters\\10Letters\\10Letters\\10Letters\\10Letters\\10Letters\\10Letters\\10Letters\\10Letters\\10Letters\\10Letters\\10Letters\\10Letters\\10Letters\\10Letters\\10Letters\\10Letters\\10Letters\\10Letters\\10Letters\\10Letters\\6\\");
sl@0
   174
sl@0
   175
const TPtrC KPathExistShort = _L("c:\\10Letters\\10Letters\\");
sl@0
   176
const TPtrC KPathExistShortT1 = _L("c:\\10Letters\\10Letters");
sl@0
   177
const TPtrC KPathExistShortT2 = _L("c:\\10Letters\\10*\\");
sl@0
   178
const TPtrC KPathExistShortT3 = _L("c:\\10Letters\\10Letter?\\");
sl@0
   179
sl@0
   180
const TPtrC KPathExistSessionPath = _L("c:\\");
sl@0
   181
const TPtrC KPathExistRelativeT1 = _L("\\10Letters");
sl@0
   182
const TPtrC KPathExistRelativeT2 = _L("\\10Letters\\");
sl@0
   183
const TPtrC KPathExistRelativeT3 = _L("10Letters\\");
sl@0
   184
sl@0
   185
struct TPathExistTestRecord
sl@0
   186
// Defines the test case structure for PathExist unit testing
sl@0
   187
{
sl@0
   188
	// precondititions, directories to create before test run
sl@0
   189
	const TPtrC *iInPaths[PATH_EXIST_MAX_PRECONDITIONS];
sl@0
   190
sl@0
   191
	// the directory to test for
sl@0
   192
	const TPtrC  *iTestPath;
sl@0
   193
sl@0
   194
	// expected results
sl@0
   195
	TBool iResult;
sl@0
   196
sl@0
   197
	// test case line number for quick test identification
sl@0
   198
	TInt iLineNum;
sl@0
   199
};
sl@0
   200
sl@0
   201
LOCAL_D const TPathExistTestRecord pathExistTestCases[] =
sl@0
   202
// Test cases for PathExist unit testing
sl@0
   203
{
sl@0
   204
	{{&KPathExistValid}, &KPathExistValid, ETrue, 		__LINE__},
sl@0
   205
	{{&KPathExistValid}, &KPathExistInValid, EFalse, 	__LINE__},
sl@0
   206
	{{&KPathExistFullFile}, &KPathExistFullFile, EFalse,__LINE__},
sl@0
   207
	{{}, &KInValidParameters, EFalse, 					__LINE__},
sl@0
   208
	{{}, &KInValidFolderName, EFalse, 					__LINE__},
sl@0
   209
	{{}, &KValidDrive2, EFalse, 						__LINE__},
sl@0
   210
	{{}, &KNoParameters, EFalse, 						__LINE__},
sl@0
   211
sl@0
   212
	{{&KPathExistShort}, &KPathExistShort, ETrue, 		__LINE__},
sl@0
   213
	{{&KPathExistShort}, &KPathExistShortT1, EFalse, 	__LINE__},
sl@0
   214
	{{&KPathExistShort}, &KPathExistShortT2, EFalse, 	__LINE__},
sl@0
   215
	{{&KPathExistShort}, &KPathExistShortT3, EFalse, 	__LINE__},
sl@0
   216
	{{&KPathExistShort}, &KPathExistRelativeT1, EFalse, __LINE__},
sl@0
   217
	{{&KPathExistShort}, &KPathExistRelativeT2, EFalse, __LINE__},
sl@0
   218
	{{&KPathExistShort}, &KPathExistRelativeT3, EFalse, __LINE__},
sl@0
   219
sl@0
   220
#if !defined __WINS__ && !defined __WINSCW__
sl@0
   221
sl@0
   222
// max boundary tests - can only be tested on hardware
sl@0
   223
sl@0
   224
	{{&KPathExist255}, &KPathExist255, ETrue, 			__LINE__},
sl@0
   225
	{{&KPathExist256}, &KPathExist256, ETrue, 			__LINE__},
sl@0
   226
	{{&KPathExist257}, &KPathExist257, EFalse, 			__LINE__},
sl@0
   227
sl@0
   228
#endif //!defined __WINS__ && !defined __WINSCW__
sl@0
   229
sl@0
   230
	{{}, NULL, ETrue} // mandatory, last element
sl@0
   231
};
sl@0
   232
sl@0
   233
TBool DoTestPathExistsL(RFs& aFs, const struct TPathExistTestRecord& aTestRecord);
sl@0
   234
sl@0
   235
//
sl@0
   236
//Create/Destroy test environment global functions
sl@0
   237
sl@0
   238
//Delete "aFullName" file.
sl@0
   239
LOCAL_C void DeleteTestFile(const TDesC& aFullName)
sl@0
   240
	{
sl@0
   241
	RFs fsSession;
sl@0
   242
	TInt err = fsSession.Connect();
sl@0
   243
	if(err == KErrNone)
sl@0
   244
		{
sl@0
   245
		TEntry entry;
sl@0
   246
		if(fsSession.Entry(aFullName, entry) == KErrNone)
sl@0
   247
			{
sl@0
   248
			RDebug::Print(_L("Deleting \"%S\" file.\n"), &aFullName);
sl@0
   249
			err = fsSession.SetAtt(aFullName, 0, KEntryAttReadOnly);
sl@0
   250
			if(err != KErrNone)
sl@0
   251
				{
sl@0
   252
				RDebug::Print(_L("Error %d changing \"%S\" file attributes.\n"), err, &aFullName);
sl@0
   253
				}
sl@0
   254
			err = fsSession.Delete(aFullName);
sl@0
   255
			if(err != KErrNone)
sl@0
   256
				{
sl@0
   257
				RDebug::Print(_L("Error %d deleting \"%S\" file.\n"), err, &aFullName);
sl@0
   258
				}
sl@0
   259
			}
sl@0
   260
		fsSession.Close();
sl@0
   261
		}
sl@0
   262
	else
sl@0
   263
		{
sl@0
   264
		RDebug::Print(_L("Error %d connecting file session. File: %S.\n"), err, &aFullName);
sl@0
   265
		}
sl@0
   266
	}
sl@0
   267
sl@0
   268
//Delete "aFullName" dir.
sl@0
   269
LOCAL_C void DeleteTestDir(const TDesC& aFullName)
sl@0
   270
	{
sl@0
   271
	RFs fsSession;
sl@0
   272
	TInt err = fsSession.Connect();
sl@0
   273
	if(err == KErrNone)
sl@0
   274
		{
sl@0
   275
		TEntry entry;
sl@0
   276
		if(fsSession.Entry(aFullName, entry) == KErrNone)
sl@0
   277
			{
sl@0
   278
			RDebug::Print(_L("Deleting \"%S\" dir.\n"), &aFullName);
sl@0
   279
			err = fsSession.SetAtt(aFullName, 0, KEntryAttReadOnly);
sl@0
   280
			if(err != KErrNone)
sl@0
   281
				{
sl@0
   282
				RDebug::Print(_L("Error %d changing \"%S\" dir attributes.\n"), err, &aFullName);
sl@0
   283
				}
sl@0
   284
			err = fsSession.RmDir(aFullName);
sl@0
   285
			if(err != KErrNone)
sl@0
   286
				{
sl@0
   287
				RDebug::Print(_L("Error %d deleting \"%S\" dir.\n"), err, &aFullName);
sl@0
   288
				}
sl@0
   289
			}
sl@0
   290
		fsSession.Close();
sl@0
   291
		}
sl@0
   292
	else
sl@0
   293
		{
sl@0
   294
		RDebug::Print(_L("Error %d connecting file session. Dir: %S.\n"), err, &aFullName);
sl@0
   295
		}
sl@0
   296
	}
sl@0
   297
sl@0
   298
//Delete data files used by the test
sl@0
   299
LOCAL_C void DeleteTestFiles()
sl@0
   300
	{
sl@0
   301
		DeleteTestFile(KSystem1Data1File1);
sl@0
   302
		DeleteTestFile(KFile1);
sl@0
   303
		DeleteTestFile(KSystem1Data1SrcFile1);
sl@0
   304
		DeleteTestFile(KSystem1Data1DstFile2);
sl@0
   305
		DeleteTestFile(KSystem1Data1File123456789);
sl@0
   306
		DeleteTestFile(KSystem1Data1File2);
sl@0
   307
		DeleteTestFile(KSystem1Data1File5);
sl@0
   308
		DeleteTestDir(KSystem1Data1SrcFolder);
sl@0
   309
		DeleteTestDir(KSystem1Data1DstFolder);
sl@0
   310
		DeleteTestDir(KSystem1Data1Folder);
sl@0
   311
		DeleteTestDir(KSystem1Folder);
sl@0
   312
	}
sl@0
   313
sl@0
   314
//
sl@0
   315
//Test macroses and functions
sl@0
   316
LOCAL_C void Check(TInt aValue, TInt aLine)
sl@0
   317
	{
sl@0
   318
	if(!aValue)
sl@0
   319
		{
sl@0
   320
		::DeleteTestFiles();
sl@0
   321
		theTest(EFalse, aLine);
sl@0
   322
		}
sl@0
   323
	}
sl@0
   324
LOCAL_C void Check(TInt aValue, TInt aExpected, TInt aLine)
sl@0
   325
	{
sl@0
   326
	if(aValue != aExpected)
sl@0
   327
		{
sl@0
   328
		RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
sl@0
   329
		::DeleteTestFiles();
sl@0
   330
		theTest(EFalse, aLine);
sl@0
   331
		}
sl@0
   332
	}
sl@0
   333
#define TEST(arg) ::Check((arg), __LINE__)
sl@0
   334
#define TEST2(aValue, aExpected) ::Check(aValue, aExpected, __LINE__)
sl@0
   335
sl@0
   336
sl@0
   337
LOCAL_C void DeleteTestFiles2(RFs &aFs)
sl@0
   338
{
sl@0
   339
	BaflUtils::DeleteFile (aFs, KRscFilename);
sl@0
   340
	BaflUtils::DeleteFile (aFs, KAmericanLang);
sl@0
   341
	BaflUtils::DeleteFile (aFs, KFrenchLang);
sl@0
   342
	BaflUtils::DeleteFile (aFs, KJapanEnglishLang);
sl@0
   343
	BaflUtils::DeleteFile (aFs, KEnglishLang);
sl@0
   344
}
sl@0
   345
sl@0
   346
LOCAL_C void CreateTestFiles2(RFs &aFs)
sl@0
   347
{
sl@0
   348
	TEST (BaflUtils::FileExists (aFs, KRscFilename) == EFalse);
sl@0
   349
	TEST (BaflUtils::FileExists (aFs, KAmericanLang) == EFalse);
sl@0
   350
	TEST (BaflUtils::FileExists (aFs, KFrenchLang) == EFalse);
sl@0
   351
	TEST (BaflUtils::FileExists (aFs, KJapanEnglishLang) == EFalse);
sl@0
   352
	TEST (BaflUtils::FileExists (aFs, KEnglishLang) == EFalse);
sl@0
   353
sl@0
   354
	// Create the files...
sl@0
   355
	RFile rFile;
sl@0
   356
	TEST (KErrNone == rFile.Create (aFs, KRscFilename, EFileRead));
sl@0
   357
	rFile.Close ();
sl@0
   358
	TEST (KErrNone == rFile.Create (aFs, KAmericanLang, EFileRead));
sl@0
   359
	rFile.Close ();
sl@0
   360
	TEST (KErrNone == rFile.Create (aFs, KFrenchLang, EFileRead));
sl@0
   361
	rFile.Close ();
sl@0
   362
	TEST (KErrNone == rFile.Create (aFs, KEnglishLang, EFileRead));
sl@0
   363
	rFile.Close ();
sl@0
   364
}
sl@0
   365
//
sl@0
   366
//Copy test file from Z: to C: drive.
sl@0
   367
sl@0
   368
LOCAL_C void CopyTestFiles()
sl@0
   369
	{
sl@0
   370
	RFs fsSession;
sl@0
   371
	TInt err = fsSession.Connect();
sl@0
   372
	if(err == KErrNone)
sl@0
   373
		{
sl@0
   374
		User::LeaveIfError(fsSession.MkDir(KSystem1Folder));
sl@0
   375
		User::LeaveIfError(fsSession.MkDir(KSystem1Data1Folder));
sl@0
   376
		TEST2( BaflUtils::CopyFile(fsSession, KZFile1, KSystem1Data1File1), KErrNone);
sl@0
   377
		TEST2( BaflUtils::CopyFile(fsSession, KZFile1, KFile1), KErrNone);
sl@0
   378
		TEST2( BaflUtils::CopyFile(fsSession, KZFile1, KSystem1Data1File123456789), KErrNone);
sl@0
   379
		TEST2( BaflUtils::CopyFile(fsSession, KZFile1, KSystem1Data1File2), KErrNone);
sl@0
   380
		TEST2( BaflUtils::CopyFile(fsSession, KZFile1, KSystem1Data1File5), KErrNone);
sl@0
   381
		User::LeaveIfError(fsSession.MkDir(KSystem1Data1SrcFolder));
sl@0
   382
		User::LeaveIfError(fsSession.MkDir(KSystem1Data1DstFolder));
sl@0
   383
		TEST2( BaflUtils::CopyFile(fsSession, KZFile1, KSystem1Data1SrcFile1), KErrNone);
sl@0
   384
		TEST2( BaflUtils::CopyFile(fsSession, KZFile1, KSystem1Data1DstFile2), KErrNone);
sl@0
   385
sl@0
   386
		fsSession.Close();
sl@0
   387
		}
sl@0
   388
	else
sl@0
   389
		{
sl@0
   390
		RDebug::Print(_L("Error %d connecting file session.\n"), err);
sl@0
   391
		}
sl@0
   392
	}
sl@0
   393
sl@0
   394
sl@0
   395
sl@0
   396
//
sl@0
   397
sl@0
   398
/**
sl@0
   399
@SYMTestCaseID SYSLIB-BAFL-CT-1571
sl@0
   400
@SYMTestCaseDesc Tests BaflUtils::PersistHAL()
sl@0
   401
@SYMTestPriority Medium
sl@0
   402
@SYMTestActions It starts halsetting.exe and persist hal settings
sl@0
   403
@SYMTestExpectedResults The test must not fail.
sl@0
   404
@SYMDEF DEF083235 	Prop: HAL Attributes (eg screen calibration) lost if the battery is pulled out
sl@0
   405
*/
sl@0
   406
void TestPersistHAL()
sl@0
   407
	{
sl@0
   408
	TEST (BaflUtils::PersistHAL() == KErrNone);
sl@0
   409
	theTest.Next(_L(" @SYMTestCaseID SYSLIB-BAFL-CT-1571 "));
sl@0
   410
	theTest.Printf(_L("BaflUtils::PersistHAL() called"));
sl@0
   411
	}
sl@0
   412
sl@0
   413
/**
sl@0
   414
@SYMTestCaseID SYSLIB-BAFL-CT-0038-0001
sl@0
   415
@SYMTestCaseDesc Tests Baflutils::EnsurePathExists.
sl@0
   416
@SYMTestPriority Medium
sl@0
   417
@SYMTestActions Passes in existing and non-existing pathnames and removes any directories created.
sl@0
   418
@SYMTestExpectedResults The test must not fail.
sl@0
   419
@SYMDEF DEF050397 - Crimson test code improvement to be propagated into MCL
sl@0
   420
*/
sl@0
   421
void TestEnsurePathExistsL(RFs& aFs)
sl@0
   422
	{
sl@0
   423
	theTest.Next(_L(" @SYMTestCaseID SYSLIB-BAFL-CT-0038-0001 "));
sl@0
   424
	CleanupClosePushL(aFs);
sl@0
   425
	User::LeaveIfError(aFs.Connect());
sl@0
   426
sl@0
   427
	// Path already exists so -11 will be returned within EnsurePathExistsL, Method Leaves with error code 0
sl@0
   428
	TRAPD(err, BaflUtils::EnsurePathExistsL(aFs, KValidPathName));
sl@0
   429
	TEST(!err);
sl@0
   430
	// Path does not exist so -12 will be returned within EnsurePathExistsL, The Directory will be created, Method Leaves with error code 0
sl@0
   431
	TRAPD(err2, BaflUtils::EnsurePathExistsL(aFs, KInValidPathName));
sl@0
   432
	TEST(!err2);
sl@0
   433
	TEST(!aFs.RmDir(KInValidPathName));
sl@0
   434
sl@0
   435
	CleanupStack::PopAndDestroy(&aFs);
sl@0
   436
	}
sl@0
   437
sl@0
   438
/**
sl@0
   439
@SYMTestCaseID SYSLIB-BAFL-CT-0038-0002
sl@0
   440
@SYMTestCaseDesc Tests Baflutils::TestFileExists.
sl@0
   441
@SYMTestPriority Medium
sl@0
   442
@SYMTestActions Passes in valid and invalid files.
sl@0
   443
@SYMTestExpectedResults The test must not fail.
sl@0
   444
@SYMDEF DEF050397 - Crimson test code improvement to be propagated into MCL
sl@0
   445
*/
sl@0
   446
void TestFileExists(RFs& aFs)
sl@0
   447
	{
sl@0
   448
	theTest.Next(_L(" @SYMTestCaseID SYSLIB-BAFL-CT-0038-0002 "));
sl@0
   449
	CleanupClosePushL(aFs);
sl@0
   450
	User::LeaveIfError(aFs.Connect());
sl@0
   451
sl@0
   452
	TEST (BaflUtils::FileExists(aFs,KValidPathAndFileName));
sl@0
   453
	TEST (!BaflUtils::FileExists(aFs,KInvalidFileName));
sl@0
   454
sl@0
   455
	CleanupStack::PopAndDestroy(&aFs);
sl@0
   456
	}
sl@0
   457
sl@0
   458
/**
sl@0
   459
@SYMTestCaseID SYSLIB-BAFL-CT-0038-0003
sl@0
   460
@SYMTestCaseDesc Tests Baflutils::TestFolderExists.
sl@0
   461
@SYMTestPriority Medium
sl@0
   462
@SYMTestActions Passes in valid and invalid folders.
sl@0
   463
@SYMTestExpectedResults The test must not fail.
sl@0
   464
@SYMDEF DEF050397 - Crimson test code improvement to be propagated into MCL
sl@0
   465
*/
sl@0
   466
void TestFolderExists(RFs& aFs)
sl@0
   467
	{
sl@0
   468
	theTest.Next(_L(" @SYMTestCaseID SYSLIB-BAFL-CT-0038-0003 "));
sl@0
   469
	CleanupClosePushL(aFs);
sl@0
   470
	User::LeaveIfError(aFs.Connect());
sl@0
   471
sl@0
   472
	TInt x = KMaxIterations;
sl@0
   473
sl@0
   474
	TIMERINSTALL
sl@0
   475
sl@0
   476
	while (x--)
sl@0
   477
	{
sl@0
   478
		TIMERSTART
sl@0
   479
		TEST(BaflUtils::FolderExists(aFs, KValidPathName));
sl@0
   480
		TEST(BaflUtils::FolderExists(aFs, KValidFileName));
sl@0
   481
		TEST(BaflUtils::FolderExists(aFs, KValidFileNameNoExtension));
sl@0
   482
	 	TEST(BaflUtils::FolderExists(aFs, KValidPathAndFileName));
sl@0
   483
	 	TEST(BaflUtils::FolderExists(aFs, KValidPathNameWithoutDrive));
sl@0
   484
	 	TEST(BaflUtils::FolderExists(aFs, KValidPathNameWithoutDrive2));
sl@0
   485
	 	TEST(BaflUtils::FolderExists(aFs, KValidDrive));
sl@0
   486
	 	TEST(BaflUtils::FolderExists(aFs, KValidDrive4));
sl@0
   487
	 	TEST(BaflUtils::FolderExists(aFs, KSessionRoot));
sl@0
   488
	 	TIMERSTOP
sl@0
   489
	}
sl@0
   490
sl@0
   491
	theTest.Printf(_L("\nBenchmark results for FolderExists tests returning ETrue:\n"));
sl@0
   492
	TIMERRESULT
sl@0
   493
sl@0
   494
	TIMERRESET
sl@0
   495
	x = KMaxIterations;
sl@0
   496
sl@0
   497
	while (x--)
sl@0
   498
	{
sl@0
   499
		TIMERSTART
sl@0
   500
		TEST(!BaflUtils::FolderExists(aFs, KInValidPathName));
sl@0
   501
		TEST(!BaflUtils::FolderExists(aFs, KNoFolderName));
sl@0
   502
		TEST(!BaflUtils::FolderExists(aFs, KFolderNameIsTooLong));
sl@0
   503
	 	TEST(!BaflUtils::FolderExists(aFs, KIllegalFileName));
sl@0
   504
	 	TEST(!BaflUtils::FolderExists(aFs, KIllegalFolderName));
sl@0
   505
	 	TEST(!BaflUtils::FolderExists(aFs, KFolderNameWithWildcard));
sl@0
   506
		TIMERSTOP
sl@0
   507
	}
sl@0
   508
sl@0
   509
	theTest.Printf(_L("\nBenchmark results for FolderExists tests returning EFalse:\n"));
sl@0
   510
	TIMERRESULT
sl@0
   511
	theTest.Printf(_L("\n"));
sl@0
   512
sl@0
   513
	CleanupStack::PopAndDestroy(&aFs);
sl@0
   514
	}
sl@0
   515
sl@0
   516
/**
sl@0
   517
@SYMTestCaseID SYSLIB-BAFL-CT-0038-0004
sl@0
   518
@SYMTestCaseDesc Tests Baflutils::TestPathExists.
sl@0
   519
@SYMTestPriority Medium
sl@0
   520
@SYMTestActions Passes in valid and invalid paths.
sl@0
   521
@SYMTestExpectedResults The test must not fail.
sl@0
   522
@SYMDEF DEF050397 - Crimson test code improvement to be propagated into MCL
sl@0
   523
@SYMDEF INC084050 - BaflUtils::PathExists does not work for 256 long folder paths
sl@0
   524
*/
sl@0
   525
void TestPathExistsL(RFs& aFs)
sl@0
   526
	{
sl@0
   527
	theTest.Next(_L(" @SYMTestCaseID SYSLIB-BAFL-CT-0038-0004 "));
sl@0
   528
	CleanupClosePushL(aFs);
sl@0
   529
sl@0
   530
	User::LeaveIfError(aFs.Connect());
sl@0
   531
	aFs.SetSessionPath(KPathExistSessionPath);
sl@0
   532
sl@0
   533
	for (TInt i = 0; pathExistTestCases[i].iTestPath != NULL; i++)
sl@0
   534
		TEST(DoTestPathExistsL(aFs,pathExistTestCases[i]));
sl@0
   535
sl@0
   536
	CleanupStack::PopAndDestroy(&aFs);
sl@0
   537
	}
sl@0
   538
sl@0
   539
/**
sl@0
   540
@SYMTestCaseID SYSLIB-BAFL-CT-0038-0005
sl@0
   541
@SYMTestCaseDesc Tests Baflutils::TestCopyFile.
sl@0
   542
@SYMTestPriority Medium
sl@0
   543
@SYMTestActions Copy's a file from one location to another.
sl@0
   544
@SYMTestExpectedResults The test must not fail.
sl@0
   545
@SYMDEF DEF050397 - Crimson test code improvement to be propagated into MCL
sl@0
   546
*/
sl@0
   547
void TestCopyFile(RFs& aFs)
sl@0
   548
	{
sl@0
   549
	theTest.Next(_L(" @SYMTestCaseID SYSLIB-BAFL-CT-0038-0005 "));
sl@0
   550
	CleanupClosePushL(aFs);
sl@0
   551
	User::LeaveIfError(aFs.Connect());
sl@0
   552
sl@0
   553
	TEST(!BaflUtils::CopyFile(aFs, KCopyFileFrom, KCopyFileTo));
sl@0
   554
sl@0
   555
	CleanupStack::PopAndDestroy(&aFs);
sl@0
   556
	}
sl@0
   557
sl@0
   558
/**
sl@0
   559
@SYMTestCaseID SYSLIB-BAFL-CT-0038-0006
sl@0
   560
@SYMTestCaseDesc Tests Baflutils::TestDeleteFile.
sl@0
   561
@SYMTestPriority Medium
sl@0
   562
@SYMTestActions Attempts to delete a file after setting its atributes 'Read Only'.
sl@0
   563
@SYMTestExpectedResults The test must not fail.
sl@0
   564
@SYMDEF DEF050397 - Crimson test code improvement to be propagated into MCL
sl@0
   565
*/
sl@0
   566
void TestDeleteFile(RFs& aFs)
sl@0
   567
	{
sl@0
   568
	theTest.Next(_L(" @SYMTestCaseID SYSLIB-BAFL-CT-0038-0006 "));
sl@0
   569
	CleanupClosePushL(aFs);
sl@0
   570
	User::LeaveIfError(aFs.Connect());
sl@0
   571
sl@0
   572
	TEST(!aFs.SetAtt(KDeleteFile, 0, KEntryAttReadOnly));
sl@0
   573
	TEST(!BaflUtils::DeleteFile(aFs, KDeleteFile));
sl@0
   574
sl@0
   575
	CleanupStack::PopAndDestroy(&aFs);
sl@0
   576
	}
sl@0
   577
sl@0
   578
/**
sl@0
   579
@SYMTestCaseID SYSLIB-BAFL-CT-0038-0007
sl@0
   580
@SYMTestCaseDesc Tests Baflutils::TestRenameFile.
sl@0
   581
@SYMTestPriority Medium
sl@0
   582
@SYMTestActions Attempts to rename or move files or directories.
sl@0
   583
@SYMTestExpectedResults The test must not fail.
sl@0
   584
@SYMDEF DEF050397 - Crimson test code improvement to be propagated into MCL
sl@0
   585
*/
sl@0
   586
void TestRenameFile(RFs& aFs)
sl@0
   587
	{
sl@0
   588
	theTest.Next(_L(" @SYMTestCaseID SYSLIB-BAFL-CT-0038-0007 "));
sl@0
   589
	// Pushes aFs to the stack.
sl@0
   590
	CleanupClosePushL(aFs);
sl@0
   591
	// Open Session with the File Server
sl@0
   592
	User::LeaveIfError(aFs.Connect());
sl@0
   593
sl@0
   594
	TUint theSwitch = CFileMan::EOverWrite;
sl@0
   595
sl@0
   596
	// Renames or moves one or more files or directories.
sl@0
   597
	TEST2(BaflUtils::RenameFile(aFs, KRenameFromFile, KRenameToFile, theSwitch), KErrNone);
sl@0
   598
sl@0
   599
	//Rename file back to original name
sl@0
   600
	TEST2(BaflUtils::RenameFile(aFs, KRenameToFile, KRenameFromFile, theSwitch), KErrNone);
sl@0
   601
	// Pops aFs from the stack
sl@0
   602
	CleanupStack::PopAndDestroy(&aFs);
sl@0
   603
	}
sl@0
   604
sl@0
   605
/**
sl@0
   606
@SYMTestCaseID SYSLIB-BAFL-CT-0038-0008
sl@0
   607
@SYMTestCaseDesc Tests Baflutils::TestAbbreviateFileName.
sl@0
   608
@SYMTestPriority Medium
sl@0
   609
@SYMTestActions Checks if filename is being abbreviated correctly.
sl@0
   610
@SYMTestExpectedResults The test must not fail.
sl@0
   611
@SYMDEF DEF050397 - Crimson test code improvement to be propagated into MCL
sl@0
   612
*/
sl@0
   613
void TestAbbreviateFileName()
sl@0
   614
	{
sl@0
   615
	theTest.Next(_L(" @SYMTestCaseID SYSLIB-BAFL-CT-0038-0008 "));
sl@0
   616
	TFileName originalFileName(KAbbreviatesFileFrom);
sl@0
   617
	TBuf<KMaxDisplayedFullNameLen> abbrevName;
sl@0
   618
sl@0
   619
	BaflUtils::AbbreviateFileName (originalFileName.Left(29), abbrevName);
sl@0
   620
	TEST(!originalFileName.Compare(abbrevName));
sl@0
   621
	originalFileName.Copy(KAbbreviatesFileFrom2);
sl@0
   622
	BaflUtils::AbbreviateFileName (originalFileName.Left(39), abbrevName);
sl@0
   623
	TEST(originalFileName.Compare(abbrevName)<0);
sl@0
   624
	}
sl@0
   625
sl@0
   626
/**
sl@0
   627
@SYMTestCaseID SYSLIB-BAFL-CT-0038-0009
sl@0
   628
@SYMTestCaseDesc Tests Baflutils::TestCheckWhetherFullNameRefersToFolder.
sl@0
   629
@SYMTestPriority Medium
sl@0
   630
@SYMTestActions Passes in paths with valid and invalid folder names.
sl@0
   631
@SYMTestExpectedResults The test must not fail.
sl@0
   632
@SYMDEF DEF050397 - Crimson test code improvement to be propagated into MCL
sl@0
   633
*/
sl@0
   634
void TestCheckWhetherFullNameRefersToFolder()
sl@0
   635
	{
sl@0
   636
	TBool folder=EFalse;
sl@0
   637
	theTest.Next(_L(" @SYMTestCaseID SYSLIB-BAFL-CT-0038-0009 "));
sl@0
   638
sl@0
   639
	TEST(!BaflUtils::CheckWhetherFullNameRefersToFolder(KValidFolderName, folder));
sl@0
   640
    TEST(folder);
sl@0
   641
	folder=EFalse;
sl@0
   642
	TEST(!BaflUtils::CheckWhetherFullNameRefersToFolder(KInValidFolderName, folder));
sl@0
   643
    TEST(!folder);
sl@0
   644
	}
sl@0
   645
sl@0
   646
/**
sl@0
   647
@SYMTestCaseID SYSLIB-BAFL-CT-0038-0010
sl@0
   648
@SYMTestCaseDesc Tests Baflutils::TestCopyWithTruncation.
sl@0
   649
@SYMTestPriority Medium
sl@0
   650
@SYMTestActions Passes in truncated and non-truncated descriptors and checks return codes.
sl@0
   651
@SYMTestExpectedResults The test must not fail.
sl@0
   652
@SYMDEF DEF050397 - Crimson test code improvement to be propagated into MCL
sl@0
   653
*/
sl@0
   654
void TestCopyWithTruncation()
sl@0
   655
	{
sl@0
   656
	_LIT(KDestDataNoneTruncation,"TestCopyWithNoneTruncation");
sl@0
   657
	theTest.Next(_L(" @SYMTestCaseID SYSLIB-BAFL-CT-0038-0010 "));
sl@0
   658
	TBuf<26> dest;
sl@0
   659
	TBuf<30> src(KDestDataNoneTruncation);
sl@0
   660
	TChar truncationSymbol = KBaflCharTruncation;
sl@0
   661
	BaflUtils::CopyWithTruncation(dest, src, truncationSymbol);
sl@0
   662
	TEST(dest.Locate(KBaflCharTruncation)==KErrNotFound);
sl@0
   663
sl@0
   664
	_LIT(KDestDataTruncation,"TestCopyWithTruncationLeftMost");
sl@0
   665
	src.Copy(KDestDataTruncation);
sl@0
   666
	BaflUtils::CopyWithTruncation(dest, src, truncationSymbol);
sl@0
   667
	TEST(dest.Locate(KBaflCharTruncation)==25);
sl@0
   668
	}
sl@0
   669
sl@0
   670
/**
sl@0
   671
@SYMTestCaseID SYSLIB-BAFL-CT-0038-0011
sl@0
   672
@SYMTestCaseDesc Tests Baflutils::TestDriveAndPathFromFullName.
sl@0
   673
@SYMTestPriority Medium
sl@0
   674
@SYMTestActions Passes in a valid filename and compares the result.
sl@0
   675
@SYMTestExpectedResults The test must not fail.
sl@0
   676
@SYMDEF DEF050397 - Crimson test code improvement to be propagated into MCL
sl@0
   677
*/
sl@0
   678
void TestDriveAndPathFromFullName()
sl@0
   679
	{
sl@0
   680
	theTest.Next(_L(" @SYMTestCaseID SYSLIB-BAFL-CT-0038-0011 "));
sl@0
   681
	TFileName fileName = BaflUtils::DriveAndPathFromFullName(KValidPathName);
sl@0
   682
	TEST(!KValidPathName.Compare(fileName));
sl@0
   683
	}
sl@0
   684
sl@0
   685
/**
sl@0
   686
@SYMTestCaseID SYSLIB-BAFL-CT-0038-0012
sl@0
   687
@SYMTestCaseDesc Tests Baflutils::TestFolderNameFromFullName.
sl@0
   688
@SYMTestPriority Medium
sl@0
   689
@SYMTestActions Passes in various valid path, file and drive names and compares results with descriptors.
sl@0
   690
@SYMTestExpectedResults The test must not fail.
sl@0
   691
@SYMDEF DEF050397 - Crimson test code improvement to be propagated into MCL
sl@0
   692
*/
sl@0
   693
void TestFolderNameFromFullName()
sl@0
   694
	{
sl@0
   695
	theTest.Next(_L(" @SYMTestCaseID SYSLIB-BAFL-CT-0038-0012 "));
sl@0
   696
	TFileName fileName =  BaflUtils::FolderNameFromFullName(KValidPathAndFileName);
sl@0
   697
	TEST(!fileName.Compare(_L("Data1")));
sl@0
   698
sl@0
   699
	fileName =  BaflUtils::FolderNameFromFullName( KValidFileName);
sl@0
   700
	TEST(!fileName.Compare(_L("C:\\")));
sl@0
   701
sl@0
   702
	fileName =  BaflUtils::FolderNameFromFullName(KValidDrive);
sl@0
   703
	TEST(!fileName.Compare(_L("C:\\")));
sl@0
   704
sl@0
   705
	fileName =  BaflUtils::FolderNameFromFullName(KValidDrive2);
sl@0
   706
	TEST(!fileName.Compare(_L("C:")));
sl@0
   707
	}
sl@0
   708
sl@0
   709
/**
sl@0
   710
@SYMTestCaseID SYSLIB-BAFL-CT-0038-0013
sl@0
   711
@SYMTestCaseDesc Tests Baflutils::TestMostSignificantPartOfFullName.
sl@0
   712
@SYMTestPriority Medium
sl@0
   713
@SYMTestActions Passes in valid path and file names and compares results with descriptors.
sl@0
   714
@SYMTestExpectedResults The test must not fail.
sl@0
   715
@SYMDEF DEF050397 - Crimson test code improvement to be propagated into MCL
sl@0
   716
*/
sl@0
   717
void TestMostSignificantPartOfFullName()
sl@0
   718
	{
sl@0
   719
	theTest.Next(_L(" @SYMTestCaseID SYSLIB-BAFL-CT-0038-0013 "));
sl@0
   720
	TFileName mostSignificantPart;
sl@0
   721
sl@0
   722
	TEST(!BaflUtils::MostSignificantPartOfFullName(KValidPathName, mostSignificantPart));
sl@0
   723
	TEST(!mostSignificantPart.Compare(_L("Data1")));
sl@0
   724
	TEST(!BaflUtils::MostSignificantPartOfFullName(KValidPathAndFileName, mostSignificantPart));
sl@0
   725
	TEST(!mostSignificantPart.Compare(_L("file1.txt")));
sl@0
   726
	}
sl@0
   727
sl@0
   728
/**
sl@0
   729
@SYMTestCaseID SYSLIB-BAFL-CT-0038-0014
sl@0
   730
@SYMTestCaseDesc Tests Baflutils::TestParse.
sl@0
   731
@SYMTestPriority Medium
sl@0
   732
@SYMTestActions Passes in valid path and file name.
sl@0
   733
@SYMTestExpectedResults The test must not fail.
sl@0
   734
@SYMDEF DEF050397 - Crimson test code improvement to be propagated into MCL
sl@0
   735
*/
sl@0
   736
void TestParse()
sl@0
   737
	{
sl@0
   738
	theTest.Next(_L(" @SYMTestCaseID SYSLIB-BAFL-CT-0038-0014 "));
sl@0
   739
	TEST(!BaflUtils::Parse(KValidPathAndFileName));
sl@0
   740
	}
sl@0
   741
sl@0
   742
/**
sl@0
   743
@SYMTestCaseID SYSLIB-BAFL-CT-0038-0015
sl@0
   744
@SYMTestCaseDesc Tests Baflutils::TestRootFolderPath.
sl@0
   745
@SYMTestPriority Medium
sl@0
   746
@SYMTestActions Passes in valid drive and compares against expected output.
sl@0
   747
@SYMTestExpectedResults The test must not fail.
sl@0
   748
@SYMDEF DEF050397 - Crimson test code improvement to be propagated into MCL
sl@0
   749
*/
sl@0
   750
void TestRootFolderPath()
sl@0
   751
	{
sl@0
   752
	theTest.Next(_L(" @SYMTestCaseID SYSLIB-BAFL-CT-0038-0015 "));
sl@0
   753
	TFileName fileName = BaflUtils::RootFolderPath(KValidDrive3);
sl@0
   754
	TEST(!fileName.Compare(_L("C:\\")));
sl@0
   755
	}
sl@0
   756
sl@0
   757
/**
sl@0
   758
@SYMTestCaseID SYSLIB-BAFL-CT-0038-0016
sl@0
   759
@SYMTestCaseDesc Tests Baflutils::TestValidateFolderNameTypedByUserL.
sl@0
   760
@SYMTestPriority Medium
sl@0
   761
@SYMTestActions Passes in various folder names and checks return values are as expected.
sl@0
   762
@SYMTestExpectedResults The test must not fail.
sl@0
   763
@SYMDEF DEF050397 - Crimson test code improvement to be propagated into MCL
sl@0
   764
*/
sl@0
   765
void TestValidateFolderNameTypedByUserL(RFs& aFs)
sl@0
   766
	{
sl@0
   767
	theTest.Next(_L(" @SYMTestCaseID SYSLIB-BAFL-CT-0038-0016 "));
sl@0
   768
	CleanupClosePushL(aFs);
sl@0
   769
	User::LeaveIfError(aFs.Connect());
sl@0
   770
sl@0
   771
	TInt retCode=KErrNone;
sl@0
   772
	retCode=retCode;
sl@0
   773
	TFileName newFolderFullName = KCurrentPath;
sl@0
   774
sl@0
   775
	TEST(User::LeaveIfError(retCode=BaflUtils::ValidateFolderNameTypedByUserL(aFs, KValFolderName, KCurrentPath, newFolderFullName)==KErrNone));
sl@0
   776
	TEST(User::LeaveIfError(retCode=BaflUtils::ValidateFolderNameTypedByUserL(aFs, KNoFolderName, KCurrentPath, newFolderFullName)==KErrArgument));
sl@0
   777
	TEST(User::LeaveIfError(retCode=BaflUtils::ValidateFolderNameTypedByUserL(aFs, KInValidFolderName, KCurrentPath, newFolderFullName)==KErrBadName));
sl@0
   778
sl@0
   779
	CleanupStack::PopAndDestroy(&aFs);
sl@0
   780
	}
sl@0
   781
sl@0
   782
/**
sl@0
   783
@SYMTestCaseID SYSLIB-BAFL-CT-0038-0017
sl@0
   784
@SYMTestCaseDesc Tests Baflutils::TestRemoveSystemDirectory.
sl@0
   785
@SYMTestPriority Medium
sl@0
   786
@SYMTestActions Delete system directory.
sl@0
   787
@SYMTestExpectedResults The test must not fail.
sl@0
   788
@SYMDEF DEF050397 - Crimson test code improvement to be propagated into MCL
sl@0
   789
*/
sl@0
   790
void TestRemoveSystemDirectory(RFs& aFs)
sl@0
   791
	{
sl@0
   792
	theTest.Next(_L(" @SYMTestCaseID SYSLIB-BAFL-CT-0038-0017 "));
sl@0
   793
	CleanupClosePushL(aFs);
sl@0
   794
	User::LeaveIfError(aFs.Connect());
sl@0
   795
sl@0
   796
	CDir* theDir = NULL;
sl@0
   797
	CDir* fileList = NULL;
sl@0
   798
sl@0
   799
	TInt attribs=KEntryAttDir|KEntryAttSystem|KEntryAttMatchExclusive;
sl@0
   800
	aFs.GetDir(_L("z:\\system"),attribs,ESortNone, fileList, theDir);
sl@0
   801
	TInt theNumber = theDir -> Count();
sl@0
   802
	TEST(theNumber == 1);
sl@0
   803
	BaflUtils::RemoveSystemDirectory(*theDir);
sl@0
   804
	theNumber = theDir -> Count();
sl@0
   805
	TEST(!theNumber);
sl@0
   806
sl@0
   807
	delete fileList;
sl@0
   808
	delete theDir;
sl@0
   809
	CleanupStack::PopAndDestroy(&aFs);
sl@0
   810
	}
sl@0
   811
sl@0
   812
/**
sl@0
   813
@SYMTestCaseID SYSLIB-BAFL-CT-0038-0018
sl@0
   814
@SYMTestCaseDesc Tests Baflutils::TestCheckFolder.
sl@0
   815
@SYMTestPriority Medium
sl@0
   816
@SYMTestActions Pass in various path, file and drive names.
sl@0
   817
@SYMTestExpectedResults The test must not fail.
sl@0
   818
@SYMDEF DEF050397 - Crimson test code improvement to be propagated into MCL
sl@0
   819
*/
sl@0
   820
void TestCheckFolder(RFs& aFs)
sl@0
   821
	{
sl@0
   822
	theTest.Next(_L(" @SYMTestCaseID SYSLIB-BAFL-CT-0038-0018 "));
sl@0
   823
	CleanupClosePushL(aFs);
sl@0
   824
	User::LeaveIfError(aFs.Connect());
sl@0
   825
sl@0
   826
	TEST(!BaflUtils::CheckFolder(aFs, KValidPathName));
sl@0
   827
	TEST(!BaflUtils::CheckFolder(aFs, KValidPathAndFileName));
sl@0
   828
sl@0
   829
	TEST(!BaflUtils::CheckFolder(aFs, KValidFileName));
sl@0
   830
sl@0
   831
	TEST(!BaflUtils::CheckFolder(aFs, KValidDrive));
sl@0
   832
	TEST(BaflUtils::CheckFolder(aFs, KInValidPathName));
sl@0
   833
sl@0
   834
	CleanupStack::PopAndDestroy(&aFs);
sl@0
   835
	}
sl@0
   836
sl@0
   837
/**
sl@0
   838
@SYMTestCaseID SYSLIB-BAFL-CT-0038-0019
sl@0
   839
@SYMTestCaseDesc Tests Baflutils::TestDiskIsReadOnly.
sl@0
   840
@SYMTestPriority Medium
sl@0
   841
@SYMTestActions Pass in various drives and parameters and checks 'Read Only' status.
sl@0
   842
@SYMTestExpectedResults The test must not fail.
sl@0
   843
@SYMDEF DEF050397 - Crimson test code improvement to be propagated into MCL
sl@0
   844
*/
sl@0
   845
void TestDiskIsReadOnly(RFs& aFs)
sl@0
   846
	{
sl@0
   847
	theTest.Next(_L(" @SYMTestCaseID SYSLIB-BAFL-CT-0038-0019 "));
sl@0
   848
	CleanupClosePushL(aFs);
sl@0
   849
	User::LeaveIfError(aFs.Connect());
sl@0
   850
sl@0
   851
	TBool isReadOnly = EFalse;
sl@0
   852
sl@0
   853
	TEST(!BaflUtils::DiskIsReadOnly(aFs, KValidPathName, isReadOnly));
sl@0
   854
	TEST(!isReadOnly);
sl@0
   855
	TEST(!BaflUtils::DiskIsReadOnly(aFs, KValidDrive4, isReadOnly));
sl@0
   856
	TEST(isReadOnly);
sl@0
   857
	TEST(BaflUtils::DiskIsReadOnly(aFs, KInValidDrive, isReadOnly));
sl@0
   858
	TEST(isReadOnly);
sl@0
   859
	TEST(BaflUtils::DiskIsReadOnly(aFs, KNoParameters, isReadOnly));
sl@0
   860
	TEST(isReadOnly);
sl@0
   861
	TEST(BaflUtils::DiskIsReadOnly(aFs, KInValidParameters, isReadOnly));
sl@0
   862
	TEST(isReadOnly);
sl@0
   863
sl@0
   864
	CleanupStack::PopAndDestroy(&aFs);
sl@0
   865
	}
sl@0
   866
sl@0
   867
/**
sl@0
   868
@SYMTestCaseID SYSLIB-BAFL-CT-0038-0020
sl@0
   869
@SYMTestCaseDesc Tests Baflutils::TestExtractAppNameFromFullName.
sl@0
   870
@SYMTestPriority Medium
sl@0
   871
@SYMTestActions Compares thread name to both valid and invalid application names.
sl@0
   872
@SYMTestExpectedResults The test must not fail.
sl@0
   873
@SYMDEF DEF050397 - Crimson test code improvement to be propagated into MCL
sl@0
   874
*/
sl@0
   875
void TestExtractAppNameFromFullName()
sl@0
   876
	{
sl@0
   877
	theTest.Next(_L(" @SYMTestCaseID SYSLIB-BAFL-CT-0038-0020 "));
sl@0
   878
	TPtrC validAppName = BaflUtils::ExtractAppNameFromFullName(RThread().FullName());
sl@0
   879
	TEST(!validAppName.Compare(RThread().Name()));
sl@0
   880
sl@0
   881
	TPtrC inValidAppName = BaflUtils::ExtractAppNameFromFullName(_L("123:56789"));
sl@0
   882
	TEST(inValidAppName.Compare(_L("123:56789")));
sl@0
   883
	}
sl@0
   884
sl@0
   885
/**
sl@0
   886
@SYMTestCaseID SYSLIB-BAFL-CT-0038-0021
sl@0
   887
@SYMTestCaseDesc Tests Baflutils::TestIsFirstDriveForSocket.
sl@0
   888
@SYMTestPriority Medium
sl@0
   889
@SYMTestActions Passes two differant drives as arguments.
sl@0
   890
@SYMTestExpectedResults The test must not fail.
sl@0
   891
@SYMDEF DEF050397 - Crimson test code improvement to be propagated into MCL
sl@0
   892
*/
sl@0
   893
void TestIsFirstDriveForSocket()
sl@0
   894
	{
sl@0
   895
	theTest.Next(_L(" @SYMTestCaseID SYSLIB-BAFL-CT-0038-0021 "));
sl@0
   896
	TDriveUnit driveUnit(_L("C"));
sl@0
   897
sl@0
   898
	TEST(BaflUtils::IsFirstDriveForSocket(driveUnit));
sl@0
   899
	driveUnit =_L("Z");
sl@0
   900
	TEST(!BaflUtils::IsFirstDriveForSocket(driveUnit));
sl@0
   901
	}
sl@0
   902
sl@0
   903
/**
sl@0
   904
@SYMTestCaseID SYSLIB-BAFL-CT-0038-0022
sl@0
   905
@SYMTestCaseDesc Tests Baflutils::TestIsFolder.
sl@0
   906
@SYMTestPriority Medium
sl@0
   907
@SYMTestActions Passes in paths, folders and drives and checks return values.
sl@0
   908
@SYMTestExpectedResults The test must not fail.
sl@0
   909
@SYMDEF DEF050397 - Crimson test code improvement to be propagated into MCL
sl@0
   910
*/
sl@0
   911
void TestIsFolder(RFs& aFs)
sl@0
   912
	{
sl@0
   913
	theTest.Next(_L(" @SYMTestCaseID SYSLIB-BAFL-CT-0038-0022 "));
sl@0
   914
	CleanupClosePushL(aFs);
sl@0
   915
	User::LeaveIfError(aFs.Connect());
sl@0
   916
sl@0
   917
	TBool isFolder = EFalse;
sl@0
   918
sl@0
   919
	TEST(!BaflUtils::IsFolder(aFs, KValidPathName, isFolder));
sl@0
   920
	TEST(isFolder);
sl@0
   921
sl@0
   922
	TEST(BaflUtils::IsFolder(aFs, KInValidFolderName, isFolder));
sl@0
   923
	TEST(isFolder);
sl@0
   924
sl@0
   925
	TEST(!BaflUtils::IsFolder(aFs, KValidDrive4, isFolder));
sl@0
   926
	TEST(isFolder);
sl@0
   927
sl@0
   928
	CleanupStack::PopAndDestroy(&aFs);
sl@0
   929
	}
sl@0
   930
sl@0
   931
/**
sl@0
   932
@SYMTestCaseID SYSLIB-BAFL-CT-0038-0023
sl@0
   933
@SYMTestCaseDesc Tests Baflutils::TestUidTypeMatches.
sl@0
   934
@SYMTestPriority Medium
sl@0
   935
@SYMTestActions Compares Uid's to check equality.
sl@0
   936
@SYMTestExpectedResults The test must not fail.
sl@0
   937
@SYMDEF DEF050397 - Crimson test code improvement to be propagated into MCL
sl@0
   938
*/
sl@0
   939
void TestUidTypeMatches()
sl@0
   940
	{
sl@0
   941
	theTest.Next(_L(" @SYMTestCaseID SYSLIB-BAFL-CT-0038-0023 "));
sl@0
   942
	TUid valueOne = {0x1}, valueTwo = {0x2};
sl@0
   943
	valueOne.Uid(1);
sl@0
   944
	TUidType fileUid(valueOne), matchUid(valueOne);
sl@0
   945
sl@0
   946
	TEST(BaflUtils::UidTypeMatches(fileUid, matchUid));
sl@0
   947
	valueTwo.Uid(2);
sl@0
   948
	fileUid = valueTwo;
sl@0
   949
	TEST(!BaflUtils::UidTypeMatches(fileUid, matchUid));
sl@0
   950
	}
sl@0
   951
sl@0
   952
/**
sl@0
   953
@SYMTestCaseID SYSLIB-BAFL-CT-0038-0024
sl@0
   954
@SYMTestCaseDesc Tests Baflutils::TestUpdateDiskListL.
sl@0
   955
@SYMTestPriority Medium
sl@0
   956
@SYMTestActions Passes values to check the presence of disks.
sl@0
   957
@SYMTestExpectedResults The test must not fail.
sl@0
   958
@SYMDEF DEF050397 - Crimson test code improvement to be propagated into MCL
sl@0
   959
*/
sl@0
   960
void TestUpdateDiskListL(RFs& aFs)
sl@0
   961
	{
sl@0
   962
	theTest.Next(_L(" @SYMTestCaseID SYSLIB-BAFL-CT-0038-0024 "));
sl@0
   963
	CleanupClosePushL(aFs);
sl@0
   964
	User::LeaveIfError(aFs.Connect());
sl@0
   965
sl@0
   966
	CDesCArray* drives = new(ELeave) CDesCArrayFlat(1);
sl@0
   967
	CleanupStack::PushL(drives);
sl@0
   968
sl@0
   969
	// According to the Base Peripherals team drive mapping differs between
sl@0
   970
	// targets' environment and there might be different drives other than C and Z.
sl@0
   971
	// For the same reason we shouldn't check the number of available disk drives.
sl@0
   972
sl@0
   973
	// Test cases for excluding ROM
sl@0
   974
	TBool includeRom = EFalse;
sl@0
   975
	TDriveNumber driveToInclude = EDriveA;
sl@0
   976
	BaflUtils::UpdateDiskListL(aFs, *drives, includeRom, driveToInclude);
sl@0
   977
	TEST( 'A' == ((*drives)[0])[0] );
sl@0
   978
	TEST( 'C' == ((*drives)[1])[0] );
sl@0
   979
	TEST( 'Z' != ((*drives)[drives->MdcaCount() - 1])[0] );
sl@0
   980
sl@0
   981
	driveToInclude = EDriveD;
sl@0
   982
	BaflUtils::UpdateDiskListL(aFs, *drives, includeRom, driveToInclude);
sl@0
   983
	TEST( 'C' == ((*drives)[0])[0] );
sl@0
   984
	TEST( 'D' == ((*drives)[1])[0] );
sl@0
   985
	TEST( 'Z' != ((*drives)[drives->MdcaCount() - 1])[0] );
sl@0
   986
sl@0
   987
	// Test cases for including ROM
sl@0
   988
	includeRom = ETrue;
sl@0
   989
	driveToInclude = EDriveA;
sl@0
   990
	BaflUtils::UpdateDiskListL(aFs, *drives, includeRom, driveToInclude);
sl@0
   991
	TEST( 'A' == ((*drives)[0])[0] );
sl@0
   992
	TEST( 'C' == ((*drives)[1])[0] );
sl@0
   993
	TEST( 'Z' == ((*drives)[drives->MdcaCount() - 1])[0] );
sl@0
   994
sl@0
   995
	driveToInclude = EDriveD;
sl@0
   996
	BaflUtils::UpdateDiskListL(aFs, *drives, includeRom, driveToInclude);
sl@0
   997
	TEST( 'C' == ((*drives)[0])[0] );
sl@0
   998
	TEST( 'D' == ((*drives)[1])[0] );
sl@0
   999
	TEST( 'Z' == ((*drives)[drives->MdcaCount() - 1])[0] );
sl@0
  1000
sl@0
  1001
	CleanupStack::PopAndDestroy(2);
sl@0
  1002
	}
sl@0
  1003
sl@0
  1004
/**
sl@0
  1005
@SYMTestCaseID SYSLIB-BAFL-CT-0038-0025
sl@0
  1006
@SYMTestCaseDesc Tests Baflutils::TestGetDiskListL.
sl@0
  1007
@SYMTestPriority Medium
sl@0
  1008
@SYMTestActions Passes values to check the presence of disks.
sl@0
  1009
@SYMTestExpectedResults The test must not fail.
sl@0
  1010
@SYMDEF DEF051652 - BaflUtils::IsFirstDriveForSocket seems broken
sl@0
  1011
*/
sl@0
  1012
void TestGetDiskListL(RFs& aFs)
sl@0
  1013
	{
sl@0
  1014
	/*
sl@0
  1015
	(Usually) Works in the same way as UpdateDiskListL. To test the difference we have
sl@0
  1016
	to perform a manual test (emulator: F5,F4, h/w: removal of media cards).
sl@0
  1017
	For automatic tests we check the normal functionality.
sl@0
  1018
	*/
sl@0
  1019
	theTest.Next(_L(" @SYMTestCaseID SYSLIB-BAFL-CT-0038-0025 "));
sl@0
  1020
	CleanupClosePushL(aFs);
sl@0
  1021
	User::LeaveIfError(aFs.Connect());
sl@0
  1022
sl@0
  1023
	CDesCArray* drives = new(ELeave) CDesCArrayFlat(1);
sl@0
  1024
	CleanupStack::PushL(drives);
sl@0
  1025
sl@0
  1026
	// According to the Base Peripherals team drive mapping differs between
sl@0
  1027
	// targets' environment and there might be different drives other than C and Z.
sl@0
  1028
	// For the same reason we shouldn't check the number of available disk drives.
sl@0
  1029
sl@0
  1030
	// Test cases for excluding ROM
sl@0
  1031
	BaflUtils::GetDiskListL(aFs, *drives);
sl@0
  1032
	TEST( 'C' == ((*drives)[0])[0] );
sl@0
  1033
sl@0
  1034
#if !defined(__EPOC32__)
sl@0
  1035
	TEST( 'X' == ((*drives)[drives->MdcaCount() - 3])[0] );
sl@0
  1036
#endif
sl@0
  1037
sl@0
  1038
	TEST( 'Z' == ((*drives)[drives->MdcaCount() - 1])[0] );
sl@0
  1039
sl@0
  1040
	CleanupStack::PopAndDestroy(2);
sl@0
  1041
	}
sl@0
  1042
sl@0
  1043
/**
sl@0
  1044
@SYMTestCaseID SYSLIB-BAFL-CT-0095
sl@0
  1045
@SYMTestCaseDesc Tests Baflutils::TestDriveIsReadOnlyInternal.
sl@0
  1046
@SYMTestPriority Medium
sl@0
  1047
@SYMTestActions Pass in various drives and parameters and checks 'Read Only Internal' status.
sl@0
  1048
@SYMTestExpectedResults The test must not fail.
sl@0
  1049
@SYMPREQ 806 Eliminate scanning for plugins on startup
sl@0
  1050
*/
sl@0
  1051
void TestDriveIsReadOnlyInternal(RFs& aFs)
sl@0
  1052
	{
sl@0
  1053
	theTest.Next(_L(" @SYMTestCaseID SYSLIB-BAFL-CT-0095 "));
sl@0
  1054
	CleanupClosePushL(aFs);
sl@0
  1055
	User::LeaveIfError(aFs.Connect());
sl@0
  1056
sl@0
  1057
	TBool isReadOnlyInternal = EFalse;
sl@0
  1058
sl@0
  1059
	TEST(!BaflUtils::DriveIsReadOnlyInternal(aFs, KValidPathName, isReadOnlyInternal));
sl@0
  1060
	TEST(!isReadOnlyInternal);
sl@0
  1061
	TEST(!BaflUtils::DriveIsReadOnlyInternal(aFs, KValidDrive4, isReadOnlyInternal));
sl@0
  1062
	TEST(isReadOnlyInternal);
sl@0
  1063
	TEST(BaflUtils::DriveIsReadOnlyInternal(aFs, KInValidDrive, isReadOnlyInternal));
sl@0
  1064
	TEST(isReadOnlyInternal);
sl@0
  1065
	TEST(BaflUtils::DriveIsReadOnlyInternal(aFs, KNoParameters, isReadOnlyInternal));
sl@0
  1066
	TEST(isReadOnlyInternal);
sl@0
  1067
	TEST(BaflUtils::DriveIsReadOnlyInternal(aFs, KInValidParameters, isReadOnlyInternal));
sl@0
  1068
	TEST(isReadOnlyInternal);
sl@0
  1069
sl@0
  1070
	CleanupStack::PopAndDestroy(&aFs);
sl@0
  1071
	}
sl@0
  1072
sl@0
  1073
/**
sl@0
  1074
@SYMTestCaseID TI18N-BAFL-CT-4003
sl@0
  1075
@SYMTestCaseDesc Tests Baflutils::TestNearestLanguageFileV2.
sl@0
  1076
@SYMTestPriority Medium
sl@0
  1077
@SYMTestActions Pass in various resource file names and change system locale setting, check the return values.
sl@0
  1078
@SYMTestExpectedResults The test must not fail.
sl@0
  1079
@SYMPREQ 2525 Install device equivalent languages from SIS files
sl@0
  1080
*/
sl@0
  1081
void TestNearestLanguageFileV2(RFs& aFs)
sl@0
  1082
	{
sl@0
  1083
	/* test case ID to be added */
sl@0
  1084
    theTest.Next (_L (" @SYMTestCaseID TI18N-BAFL-CT-4003 "));
sl@0
  1085
    
sl@0
  1086
    __UHEAP_MARK;
sl@0
  1087
sl@0
  1088
	CleanupClosePushL (aFs);
sl@0
  1089
	User::LeaveIfError (aFs.Connect ());
sl@0
  1090
    
sl@0
  1091
    DeleteTestFiles2(aFs);
sl@0
  1092
    CreateTestFiles2(aFs);
sl@0
  1093
sl@0
  1094
	TBuf <256> filename;
sl@0
  1095
	TLanguage lang = ELangNone;
sl@0
  1096
	theTest.Printf (_L("lang initial value is %d\n"), lang);
sl@0
  1097
sl@0
  1098
	// Test NearestLanguageFile with empty name
sl@0
  1099
	TFileName resPath;
sl@0
  1100
	BaflUtils::NearestLanguageFileV2(aFs, resPath, lang);
sl@0
  1101
	TEST(resPath.Length()==0);
sl@0
  1102
	theTest.Printf (_L("lang returned by NLFV2 is %d\n"), lang);
sl@0
  1103
	TEST(ELangNone == lang);
sl@0
  1104
	theTest.Printf (_L ("The NearestLanguageFile for the null file - %S - is - %S -\n"), &KNullFilename, &filename);
sl@0
  1105
	
sl@0
  1106
	// Test NearestLanguageFile with invalid drive letter
sl@0
  1107
	filename.Copy (KInvalidDriveLetterV2);
sl@0
  1108
	BaflUtils::NearestLanguageFileV2(aFs, filename, lang);
sl@0
  1109
	//TEST(filename==KRscFilenameNoSuffix);
sl@0
  1110
	theTest.Printf (_L ("The NearestLanguageFile for %S is %S, lang is %d\n"), &KInvalidDriveLetterV2, &filename, lang);
sl@0
  1111
	//TEST(ELangNone == lang);
sl@0
  1112
	
sl@0
  1113
	// Test NearestLanguageFile with incorrect ext
sl@0
  1114
	DeleteTestFiles2(aFs);
sl@0
  1115
	RFile rFile;
sl@0
  1116
	TEST (KErrNone == rFile.Create (aFs, KFrenchLang, EFileRead));
sl@0
  1117
	rFile.Close ();
sl@0
  1118
	filename.Copy (KNoSuchLangFile);
sl@0
  1119
	BaflUtils::NearestLanguageFileV2(aFs, filename, lang);
sl@0
  1120
	//TEST(filename==KRscFilenameNoSuffix);
sl@0
  1121
	theTest.Printf (_L ("The NearestLanguageFile for %S is %S, lang is %d\n"), &KNoSuchLangFile, &filename, lang);
sl@0
  1122
	//TEST(ELangNone == lang);
sl@0
  1123
	BaflUtils::DeleteFile (aFs, KFrenchLang);
sl@0
  1124
	CreateTestFiles2(aFs);
sl@0
  1125
		
sl@0
  1126
	// Test NearestLanguageFile with no suffix
sl@0
  1127
	filename.Copy (KRscFilenameNoSuffix);
sl@0
  1128
	BaflUtils::NearestLanguageFileV2(aFs, filename, lang);
sl@0
  1129
	TEST(filename==KRscFilenameNoSuffix);
sl@0
  1130
	theTest.Printf (_L ("The NearestLanguageFile for %S is %S\n"), &KRscFilenameNoSuffix, &filename);
sl@0
  1131
	TEST(ELangNone == lang);
sl@0
  1132
	
sl@0
  1133
	// change locale to American
sl@0
  1134
	TExtendedLocale loc;
sl@0
  1135
	loc.LoadSystemSettings();
sl@0
  1136
	TInt ret = loc.LoadLocale(_L ("elocl.10"));
sl@0
  1137
	theTest.Printf(_L("LoadLocale returns %d\n"), ret);
sl@0
  1138
	TEST(KErrNone == ret);
sl@0
  1139
	ret = loc.SaveSystemSettings();
sl@0
  1140
	TEST(KErrNone == ret);
sl@0
  1141
	
sl@0
  1142
	// Test NearestLanguageFile: AmE is supported
sl@0
  1143
	filename.Copy (KRscFilename);
sl@0
  1144
	BaflUtils::NearestLanguageFileV2(aFs, filename, lang);
sl@0
  1145
	theTest.Printf (_L ("The NearestLanguageFile for %S is %S\n"), &KRscFilename, &filename);
sl@0
  1146
	//TEST(filename == KEnglishLang);
sl@0
  1147
	TEST(filename == KAmericanLang);
sl@0
  1148
	TEST(lang == ELangAmerican);
sl@0
  1149
sl@0
  1150
	// Delete geltest.r10, AmE downgrades to En_GB.
sl@0
  1151
	BaflUtils::DeleteFile (aFs, KAmericanLang);
sl@0
  1152
	filename.Copy (KRscFilename);
sl@0
  1153
	BaflUtils::NearestLanguageFileV2(aFs, filename, lang);
sl@0
  1154
	theTest.Printf (_L ("The NearestLanguageFile for %S is %S\n"), &KRscFilename, &filename);
sl@0
  1155
	TEST(filename == KEnglishLang);
sl@0
  1156
	TEST(lang == ELangEnglish);
sl@0
  1157
	
sl@0
  1158
	
sl@0
  1159
	// Delete geltest.r01, AmE downgrades to en_GB, to ELangNone.
sl@0
  1160
	BaflUtils::DeleteFile (aFs, KEnglishLang);
sl@0
  1161
	filename.Copy (KRscFilename);
sl@0
  1162
	BaflUtils::NearestLanguageFileV2(aFs, filename, lang);
sl@0
  1163
	theTest.Printf (_L ("The NearestLanguageFile for %S is %S\n"), &KRscFilename, &filename);
sl@0
  1164
	TEST(filename == KRscFilename); // filename remains unchanged.
sl@0
  1165
	TEST(lang == ELangNone);
sl@0
  1166
sl@0
  1167
	// restore locale settings
sl@0
  1168
	theTest.Printf(_L("Restoring locale settings.\n"));
sl@0
  1169
	loc.LoadSystemSettings();
sl@0
  1170
	ret = loc.LoadLocale(_L("elocl.01"));
sl@0
  1171
	TEST(KErrNone == ret);
sl@0
  1172
	ret = loc.SaveSystemSettings();
sl@0
  1173
	TEST(KErrNone == ret);
sl@0
  1174
	
sl@0
  1175
	CleanupStack::PopAndDestroy (&aFs);
sl@0
  1176
sl@0
  1177
	__UHEAP_MARKEND;
sl@0
  1178
	}
sl@0
  1179
sl@0
  1180
/**
sl@0
  1181
@SYMTestCaseID TI18N-BAFL-CT-4004
sl@0
  1182
@SYMTestCaseDesc Tests Baflutils::TestGetEquivalentLanguageList.
sl@0
  1183
@SYMTestPriority Medium
sl@0
  1184
@SYMTestActions Pass in various language ID's and check the returned list.
sl@0
  1185
@SYMTestExpectedResults The test must not fail.
sl@0
  1186
@SYMPREQ 2525 Install device equivalent languages from SIS files
sl@0
  1187
*/
sl@0
  1188
void TestGetEquivalentLanguageList()
sl@0
  1189
	{
sl@0
  1190
	/* test case ID to be added */
sl@0
  1191
	theTest.Next (_L (" @SYMTestCaseID TI18N-BAFL-CT-4004 "));
sl@0
  1192
    
sl@0
  1193
    __UHEAP_MARK;
sl@0
  1194
    
sl@0
  1195
	TLanguagePath lp;
sl@0
  1196
	// Test GetNearestLanguageFile();
sl@0
  1197
	// 1- There is an entry in the table for the given language
sl@0
  1198
	BaflUtils::GetEquivalentLanguageList(ELangCyprusGreek, lp);
sl@0
  1199
	TEST(ELangCyprusGreek == lp[0]);
sl@0
  1200
	TEST(ELangGreek == lp[1]);
sl@0
  1201
	TEST(ELangNone == lp[2]);
sl@0
  1202
	
sl@0
  1203
	// 2- There is no entry for the given language
sl@0
  1204
	BaflUtils::GetEquivalentLanguageList(ELangFarsi, lp);
sl@0
  1205
	TEST(ELangFarsi == lp[0]);
sl@0
  1206
	TEST(ELangNone == lp[1]);
sl@0
  1207
sl@0
  1208
	__UHEAP_MARKEND;
sl@0
  1209
	}
sl@0
  1210
sl@0
  1211
sl@0
  1212
/**
sl@0
  1213
@SYMTestCaseID SYSLIB-BAFL-CT-0038
sl@0
  1214
@SYMTestCaseDesc Tests Baflutils.
sl@0
  1215
@SYMTestPriority Medium
sl@0
  1216
@SYMTestActions Executes all T_baflutils tests.
sl@0
  1217
@SYMTestExpectedResults The test must not fail.
sl@0
  1218
@SYMDEF DEF050397 - Crimson test code improvement to be propagated into MCL
sl@0
  1219
*/
sl@0
  1220
void DoTestsL()
sl@0
  1221
	{
sl@0
  1222
	RFs fs;
sl@0
  1223
sl@0
  1224
	::CopyTestFiles();
sl@0
  1225
	TestPersistHAL();
sl@0
  1226
	TestEnsurePathExistsL(fs);
sl@0
  1227
	TestFileExists(fs);
sl@0
  1228
	TestFolderExists(fs);
sl@0
  1229
	TestPathExistsL(fs);
sl@0
  1230
	TestCopyFile(fs);
sl@0
  1231
	TestDeleteFile(fs);
sl@0
  1232
	TestRenameFile(fs);
sl@0
  1233
	TestAbbreviateFileName();
sl@0
  1234
	TestCheckWhetherFullNameRefersToFolder();
sl@0
  1235
	TestCopyWithTruncation();
sl@0
  1236
	TestDriveAndPathFromFullName();
sl@0
  1237
	TestFolderNameFromFullName();
sl@0
  1238
	TestMostSignificantPartOfFullName();
sl@0
  1239
	TestParse();
sl@0
  1240
	TestRootFolderPath();
sl@0
  1241
	TestValidateFolderNameTypedByUserL(fs);
sl@0
  1242
	TestRemoveSystemDirectory(fs);
sl@0
  1243
	TestCheckFolder(fs);
sl@0
  1244
	TestDiskIsReadOnly(fs);
sl@0
  1245
	TestNearestLanguageFileV2(fs);
sl@0
  1246
	TestGetEquivalentLanguageList();
sl@0
  1247
sl@0
  1248
	TestDriveIsReadOnlyInternal(fs);
sl@0
  1249
	#if defined __WINS__ || defined __WINSCW__
sl@0
  1250
sl@0
  1251
		TestExtractAppNameFromFullName();
sl@0
  1252
	#endif //defined __WINS__ || defined __WINSCW__
sl@0
  1253
sl@0
  1254
	TestIsFirstDriveForSocket();
sl@0
  1255
	TestIsFolder(fs);
sl@0
  1256
	TestUidTypeMatches();
sl@0
  1257
	TestUpdateDiskListL(fs);
sl@0
  1258
	TestGetDiskListL(fs);
sl@0
  1259
	::DeleteTestFiles();
sl@0
  1260
	}
sl@0
  1261
sl@0
  1262
GLDEF_C TInt E32Main()
sl@0
  1263
	{
sl@0
  1264
    __UHEAP_MARK;
sl@0
  1265
    CTrapCleanup *cleanup=CTrapCleanup::New();
sl@0
  1266
	theTest.Title();
sl@0
  1267
	theTest.Start(_L("Testing T_BaflUtils "));
sl@0
  1268
    TRAPD(err,DoTestsL());
sl@0
  1269
    TEST(!err);
sl@0
  1270
	theTest.End();
sl@0
  1271
    theTest.Close();
sl@0
  1272
    delete cleanup;
sl@0
  1273
    __UHEAP_MARKEND;
sl@0
  1274
	return(0);
sl@0
  1275
    }
sl@0
  1276
sl@0
  1277
sl@0
  1278
//
sl@0
  1279
// Helper method to create a hierarchy of directories
sl@0
  1280
sl@0
  1281
TInt CreateDirectoryTree(RFs& aFs, const TPtrC* aDir)
sl@0
  1282
	{
sl@0
  1283
	TParse parsedPath;
sl@0
  1284
	TBuf<KMaxFileName> newPath;
sl@0
  1285
	TInt err, pos;
sl@0
  1286
	TPtrC path;
sl@0
  1287
	TPtrC fileName;
sl@0
  1288
sl@0
  1289
	// check for the corectness of input parameters
sl@0
  1290
	if (aDir == NULL )
sl@0
  1291
		return EFalse;
sl@0
  1292
sl@0
  1293
	// verify the corectness of the input path
sl@0
  1294
	err = parsedPath.Set(*aDir, NULL, NULL);
sl@0
  1295
	if (err != KErrNone)
sl@0
  1296
	   return err;
sl@0
  1297
sl@0
  1298
	// interatily build the path and create hierarchy of directories in file system
sl@0
  1299
	newPath = parsedPath.Drive();
sl@0
  1300
	newPath.Append('\\');
sl@0
  1301
	path.Set(parsedPath.Path());
sl@0
  1302
	path.Set(path.Mid(1));              // get rid of the first backlash
sl@0
  1303
	while ((pos = path.Find(_L("\\"))) != KErrNotFound)
sl@0
  1304
		{
sl@0
  1305
		newPath.Append(path.Left(pos)); //append next directory
sl@0
  1306
		newPath.Append('\\');
sl@0
  1307
		err = aFs.MkDir(newPath);
sl@0
  1308
		if (err != KErrNone) return err;
sl@0
  1309
		path.Set(path.Mid(pos + 1));
sl@0
  1310
		}
sl@0
  1311
sl@0
  1312
	// directory created.
sl@0
  1313
	// verify if there is a need to create a file
sl@0
  1314
	if (parsedPath.NamePresent())
sl@0
  1315
		{
sl@0
  1316
		RFile file;
sl@0
  1317
		err = file.Create(aFs, *aDir, EFileWrite);
sl@0
  1318
		if (err != KErrNone) return err;
sl@0
  1319
		file.Close();
sl@0
  1320
		}
sl@0
  1321
sl@0
  1322
	return KErrNone;
sl@0
  1323
	}
sl@0
  1324
sl@0
  1325
sl@0
  1326
//
sl@0
  1327
// Helper method to remove a hierarchy of directories
sl@0
  1328
TInt RemoveDirectoryTreeL(RFs& aFs, const TPtrC* aDir)
sl@0
  1329
	{
sl@0
  1330
	TParse parsedPath;
sl@0
  1331
	TBuf<KMaxFileName> newPath;
sl@0
  1332
	TInt err = KErrNone;
sl@0
  1333
	TInt pos;
sl@0
  1334
	TPtrC path;
sl@0
  1335
	CFileMan *fileMan = NULL;
sl@0
  1336
sl@0
  1337
	// Create FileMan.
sl@0
  1338
	// As oposite to RFs it is able to remove a hirarchy of not empty directories
sl@0
  1339
	TRAPD(leaveCode, fileMan = CFileMan::NewL(aFs));
sl@0
  1340
	if (leaveCode != KErrNone)
sl@0
  1341
		return leaveCode;
sl@0
  1342
	CleanupStack::PushL(fileMan);
sl@0
  1343
sl@0
  1344
	// verify the corectness of the input path
sl@0
  1345
	err = parsedPath.Set(*aDir, NULL, NULL);
sl@0
  1346
	if (err == KErrNone)
sl@0
  1347
		{
sl@0
  1348
		// build the path consisting only of the first level of directories hierarchy
sl@0
  1349
		newPath = parsedPath.Drive();
sl@0
  1350
		newPath.Append('\\');
sl@0
  1351
		path.Set(parsedPath.Path());
sl@0
  1352
		path.Set(path.Mid(1));  			// get rid of the first backlash
sl@0
  1353
		if((pos = path.Find(_L("\\"))) != KErrNotFound)
sl@0
  1354
			{
sl@0
  1355
			newPath.Append(path.Left(pos)); //append next directory
sl@0
  1356
			newPath.Append('\\');
sl@0
  1357
			err = fileMan->RmDir(newPath);
sl@0
  1358
			}
sl@0
  1359
sl@0
  1360
		}
sl@0
  1361
sl@0
  1362
	CleanupStack::PopAndDestroy(fileMan);
sl@0
  1363
sl@0
  1364
	return err;;
sl@0
  1365
	}
sl@0
  1366
sl@0
  1367
//
sl@0
  1368
// Helper method for TestPathExist test.
sl@0
  1369
TBool DoTestPathExistsL(RFs& aFs, const struct TPathExistTestRecord& aTestRecord)
sl@0
  1370
{
sl@0
  1371
	TBool err;
sl@0
  1372
	TInt i;
sl@0
  1373
sl@0
  1374
	// 1. Create required directories (preconditions)
sl@0
  1375
	for ( i = 0; aTestRecord.iInPaths[i] != NULL && i < PATH_EXIST_MAX_PRECONDITIONS; i++)
sl@0
  1376
		{
sl@0
  1377
		err = CreateDirectoryTree(aFs, aTestRecord.iInPaths[i]);
sl@0
  1378
		if (err != KErrNone)
sl@0
  1379
			{
sl@0
  1380
			RDebug::Print(_L("TestPathExist(%d): Directory not created. Cause: %d"),
sl@0
  1381
							aTestRecord.iLineNum, err);
sl@0
  1382
sl@0
  1383
			// Do not break the loop here as the path might be incorrectly shaped on purpose.
sl@0
  1384
			}
sl@0
  1385
		}
sl@0
  1386
sl@0
  1387
	// 2. Make a directory test
sl@0
  1388
	TBool testOutcome = BaflUtils::PathExists(aFs, *aTestRecord.iTestPath);
sl@0
  1389
sl@0
  1390
	// 3. Remove directories
sl@0
  1391
	for ( i = 0; aTestRecord.iInPaths[i] != NULL && i < PATH_EXIST_MAX_PRECONDITIONS ; i++)
sl@0
  1392
		{
sl@0
  1393
		err = RemoveDirectoryTreeL(aFs, aTestRecord.iInPaths[i]);
sl@0
  1394
sl@0
  1395
		if (err != KErrNone)
sl@0
  1396
			{
sl@0
  1397
			RDebug::Print(_L("TestPathExist(%d): Warning: Directory not removed. Cause: %d"),
sl@0
  1398
							aTestRecord.iLineNum, err);
sl@0
  1399
			}
sl@0
  1400
		}
sl@0
  1401
sl@0
  1402
	// 4. Check the results
sl@0
  1403
	if (aTestRecord.iResult != testOutcome)
sl@0
  1404
		{
sl@0
  1405
		RDebug::Print(_L("TestPathExist(%d): Failed."), aTestRecord.iLineNum);
sl@0
  1406
		return EFalse;
sl@0
  1407
		}
sl@0
  1408
sl@0
  1409
	RDebug::Print(_L("TestPathExist(%d): Passed."), aTestRecord.iLineNum);
sl@0
  1410
	return ETrue;
sl@0
  1411
}