os/persistentdata/persistentstorage/centralrepository/test/t_cenrep_cache.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) 2005-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 <f32file.h>
sl@0
    18
#include <badesca.h>
sl@0
    19
sl@0
    20
#include "srvrepos_noc.h"
sl@0
    21
#include "srvres.h"
sl@0
    22
#include "cachemgr.h"
sl@0
    23
#include "sessnotf.h"
sl@0
    24
sl@0
    25
RTest TheTest(_L("Central Repository Coarse-Grained Cache Tests"));
sl@0
    26
sl@0
    27
enum TBorderTestStage
sl@0
    28
	{
sl@0
    29
	ENominalNoFile = -1,
sl@0
    30
	ENominal = 0,
sl@0
    31
	ESizeMin,
sl@0
    32
	ESizeMinplus,
sl@0
    33
	ESizeMaxminus,
sl@0
    34
	ESizeMax,
sl@0
    35
	ESizeMaxplus,
sl@0
    36
	ETimeoutMin,
sl@0
    37
	ETimeoutMinplus,
sl@0
    38
	ETimeoutMaxminus,
sl@0
    39
	EReallyWorstCase,
sl@0
    40
	ELastStage
sl@0
    41
	};
sl@0
    42
sl@0
    43
const TUid KUidCacheTestRepositorySm	= { 0x00000002 };
sl@0
    44
const TUid KUidCacheTestRepositorySm2	= { 0x00000011 };
sl@0
    45
const TUid KUidCacheTestRepositoryMed   = { 0x11111111 };
sl@0
    46
const TUid KUidCacheTestRepositoryMed2  = { 0x00057778 };
sl@0
    47
const TUid KUidCacheTestRepositoryLrg	= { 0xCCCCCC01 };
sl@0
    48
sl@0
    49
const TInt KTimerDelay = 1000000;
sl@0
    50
const TInt KMemoryFiller = 3762;
sl@0
    51
sl@0
    52
_LIT(KCacheMgrIniFileFolder, "\\private\\10202BE9\\");
sl@0
    53
_LIT(KCacheMgrIniSrcFile, "centrepcache.ini");
sl@0
    54
sl@0
    55
TTime starttime;
sl@0
    56
sl@0
    57
class TRepositoryCacheManagerTester
sl@0
    58
	{
sl@0
    59
	public:
sl@0
    60
	TRepositoryCacheManagerTester(): iOOMTest(EFalse), iStage(ENominalNoFile), iTestStepStage(0)
sl@0
    61
		{
sl@0
    62
		iFs.Connect();
sl@0
    63
		}
sl@0
    64
	~TRepositoryCacheManagerTester()
sl@0
    65
		{
sl@0
    66
		iFs.Close();
sl@0
    67
		}
sl@0
    68
	TInt CacheRepositoryL(TUid aRepUid, TBool& aTrap);
sl@0
    69
	TInt CacheRepositoryL(TUid aRepUid);
sl@0
    70
	TBool FindRepository(TUid aRepUid);
sl@0
    71
	void FuncTestsL();
sl@0
    72
	void SizeTestsL();
sl@0
    73
	void TimingTestsL();
sl@0
    74
	void DefectTestsL();
sl@0
    75
	void DEF093491L();
sl@0
    76
	void INC105967();
sl@0
    77
	void DeleteFilesL();
sl@0
    78
	void DEF111734L();
sl@0
    79
	void DEF124147();
sl@0
    80
	void InstallIniFileL( TBorderTestStage aFileSet );
sl@0
    81
	void AdvanceToStageL(TBorderTestStage aStage);
sl@0
    82
	void NextTest(TPtrC aMsg);
sl@0
    83
	static TInt Callback(TAny* aParent);
sl@0
    84
	static void CleanUp(TAny*);
sl@0
    85
public:
sl@0
    86
	TBool iOOMTest;
sl@0
    87
	RFs iFs;
sl@0
    88
	TBorderTestStage iStage;
sl@0
    89
	TInt iTestStepStage;
sl@0
    90
	};
sl@0
    91
sl@0
    92
LOCAL_C TRepositoryCacheManagerTester Tester;
sl@0
    93
sl@0
    94
LOCAL_C TCleanupItem gCleanup(TRepositoryCacheManagerTester::CleanUp);
sl@0
    95
///////////////////////////////////////////////////////////////////////////////////////
sl@0
    96
///////////////////////////////////////////////////////////////////////////////////////
sl@0
    97
//Test macroses and functions
sl@0
    98
sl@0
    99
void TRepositoryCacheManagerTester::DeleteFilesL()
sl@0
   100
	{
sl@0
   101
	_LIT( KOldInstallFiles, "c:\\private\\10202BE9\\*.ini" );
sl@0
   102
sl@0
   103
	CFileMan* fm = CFileMan::NewL( iFs );
sl@0
   104
	CleanupStack::PushL( fm );
sl@0
   105
sl@0
   106
	TInt r = fm->Delete( KOldInstallFiles );
sl@0
   107
	if ( r != KErrNone && r != KErrNotFound && r != KErrPathNotFound )
sl@0
   108
		User::Leave(r);
sl@0
   109
sl@0
   110
	CleanupStack::PopAndDestroy( fm );
sl@0
   111
	}
sl@0
   112
sl@0
   113
LOCAL_C void Check( TInt aValue, TInt aLine )
sl@0
   114
	{
sl@0
   115
	if ( !aValue )
sl@0
   116
		{
sl@0
   117
		TheTest( EFalse, aLine );
sl@0
   118
		}
sl@0
   119
	}
sl@0
   120
sl@0
   121
LOCAL_C void Check( TInt aValue, TInt aExpected, TInt aLine )
sl@0
   122
	{
sl@0
   123
	if ( aValue != aExpected )
sl@0
   124
		{
sl@0
   125
		RDebug::Print( _L( "*** Expected error: %d, got: %d\r\n"), aExpected, aValue );
sl@0
   126
		TheTest( EFalse, aLine );
sl@0
   127
		}
sl@0
   128
	}
sl@0
   129
sl@0
   130
#define TEST(arg) ::Check((arg), __LINE__)
sl@0
   131
#define TEST2(aValue, aExpected) ::Check(aValue, aExpected, __LINE__)
sl@0
   132
sl@0
   133
///////////////////////////////////////////////////////////////////////////////////////
sl@0
   134
///////////////////////////////////////////////////////////////////////////////////////
sl@0
   135
sl@0
   136
void TRepositoryCacheManagerTester::NextTest(TPtrC aMsg)
sl@0
   137
	{
sl@0
   138
	if (!iOOMTest)
sl@0
   139
		{
sl@0
   140
		TheTest.Next( aMsg );
sl@0
   141
		}
sl@0
   142
	}
sl@0
   143
sl@0
   144
void TRepositoryCacheManagerTester::AdvanceToStageL(TBorderTestStage aStage)
sl@0
   145
	{
sl@0
   146
	iStage = aStage;
sl@0
   147
	if (aStage != ENominalNoFile)
sl@0
   148
		{
sl@0
   149
		InstallIniFileL( aStage );
sl@0
   150
		}
sl@0
   151
	else
sl@0
   152
		{
sl@0
   153
		DeleteFilesL();
sl@0
   154
		}
sl@0
   155
	delete TServerResources::iCacheManager;
sl@0
   156
	TServerResources::iCacheManager = NULL;
sl@0
   157
	TServerResources::iCacheManager = CRepositoryCacheManager::NewLC(iFs);
sl@0
   158
	CleanupStack::Pop(TServerResources::iCacheManager);
sl@0
   159
	}
sl@0
   160
sl@0
   161
void TRepositoryCacheManagerTester::InstallIniFileL( TBorderTestStage aFileSet )
sl@0
   162
	{
sl@0
   163
	_LIT( KDriveC, "c:" );
sl@0
   164
	_LIT( KDriveZ, "z:" );
sl@0
   165
sl@0
   166
	TBuf<KMaxFileName> src1;
sl@0
   167
	TBuf<KMaxFileName> dest1;
sl@0
   168
	TInt r;
sl@0
   169
sl@0
   170
	DeleteFilesL();
sl@0
   171
sl@0
   172
	CFileMan* fm = CFileMan::NewL( iFs );
sl@0
   173
	CleanupStack::PushL( fm );
sl@0
   174
sl@0
   175
	if ((aFileSet>=ELastStage)||(aFileSet<0))
sl@0
   176
		{
sl@0
   177
		RDebug::Print( _L( "Illegal parameter to function: %d\r\n" ), aFileSet );
sl@0
   178
		TheTest( EFalse, __LINE__ );
sl@0
   179
		}
sl@0
   180
	else
sl@0
   181
		{
sl@0
   182
		dest1.Copy( KDriveC );
sl@0
   183
		dest1.Append( KCacheMgrIniFileFolder );
sl@0
   184
		dest1.Append( KCacheMgrIniFile );
sl@0
   185
		r = fm->Delete( dest1 );
sl@0
   186
		if ( r != KErrNone && r != KErrNotFound && r != KErrPathNotFound )
sl@0
   187
			User::Leave( r );
sl@0
   188
		r = iFs.MkDirAll( dest1 );
sl@0
   189
		if ( r != KErrNone && r != KErrAlreadyExists )
sl@0
   190
			User::Leave( r );
sl@0
   191
		src1.Copy( KDriveZ );
sl@0
   192
		src1.Append( KCacheMgrIniFileFolder );
sl@0
   193
		src1.Append( KCacheMgrIniSrcFile );
sl@0
   194
		TBuf<2> testNo;
sl@0
   195
		testNo.Num(aFileSet);
sl@0
   196
		src1.Append( testNo );
sl@0
   197
		User::LeaveIfError( fm->Copy( src1, dest1 ) );
sl@0
   198
		r = fm->Attribs( dest1, KEntryAttArchive, KEntryAttReadOnly, TTime( 0 ), CFileMan::ERecurse );
sl@0
   199
		TEST2( r, KErrNone );
sl@0
   200
		}
sl@0
   201
sl@0
   202
	CleanupStack::PopAndDestroy( fm );
sl@0
   203
	}
