os/persistentdata/persistentstorage/store/TFILE/t_storoom.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) 1998-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 <s32file.h>
sl@0
    17
#include <e32test.h>
sl@0
    18
sl@0
    19
#define UNUSED_VAR(a) a = a
sl@0
    20
sl@0
    21
const TInt KTestCleanupStack=0x20;
sl@0
    22
const TPtrC KTestDir=_L("\\STOR-TST\\T_OOM\\");
sl@0
    23
sl@0
    24
#ifdef _DEBUG
sl@0
    25
const TPtrC desOriginalReverted2(_S("original/reverted A"),19);
sl@0
    26
const TPtrC desOriginalReverted3(_S("original/reverted B"),19);
sl@0
    27
const TPtrC desNewOverwritten2(_S("new/overwritten X"),17);
sl@0
    28
const TPtrC desNewOverwritten3(_S("new/overwritten Y"),17);
sl@0
    29
const TPtrC alphabet(_S("abcdefghijklmnopqrstuvwxyz"),26);
sl@0
    30
LOCAL_D CFileStore* store;
sl@0
    31
RStoreWriteStream out;
sl@0
    32
RStoreReadStream in;
sl@0
    33
TInt KMemoryAllocsInTestFunction=1;
sl@0
    34
#endif
sl@0
    35
sl@0
    36
LOCAL_D CTrapCleanup* TheTrapCleanup;
sl@0
    37
LOCAL_D RTest test(_L("t_storoom"));
sl@0
    38
LOCAL_D RFs TheFs;
sl@0
    39
sl@0
    40
LOCAL_C void setupTestDirectory()
sl@0
    41
    {// Prepare the test directory.
sl@0
    42
	TInt r=TheFs.Connect();
sl@0
    43
	test(r==KErrNone);
sl@0
    44
//
sl@0
    45
	r=TheFs.MkDirAll(KTestDir);
sl@0
    46
	test(r==KErrNone||r==KErrAlreadyExists);
sl@0
    47
	r=TheFs.SetSessionPath(KTestDir);
sl@0
    48
	test(r==KErrNone);
sl@0
    49
	}
sl@0
    50
sl@0
    51
LOCAL_C void setupCleanup()
sl@0
    52
    {// Initialise the cleanup stack
sl@0
    53
	TheTrapCleanup=CTrapCleanup::New();
sl@0
    54
	test(TheTrapCleanup!=NULL);
sl@0
    55
	TRAPD(r,\
sl@0
    56
		{\
sl@0
    57
		for (TInt i=KTestCleanupStack;i>0;i--)\
sl@0
    58
			CleanupStack::PushL((TAny*)0);\
sl@0
    59
		CleanupStack::Pop(KTestCleanupStack);\
sl@0
    60
		});
sl@0
    61
	test(r==KErrNone);
sl@0
    62
	}
sl@0
    63
sl@0
    64
#ifdef _DEBUG
sl@0
    65
LOCAL_D void CreateStoreSetRootAndDestroyStoreL()
sl@0
    66
	{
sl@0
    67
	TheFs.Delete(_L("pfs"));
sl@0
    68
	store=CPermanentFileStore::CreateLC(TheFs,_L("pfs"),EFileWrite|EFileRead);
sl@0
    69
	store->SetTypeL(KPermanentFileStoreLayoutUid);
sl@0
    70
	TStreamId rootId = store->ExtendL();
sl@0
    71
	store->SetRootL(rootId);
sl@0
    72
	store->CommitL();
sl@0
    73
	CleanupStack::PopAndDestroy();
sl@0
    74
	}
sl@0
    75
sl@0
    76
