os/persistentdata/loggingservices/filelogger/TSRC/T_LOG.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-2010 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
sl@0
    17
#include <e32test.h>
sl@0
    18
#include <flogger.h>
sl@0
    19
#include <f32file.h>
sl@0
    20
sl@0
    21
GLDEF_D RTest test(_L("FLOGGER Test Code"));
sl@0
    22
GLDEF_D RFs fs;
sl@0
    23
sl@0
    24
_LIT(KTestLogFileName1,"Log1.txt");
sl@0
    25
_LIT(KTestLogFileName2,"Log2.txt");
sl@0
    26
_LIT(KTestLogDir1,"Test1");
sl@0
    27
_LIT(KTestLogDir2,"Test2");
sl@0
    28
_LIT(KTestLogDir3,"Test3");
sl@0
    29
_LIT(KTestLogDir4,"Test4");
sl@0
    30
_LIT(KTestLogDir5,"Test5");
sl@0
    31
_LIT(KTestLogFullDir1,"c:\\Logs\\Test1\\");
sl@0
    32
_LIT(KTestLogFullDir2,"c:\\Logs\\Test2\\");
sl@0
    33
_LIT(KTestLogFullDir3,"c:\\Logs\\Test3\\");
sl@0
    34
_LIT(KTestLogFullDir4,"c:\\Logs\\Test4\\");
sl@0
    35
_LIT(KTestLogFullDir5,"c:\\Logs\\Test5\\");
sl@0
    36
_LIT(KTestLogFile1,"c:\\Logs\\Test1\\Log1.txt");
sl@0
    37
_LIT(KTestLogFile2,"c:\\Logs\\Test1\\Log2.txt");
sl@0
    38
_LIT(KTestLogFile3,"c:\\Logs\\Test2\\Log1.txt");
sl@0
    39
_LIT(KTestLogFile4,"c:\\Logs\\Test3\\Log1.txt");
sl@0
    40
sl@0
    41
// 2.2.5 Wait for shutdown after closure of session 
sl@0
    42
LOCAL_C void TestWaitForShutDown()
sl@0
    43
	{
sl@0
    44
sl@0
    45
	
sl@0
    46
	test.Printf(_L("\nWaiting for FLogger server shutdown"));
sl@0
    47
	TInt i;
sl@0
    48
	for (i=30; i>0; i--)
sl@0
    49
		{
sl@0
    50
		TFullName name=_L("*");
sl@0
    51
		_LIT(serverName,"FLogger server");
sl@0
    52
		name.Append(serverName);
sl@0
    53
		TFindThread find(name);
sl@0
    54
		if(find.Next(name)==KErrNone)
sl@0
    55
			test.Printf(_L("."));
sl@0
    56
		else
sl@0
    57
			break;
sl@0
    58
		User::After(1000000);
sl@0
    59
		}
sl@0
    60
	
sl@0
    61
	test(i);
sl@0
    62
	test.Printf(_L("\nFLogger Server Shutdown after %d secs\n"), 29-i);
sl@0
    63
	}
sl@0
    64
sl@0
    65
LOCAL_C TInt DeleteFolder(const TDesC& aFolder)
sl@0
    66
	{
sl@0
    67
    CFileMan* fileman=NULL;
sl@0
    68
    TRAPD(ret,fileman=CFileMan::NewL(fs));
sl@0
    69
    ret=fileman->RmDir(aFolder);
sl@0
    70
    delete fileman;
sl@0
    71
    if (ret==KErrPathNotFound || ret==KErrNotFound)
sl@0
    72
        {
sl@0
    73
        return KErrNone;
sl@0
    74
        }
sl@0
    75
    return ret;
sl@0
    76
	}
sl@0
    77
sl@0
    78
LOCAL_C void CreateFolderL(const TDesC& aFolder)
sl@0
    79
	{
sl@0
    80
sl@0
    81
	TInt ret=fs.MkDirAll(aFolder);
sl@0
    82
	if (ret!=KErrNone && ret!=KErrAlreadyExists)
sl@0
    83
		User::Leave(ret);
sl@0
    84
	}
sl@0
    85
sl@0
    86