sl@0
   204
sl@0
   205
TInt TRepositoryCacheManagerTester::CacheRepositoryL(TUid aRepUid)
sl@0
   206
	{
sl@0
   207
	TBool trap = EFalse;
sl@0
   208
	return CacheRepositoryL(aRepUid, trap);
sl@0
   209
	}
sl@0
   210
sl@0
   211
void TRepositoryCacheManagerTester::CleanUp(TAny*)
sl@0
   212
	{
sl@0
   213
	// If cache manager is initialized and used before, we flush it
sl@0
   214
	if (TServerResources::iCacheManager)
sl@0
   215
		{
sl@0
   216
		TServerResources::iCacheManager->FlushCache();
sl@0
   217
		}
sl@0
   218
	// To get rid of the iOpenRepositories array leaking problem during OOM testing.
sl@0
   219
	TServerResources::iObserver->CloseiOpenRepositories();
sl@0
   220
	TServerResources::iObserver->Reset();
sl@0
   221
	// To get rid of the array leaking problems during OOM testing.
sl@0
   222
	TServerResources::iOwnerIdLookUpTable.Reset();
sl@0
   223
	}
sl@0
   224
sl@0
   225
// Opens and Closes a repository to place it in the cache
sl@0
   226
TInt TRepositoryCacheManagerTester::CacheRepositoryL(TUid aRepUid, TBool& aTrap)
sl@0
   227
	{
sl@0
   228
	TInt repsize = 0;
sl@0
   229
	// Notifier needed to open repositories.
sl@0
   230
	CSessionNotifier* notifier;
sl@0
   231
	notifier = new(ELeave)CSessionNotifier;
sl@0
   232
	CleanupStack::PushL(notifier);
sl@0
   233
sl@0
   234
    CServerRepository* repository = new(ELeave) CServerRepository();
sl@0
   235
    CleanupStack::PushL(repository);
sl@0
   236
    TServerResources::iObserver->iTrapOOMOnOpen = aTrap;
sl@0
   237
    aTrap = EFalse; // This means that this function didn't leave until attempting to open the repository
sl@0
   238
    repository->OpenL(aRepUid,*notifier);
sl@0
   239
    repsize = repository->SizeiRepository();
sl@0
   240
	repository->Close();
sl@0
   241
	TServerResources::iObserver->iTrapOOMOnOpen = EFalse;
sl@0
   242
sl@0
   243
   	CleanupStack::PopAndDestroy(repository);
sl@0
   244
   	CleanupStack::PopAndDestroy(notifier);
sl@0
   245
sl@0
   246
   	return repsize;
sl@0
   247
	}
sl@0
   248
sl@0
   249
// Checks if a repository is in the cache
sl@0
   250
TBool TRepositoryCacheManagerTester::FindRepository(TUid aRepUid)
sl@0
   251
	{
sl@0
   252
	for(TInt i=TServerResources::iCacheManager->iIdleRepositories.Count()-1; i>=0; i--)
sl@0
   253
		{
sl@0
   254
		if(TServerResources::iCacheManager->iIdleRepositories[i].iSharedRepository->Uid()==aRepUid)
sl@0
   255
			{
sl@0
   256
			return ETrue;
sl@0
   257
			}
sl@0
   258
		}
sl@0
   259
	return EFalse;
sl@0
   260
	}
sl@0
   261
sl@0
   262
TInt TRepositoryCacheManagerTester::Callback(TAny* aParent)
sl@0
   263
	{
sl@0
   264
	TTime now;
sl@0
   265
	now.UniversalTime();
sl@0
   266
	TheTest.Printf(_L("Timer Expired at %Ld\n"), now.MicroSecondsFrom(starttime).Int64());
sl@0
   267
	((CPeriodic*)aParent)->Cancel();;
sl@0
   268
	CActiveScheduler::Stop();
sl@0
   269
sl@0
   270
	return KErrNone;
sl@0
   271
	}
sl@0
   272
sl@0
   273
/**
sl@0
   274
@SYMTestCaseID SYSLIB-CENTRALREPOSITORY-CT-1419
sl@0
   275
@SYMTestCaseDesc Test Coarse-Grained Caching functionality.
sl@0
   276
@SYMTestPriority High
sl@0
   277
@SYMTestActions  Check correct initialization of the cache manager, expected caching behaviour after
sl@0
   278
 repository open/close, correct setting of cache size, correct functioning of the cache flush
sl@0
   279
 functionality, OOM recovery by cache flushing feature and cache Disable/Enable functionality
sl@0
   280
@SYMTestExpectedResults The test must not fail.
sl@0
   281
@SYMPREQ PREQ1192
sl@0
   282
@SYMTestStatus Defined
sl@0
   283
@SYMDevelopedForRelease Symbian OS v9.3
sl@0
   284
@SYMAuthor Aleks Pamir
sl@0
   285
*/
sl@0
   286