LOCAL_D void AlterStoreL()
sl@0
    77
	{
sl@0
    78
	RStoreWriteStream out2;
sl@0
    79
	RStoreWriteStream out3;
sl@0
    80
	RStoreWriteStream out4;
sl@0
    81
	RStoreReadStream in;
sl@0
    82
sl@0
    83
	TStreamId id2 = out.CreateLC(*store);
sl@0
    84
	out.CommitL();
sl@0
    85
	CleanupStack::PopAndDestroy();
sl@0
    86
sl@0
    87
	TStreamId id3 = out.CreateLC(*store);
sl@0
    88
	out.CommitL();
sl@0
    89
	CleanupStack::PopAndDestroy();
sl@0
    90
sl@0
    91
	TStreamId id4 = out.CreateLC(*store);
sl@0
    92
	out << _L("mum");
sl@0
    93
	out.CommitL();
sl@0
    94
	CleanupStack::PopAndDestroy();
sl@0
    95
sl@0
    96
	out.ReplaceLC(*store,store->Root());
sl@0
    97
	out << id2;
sl@0
    98
	out << id3;
sl@0
    99
	out << id4;
sl@0
   100
	out.CommitL();
sl@0
   101
	CleanupStack::PopAndDestroy();
sl@0
   102
sl@0
   103
	in.OpenLC(*store,store->Root());// use the root for in and out streams
sl@0
   104
	out.ReplaceLC(*store,store->Root());
sl@0
   105
	out.WriteL(in);
sl@0
   106
	out.CommitL();
sl@0
   107
	CleanupStack::PopAndDestroy(2);
sl@0
   108
sl@0
   109
	out.ReplaceLC(*store,store->Root());// swap the order
sl@0
   110
	in.OpenLC(*store,store->Root());
sl@0
   111
	out.WriteL(in);
sl@0
   112
	out << _L("fromage");
sl@0
   113
	out.CommitL();
sl@0
   114
	CleanupStack::PopAndDestroy(2);
sl@0
   115
sl@0
   116
	store->CommitL();
sl@0
   117
sl@0
   118
	in.OpenLC(*store,store->Root());
sl@0
   119
	TStreamId idX,idZ;
sl@0
   120
	in >> idX;
sl@0
   121
	in >> idX;
sl@0
   122
	in >> idZ;// id4 "mum"
sl@0
   123
	CleanupStack::PopAndDestroy();
sl@0
   124
	out.OpenLC(*store,idZ);
sl@0
   125
	in.OpenLC(*store,idZ);
sl@0
   126
	out2.OpenLC(*store,idZ);
sl@0
   127
	out3.OpenLC(*store,idZ);
sl@0
   128
	out4.OpenLC(*store,idZ);
sl@0
   129
	out4.WriteL(in);
sl@0
   130
	out.CommitL();
sl@0
   131
	CleanupStack::PopAndDestroy(5);
sl@0
   132
	}
sl@0
   133
/**
sl@0
   134
@SYMTestCaseID          SYSLIB-STORE-CT-1170
sl@0
   135
@SYMTestCaseDesc	    Allocation failure in store test
sl@0
   136
@SYMTestPriority 	    High
sl@0
   137
@SYMTestActions  	    Tests for any memory errors during allocation of store
sl@0
   138
@SYMTestExpectedResults Test must not fail
sl@0
   139
@SYMREQ                 REQ0000
sl@0
   140
*/
sl@0
   141
LOCAL_D void AllocFailInSampleStoreCodeL()
sl@0
   142
	{
sl@0
   143
	test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1170 "));
sl@0
   144
	test.Console()->Printf(_L("AllocFailInSampleStoreCodeL()\n"));
sl@0
   145
	TRAPD(r,CreateStoreSetRootAndDestroyStoreL())
sl@0
   146
    UNUSED_VAR(r);
sl@0
   147
	const TInt KAllocFail=15;
sl@0
   148
	for (TInt ii=1;ii<=20;++ii)
sl@0
   149
		{
sl@0
   150
		store=CPermanentFileStore::OpenLC(TheFs,_L("pfs"),EFileWrite|EFileRead);
sl@0
   151
		__UHEAP_FAILNEXT(ii);
sl@0
   152
		TRAPD(r,AlterStoreL());
sl@0
   153
		if (ii<KAllocFail)
sl@0
   154
			test(r==KErrNoMemory);
sl@0
   155
		if (ii>=KAllocFail)
sl@0
   156
			test(r==KErrNone);
sl@0
   157
		__UHEAP_RESET;
sl@0
   158
		CleanupStack::PopAndDestroy();
sl@0
   159
		}
sl@0
   160
	TheFs.Delete(_L("pfs"));
sl@0
   161
	}