LOCAL_C void WriteToLog(RFileLogger& aLog)
sl@0
    87
	{
sl@0
    88
sl@0
    89
	// 16 bit writes
sl@0
    90
	TUint num1=100;
sl@0
    91
	aLog.WriteFormat(_L("Writing a number to the log: %d"),num1);
sl@0
    92
	test(aLog.LastError()==KErrNone);
sl@0
    93
	TUint num2=200;
sl@0
    94
	aLog.WriteFormat(_L("Writing two numbers to the log: %d, %d"),num1,num2);
sl@0
    95
	test(aLog.LastError()==KErrNone);
sl@0
    96
	aLog.SetDateAndTime(ETrue,ETrue);
sl@0
    97
	aLog.Write(_L("Line should begin with date and time"));
sl@0
    98
	test(aLog.LastError()==KErrNone);
sl@0
    99
	aLog.SetDateAndTime(ETrue,EFalse);
sl@0
   100
	aLog.Write(_L("Line should begin with date only"));
sl@0
   101
	test(aLog.LastError()==KErrNone);
sl@0
   102
	aLog.SetDateAndTime(EFalse,ETrue);
sl@0
   103
	aLog.Write(_L("Line should begin with time only"));
sl@0
   104
	test(aLog.LastError()==KErrNone);
sl@0
   105
	aLog.SetDateAndTime(EFalse,EFalse);
sl@0
   106
	aLog.Write(_L("Line should begin with nothing"));
sl@0
   107
	test(aLog.LastError()==KErrNone);
sl@0
   108
	aLog.Write(_L(""));
sl@0
   109
	test(aLog.LastError()==KErrNone);
sl@0
   110
	aLog.Write(_L("There should be a blank line above and below this one"));
sl@0
   111
	test(aLog.LastError()==KErrNone);
sl@0
   112
	aLog.Write(_L(""));
sl@0
   113
	test(aLog.LastError()==KErrNone);
sl@0
   114
sl@0
   115
	// 8 bit writes
sl@0
   116
	aLog.WriteFormat(_L8("Writing a number to the log: %d"),num1);
sl@0
   117
	test(aLog.LastError()==KErrNone);
sl@0
   118
	aLog.WriteFormat(_L8("Writing two numbers to the log: %d, %d"),num1,num2);
sl@0
   119
	test(aLog.LastError()==KErrNone);
sl@0
   120
	aLog.SetDateAndTime(ETrue,ETrue);
sl@0
   121
	aLog.Write(_L8("Line should begin with date and time"));
sl@0
   122
	test(aLog.LastError()==KErrNone);
sl@0
   123
	aLog.SetDateAndTime(ETrue,EFalse);
sl@0
   124
	aLog.Write(_L8("Line should begin with date only"));
sl@0
   125
	test(aLog.LastError()==KErrNone);
sl@0
   126
	aLog.SetDateAndTime(EFalse,ETrue);
sl@0
   127
	aLog.Write(_L8("Line should begin with time only"));
sl@0
   128
	test(aLog.LastError()==KErrNone);
sl@0
   129
	aLog.SetDateAndTime(EFalse,EFalse);
sl@0
   130
	aLog.Write(_L8("Line should begin with nothing"));
sl@0
   131
	test(aLog.LastError()==KErrNone);
sl@0
   132
	aLog.Write(_L8(""));
sl@0
   133
	test(aLog.LastError()==KErrNone);
sl@0
   134
	aLog.Write(_L8("There should be a blank line above and below this one"));
sl@0
   135
	test(aLog.LastError()==KErrNone);
sl@0
   136
	aLog.Write(_L8(""));
sl@0
   137
	test(aLog.LastError()==KErrNone);
sl@0
   138
sl@0
   139
// 2.2.1.5 Dump hexadecimal values
sl@0
   140
	// Hex dump
sl@0
   141
	const TText* hdr=_S("123456");
sl@0
   142
	const TText* mgn=_S("      ");
sl@0
   143
	const TUint8* ptr=_S8("abcdefghijklmnopqrstuvwxyz");
sl@0
   144
	TInt len=26;
sl@0
   145
	aLog.HexDump(hdr, mgn, ptr, len);
sl@0
   146
	test(aLog.LastError()==KErrNone);
sl@0
   147
	aLog.HexDump(NULL, mgn, ptr, len);
sl@0
   148
	test(aLog.LastError()==KErrNone);
sl@0
   149
	aLog.HexDump(hdr, NULL, ptr, len);
sl@0
   150
	test(aLog.LastError()==KErrNone);
sl@0
   151
	aLog.HexDump(hdr, mgn, NULL, len);
sl@0
   152
	test(aLog.LastError()==KErrNone);
sl@0
   153
	aLog.SetDateAndTime(ETrue,ETrue);
sl@0
   154
	aLog.HexDump(hdr, mgn, ptr, len);
sl@0
   155
	test(aLog.LastError()==KErrNone);
sl@0
   156
	aLog.HexDump(NULL, mgn, ptr, len);
sl@0
   157
	test(aLog.LastError()==KErrNone);
sl@0
   158
	aLog.HexDump(hdr, NULL, ptr, len);
sl@0
   159
	test(aLog.LastError()==KErrNone);
sl@0
   160
	aLog.HexDump(hdr, mgn, NULL, len);	
sl@0
   161
	test(aLog.LastError()==KErrNone);
sl@0
   162
	}