void TRepositoryCacheManagerTester::FuncTestsL()
sl@0
   287
	{
sl@0
   288
	NextTest(_L( " @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-CT-1419 Initialize Cache Manager " ));
sl@0
   289
sl@0
   290
	iTestStepStage = 0;
sl@0
   291
	TEST( TServerResources::iCacheManager != 0 );
sl@0
   292
	TEST( TServerResources::iCacheManager->iIdleRepositories.Count() == 0 );
sl@0
   293
	TServerResources::iCacheManager->EnableCache();
sl@0
   294
sl@0
   295
	NextTest( _L( "Cache Repository (Open/Close)" ) );
sl@0
   296
sl@0
   297
	CacheRepositoryL(KUidCacheTestRepositorySm);
sl@0
   298
sl@0
   299
	if ((iStage == ESizeMin)||(iStage == EReallyWorstCase))
sl@0
   300
		{
sl@0
   301
		TEST( TServerResources::iCacheManager->iIdleRepositories.Count() == 0 );
sl@0
   302
		}
sl@0
   303
	else
sl@0
   304
		{
sl@0
   305
		TEST( TServerResources::iCacheManager->iIdleRepositories.Count() == 1 );
sl@0
   306
		}
sl@0
   307
sl@0
   308
	NextTest( _L( "Check Cache Size" ) );
sl@0
   309
sl@0
   310
	if ((iStage == ESizeMin)||(iStage == EReallyWorstCase))
sl@0
   311
		{
sl@0
   312
		TEST( TServerResources::iCacheManager->iTotalCacheUsage == 0 );
sl@0
   313
		}
sl@0
   314
	else
sl@0
   315
		{
sl@0
   316
		TEST( TServerResources::iCacheManager->iTotalCacheUsage > 0 );
sl@0
   317
		}
sl@0
   318
sl@0
   319
	NextTest( _L( "Flush Cache" ) );
sl@0
   320
sl@0
   321
	TServerResources::iCacheManager->FlushCache();
sl@0
   322
sl@0
   323
	TEST( TServerResources::iCacheManager->iIdleRepositories.Count() == 0 );
sl@0
   324
	TEST( TServerResources::iCacheManager->iTotalCacheUsage == 0 );
sl@0
   325
sl@0
   326
sl@0
   327
	if (!iOOMTest)
sl@0
   328
		{
sl@0
   329
		// This test is excluded from generic OOM testing because
sl@0
   330
		// 1. It is trying to simulate OOM condition in a different way (fillingup the memory with
sl@0
   331
		// allocs) which makes it very tricky to work under normal OOM testing method
sl@0
   332
		// 2. Loading Lrg repository within OOM takes forever because there're many allocations, and
sl@0
   333
		// loading other repositories are already tested in other tests
sl@0
   334
sl@0
   335
		NextTest( _L( "Cache OOM Handling" ) );
sl@0
   336
sl@0
   337
		// Fill cache with reps
sl@0
   338
		TInt totalsize;
sl@0
   339
		TInt cachedRepositoryCount = 0;
sl@0
   340
sl@0
   341
		totalsize = CacheRepositoryL(KUidCacheTestRepositorySm);
sl@0
   342
		if (TServerResources::iCacheManager->iCacheSize >= totalsize)
sl@0
   343
			{
sl@0
   344
			cachedRepositoryCount++;
sl@0
   345
			}
sl@0
   346
		totalsize += CacheRepositoryL(KUidCacheTestRepositorySm2);
sl@0
   347
		if (TServerResources::iCacheManager->iCacheSize >= totalsize)
sl@0
   348
			{
sl@0
   349
			cachedRepositoryCount++;
sl@0
   350
			}
sl@0
   351
		totalsize += CacheRepositoryL(KUidCacheTestRepositoryLrg);
sl@0
   352
		if (TServerResources::iCacheManager->iCacheSize >= totalsize)
sl@0
   353
			{
sl@0
   354
			cachedRepositoryCount++;
sl@0
   355
			}
sl@0
   356
		totalsize += CacheRepositoryL(KUidCacheTestRepositoryMed2);
sl@0
   357
		if (TServerResources::iCacheManager->iCacheSize >= totalsize)
sl@0
   358
			{
sl@0
   359
			cachedRepositoryCount++;
sl@0
   360
			}
sl@0
   361
sl@0
   362
		TInt res = KErrNone;
sl@0
   363
		//	Fill Memory
sl@0
   364
		TInt popCount=0;
sl@0
   365
		RHeap& myHeap = User::Heap();
sl@0
   366
		TInt firstSize = myHeap.Size();
sl@0
   367
		TInt biggestBlock;
sl@0
   368
		TInt firstAvail = myHeap.Available(biggestBlock);
sl@0
   369
sl@0
   370
		while(ETrue)
sl@0
   371
			{
sl@0
   372
			// We need to really fill up the memory, because we want it to be really freed when we explictly
sl@0
   373
			// free it, so that when we alloc again there will be some free memory. Using debug allocfail
sl@0
   374
			// tools would have been too artifical for such a test
sl@0
   375
			TAny* dummy = User::Alloc(KMemoryFiller);
sl@0
   376
			if (dummy)
sl@0
   377
				{
sl@0
   378
				popCount++;
sl@0
   379
				TRAP( res, CleanupStack::PushL(dummy); CleanupStack::Pop(dummy););
sl@0
   380
				if (res == KErrNoMemory)
sl@0
   381
					{
sl@0
   382
					// If we cannot allocate enough memory for the cleanupstack frame, we also deallocate
sl@0
   383
					// the last memory block. This is mandatory for the correct functioning of the
sl@0
   384
					// following test cases
sl@0
   385
					// Note when an object that is attempted to be PushL to the cleanupstack and it fails
sl@0
   386
 					// the object will be freed automatically.
sl@0
   387
					popCount--;
sl@0
   388
					break;
sl@0
   389
					}
sl@0
   390
				else
sl@0
   391
					{
sl@0
   392
					CleanupStack::PushL(dummy);
sl@0
   393
					}
sl@0
   394
				}
sl@0
   395
			else
sl@0
   396
				{
sl@0
   397
				firstSize = myHeap.Size();
sl@0
   398
				firstAvail = myHeap.Available(biggestBlock);
sl@0
   399
				break;
sl@0
   400
				}
sl@0
   401
			};
sl@0
   402
sl@0
   403
		// Test if cache is as full as it should be
sl@0
   404
		TEST( TServerResources::iCacheManager->iIdleRepositories.Count() == cachedRepositoryCount );
sl@0
   405
sl@0
   406
		// Try loading Med rep. Should Fail
sl@0
   407
		TRAP( res, CacheRepositoryL(KUidCacheTestRepositoryMed));
sl@0
   408
sl@0
   409
		TEST( res == KErrNoMemory );
sl@0
   410
sl@0
   411
		// Cache is still as it was before attempting load
sl@0
   412
		TEST( TServerResources::iCacheManager->iIdleRepositories.Count() == cachedRepositoryCount );
sl@0
   413
sl@0
   414
		// Try loading Med rep with OOM trapping.
sl@0
   415
		TBool oomtrap = ETrue;
sl@0
   416
		TRAP( res, CacheRepositoryL(KUidCacheTestRepositoryMed, oomtrap));
sl@0
   417
sl@0
   418
		if ((iStage == ESizeMin)||(iStage == EReallyWorstCase))
sl@0
   419
			{
sl@0
   420
			// Should still fail because the cache was empty to begin with so there's nothing
sl@0
   421
			// to evict and no memory to gain
sl@0
   422
			TEST( res == KErrNoMemory );
sl@0
   423
			TEST( TServerResources::iCacheManager->iIdleRepositories.Count() == 0 );
sl@0
   424
			}
sl@0
   425
		else if (iStage == ESizeMinplus)
sl@0
   426
			{
sl@0
   427
			// Should still fail because although the cache was full, the amount of memory freed
sl@0
   428
			// will not be enough for the medium repository
sl@0
   429
			TEST( res == KErrNoMemory );
sl@0
   430
			if (oomtrap)
sl@0
   431
				{
sl@0
   432
				// Memory alloc failed even before open was attempted, so no cache flush happened
sl@0
   433
				TEST( TServerResources::iCacheManager->iIdleRepositories.Count() == cachedRepositoryCount );
sl@0
   434
				}
sl@0
   435
			else
sl@0
   436
				{
sl@0
   437
				TEST( TServerResources::iCacheManager->iIdleRepositories.Count() == 0 );
sl@0
   438
				}
sl@0
   439
			}
sl@0
   440
		else
sl@0
   441
			{
sl@0
   442
			// Should Pass and evict repositories
sl@0
   443
			TEST( res == KErrNone );
sl@0
   444
			TEST( TServerResources::iCacheManager->iIdleRepositories.Count() == 1 );
sl@0
   445
			}
sl@0
   446
sl@0
   447
		CleanupStack::PopAndDestroy(popCount);
sl@0
   448
		}
sl@0
   449
sl@0
   450
	NextTest( _L( "Cache Disable/Enable" ) );
sl@0
   451
sl@0
   452
	TServerResources::iCacheManager->FlushCache();
sl@0
   453
	TEST( TServerResources::iCacheManager->iIdleRepositories.Count() == 0 );
sl@0
   454
sl@0
   455
	TServerResources::iCacheManager->EnableCache();
sl@0
   456
sl@0
   457
	CacheRepositoryL(KUidCacheTestRepositorySm);
sl@0
   458
	if ((iStage == ESizeMin)||(iStage == EReallyWorstCase))
sl@0
   459
		{
sl@0
   460
		// No cache
sl@0
   461
		TEST( TServerResources::iCacheManager->iIdleRepositories.Count() == 0 );
sl@0
   462
		}
sl@0
   463
	else
sl@0
   464
		{
sl@0
   465
		TEST( TServerResources::iCacheManager->iIdleRepositories.Count() == 1 );
sl@0
   466
		}
sl@0
   467
sl@0
   468
	TServerResources::iCacheManager->DisableCache();
sl@0
   469
	TEST( TServerResources::iCacheManager->iIdleRepositories.Count() == 0 );
sl@0
   470
	CacheRepositoryL(KUidCacheTestRepositoryMed);
sl@0
   471
	TEST( TServerResources::iCacheManager->iIdleRepositories.Count() == 0 );
sl@0
   472
	TServerResources::iCacheManager->EnableCache();
sl@0
   473
sl@0
   474
	NextTest( _L( "Multi Client Test" ) );
sl@0
   475
sl@0
   476
	TServerResources::iCacheManager->FlushCache();
sl@0
   477
	TEST( TServerResources::iCacheManager->iIdleRepositories.Count() == 0 );
sl@0
   478
sl@0
   479
	// Creating two sets of server objects
sl@0
   480
	CSessionNotifier* notifier = new(ELeave)CSessionNotifier;
sl@0
   481
	CleanupStack::PushL(notifier);
sl@0
   482
sl@0
   483
    CServerRepository* repository = new(ELeave) CServerRepository();
sl@0
   484
    CleanupStack::PushL(repository);
sl@0
   485
sl@0
   486
	CSessionNotifier* notifier2 = new(ELeave)CSessionNotifier;
sl@0
   487
	CleanupStack::PushL(notifier2);
sl@0
   488
sl@0
   489
    CServerRepository* repository2 = new(ELeave) CServerRepository();
sl@0
   490
    CleanupStack::PushL(repository2);
sl@0
   491
sl@0
   492
    // Open a rep with 1st client
sl@0
   493
    repository->OpenL(KUidCacheTestRepositorySm,*notifier);
sl@0
   494
    // Open same rep with 2nd client
sl@0
   495
    repository2->OpenL(KUidCacheTestRepositorySm,*notifier2);
sl@0
   496
sl@0
   497
    // One repository is in the cache, because now(PREQ 1228) all repositories
sl@0
   498
    // are moved to cache just after they are opened, not after they are closed.
sl@0
   499
	if ((iStage == ESizeMin)||(iStage == EReallyWorstCase))
sl@0
   500
		{
sl@0
   501
		// No cache
sl@0
   502
		TEST( TServerResources::iCacheManager->iIdleRepositories.Count() == 0 );
sl@0
   503
		}
sl@0
   504
	else
sl@0
   505
		{
sl@0
   506
		TEST( TServerResources::iCacheManager->iIdleRepositories.Count() == 1 );
sl@0
   507
		}
sl@0
   508
	// First client closed
sl@0
   509
	repository->Close();
sl@0
   510
	// Repository still in the cache
sl@0
   511
	if ((iStage == ESizeMin)||(iStage == EReallyWorstCase))
sl@0
   512
		{
sl@0
   513
		// No cache
sl@0
   514
		TEST( TServerResources::iCacheManager->iIdleRepositories.Count() == 0 );
sl@0
   515
		}
sl@0
   516
	else
sl@0
   517
		{
sl@0
   518
		TEST( TServerResources::iCacheManager->iIdleRepositories.Count() == 1 );
sl@0
   519
		}
sl@0
   520
	// Second client closed
sl@0
   521
	repository2->Close();
sl@0
   522
sl@0
   523
	// One rep must still be in the cache now
sl@0
   524
	if ((iStage == ESizeMin)||(iStage == EReallyWorstCase))
sl@0
   525
		{
sl@0
   526
		// No cache
sl@0
   527
		TEST( TServerResources::iCacheManager->iIdleRepositories.Count() == 0 );
sl@0
   528
		}
sl@0
   529
	else
sl@0
   530
		{
sl@0
   531
		TEST( TServerResources::iCacheManager->iIdleRepositories.Count() == 1 );
sl@0
   532
		}
sl@0
   533
sl@0
   534
	NextTest( _L( "Notify-Only Client Cache Repository (Open Only)" ) );
sl@0
   535
sl@0
   536
	TServerResources::iCacheManager->FlushCache();
sl@0
   537
	TServerResources::iObserver->CloseiOpenRepositories();
sl@0
   538
sl@0
   539
    // Open a rep with 1st client
sl@0
   540
    repository->OpenL(KUidCacheTestRepositorySm,*notifier);
sl@0
   541
sl@0
   542
	if ((iStage == ESizeMin)||(iStage == EReallyWorstCase))
sl@0
   543
		{
sl@0
   544
		// No memory, so no cache
sl@0
   545
		TEST( TServerResources::iCacheManager->iIdleRepositories.Count() == 0 );
sl@0
   546
		// But it's open
sl@0
   547
		TEST( TServerResources::iObserver->FindOpenRepository(KUidCacheTestRepositorySm) != KErrNotFound );
sl@0
   548
		}
sl@0
   549
	else
sl@0
   550
		{
sl@0
   551
		// Repository should have been cached after open
sl@0
   552
		TEST( TServerResources::iCacheManager->iIdleRepositories.Count() == 1 );
sl@0
   553
		// And it's open
sl@0
   554
		TEST( TServerResources::iObserver->FindOpenRepository(KUidCacheTestRepositorySm) != KErrNotFound );
sl@0
   555
		}
sl@0
   556
sl@0
   557
	// First client closed
sl@0
   558
	repository->Close();
sl@0
   559
sl@0
   560
	if ((iStage == ESizeMin)||(iStage == EReallyWorstCase))
sl@0
   561
		{
sl@0
   562
		// No memory, so no cache
sl@0
   563
		TEST( TServerResources::iCacheManager->iIdleRepositories.Count() == 0 );
sl@0
   564
		// Now it's closed
sl@0
   565
		TEST( TServerResources::iObserver->FindOpenRepository(KUidCacheTestRepositorySm) == KErrNotFound );
sl@0
   566
		}
sl@0
   567
	else
sl@0
   568
		{
sl@0
   569
		// Still in cache because timeout hasn't occured
sl@0
   570
		TEST( TServerResources::iCacheManager->iIdleRepositories.Count() == 1 );
sl@0
   571
		// And still open
sl@0
   572
		TEST( TServerResources::iObserver->FindOpenRepository(KUidCacheTestRepositorySm) != KErrNotFound );
sl@0
   573
		}
sl@0
   574
sl@0
   575
   	CleanupStack::PopAndDestroy(repository2);
sl@0
   576
   	CleanupStack::PopAndDestroy(notifier2);
sl@0
   577
   	CleanupStack::PopAndDestroy(repository);
sl@0
   578
   	CleanupStack::PopAndDestroy(notifier);
sl@0
   579
sl@0
   580
	TServerResources::iCacheManager->FlushCache();
sl@0
   581
	TEST( TServerResources::iCacheManager->iIdleRepositories.Count() == 0 );
sl@0
   582
sl@0
   583
	}