sl@0
   162
sl@0
   163
LOCAL_D void InitialseStoreWithDataL()
sl@0
   164
	{
sl@0
   165
	TheFs.Delete(_L("pope"));
sl@0
   166
	store=CPermanentFileStore::CreateLC(TheFs,_L("pope"),EFileWrite|EFileRead);
sl@0
   167
	store->SetTypeL(KPermanentFileStoreLayoutUid);
sl@0
   168
	TStreamId rootId = store->ExtendL();
sl@0
   169
	store->SetRootL(rootId);
sl@0
   170
	store->CommitL();
sl@0
   171
	CleanupStack::PopAndDestroy();
sl@0
   172
sl@0
   173
	store=CPermanentFileStore::OpenLC(TheFs,_L("pope"),EFileWrite|EFileRead);
sl@0
   174
	TStreamId id2 = out.CreateLC(*store);
sl@0
   175
	out << desOriginalReverted2;
sl@0
   176
	out.CommitL();
sl@0
   177
	CleanupStack::PopAndDestroy();
sl@0
   178
sl@0
   179
	TStreamId id3 = out.CreateLC(*store);
sl@0
   180
	out << desOriginalReverted3;
sl@0
   181
	out.CommitL();
sl@0
   182
	CleanupStack::PopAndDestroy();
sl@0
   183
sl@0
   184
	out.ReplaceLC(*store,store->Root());
sl@0
   185
	out << id2;
sl@0
   186
	out << id3;
sl@0
   187
	out.CommitL();
sl@0
   188
	CleanupStack::PopAndDestroy();// out
sl@0
   189
sl@0
   190
	store->CommitL();
sl@0
   191
	CleanupStack::PopAndDestroy();// store
sl@0
   192
	}
sl@0
   193
sl@0
   194
LOCAL_D void AlterStoreDuringOutOfMemoryL(TInt aFail)
sl@0
   195
	{
sl@0
   196
	store=CPermanentFileStore::OpenLC(TheFs,_L("pope"),EFileWrite|EFileRead);
sl@0
   197
	in.OpenLC(*store,store->Root());
sl@0
   198
	TStreamId id2;
sl@0
   199
	TStreamId id3;
sl@0
   200
	in >> id2;
sl@0
   201
	in >> id3;
sl@0
   202
	CleanupStack::PopAndDestroy();// in
sl@0
   203
sl@0
   204
	out.ReplaceLC(*store,id2);
sl@0
   205
	out << desNewOverwritten2;
sl@0
   206
	out.CommitL();
sl@0
   207
	CleanupStack::PopAndDestroy();// out
sl@0
   208
sl@0
   209
	store->CommitL();
sl@0
   210
	__UHEAP_FAILNEXT(aFail);// Out of memory
sl@0
   211
sl@0
   212
	out.ReplaceLC(*store,id3);
sl@0
   213
	out << desNewOverwritten3;
sl@0
   214
	out.CommitL();
sl@0
   215
	CleanupStack::PopAndDestroy();// out
sl@0
   216
sl@0
   217
	store->CommitL();
sl@0
   218
	CleanupStack::PopAndDestroy();// store
sl@0
   219
sl@0
   220
	__UHEAP_RESET;
sl@0
   221
	}
sl@0
   222
sl@0
   223
/**
sl@0
   224
@SYMTestCaseID          SYSLIB-STORE-CT-1346
sl@0
   225
@SYMTestCaseDesc	    Streaming of data test
sl@0
   226
@SYMTestPriority 	    High
sl@0
   227
@SYMTestActions  	    Tests for RStoreReadStream::>> operator
sl@0
   228
@SYMTestExpectedResults Test must not fail
sl@0
   229
@SYMREQ                 REQ0000
sl@0
   230
*/
sl@0
   231