sl@0
   163
sl@0
   164
// 2.2.1 Writing to two open log files at a time 
sl@0
   165
// 2.2.1.3 Files are different 
sl@0
   166
LOCAL_C void testTwoClientsL(TBool aValid)
sl@0
   167
	{
sl@0
   168
sl@0
   169
	if (!aValid)
sl@0
   170
		test(DeleteFolder(KTestLogFullDir1)==KErrNone);
sl@0
   171
	else
sl@0
   172
		CreateFolderL(KTestLogFullDir1);
sl@0
   173
sl@0
   174
	RFileLogger log1;
sl@0
   175
	test(log1.Connect()==KErrNone);
sl@0
   176
	RFileLogger log2;
sl@0
   177
	test(log2.Connect()==KErrNone);
sl@0
   178
sl@0
   179
	log1.CreateLog(KTestLogDir1,KTestLogFileName1,EFileLoggingModeOverwrite);
sl@0
   180
	test(log1.LastError()==KErrNone);
sl@0
   181
	test(log1.LogValid()==aValid);
sl@0
   182
	
sl@0
   183
	log2.CreateLog(KTestLogDir1,KTestLogFileName2,EFileLoggingModeOverwrite);
sl@0
   184
	test(log2.LastError()==KErrNone);
sl@0
   185
	test(log2.LogValid()==aValid);
sl@0
   186
	
sl@0
   187
	log1.Write(_L("This is written to log 1"));
sl@0
   188
	test(log1.LastError()==KErrNone);
sl@0
   189
	test(log1.LogValid()==aValid);
sl@0
   190
	log2.Write(_L("This is written to log 2"));
sl@0
   191
	test(log2.LastError()==KErrNone);
sl@0
   192
	test(log2.LogValid()==aValid);
sl@0
   193
sl@0
   194
	WriteToLog(log1);
sl@0
   195
	WriteToLog(log2);
sl@0
   196
sl@0
   197
	log1.CloseLog();
sl@0
   198
	log2.CloseLog();
sl@0
   199
sl@0
   200
	TUint temp;
sl@0
   201
	if (aValid)
sl@0
   202
		{
sl@0
   203
		test(fs.Att(KTestLogFile1,temp)==KErrNone);
sl@0
   204
		test(fs.Att(KTestLogFile2,temp)==KErrNone);
sl@0
   205
		}
sl@0
   206
	else
sl@0
   207
		{
sl@0
   208
		test(fs.Att(KTestLogFile1,temp)==KErrPathNotFound);
sl@0
   209
		test(fs.Att(KTestLogFile2,temp)==KErrPathNotFound);
sl@0
   210
		}
sl@0
   211
sl@0
   212
	log1.Close();
sl@0
   213
	log2.Close();
sl@0
   214
	}
sl@0
   215
sl@0
   216
// 2.2.2 Static appends 
sl@0
   217