sl@0
   584
sl@0
   585
/**
sl@0
   586
@SYMTestCaseID SYSLIB-CENTRALREPOSITORY-CT-1420
sl@0
   587
@SYMTestCaseDesc Test Coarse-Grained Caching forced eviction rules.
sl@0
   588
@SYMTestPriority High
sl@0
   589
@SYMTestActions  Check correct initialization of the cache manager, disabling/enabling
sl@0
   590
 cache with different cache size, filling, eventual forced eviction of repository under
sl@0
   591
 small and large memory cases
sl@0
   592
@SYMTestExpectedResults The test must not fail.
sl@0
   593
@SYMPREQ PREQ1192
sl@0
   594
@SYMTestStatus Defined
sl@0
   595
@SYMDevelopedForRelease Symbian OS v9.3
sl@0
   596
@SYMAuthor Aleks Pamir
sl@0
   597
*/
sl@0
   598
void TRepositoryCacheManagerTester::SizeTestsL()
sl@0
   599
	{
sl@0
   600
	NextTest( _L( " @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-CT-1420 Forced Eviction-Small cache " ) );
sl@0
   601
sl@0
   602
	iTestStepStage = 1;
sl@0
   603
	TEST( TServerResources::iCacheManager != 0 );
sl@0
   604
	TEST( TServerResources::iCacheManager->iIdleRepositories.Count() == 0 );
sl@0
   605
sl@0
   606
	// Flush and disable the cache
sl@0
   607
	TServerResources::iCacheManager->DisableCache(ETrue);
sl@0
   608
sl@0
   609
	// Calculate cache size for this test. It's important to calculate this at runtime,
sl@0
   610
	// because this size is approximate and it changes from emulator to hardware
sl@0
   611
sl@0
   612
	TServerResources::iCacheManager->EnableCache(KInvalidEvictionTimeout, KDefaultCacheSize);
sl@0
   613
sl@0
   614
	TInt smallCacheSize = CacheRepositoryL(KUidCacheTestRepositorySm);
sl@0
   615
	smallCacheSize+= CacheRepositoryL(KUidCacheTestRepositoryMed);
sl@0
   616
	smallCacheSize+= (CacheRepositoryL(KUidCacheTestRepositorySm2)/2);
sl@0
   617
sl@0
   618
	// smallCacheSize is KUidCacheTestRepositorySm+KUidCacheTestRepositoryMed+ half of KUidCacheTestRepositorySm2
sl@0
   619
	// the reason is we don't want KUidCacheTestRepositorySm2 to fit
sl@0
   620
sl@0
   621
	TServerResources::iCacheManager->DisableCache(ETrue);
sl@0
   622
	//Change cache size
sl@0
   623
	TServerResources::iCacheManager->EnableCache(KInvalidEvictionTimeout, smallCacheSize);
sl@0
   624
sl@0
   625
	// Fill cache
sl@0
   626
	CacheRepositoryL(KUidCacheTestRepositorySm);
sl@0
   627
	CacheRepositoryL(KUidCacheTestRepositoryMed);
sl@0
   628
	User::After(KTimerDelay);
sl@0
   629
	//This one will not fit, and the Small rep will be evicted because it's small
sl@0
   630
	CacheRepositoryL(KUidCacheTestRepositorySm2);
sl@0
   631
sl@0
   632
	TEST( !FindRepository(KUidCacheTestRepositorySm) );
sl@0
   633
	TEST( FindRepository(KUidCacheTestRepositorySm2) );
sl@0
   634
sl@0
   635
	TInt delay = TServerResources::iCacheManager->iDefaultTimeout.Int()-KTimerDelay;
sl@0
   636
	// If timeout is smaller then KTimerDelay, don't bother to wait
sl@0
   637
	if (delay>0)
sl@0
   638
		{
sl@0
   639
		User::After(delay);
sl@0
   640
		}
sl@0
   641
	//Medium will be evicted this time, because it's older and size difference doesn't make up for the time difference
sl@0
   642
	CacheRepositoryL(KUidCacheTestRepositorySm);
sl@0
   643
sl@0
   644
	TEST( !FindRepository(KUidCacheTestRepositoryMed) );
sl@0
   645
	TEST( FindRepository(KUidCacheTestRepositorySm) );
sl@0
   646
sl@0
   647
	if (!iOOMTest)
sl@0
   648
		{
sl@0
   649
		// This test is excluded from generic OOM testing because
sl@0
   650
		// 1. Loading Lrg repository within OOM takes forever because there're many allocations, and
sl@0
   651
		// the test is very similar to previous test
sl@0
   652
sl@0
   653
		NextTest( _L( "Forced Eviction-Large cache" ) );
sl@0
   654
sl@0
   655
		TServerResources::iCacheManager->DisableCache(ETrue);
sl@0
   656
sl@0
   657
		TServerResources::iCacheManager->EnableCache(KInvalidEvictionTimeout, KDefaultCacheSize);
sl@0
   658
sl@0
   659
		TInt largeCacheSize = CacheRepositoryL(KUidCacheTestRepositoryMed);
sl@0
   660
		largeCacheSize+= CacheRepositoryL(KUidCacheTestRepositoryLrg);
sl@0
   661
		largeCacheSize+= (CacheRepositoryL(KUidCacheTestRepositoryMed2)/2);
sl@0
   662
sl@0
   663
		// smallCacheSize is KUidCacheTestRepositorySm+KUidCacheTestRepositoryMed+ half of KUidCacheTestRepositorySm2
sl@0
   664
		// the reason is we don't want KUidCacheTestRepositorySm2 to fit
sl@0
   665
sl@0
   666
		TServerResources::iCacheManager->DisableCache(ETrue);
sl@0
   667
sl@0
   668
		//Change Parameters
sl@0
   669
		TServerResources::iCacheManager->EnableCache(KInvalidEvictionTimeout, largeCacheSize);
sl@0
   670
		// Fill cache
sl@0
   671
		CacheRepositoryL(KUidCacheTestRepositoryMed);
sl@0
   672
		CacheRepositoryL(KUidCacheTestRepositoryLrg);
sl@0
   673
		User::After(KTimerDelay);
sl@0
   674
		//This one will not fit, and the Med rep will be evicted because it's small
sl@0
   675
		CacheRepositoryL(KUidCacheTestRepositoryMed2);
sl@0
   676
sl@0
   677
		TEST( !FindRepository(KUidCacheTestRepositoryMed) );
sl@0
   678
		TEST( FindRepository(KUidCacheTestRepositoryLrg) );
sl@0
   679
sl@0
   680
		delay = TServerResources::iCacheManager->iDefaultTimeout.Int()-KTimerDelay;
sl@0
   681
		// If timeout is smaller then KTimerDelay, don't bother to wait
sl@0
   682
		if (delay>0)
sl@0
   683
			{
sl@0
   684
			User::After(delay);
sl@0
   685
			}
sl@0
   686
sl@0
   687
		//Medium2 will be evicted, because even if it's new, this time size difference makes up for the
sl@0
   688
		//time difference and the Large repository stays even if it's older
sl@0
   689
		CacheRepositoryL(KUidCacheTestRepositoryMed);
sl@0
   690
sl@0
   691
		TEST( !FindRepository(KUidCacheTestRepositoryMed2) );
sl@0
   692
		TEST( FindRepository(KUidCacheTestRepositoryLrg) );
sl@0
   693
		}
sl@0
   694
	}
sl@0
   695
sl@0
   696
/**
sl@0
   697
@SYMTestCaseID SYSLIB-CENTRALREPOSITORY-CT-1421
sl@0
   698
@SYMTestCaseDesc Test Coarse-Grained Caching normal eviction rules.
sl@0
   699
@SYMTestPriority High
sl@0
   700
@SYMTestActions  Check correct initialization of the cache manager, adding repository into
sl@0
   701
 cache and active object driven eviction at correct times.
sl@0
   702
@SYMTestExpectedResults The test must not fail.
sl@0
   703
@SYMPREQ PREQ1192
sl@0
   704
@SYMTestStatus Defined
sl@0
   705
@SYMDevelopedForRelease Symbian OS v9.3
sl@0
   706
@SYMAuthor Aleks Pamir
sl@0
   707
*/
sl@0
   708