LOCAL_D void TestStreamDataL(TInt aFail)
sl@0
   232
	{
sl@0
   233
	test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1346 "));
sl@0
   234
	store=CPermanentFileStore::OpenLC(TheFs,_L("pope"),EFileWrite|EFileRead);
sl@0
   235
	in.OpenLC(*store,store->Root());
sl@0
   236
	TStreamId id2;
sl@0
   237
	TStreamId id3;
sl@0
   238
	in >> id2;
sl@0
   239
	in >> id3;
sl@0
   240
	CleanupStack::PopAndDestroy();// in
sl@0
   241
sl@0
   242
	TBuf<32> buf;
sl@0
   243
sl@0
   244
	in.OpenLC(*store,id2);
sl@0
   245
	in >> buf;
sl@0
   246
	test(buf==desNewOverwritten2);
sl@0
   247
sl@0
   248
	CleanupStack::PopAndDestroy();// in
sl@0
   249
sl@0
   250
	in.OpenLC(*store,id3);
sl@0
   251
	in >> buf;
sl@0
   252
	if (aFail > KMemoryAllocsInTestFunction)
sl@0
   253
		test(buf==desNewOverwritten3);
sl@0
   254
	else if (aFail<=KMemoryAllocsInTestFunction)
sl@0
   255
		test(buf==desOriginalReverted3);
sl@0
   256
sl@0
   257
	CleanupStack::PopAndDestroy();// in
sl@0
   258
sl@0
   259
	CleanupStack::PopAndDestroy();// store
sl@0
   260
	}
sl@0
   261
sl@0
   262
LOCAL_D void ResetStreamDataL()
sl@0
   263
	{
sl@0
   264
	store=CPermanentFileStore::OpenLC(TheFs,_L("pope"),EFileWrite|EFileRead);
sl@0
   265
	in.OpenLC(*store,store->Root());
sl@0
   266
	TStreamId id2;
sl@0
   267
	TStreamId id3;
sl@0
   268
	in >> id2;
sl@0
   269
	in >> id3;
sl@0
   270
	CleanupStack::PopAndDestroy();// in
sl@0
   271
sl@0
   272
	out.ReplaceLC(*store,id2);
sl@0
   273
	out << desOriginalReverted2;
sl@0
   274
	out.CommitL();
sl@0
   275
	CleanupStack::PopAndDestroy();// out
sl@0
   276
sl@0
   277
	out.ReplaceLC(*store,id3);
sl@0
   278
	out << desOriginalReverted3;
sl@0
   279
	out.CommitL();
sl@0
   280
	CleanupStack::PopAndDestroy();// out
sl@0
   281
sl@0
   282
	store->CommitL();
sl@0
   283
	CleanupStack::PopAndDestroy();// store
sl@0
   284
	}
sl@0
   285
/**
sl@0
   286
@SYMTestCaseID          SYSLIB-STORE-CT-1171
sl@0
   287
@SYMTestCaseDesc	    Out of memory errors test
sl@0
   288
@SYMTestPriority 	    High
sl@0
   289
@SYMTestActions  	    Tests for out of memory conditions before commiting to the store
sl@0
   290
@SYMTestExpectedResults Test must not fail
sl@0
   291
@SYMREQ                 REQ0000
sl@0
   292
*/
sl@0
   293
LOCAL_D void OutOfMemoryBeforeStoreCommitL()
sl@0
   294
	{
sl@0
   295
	test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1171 "));
sl@0
   296
	test.Console()->Printf(_L("OutOfMemoryBeforeStoreCommitL()\n"));
sl@0
   297
	InitialseStoreWithDataL();
sl@0
   298
	for (TInt fail=1; fail<=5; ++ fail)
sl@0
   299
		{
sl@0
   300
		TRAPD(r,AlterStoreDuringOutOfMemoryL(fail));
sl@0
   301
		if (fail<=KMemoryAllocsInTestFunction)
sl@0
   302
			test(r==KErrNoMemory);// store saved when r!=KErrNone
sl@0
   303
		else
sl@0
   304
			test(r==KErrNone);
sl@0
   305
		TestStreamDataL(fail);
sl@0
   306
		ResetStreamDataL();
sl@0
   307
		}
sl@0
   308
	TheFs.Delete(_L("pope"));
sl@0
   309
	}
sl@0
   310
sl@0
   311
sl@0
   312