LOCAL_C void testStaticWrites(TBool aValid)
sl@0
   218
	{
sl@0
   219
	
sl@0
   220
	if (!aValid)
sl@0
   221
		test(DeleteFolder(KTestLogFullDir2)==KErrNone);
sl@0
   222
	else
sl@0
   223
		{
sl@0
   224
		TRAPD(ret,(CreateFolderL(KTestLogFullDir2)));
sl@0
   225
		test(ret==KErrNone);
sl@0
   226
		}
sl@0
   227
sl@0
   228
	RFileLogger::Write(KTestLogDir2,KTestLogFileName1,EFileLoggingModeAppend,_L("Writing to the log"));
sl@0
   229
	TUint num1=100;
sl@0
   230
	RFileLogger::WriteFormat(KTestLogDir2(),KTestLogFileName1(),EFileLoggingModeAppend,_L("Writing a number to the log: %d"),num1);
sl@0
   231
	TUint num2=200;
sl@0
   232
	RFileLogger::WriteFormat(KTestLogDir2(),KTestLogFileName1(),EFileLoggingModeAppend,_L("Writing two numbers to the log: %d, %d"),num1,num2);
sl@0
   233
sl@0
   234
	RFileLogger::Write(KTestLogDir2,KTestLogFileName1,EFileLoggingModeAppend,_L8("Writing to the log"));
sl@0
   235
	RFileLogger::WriteFormat(KTestLogDir2(),KTestLogFileName1(),EFileLoggingModeAppend,_L8("Writing a number to the log: %d"),num1);
sl@0
   236
	RFileLogger::WriteFormat(KTestLogDir2(),KTestLogFileName1(),EFileLoggingModeAppend,_L8("Writing two numbers to the log: %d, %d"),num1,num2);
sl@0
   237
sl@0
   238
	const TText* hdr=_S("123456");
sl@0
   239
	const TText* mgn=_S("      ");
sl@0
   240
	const TUint8* ptr=_S8("abcdefghijklmnopqrstuvwxyz");
sl@0
   241
	TInt len=26;
sl@0
   242
	RFileLogger::HexDump(KTestLogDir2(),KTestLogFileName1(),EFileLoggingModeAppend, hdr, mgn, ptr, len);
sl@0
   243
		
sl@0
   244
	TUint temp;
sl@0
   245
	if (aValid)
sl@0
   246
		test(fs.Att(KTestLogFile3,temp)==KErrNone);
sl@0
   247
	else
sl@0
   248
		test(fs.Att(KTestLogFile3,temp)==KErrPathNotFound);
sl@0
   249
	}
sl@0
   250
sl@0
   251
// 2.2.1 Writing to two open log files at a time 
sl@0
   252
// 2.2.1.4 Files are the same 
sl@0
   253
LOCAL_C void testTwoClientsOneFileL(TBool aValid)
sl@0
   254
	{
sl@0
   255
sl@0
   256
	if (!aValid)
sl@0
   257
		test(DeleteFolder(KTestLogFullDir3)==KErrNone);
sl@0
   258
	else
sl@0
   259
		CreateFolderL(KTestLogFullDir3);
sl@0
   260
sl@0
   261
	RFileLogger log1;
sl@0
   262
	test(log1.Connect()==KErrNone);
sl@0
   263
	RFileLogger log2;
sl@0
   264
	test(log2.Connect()==KErrNone);
sl@0
   265
sl@0
   266
	log1.CreateLog(KTestLogDir3,KTestLogFileName1,EFileLoggingModeOverwrite);
sl@0
   267
	test(log1.LastError()==KErrNone);
sl@0
   268
	test(log1.LogValid()==aValid);
sl@0
   269
	
sl@0
   270
	log2.CreateLog(KTestLogDir3,KTestLogFileName1,EFileLoggingModeOverwrite);
sl@0
   271
	test(log2.LastError()==KErrNone);
sl@0
   272
	test(log2.LogValid()==aValid);
sl@0
   273
	
sl@0
   274
	log1.Write(_L("This is written from log session 1"));
sl@0
   275
	test(log1.LastError()==KErrNone);
sl@0
   276
	test(log1.LogValid()==aValid);
sl@0
   277
	log2.Write(_L("This is written from log session 2"));
sl@0
   278
	test(log2.LastError()==KErrNone);
sl@0
   279
	test(log2.LogValid()==aValid);
sl@0
   280
sl@0
   281
	WriteToLog(log1);
sl@0
   282
	WriteToLog(log2);
sl@0
   283
sl@0
   284
	log1.CloseLog();
sl@0
   285
	log2.CloseLog();
sl@0
   286
sl@0
   287
	TUint temp;
sl@0
   288
	if (aValid)
sl@0
   289
		test(fs.Att(KTestLogFile4,temp)==KErrNone);
sl@0
   290
	else
sl@0
   291
		test(fs.Att(KTestLogFile4,temp)==KErrPathNotFound);
sl@0
   292
sl@0
   293
	log1.Close();
sl@0
   294
	log2.Close();
sl@0
   295
	}
sl@0
   296
sl@0
   297
// 2.2.4 Invalid operations
sl@0
   298
//
sl@0
   299
// Check that buffers larger than KLogBufferSize can be written without error.
sl@0
   300