void TRepositoryCacheManagerTester::TimingTestsL()
sl@0
   709
	{
sl@0
   710
sl@0
   711
	iTestStepStage = 2;
sl@0
   712
sl@0
   713
	TEST( TServerResources::iCacheManager != 0 );
sl@0
   714
	TServerResources::iCacheManager->FlushCache();
sl@0
   715
	TEST( TServerResources::iCacheManager->iIdleRepositories.Count() == 0 );
sl@0
   716
sl@0
   717
	CPeriodic* timer = CPeriodic::NewL(EPriorityLow);
sl@0
   718
	CleanupStack::PushL(timer);
sl@0
   719
sl@0
   720
	NextTest( _L( " @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-CT-1421 Cache Timing(Component Test) " ) );
sl@0
   721
sl@0
   722
	starttime.UniversalTime();
sl@0
   723
	// Add one repository in the cache
sl@0
   724
	CacheRepositoryL(KUidCacheTestRepositorySm);
sl@0
   725
	TTime now;
sl@0
   726
	now.UniversalTime();
sl@0
   727
	TheTest.Printf(_L("KUidCacheTestRepositorySm Added at %Ld\n"), now.MicroSecondsFrom(starttime).Int64());
sl@0
   728
sl@0
   729
	TEST( TServerResources::iCacheManager->iIdleRepositories.Count() == 1 );
sl@0
   730
sl@0
   731
	// Wait until the repository is evicted normally
sl@0
   732
	// We can't use User::After because we don't want to suspend the thread
sl@0
   733
	timer->Start(TTimeIntervalMicroSeconds32(TServerResources::iCacheManager->iDefaultTimeout.Int()-KTimerDelay), 0, TCallBack(Callback, timer));
sl@0
   734
sl@0
   735
	CActiveScheduler::Start();
sl@0
   736
sl@0
   737
	// Callback should have been called before Cache timeout had occured
sl@0
   738
	TEST( TServerResources::iCacheManager->iIdleRepositories.Count() == 1 );
sl@0
   739
sl@0
   740
	TServerResources::iCacheManager->FlushCache();
sl@0
   741
	TEST( TServerResources::iCacheManager->iIdleRepositories.Count() == 0 );
sl@0
   742
sl@0
   743
	starttime.UniversalTime();
sl@0
   744
	// Add another repository in the cache
sl@0
   745
	CacheRepositoryL(KUidCacheTestRepositorySm2);
sl@0
   746
	now.UniversalTime();
sl@0
   747
	TheTest.Printf(_L("KUidCacheTestRepositorySm2 added at %Ld\n"), now.MicroSecondsFrom(starttime).Int64());
sl@0
   748
sl@0
   749
	// wait more than default timeout.
sl@0
   750
	timer->Start(TTimeIntervalMicroSeconds32(TServerResources::iCacheManager->iDefaultTimeout.Int()+KTimerDelay), 0, TCallBack(Callback, timer));
sl@0
   751
sl@0
   752
	CActiveScheduler::Start();
sl@0
   753
sl@0
   754
	// Callback should have been called by now
sl@0
   755
	TInt count = TServerResources::iCacheManager->iIdleRepositories.Count();
sl@0
   756
	if (count > 0)
sl@0
   757
		{
sl@0
   758
		// Do not fail test on emulator. CTimer::AtUTC is often
sl@0
   759
		// late by 1 to a few seconds.
sl@0
   760
		#if defined(__WINSCW__) || defined(__WINS__)
sl@0
   761
		TheTest.Printf(_L("*** Line %d check fail. Ignored on winscw."), __LINE__);
sl@0
   762
		TServerResources::iCacheManager->FlushCache();
sl@0
   763
		#endif
sl@0
   764
		}
sl@0
   765
sl@0
   766
	TEST( TServerResources::iCacheManager->iIdleRepositories.Count() == 0 );
sl@0
   767
sl@0
   768
	TServerResources::iCacheManager->FlushCache();
sl@0
   769
	TEST( TServerResources::iCacheManager->iIdleRepositories.Count() == 0 );
sl@0
   770
sl@0
   771
	NextTest( _L( "Notify-Only Client Timing Test" ) );
sl@0
   772
sl@0
   773
	// Add one repository in the cache
sl@0
   774
	CSessionNotifier* notifier = new(ELeave)CSessionNotifier;
sl@0
   775
	CleanupStack::PushL(notifier);
sl@0
   776
sl@0
   777
    CServerRepository* repository = new(ELeave) CServerRepository();
sl@0
   778
    CleanupStack::PushL(repository);
sl@0
   779
sl@0
   780
	starttime.UniversalTime();
sl@0
   781
sl@0
   782
    // Open a rep
sl@0
   783
    repository->OpenL(KUidCacheTestRepositorySm,*notifier);
sl@0
   784
sl@0
   785
	now.UniversalTime();
sl@0
   786
	TheTest.Printf(_L("KUidCacheTestRepositorySm Added at %Ld\n"), now.MicroSecondsFrom(starttime).Int64());
sl@0
   787
sl@0
   788
	TEST( TServerResources::iCacheManager->iIdleRepositories.Count() == 1 );
sl@0
   789
sl@0
   790
	// Wait until the repository is evicted normally
sl@0
   791
	// We can't use User::After because we don't want to suspend the thread
sl@0
   792
	timer->Start(TTimeIntervalMicroSeconds32(TServerResources::iCacheManager->iDefaultTimeout.Int()-KTimerDelay), 0, TCallBack(Callback, timer));
sl@0
   793
sl@0
   794
	CActiveScheduler::Start();
sl@0
   795
sl@0
   796
	// Callback should have been called before Cache timeout had occured
sl@0
   797
	TEST( TServerResources::iCacheManager->iIdleRepositories.Count() == 1 );
sl@0
   798
sl@0
   799
	TServerResources::iCacheManager->FlushCache();
sl@0
   800
	TEST( TServerResources::iCacheManager->iIdleRepositories.Count() == 0 );
sl@0
   801
sl@0
   802
	// Add another repository in the cache
sl@0
   803
	// Add one repository in the cache
sl@0
   804
	CSessionNotifier* notifier2 = new(ELeave)CSessionNotifier;
sl@0
   805
	CleanupStack::PushL(notifier2);
sl@0
   806
sl@0
   807
    CServerRepository* repository2 = new(ELeave) CServerRepository();
sl@0
   808
    CleanupStack::PushL(repository2);
sl@0
   809
sl@0
   810
	starttime.UniversalTime();
sl@0
   811
sl@0
   812
    // Open another rep
sl@0
   813
    repository2->OpenL(KUidCacheTestRepositorySm2,*notifier2);
sl@0
   814
sl@0
   815
	now.UniversalTime();
sl@0
   816
	TheTest.Printf(_L("KUidCacheTestRepositorySm2 added at %Ld\n"), now.MicroSecondsFrom(starttime).Int64());
sl@0
   817
sl@0
   818
	// wait more than default timeout.
sl@0
   819
	timer->Start(TTimeIntervalMicroSeconds32(TServerResources::iCacheManager->iDefaultTimeout.Int()+KTimerDelay), 0, TCallBack(Callback, timer));
sl@0
   820
sl@0
   821
	CActiveScheduler::Start();
sl@0
   822
sl@0
   823
	// Callback should have been called by now
sl@0
   824
	count = TServerResources::iCacheManager->iIdleRepositories.Count();
sl@0
   825
	if (count > 0)
sl@0
   826
		{
sl@0
   827
		// Do not fail test on emulator. CTimer::AtUTC is often
sl@0
   828
		// late by 1 to a few seconds.
sl@0
   829
		#if defined(__WINSCW__) || defined(__WINS__)
sl@0
   830
		TheTest.Printf(_L("*** Line %d check fail. Ignored on winscw."), __LINE__);
sl@0
   831
		TServerResources::iCacheManager->FlushCache();
sl@0
   832
		#endif
sl@0
   833
		}
sl@0
   834
sl@0
   835
	TEST( TServerResources::iCacheManager->iIdleRepositories.Count() == 0 );
sl@0
   836
sl@0
   837
	repository2->Close();
sl@0
   838
	repository->Close();
sl@0
   839
sl@0
   840
   	CleanupStack::PopAndDestroy(repository2);
sl@0
   841
   	CleanupStack::PopAndDestroy(notifier2);
sl@0
   842
   	CleanupStack::PopAndDestroy(repository);
sl@0
   843
   	CleanupStack::PopAndDestroy(notifier);
sl@0
   844
sl@0
   845
	CleanupStack::PopAndDestroy(timer);
sl@0
   846
	}
sl@0
   847
sl@0
   848
void TRepositoryCacheManagerTester::DefectTestsL()
sl@0
   849
	{
sl@0
   850
	iTestStepStage = 3;	// Don't run OOM tests on defects
sl@0
   851
sl@0
   852
	NextTest(_L( "DEF093491: [AQP]Centrep server flushes repository cache when temporarily disabled" ));
sl@0
   853
   	DEF093491L();
sl@0
   854
sl@0
   855
	NextTest(_L( "INC105967: CenRep crashes when no ROM directory" ));
sl@0
   856
   	INC105967();
sl@0
   857
   	
sl@0
   858
	}
sl@0
   859
sl@0
   860
/**
sl@0
   861
@SYMTestCaseID SYSLIB-CENTRALREPOSITORY-CT-1883
sl@0
   862
@SYMTestCaseDesc [AQP]Centrep server flushes repository cache when temporarily disabled
sl@0
   863
@SYMTestPriority High
sl@0
   864
@SYMTestActions  Open repository, disable cache, check if the rep is still in memory
sl@0
   865
@SYMTestExpectedResults The test must not fail or panic .
sl@0
   866
@SYMDEF DEF093491
sl@0
   867
*/
sl@0
   868