LOCAL_D void OpenCloseStoreL(TInt aFail)
sl@0
   313
	{
sl@0
   314
	__UHEAP_FAILNEXT(aFail);
sl@0
   315
	TheFs.Delete(_L("pope"));
sl@0
   316
	store=CPermanentFileStore::CreateLC(TheFs,_L("pope"),EFileWrite|EFileRead);
sl@0
   317
	store->SetTypeL(KPermanentFileStoreLayoutUid);
sl@0
   318
	TStreamId rootId = store->ExtendL();
sl@0
   319
	store->SetRootL(rootId);
sl@0
   320
	store->CommitL();
sl@0
   321
	CleanupStack::PopAndDestroy();
sl@0
   322
sl@0
   323
	store=CPermanentFileStore::OpenLC(TheFs,_L("pope"),EFileWrite|EFileRead);
sl@0
   324
	TStreamId id2 = out.CreateLC(*store);
sl@0
   325
	out << desOriginalReverted2;
sl@0
   326
	out << id2;
sl@0
   327
	out.CommitL();
sl@0
   328
	CleanupStack::PopAndDestroy(2);
sl@0
   329
	}
sl@0
   330
/**
sl@0
   331
@SYMTestCaseID          SYSLIB-STORE-CT-1172
sl@0
   332
@SYMTestCaseDesc	    Out of memory test
sl@0
   333
@SYMTestPriority 	    High
sl@0
   334
@SYMTestActions  	    Test for memory errors during opening and closing of store operation.
sl@0
   335
@SYMTestExpectedResults Test must not fail
sl@0
   336
@SYMREQ                 REQ0000
sl@0
   337
*/
sl@0
   338
sl@0
   339
LOCAL_D void OutOfMemoryWhenOpeningClosingStoreL()
sl@0
   340
	{
sl@0
   341
	test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1172 "));
sl@0
   342
	test.Console()->Printf(_L("OutOfMemoryWhenOpeningClosingStoreL()\n"));
sl@0
   343
	const TInt KAllocs=12;
sl@0
   344
	for (TInt fail=1; fail<=20; ++ fail)
sl@0
   345
		{
sl@0
   346
		TRAPD(r,OpenCloseStoreL(fail))
sl@0
   347
		if (fail<KAllocs)
sl@0
   348
			test(r==KErrNoMemory);
sl@0
   349
		else
sl@0
   350
			test(r==KErrNone);
sl@0
   351
		}
sl@0
   352
	TheFs.Delete(_L("pope"));
sl@0
   353
	__UHEAP_RESET;
sl@0
   354
	}
sl@0
   355
#endif
sl@0
   356
sl@0
   357
GLDEF_C TInt E32Main()
sl@0
   358
    {// Test permanent file store
sl@0
   359
	test.Title();
sl@0
   360
	setupTestDirectory();
sl@0
   361
	setupCleanup();
sl@0
   362
#ifdef _DEBUG
sl@0
   363
	__UHEAP_MARK;
sl@0
   364
//
sl@0
   365
	test.Start(_L("Begin tests"));
sl@0
   366
	TRAPD(r,AllocFailInSampleStoreCodeL());
sl@0
   367
	test(r==KErrNone);
sl@0
   368
	TRAP(r,OutOfMemoryBeforeStoreCommitL());
sl@0
   369
	test(r==KErrNone);
sl@0
   370
	TRAP(r,OutOfMemoryWhenOpeningClosingStoreL());
sl@0
   371
	test(r==KErrNone);
sl@0
   372
	test.End();
sl@0
   373
sl@0
   374
	TheFs.Delete(_L("pope"));
sl@0
   375
	TheFs.Delete(_L("pfs"));
sl@0
   376
//
sl@0
   377
	__UHEAP_MARKEND;
sl@0
   378
#endif
sl@0
   379
sl@0
   380
#ifndef _DEBUG
sl@0
   381
	test.Start(_L("The tests are not valid in release mode"));
sl@0
   382
	test.End();
sl@0
   383
#endif
sl@0
   384
	delete TheTrapCleanup;
sl@0
   385
	TheFs.Close();
sl@0
   386
	test.Close();
sl@0
   387
	return 0;
sl@0
   388
    }
sl@0
   389