LOCAL_C void testInvalidOps1L()
sl@0
   301
	{
sl@0
   302
sl@0
   303
	CreateFolderL(KTestLogFullDir4);
sl@0
   304
sl@0
   305
	RFileLogger log;
sl@0
   306
	test(log.Connect()==KErrNone);
sl@0
   307
sl@0
   308
	log.CreateLog(KTestLogDir4,KTestLogFileName1,EFileLoggingModeOverwrite);
sl@0
   309
	test(log.LastError()==KErrNone);
sl@0
   310
	test(log.LogValid());
sl@0
   311
sl@0
   312
	TBuf<151> longBuf;
sl@0
   313
	TChar ch('X');
sl@0
   314
	longBuf.Fill(ch,151);
sl@0
   315
	test(longBuf.Length()==151);
sl@0
   316
	log.Write(longBuf);					// only those chars which will fit will be written
sl@0
   317
	test(log.LastError()==KErrNone);
sl@0
   318
sl@0
   319
	TBuf8<151> longBuf8;
sl@0
   320
	longBuf8.Fill(ch,151);
sl@0
   321
	test(longBuf8.Length()==151);
sl@0
   322
	log.Write(longBuf8);				// only those chars which will fit will be written
sl@0
   323
	test(log.LastError()==KErrNone);
sl@0
   324
sl@0
   325
	log.Close();
sl@0
   326
	}
sl@0
   327
	
sl@0
   328
// Check that overlong directory names as well as file names cause an overflow error.
sl@0
   329
LOCAL_C void testInvalidOps2L()
sl@0
   330
	{
sl@0
   331
sl@0
   332
	CreateFolderL(KTestLogFullDir4);
sl@0
   333
sl@0
   334
	RFileLogger log;
sl@0
   335
	test(log.Connect()==KErrNone);
sl@0
   336
sl@0
   337
	TFileName dirName, fileName;
sl@0
   338
	dirName.SetLength(dirName.MaxLength());
sl@0
   339
	log.CreateLog(dirName,KTestLogFileName1,EFileLoggingModeOverwrite);
sl@0
   340
	test(log.LastError()==KErrOverflow);
sl@0
   341
sl@0
   342
	fileName.SetLength(fileName.MaxLength());
sl@0
   343
	log.CreateLog(KTestLogDir1,fileName,EFileLoggingModeOverwrite);
sl@0
   344
	test(log.LastError()==KErrOverflow);
sl@0
   345
sl@0
   346
	log.Close();
sl@0
   347
	}
sl@0
   348
sl@0
   349
// 2.2.3 Access counting 
sl@0
   350
LOCAL_C void TestAccessCountingL(TBool aValid)
sl@0
   351
	{
sl@0
   352
sl@0
   353
	if (aValid)
sl@0
   354
		CreateFolderL(KTestLogFullDir5);
sl@0
   355
	else
sl@0
   356
		DeleteFolder(KTestLogFullDir5);
sl@0
   357
sl@0
   358
	RFileLogger log;
sl@0
   359
	test(log.Connect()==KErrNone);
sl@0
   360
sl@0
   361
	log.CreateLog(KTestLogDir5,KTestLogFileName1,EFileLoggingModeOverwrite);
sl@0
   362
	test(log.LastError()==KErrNone);
sl@0
   363
sl@0
   364
	log.CloseLog();
sl@0
   365
sl@0
   366
	log.CreateLog(KTestLogDir5,KTestLogFileName1,EFileLoggingModeOverwrite);
sl@0
   367
	test(log.LastError()==KErrNone);
sl@0
   368
sl@0
   369
	log.CloseLog();
sl@0
   370
sl@0
   371
	log.CreateLog(KTestLogDir5,KTestLogFileName1,EFileLoggingModeOverwrite);
sl@0
   372
	test(log.LastError()==KErrNone);
sl@0
   373
sl@0
   374
	log.Close();
sl@0
   375
sl@0
   376
// Test closing log twice
sl@0
   377
sl@0
   378
	test(log.Connect()==KErrNone);
sl@0
   379
sl@0
   380
	log.CreateLog(KTestLogDir5,KTestLogFileName1,EFileLoggingModeOverwrite);
sl@0
   381
	test(log.LastError()==KErrNone);
sl@0
   382
sl@0
   383
	log.CloseLog();
sl@0
   384
	log.CloseLog();			// timer will be running if file exists
sl@0
   385
	User::After(6000000);
sl@0
   386
	log.CloseLog();			// timer will have expired
sl@0
   387
	log.Close();
sl@0
   388
sl@0
   389
// Test closing session twice
sl@0
   390
sl@0
   391
	test(log.Connect()==KErrNone);
sl@0
   392
sl@0
   393
	log.Close();
sl@0
   394
	log.Close();			// timer will be running
sl@0
   395
	TestWaitForShutDown();
sl@0
   396
	log.Close();			// timer will have expired
sl@0
   397
	}