void TRepositoryCacheManagerTester::DEF093491L()
sl@0
   869
	{
sl@0
   870
	NextTest( _L( " @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-CT-1883 " ) );
sl@0
   871
	TServerResources::iCacheManager->FlushCache();
sl@0
   872
sl@0
   873
	// Notifier needed to open repositories.
sl@0
   874
	CSessionNotifier* notifier;
sl@0
   875
	notifier = new(ELeave)CSessionNotifier;
sl@0
   876
	CleanupStack::PushL(notifier);
sl@0
   877
sl@0
   878
    CServerRepository* repository = new(ELeave) CServerRepository();
sl@0
   879
    CleanupStack::PushL(repository);
sl@0
   880
    // Open repository
sl@0
   881
    repository->OpenL(KUidCacheTestRepositorySm,*notifier);
sl@0
   882
sl@0
   883
	// Check it's in cache and memory
sl@0
   884
	TEST( TServerResources::iCacheManager->iIdleRepositories.Count() == 1 );
sl@0
   885
	TEST( TServerResources::iObserver->FindOpenRepository(KUidCacheTestRepositorySm) != KErrNotFound );
sl@0
   886
    // disable cache
sl@0
   887
	TServerResources::iCacheManager->DisableCache();
sl@0
   888
sl@0
   889
	// Check it's in memory but not in cache
sl@0
   890
	TEST( TServerResources::iCacheManager->iIdleRepositories.Count() == 0 );
sl@0
   891
	TEST( TServerResources::iObserver->FindOpenRepository(KUidCacheTestRepositorySm) != KErrNotFound );
sl@0
   892
sl@0
   893
	repository->Close();
sl@0
   894
	// the repository should now be unloaded from memory
sl@0
   895
	TEST( TServerResources::iObserver->FindOpenRepository(KUidCacheTestRepositorySm) == KErrNotFound );
sl@0
   896
	// enable cache again
sl@0
   897
	TServerResources::iCacheManager->EnableCache();
sl@0
   898
sl@0
   899
    // Open repository again
sl@0
   900
    repository->OpenL(KUidCacheTestRepositorySm,*notifier);
sl@0
   901
sl@0
   902
	// Check it's in cache and memory
sl@0
   903
	TEST( TServerResources::iCacheManager->iIdleRepositories.Count() == 1 );
sl@0
   904
	TEST( TServerResources::iObserver->FindOpenRepository(KUidCacheTestRepositorySm) != KErrNotFound );
sl@0
   905
sl@0
   906
	repository->Close();
sl@0
   907
sl@0
   908
    // disable cache
sl@0
   909
	TServerResources::iCacheManager->DisableCache(ETrue);
sl@0
   910
sl@0
   911
	// now it should be flushed out of both memory and cache
sl@0
   912
	TEST( TServerResources::iCacheManager->iIdleRepositories.Count() == 0 );
sl@0
   913
	TEST( TServerResources::iObserver->FindOpenRepository(KUidCacheTestRepositorySm) == KErrNotFound );
sl@0
   914
sl@0
   915
   	CleanupStack::PopAndDestroy(repository);
sl@0
   916
   	CleanupStack::PopAndDestroy(notifier);
sl@0
   917
	}
sl@0
   918
sl@0
   919
// Helper function for INC105967L
sl@0
   920
LOCAL_C TInt TestThread(TAny*)
sl@0
   921
	{
sl@0
   922
	CTrapCleanup* cleanup = CTrapCleanup::New();
sl@0
   923
	if(!cleanup)
sl@0
   924
		return KErrNoMemory;
sl@0
   925
sl@0
   926
	HBufC* tempFileName;
sl@0
   927
	// this call shouldn't cause a panic, but leave with KErrNotFound
sl@0
   928
	TRAPD(err,
sl@0
   929
		{
sl@0
   930
		TServerResources::CreateRepositoryFileNameLC(tempFileName, KUidCacheTestRepositorySm, ERom, ECre);
sl@0
   931
		CleanupStack::PopAndDestroy(tempFileName);
sl@0
   932
		});
sl@0
   933
	// test if the function leaves with KErrNot Found
sl@0
   934
	TEST2(err, KErrNotFound);
sl@0
   935
sl@0
   936
	delete cleanup;
sl@0
   937
	return KErrNone;
sl@0
   938
	}
sl@0
   939
sl@0
   940
/**
sl@0
   941
@SYMTestCaseID SYSLIB-CENTRALREPOSITORY-UT-3474
sl@0
   942
@SYMTestCaseDesc CenRep crashes when no ROM directory
sl@0
   943
@SYMTestPriority High
sl@0
   944
@SYMTestActions Save RomDirectory, temporarily NULL the pointer, call panicking function in a seperate thread
sl@0
   945
 (to survive even if it panics and continue other tests), check that it leaves with KErrNotFound, restore RomDirectory
sl@0
   946
@SYMTestExpectedResults The test must not panic.
sl@0
   947
@SYMDEF INC105967
sl@0
   948
*/
sl@0
   949
void TRepositoryCacheManagerTester::INC105967()
sl@0
   950
	{
sl@0
   951
	NextTest( _L( " @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-UT-3474 " ) );
sl@0
   952
	//store RomDirectory
sl@0
   953
	HBufC* tempRomDirectory = TServerResources::iRomDirectory;
sl@0
   954
sl@0
   955
	// temporarily delete it to simulate the behaviour in TServerResources::InitialiseL() when:
sl@0
   956
	// 	if(iFs.Entry(*iRomDirectory, fsEntry)!=KErrNone || !fsEntry.IsDir())
sl@0
   957
	TServerResources::iRomDirectory = NULL;
sl@0
   958
sl@0
   959
	RThread testThread;
sl@0
   960
	_LIT(KThreadName, "TestThread");
sl@0
   961
sl@0
   962
	testThread.Create(KThreadName, TestThread, KDefaultStackSize, KMinHeapSize, 0x100000, NULL);
sl@0
   963
sl@0
   964
	TRequestStatus requestStatus;
sl@0
   965
	// Request notification when the thread terminates
sl@0
   966
	testThread.Logon(requestStatus);
sl@0
   967
	// Let the thread execute
sl@0
   968
	testThread.Resume();
sl@0
   969
sl@0
   970
	// Wait for termination
sl@0
   971
	User::WaitForRequest(requestStatus);
sl@0
   972
	// test if the thread terminated normally (the leave has been trapped) not panicked
sl@0
   973
	TEST2(requestStatus.Int(), KErrNone);
sl@0
   974
sl@0
   975
	//restore RomDirectory
sl@0
   976
	TServerResources::iRomDirectory = tempRomDirectory;
sl@0
   977
	}
sl@0
   978
sl@0
   979
/**
sl@0
   980
@SYMTestCaseID PDS-CENTRALREPOSITORY-UT-4077
sl@0
   981
@SYMTestCaseDesc Central Repository cache manager incorrectly uses CTimer::AtUTC() 
sl@0
   982
@SYMTestPriority High
sl@0
   983
@SYMTestActions Call CRepositoryCacheManager::RescheduleTimer passing in various
sl@0
   984
				timer values to test conversion of 64 bit UTC time value into
sl@0
   985
				32 bit microsecond value.
sl@0
   986
@SYMTestExpectedResults The timer should be active after each call to RescheduleTimer
sl@0
   987
						The test must not panic.
sl@0
   988
@SYMDEF DEF124147
sl@0
   989
*/
sl@0
   990
void TRepositoryCacheManagerTester::DEF124147()
sl@0
   991
	{
sl@0
   992
	NextTest( _L( " @SYMTestCaseID:PDS-CENTRALREPOSITORY-UT-4077 " ) );
sl@0
   993
	
sl@0
   994
	//Cancel any pending timer
sl@0
   995
	TServerResources::iCacheManager->Cancel();
sl@0
   996
	
sl@0
   997
	TTime now;
sl@0
   998
	now.UniversalTime();
sl@0
   999
	
sl@0
  1000
	TTimeIntervalMinutes oneMinute(1);
sl@0
  1001
	TTimeIntervalHours oneHour(1);
sl@0
  1002
	
sl@0
  1003
	//Rechedule timer now
sl@0
  1004
	TServerResources::iCacheManager->RescheduleTimer(now);
sl@0
  1005
	TEST(TServerResources::iCacheManager->IsActive());
sl@0
  1006
	
sl@0
  1007
	//Cancel any pending timer
sl@0
  1008
	TServerResources::iCacheManager->Cancel();
sl@0
  1009
	
sl@0
  1010
	
sl@0
  1011
	//Rechedule timer in the past
sl@0
  1012
	TServerResources::iCacheManager->RescheduleTimer(now - oneMinute);
sl@0
  1013
	TEST(TServerResources::iCacheManager->IsActive());
sl@0
  1014
	
sl@0
  1015
	//Cancel any pending timer
sl@0
  1016
	TServerResources::iCacheManager->Cancel();
sl@0
  1017
	
sl@0
  1018
	//Rechedule timer in the future
sl@0
  1019
	TServerResources::iCacheManager->RescheduleTimer(now + oneMinute);
sl@0
  1020
	TEST(TServerResources::iCacheManager->IsActive());
sl@0
  1021
	
sl@0
  1022
	//Cancel any pending timer
sl@0
  1023
	TServerResources::iCacheManager->Cancel();
sl@0
  1024
	
sl@0
  1025
	//Rechedule timer an hour in the past
sl@0
  1026
	TServerResources::iCacheManager->RescheduleTimer(now - oneHour);
sl@0
  1027
	TEST(TServerResources::iCacheManager->IsActive());
sl@0
  1028
	
sl@0
  1029
	//Cancel any pending timer
sl@0
  1030
	TServerResources::iCacheManager->Cancel();
sl@0
  1031
	
sl@0
  1032
	//Rechedule timer an hour in the future
sl@0
  1033
	TServerResources::iCacheManager->RescheduleTimer(now + oneHour);
sl@0
  1034
	TEST(TServerResources::iCacheManager->IsActive());
sl@0
  1035
	
sl@0
  1036
	//Cancel any pending timer
sl@0
  1037
	TServerResources::iCacheManager->Cancel();
sl@0
  1038
	}
sl@0
  1039
sl@0
  1040
// ---------------------------------------------------
sl@0
  1041
// OomTest
sl@0
  1042
//
sl@0
  1043
// Function to convert a test into an OOM test
sl@0
  1044
sl@0
  1045
/**
sl@0
  1046
@SYMTestCaseID SYSLIB-CENTRALREPOSITORY-CT-1422
sl@0
  1047
@SYMTestCaseDesc Test functionality under OOM.
sl@0
  1048
@SYMTestPriority High
sl@0
  1049
@SYMTestActions  Test functionality under OOM.
sl@0
  1050
@SYMTestExpectedResults The test must not fail.
sl@0
  1051
@SYMPREQ PREQ1192
sl@0
  1052
@SYMTestStatus Defined
sl@0
  1053
@SYMDevelopedForRelease Symbian OS v9.3
sl@0
  1054
@SYMAuthor Aleks Pamir
sl@0
  1055
*/
sl@0
  1056
LOCAL_C void OomTest( void (*testFuncL)() )
sl@0
  1057
	{
sl@0
  1058
	TheTest.Next( _L( " @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-CT-1422 " ) );
sl@0
  1059
	TInt error;
sl@0
  1060
	TInt count = 0;
sl@0
  1061
sl@0
  1062
	do
sl@0
  1063
		{
sl@0
  1064
		User::__DbgMarkStart( RHeap::EUser );
sl@0
  1065
sl@0
  1066
		// find out the number of open handles
sl@0
  1067
		TInt startProcessHandleCount;
sl@0
  1068
		TInt startThreadHandleCount;
sl@0
  1069
		RThread().HandleCount(startProcessHandleCount, startThreadHandleCount);
sl@0
  1070
sl@0
  1071
		User::__DbgSetAllocFail( RHeap::EUser, RHeap::EFailNext, ++count );
sl@0
  1072
sl@0
  1073
		TRAP( error, (testFuncL)() );
sl@0
  1074
sl@0
  1075
		User::__DbgSetAllocFail( RHeap::EUser, RHeap::ENone, 1 );
sl@0
  1076
sl@0
  1077
		// check that no handles have leaked
sl@0
  1078
		TInt endProcessHandleCount;
sl@0
  1079
		TInt endThreadHandleCount;
sl@0
  1080
		RThread().HandleCount(endProcessHandleCount, endThreadHandleCount);
sl@0
  1081
sl@0
  1082
		TEST(startProcessHandleCount == endProcessHandleCount);
sl@0
  1083
		TEST(startThreadHandleCount  == endThreadHandleCount);
sl@0
  1084
sl@0
  1085
		User::__DbgMarkEnd( RHeap::EUser, 0 );
sl@0
  1086
		} while( error == KErrNoMemory );
sl@0
  1087
sl@0
  1088
	_LIT( KTestFailed, "Out of memory test failure on iteration %d\n" );
sl@0
  1089
	__ASSERT_ALWAYS( error == KErrNone, TheTest.Panic( error, KTestFailed, count ) );
sl@0
  1090
sl@0
  1091
	TheTest.Printf( _L( "Out of memory tests succeeded at heap failure rate of %i\n" ), count );
sl@0
  1092
	TheTest.Printf( _L( "Process handle count preserved\n" ) );
sl@0
  1093
	TheTest.Printf( _L( "Thread handle count preserved\n" ) );
sl@0
  1094
	}
sl@0
  1095
sl@0
  1096
LOCAL_C void DoOOMTestsL()
sl@0
  1097
	{
sl@0
  1098
	// To clean up the static array under OOM
sl@0
  1099
	CleanupStack::PushL(gCleanup);
sl@0
  1100
sl@0
  1101
	// To be able to run tests faster, especially the last 2 tests with delays,
sl@0
  1102
	// a flow-through to the next case statement is intended here. If the Tester
sl@0
  1103
	// function completes successfully, meaning that it has passed all memory
sl@0
  1104
	// allocations, then the execution continues from the next step and the iTestStepStage
sl@0
  1105
	// variable is set to the current test step stage. Otherwise the function will Leave
sl@0
  1106
	// with KErrNoMemory, will be trapped in OomTest and DoOOMTestsL will be recalled.
sl@0
  1107
	// Once a test step stage is passed, Tester.iTestStepStage will ensure that the same
sl@0
  1108
	// function will no be called over and over again for every memory allocation failure,
sl@0
  1109
	// thereby reducing the running time of the test considerably.
sl@0
  1110
sl@0
  1111
	switch(Tester.iTestStepStage)
sl@0
  1112
		{
sl@0
  1113
		case 0:
sl@0
  1114
			{
sl@0
  1115
			Tester.FuncTestsL();
sl@0
  1116
			}
sl@0
  1117
		case 1:
sl@0
  1118
			{
sl@0
  1119
			Tester.SizeTestsL();
sl@0
  1120
			}
sl@0
  1121
		case 2:
sl@0
  1122
			{
sl@0
  1123
			Tester.TimingTestsL();
sl@0
  1124
			}
sl@0
  1125
		default:
sl@0
  1126
			break;
sl@0
  1127
		}
sl@0
  1128
	// To clean up the memory left in static variables
sl@0
  1129
	Tester.CleanUp(NULL);
sl@0
  1130
sl@0
  1131
	CleanupStack::Pop();
sl@0
  1132
	}
sl@0
  1133
sl@0
  1134
LOCAL_C void DoTestsL()
sl@0
  1135
	{
sl@0
  1136
	switch(Tester.iStage)
sl@0
  1137
		{
sl@0
  1138
		case ENominalNoFile:
sl@0
  1139
		default:
sl@0
  1140
			{
sl@0
  1141
			TheTest.Start( _L( "Cache functionality tests with default params(no .ini)" ) );
sl@0
  1142
			Tester.FuncTestsL();
sl@0
  1143
			Tester.SizeTestsL();
sl@0
  1144
			Tester.TimingTestsL();
sl@0
  1145
			TheTest.End();
sl@0
  1146
			break;
sl@0
  1147
			}
sl@0
  1148
		case ENominal:
sl@0
  1149
			{
sl@0
  1150
			TheTest.Start( _L( "Cache functionality tests with default params(default values read from .ini)" ) );
sl@0
  1151
			Tester.FuncTestsL();
sl@0
  1152
			Tester.SizeTestsL();
sl@0
  1153
			Tester.TimingTestsL();
sl@0
  1154
			// Only test defects once here unless a defect occurs in different memory conditions
sl@0
  1155
			Tester.DefectTestsL();
sl@0
  1156
			TheTest.End();
sl@0
  1157
			break;
sl@0
  1158
			}
sl@0
  1159
		case ESizeMin:
sl@0
  1160
			{
sl@0
  1161
			TheTest.Start( _L( "Cache functionality tests with no space for cache (size=0)" ) );
sl@0
  1162
			Tester.FuncTestsL();
sl@0
  1163
			// No size tests because size is controlled in this test
sl@0
  1164
			// No Timing tests because nothing will be cached(cache size 0) so nothing to time
sl@0
  1165
			TheTest.End();
sl@0
  1166
			break;
sl@0
  1167
			}
sl@0
  1168
		case ESizeMinplus:
sl@0
  1169
			{
sl@0
  1170
			TheTest.Start( _L( "Cache functionality tests with small cache size" ) );
sl@0
  1171
			Tester.FuncTestsL();
sl@0
  1172
			// No size tests because size is controlled in this test
sl@0
  1173
			Tester.TimingTestsL();
sl@0
  1174
			TheTest.End();
sl@0
  1175
			break;
sl@0
  1176
			}
sl@0
  1177
		case ESizeMaxminus:
sl@0
  1178
			{
sl@0
  1179
			TheTest.Start( _L( "Cache functionality tests with large cache size" ) );
sl@0
  1180
			Tester.FuncTestsL();
sl@0
  1181
			// No size tests because size is controlled in this test
sl@0
  1182
			Tester.TimingTestsL();
sl@0
  1183
			TheTest.End();
sl@0
  1184
			break;
sl@0
  1185
			}
sl@0
  1186
		case ESizeMax:
sl@0
  1187
			{
sl@0
  1188
			TheTest.Start( _L( "Cache functionality tests with max cache size (=heap max 2MB)" ) );
sl@0
  1189
			Tester.FuncTestsL();
sl@0
  1190
			// No size tests because size is controlled in this test
sl@0
  1191
			Tester.TimingTestsL();
sl@0
  1192
			TheTest.End();
sl@0
  1193
			break;
sl@0
  1194
			}
sl@0
  1195
		case ESizeMaxplus:
sl@0
  1196
			{
sl@0
  1197
			TheTest.Start( _L( "Cache functionality Robustness test" ) );
sl@0
  1198
			Tester.FuncTestsL();
sl@0
  1199
			// No size tests because size is controlled in this test
sl@0
  1200
			Tester.TimingTestsL();
sl@0
  1201
			TheTest.End();
sl@0
  1202
			break;
sl@0
  1203
			}
sl@0
  1204
		case ETimeoutMin:
sl@0
  1205
			{
sl@0
  1206
			TheTest.Start( _L( "Cache functionality tests with no timeout for cache (timeout=0)" ) );
sl@0
  1207
			Tester.FuncTestsL();
sl@0
  1208
			Tester.SizeTestsL();
sl@0
  1209
			// No timing tests because timeout is controlled in this test
sl@0
  1210
			TheTest.End();
sl@0
  1211
			break;
sl@0
  1212
			}
sl@0
  1213
		case ETimeoutMinplus:
sl@0
  1214
			{
sl@0
  1215
			TheTest.Start( _L( "Cache functionality tests with short timeout" ) );
sl@0
  1216
			Tester.FuncTestsL();
sl@0
  1217
			Tester.SizeTestsL();
sl@0
  1218
			// No timing tests because timeout is controlled in this test
sl@0
  1219
			TheTest.End();
sl@0
  1220
			break;
sl@0
  1221
			}
sl@0
  1222
		case ETimeoutMaxminus:
sl@0
  1223
			{
sl@0
  1224
			TheTest.Start( _L( "Cache functionality tests with large timeout" ) );
sl@0
  1225
			Tester.FuncTestsL();
sl@0
  1226
			Tester.SizeTestsL();
sl@0
  1227
			// No timing tests because timeout is controlled in this test
sl@0
  1228
			TheTest.End();
sl@0
  1229
			break;
sl@0
  1230
			}
sl@0
  1231
		case EReallyWorstCase:
sl@0
  1232
			{
sl@0
  1233
			TheTest.Start( _L( "Cache functionality Worst Case test with no timeout and no size for cache" ) );
sl@0
  1234
			Tester.FuncTestsL();
sl@0
  1235
			Tester.SizeTestsL();
sl@0
  1236
			// No Timing tests because nothing will be cached(cache size 0) so nothing to time
sl@0
  1237
			TheTest.End();
sl@0
  1238
			break;
sl@0
  1239
			}
sl@0
  1240
		};
sl@0
  1241
	}