sl@0
   398
sl@0
   399
LOCAL_C void doExampleL()
sl@0
   400
	{
sl@0
   401
sl@0
   402
	User::LeaveIfError(fs.Connect());
sl@0
   403
sl@0
   404
	// delete all files and folders
sl@0
   405
	DeleteFolder(KTestLogFullDir1);	// ignore return value
sl@0
   406
	DeleteFolder(KTestLogFullDir2);	// ignore return value
sl@0
   407
	DeleteFolder(KTestLogFullDir3);	// ignore return value
sl@0
   408
	DeleteFolder(KTestLogFullDir4);
sl@0
   409
sl@0
   410
	test.Printf(_L("\nDo tests with Folders not existing....\n"));
sl@0
   411
sl@0
   412
	test.Start(_L("Two Sessions logging to different files: PDS-FILELOGGER-UT-4001"));
sl@0
   413
	testTwoClientsL(EFalse);	// folders do not exist
sl@0
   414
	
sl@0
   415
	test.Next(_L("Two sessions logging to one file: PDS-FILELOGGER-UT-4002"));
sl@0
   416
	testTwoClientsOneFileL(EFalse);		// folders do not exist
sl@0
   417
	
sl@0
   418
	test.Next(_L("Static logging: PDS-FILELOGGER-UT-4003"));
sl@0
   419
	testStaticWrites(EFalse);		// folders do not exist
sl@0
   420
sl@0
   421
	test.Next(_L("Test Closing and Access Counting: PDS-FILELOGGER-UT-4004"));
sl@0
   422
	TestAccessCountingL(EFalse);
sl@0
   423
sl@0
   424
	test.Printf(_L("\nDo tests with Folders existing....\n"));
sl@0
   425
sl@0
   426
	test.Start(_L("Two Sessions logging to different files: PDS-FILELOGGER-UT-4001"));
sl@0
   427
	testTwoClientsL(ETrue);		// folders exist
sl@0
   428
sl@0
   429
	test.Next(_L("Two sessions logging to one file: PDS-FILELOGGER-UT-4002"));
sl@0
   430
	testTwoClientsOneFileL(ETrue);		// folders exist
sl@0
   431
sl@0
   432
	test.Next(_L("Static logging: PDS-FILELOGGER-UT-4003"));
sl@0
   433
	testStaticWrites(ETrue);		// folders exist
sl@0
   434
sl@0
   435
	test.Next(_L("Invalid Operations: PDS-FILELOGGER-UT-4005"));
sl@0
   436
	testInvalidOps1L();
sl@0
   437
	test.Next(_L("Invalid Operations: PDS-FILELOGGER-UT-4006"));
sl@0
   438
	testInvalidOps2L();
sl@0
   439
sl@0
   440
	test.Next(_L("Test Closing and Access Counting: PDS-FILELOGGER-UT-4004"));
sl@0
   441
	TestAccessCountingL(ETrue);
sl@0
   442
sl@0
   443
	RFileLogger log;
sl@0
   444
	test(log.Connect()==KErrNone);
sl@0
   445
	log.Close();
sl@0
   446
sl@0
   447
	TestWaitForShutDown();
sl@0
   448
	test.End();
sl@0
   449
sl@0
   450
	fs.Close();
sl@0
   451
	}
sl@0
   452
sl@0
   453
GLDEF_C TInt E32Main()
sl@0
   454
	{
sl@0
   455
sl@0
   456
	CTrapCleanup* cleanup=CTrapCleanup::New();
sl@0
   457
sl@0
   458
	__UHEAP_MARK;
sl@0
   459
	
sl@0
   460
	test.Title();
sl@0
   461
sl@0
   462
	TRAPD(ret,doExampleL());
sl@0
   463
	test(ret==KErrNone);
sl@0
   464
	
sl@0
   465
    test.End();
sl@0
   466
	test.Close();
sl@0
   467
sl@0
   468
	__UHEAP_MARKEND;
sl@0
   469
sl@0
   470
	delete cleanup;
sl@0
   471
	User::Heap().Check();
sl@0
   472
	return KErrNone;
sl@0
   473
	}