sl@0
  1242
sl@0
  1243
sl@0
  1244
/**
sl@0
  1245
@SYMTestCaseID SYSLIB-CENTRALREPOSITORY-UT-4014
sl@0
  1246
@SYMTestCaseDesc Cenrep cache manager should not evict sub-sessions in active transactions.
sl@0
  1247
@SYMTestPriority High
sl@0
  1248
@SYMTestActions  Open 2 sub-sessions to a repository, start a transaction, let the cache manager run.
sl@0
  1249
@SYMTestExpectedResults The test must not fail or panic .
sl@0
  1250
@SYMDEF DEF111734
sl@0
  1251
*/
sl@0
  1252
void TRepositoryCacheManagerTester::DEF111734L()
sl@0
  1253
	{
sl@0
  1254
	NextTest( _L( " @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-UT-4014 DEF111734: Cache Manager and Open Transactions "));
sl@0
  1255
sl@0
  1256
	TServerResources::iCacheManager->FlushCache();
sl@0
  1257
sl@0
  1258
	// Notifier needed to open repositories.
sl@0
  1259
	// notifier 1
sl@0
  1260
	CSessionNotifier* notifier;
sl@0
  1261
	notifier = new(ELeave)CSessionNotifier;
sl@0
  1262
	CleanupStack::PushL(notifier);
sl@0
  1263
sl@0
  1264
	// notifier 2
sl@0
  1265
	CSessionNotifier* notifier2;
sl@0
  1266
	notifier2 = new(ELeave)CSessionNotifier;
sl@0
  1267
	CleanupStack::PushL(notifier2);
sl@0
  1268
sl@0
  1269
	// connection 1
sl@0
  1270
 	CServerRepository* repository = new(ELeave) CServerRepository();
sl@0
  1271
	CleanupStack::PushL(repository);
sl@0
  1272
sl@0
  1273
	// connection 2
sl@0
  1274
	CServerRepository* repository2 = new(ELeave) CServerRepository();
sl@0
  1275
 	CleanupStack::PushL(repository2);
sl@0
  1276
sl@0
  1277
	// Open repository
sl@0
  1278
	repository->OpenL(KUidCacheTestRepositorySm,*notifier);
sl@0
  1279
sl@0
  1280
	// open second connection to the repository
sl@0
  1281
	repository2->OpenL(KUidCacheTestRepositorySm,*notifier2);
sl@0
  1282
sl@0
  1283
	// we have to observers to the same repository - so we should have only 1 entry in
sl@0
  1284
	// the idle repositories for the cache manager
sl@0
  1285
sl@0
  1286
	TEST(TServerResources::iCacheManager->iIdleRepositories.Count() == 1);
sl@0
  1287
sl@0
  1288
	// check CR's global memory for an instance for this repository.
sl@0
  1289
	TEST(TServerResources::iObserver->FindOpenRepository(KUidCacheTestRepositorySm) != KErrNotFound);
sl@0
  1290
sl@0
  1291
	// start a transaction on connection 2, this adds this sub-session to the
sl@0
  1292
	// transaction queue for the repository.
sl@0
  1293
sl@0
  1294
	TInt error = repository2->StartTransaction(3);
sl@0
  1295
	TEST(error == KErrNone);
sl@0
  1296
sl@0
  1297
	// This will wipe out the memory for the open repository unless we modify the code in some fashion.
sl@0
  1298
	TServerResources::iCacheManager->FlushCache(EFalse);
sl@0
  1299
sl@0
  1300
	// since we can't use the user::after method since we need to this thread to suspend
sl@0
  1301
	// start a timer (stolen from above).
sl@0
  1302
	CPeriodic* timer = CPeriodic::NewL(EPriorityLow);
sl@0
  1303
	CleanupStack::PushL(timer);
sl@0
  1304
sl@0
  1305
sl@0
  1306
	// since repositories that involved in active transactions no longer have their memory
sl@0
  1307
	// removed by cache manager, give this time enough time to go through a few cycles of
sl@0
  1308
	// the normal eviction process.
sl@0
  1309
sl@0
  1310
	timer->Start(TTimeIntervalMicroSeconds32(TServerResources::iCacheManager->iDefaultTimeout.Int()*3), 0, TCallBack(Callback, timer));
sl@0
  1311
sl@0
  1312
	// will cause the cache manager to run
sl@0
  1313
	CActiveScheduler::Start();
sl@0
  1314
sl@0
  1315
	// If it isn't in cache and memory than the cache manager must have collected it
sl@0
  1316
	// and the code for this defect is not in the build.
sl@0
  1317
	TEST(TServerResources::iCacheManager->iIdleRepositories.Count() == 0);
sl@0
  1318
	TEST(TServerResources::iObserver->FindOpenRepository(KUidCacheTestRepositorySm) != KErrNotFound);
sl@0
  1319
sl@0
  1320
	// close this sub-session.  should cancel the active transaction. allowing cache manager to clean
sl@0
  1321
	// up the memory.
sl@0
  1322
	repository2->Close();
sl@0
  1323
sl@0
  1324
	TInt i = 0;
sl@0
  1325
	const TUint32 KInt1 = 0x1;
sl@0
  1326
	repository->Get(KInt1, i);
sl@0
  1327
sl@0
  1328
	// close the last observer for this repository.  this places the memory for this repository
sl@0
  1329
	// back onto the idle list for cache manager.
sl@0
  1330
	repository->Close();
sl@0
  1331
sl@0
  1332
	// Wait until the repository is evicted normally
sl@0
  1333
sl@0
  1334
	timer->Start(TTimeIntervalMicroSeconds32(TServerResources::iCacheManager->iDefaultTimeout.Int()*2), 0, TCallBack(Callback, timer));
sl@0
  1335
sl@0
  1336
	CActiveScheduler::Start();
sl@0
  1337
sl@0
  1338
	// the repository should now be unloaded from memory
sl@0
  1339
	TEST( TServerResources::iObserver->FindOpenRepository(KUidCacheTestRepositorySm) == KErrNotFound );
sl@0
  1340
sl@0
  1341
   	CleanupStack::PopAndDestroy(5);
sl@0
  1342
	}
sl@0
  1343
sl@0
  1344
LOCAL_C void MainL()
sl@0
  1345
	{
sl@0
  1346
	__UHEAP_MARK;
sl@0
  1347
	TheTest.Start( _L( "Cache Tests" ) );
sl@0
  1348
sl@0
  1349
	// create and install the active scheduler we need
sl@0
  1350
	CActiveScheduler* s = new(ELeave) CActiveScheduler;
sl@0
  1351
	CleanupStack::PushL( s );
sl@0
  1352
	CActiveScheduler::Install( s );
sl@0
  1353
sl@0
  1354
	Tester.DeleteFilesL();
sl@0
  1355
sl@0
  1356
	TServerResources::InitialiseL();
sl@0
  1357
sl@0
  1358
	
sl@0
  1359
	Tester.DEF111734L();
sl@0
  1360
	Tester.DEF124147();
sl@0
  1361
	
sl@0
  1362
sl@0
  1363
	for(TInt i=ENominalNoFile; i<ELastStage; i++)
sl@0
  1364
		{
sl@0
  1365
		Tester.AdvanceToStageL( static_cast<TBorderTestStage>(i) );
sl@0
  1366
		DoTestsL();
sl@0
  1367
		}
sl@0
  1368
sl@0
  1369
	TheTest.Next( _L(  "Out of memory tests" ) );
sl@0
  1370
	Tester.iOOMTest = ETrue;
sl@0
  1371
sl@0
  1372
	Tester.AdvanceToStageL( ENominal );
sl@0
  1373
	OomTest( DoOOMTestsL );
sl@0
  1374
sl@0
  1375
	TServerResources::Close();
sl@0
  1376
sl@0
  1377
	// Cleanup the scheduler
sl@0
  1378
	CleanupStack::PopAndDestroy( s );
sl@0
  1379
sl@0
  1380
	TheTest.End();
sl@0
  1381
	TheTest.Close();
sl@0
  1382
	__UHEAP_MARKEND;
sl@0
  1383
	}
sl@0
  1384
sl@0
  1385
TInt E32Main()
sl@0
  1386
	{
sl@0
  1387
#ifdef __SECURE_DATA__
sl@0
  1388
	__UHEAP_MARK;
sl@0
  1389
	CTrapCleanup* cleanup = CTrapCleanup::New();
sl@0
  1390
	if ( !cleanup )
sl@0
  1391
		return KErrNoMemory;
sl@0
  1392
sl@0
  1393
	TRAPD( err, MainL()  );
sl@0
  1394
	if ( err != KErrNone )
sl@0
  1395
		User::Panic( _L( "Testing failed: " ), err );
sl@0
  1396
sl@0
  1397
	delete cleanup;
sl@0
  1398
	__UHEAP_MARKEND;
sl@0
  1399
#endif
sl@0
  1400
sl@0
  1401
	return 0;
sl@0
  1402
	}
sl@0
  1403