os/persistentdata/persistentstorage/store/TSTOR/t_storembed.cpp
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
// Copyright (c) 1998-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
#include <s32file.h>
sl@0
    17
#include <e32test.h>
sl@0
    18
sl@0
    19
const TInt KTestCleanupStack=0x20;
sl@0
    20
sl@0
    21
sl@0
    22
// This is a path specification and should not be used as is
sl@0
    23
_LIT(KFileLocationSpec, "Z:\\STOR-TST\\T_EMBED.DAT");
sl@0
    24
const TUint8* KTestData=_S8("0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ");
sl@0
    25
const TInt KTestLength=36;
sl@0
    26
const TInt KTestTotal=KTestLength*(KTestLength+1);
sl@0
    27
const TPtrC8 KTestDes(KTestData,KTestLength);
sl@0
    28
sl@0
    29
LOCAL_D CTrapCleanup* TheTrapCleanup;
sl@0
    30
LOCAL_D RTest test(_L("t_storembed"));
sl@0
    31
LOCAL_D RFs TheFs;
sl@0
    32
LOCAL_D TStreamId TheTempId;
sl@0
    33
LOCAL_D TBuf8<KTestLength+1> TheBuf;
sl@0
    34
sl@0
    35
/**
sl@0
    36
@SYMTestCaseID          SYSLIB-STORE-CT-1192
sl@0
    37
@SYMTestCaseDesc	    Writing to a store test
sl@0
    38
@SYMTestPriority 	    High
sl@0
    39
@SYMTestActions  	    Write a test data to a stream.
sl@0
    40
@SYMTestExpectedResults Test must not fail
sl@0
    41
@SYMREQ                 REQ0000
sl@0
    42
*/
sl@0
    43
LOCAL_C void testWriteL(CPersistentStore& aStore)
sl@0
    44
	{
sl@0
    45
	test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1192 Writing... "));
sl@0
    46
	RStoreWriteStream out;
sl@0
    47
	TStreamId id=out.CreateLC(aStore);
sl@0
    48
	for (TInt i=0;i<=KTestLength;++i)
sl@0
    49
		{
sl@0
    50
		out.WriteL(KTestDes,i);
sl@0
    51
		out.WriteL(&KTestData[i],KTestLength-i);
sl@0
    52
		}
sl@0
    53
	out.CommitL();
sl@0
    54
	out.Close();
sl@0
    55
	aStore.SetRootL(out.CreateL(aStore));
sl@0
    56
	out<<KTestDes;
sl@0
    57
	out<<id;
sl@0
    58
	out.CommitL();
sl@0
    59
	CleanupStack::PopAndDestroy();
sl@0
    60
	}
sl@0
    61
sl@0
    62
/**
sl@0
    63
@SYMTestCaseID          SYSLIB-STORE-CT-1193
sl@0
    64
@SYMTestCaseDesc	    Reading from a stream test
sl@0
    65
@SYMTestPriority 	    High
sl@0
    66
@SYMTestActions  	    Attempt for reading from stream for a specific length of data
sl@0
    67
@SYMTestExpectedResults Test must not fail
sl@0
    68
@SYMREQ                 REQ0000
sl@0
    69
*/
sl@0
    70
LOCAL_C void testReadL(RReadStream& aStream)
sl@0
    71
	{
sl@0
    72
	test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1193 "));
sl@0
    73
	for (TInt i=KTestLength;i>=0;--i)
sl@0
    74
		{
sl@0
    75
		aStream.ReadL(TheBuf,i);
sl@0
    76
		test(TheBuf.Length()==i);
sl@0
    77
		TheBuf.SetMax();
sl@0
    78
		aStream.ReadL(&TheBuf[i],KTestLength-i);
sl@0
    79
		TheBuf.SetLength(KTestLength);
sl@0
    80
		test(TheBuf==KTestDes);
sl@0
    81
		}
sl@0
    82
	}
sl@0
    83
sl@0
    84
/**
sl@0
    85
@SYMTestCaseID          SYSLIB-STORE-CT-1194
sl@0
    86
@SYMTestCaseDesc	    Reading from a persistent store test
sl@0
    87
@SYMTestPriority 	    High
sl@0
    88
@SYMTestActions  	    Tests for reading from a stream
sl@0
    89
@SYMTestExpectedResults Test must not fail
sl@0
    90
@SYMREQ                 REQ0000
sl@0
    91
*/
sl@0
    92
LOCAL_C void testReadL(const CPersistentStore& aStore)
sl@0
    93
	{
sl@0
    94
	test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1194 Reading... "));
sl@0
    95
	RStoreReadStream in;
sl@0
    96
	in.OpenLC(aStore,aStore.Root());
sl@0
    97
	in>>TheBuf;
sl@0
    98
	TStreamId id;
sl@0
    99
	in>>id;
sl@0
   100
	in.Close();
sl@0
   101
	in.OpenL(aStore,id);
sl@0
   102
	testReadL(in);
sl@0
   103
	CleanupStack::PopAndDestroy();
sl@0
   104
	}
sl@0
   105
sl@0
   106
/**
sl@0
   107
@SYMTestCaseID          SYSLIB-STORE-CT-1195
sl@0
   108
@SYMTestCaseDesc	    Copying from one stream to another stream test
sl@0
   109
@SYMTestPriority 	    High
sl@0
   110
@SYMTestActions  	    Attempt for copying two streams
sl@0
   111
@SYMTestExpectedResults Test must not fail
sl@0
   112
@SYMREQ                 REQ0000
sl@0
   113
*/
sl@0
   114
LOCAL_C void testCopyL(RWriteStream& aWriteStream,RReadStream& aReadStream)
sl@0
   115
	{
sl@0
   116
	test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1195 Copying "));
sl@0
   117
	for (TInt i=KTestLength;i>=0;--i)
sl@0
   118
		{
sl@0
   119
		aWriteStream.WriteL(aReadStream,i);
sl@0
   120
		aReadStream.ReadL(aWriteStream,KTestLength-i);
sl@0
   121
		}
sl@0
   122
	}
sl@0
   123
sl@0
   124
/**
sl@0
   125
@SYMTestCaseID          SYSLIB-STORE-CT-1196
sl@0
   126
@SYMTestCaseDesc	    Writing to a write once file store created using CEmbeddedStore test
sl@0
   127
@SYMTestPriority 	    High
sl@0
   128
@SYMTestActions  	    Attempt for writing to a newly created store and a temporary store.
sl@0
   129
@SYMTestExpectedResults Test must not fail
sl@0
   130
@SYMREQ                 REQ0000
sl@0
   131
*/
sl@0
   132
LOCAL_C void testWriteL()
sl@0
   133
	{
sl@0
   134
	test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1196 Replacing host file "));
sl@0
   135
	TParsePtrC parse(KFileLocationSpec);
sl@0
   136
	
sl@0
   137
	CFileStore* file=CPermanentFileStore::ReplaceLC(TheFs,parse.NameAndExt(),EFileWrite);
sl@0
   138
	file->SetTypeL(file->Layout());
sl@0
   139
//
sl@0
   140
	test.Next(_L("Writing root store"));
sl@0
   141
	RStoreWriteStream stream;
sl@0
   142
	TStreamId root=stream.CreateLC(*file);
sl@0
   143
	stream.WriteL(_L8(" root"));
sl@0
   144
	CleanupStack::Pop();
sl@0
   145
	CEmbeddedStore* store=CEmbeddedStore::NewL(stream);
sl@0
   146
	CleanupStack::PushL(store);
sl@0
   147
	testWriteL(*store);
sl@0
   148
	store->CommitL();
sl@0
   149
	CleanupStack::PopAndDestroy();
sl@0
   150
	file->SetRootL(root);
sl@0
   151
//
sl@0
   152
	test.Next(_L("Writing temp store"));
sl@0
   153
	TheTempId=stream.CreateLC(*file);
sl@0
   154
	stream.WriteL(_L8(" temp"));
sl@0
   155
	CleanupStack::Pop();
sl@0
   156
	store=CEmbeddedStore::NewLC(stream);
sl@0
   157
	testWriteL(*store);
sl@0
   158
	store->CommitL();
sl@0
   159
	CleanupStack::PopAndDestroy();
sl@0
   160
//
sl@0
   161
	file->CommitL();
sl@0
   162
	CleanupStack::PopAndDestroy();
sl@0
   163
	}
sl@0
   164
sl@0
   165
/**
sl@0
   166
@SYMTestCaseID          SYSLIB-STORE-CT-1197
sl@0
   167
@SYMTestCaseDesc	    Reading from a file buffer test
sl@0
   168
@SYMTestPriority 	    High
sl@0
   169
@SYMTestActions  	    Tests for reading from root and temporary store.
sl@0
   170
@SYMTestExpectedResults Test must not fail
sl@0
   171
@SYMREQ                 REQ0000
sl@0
   172
*/
sl@0
   173
LOCAL_C void testReadL()
sl@0
   174
	{
sl@0
   175
	test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1197 Opening host file "));
sl@0
   176
	TParsePtrC parse(KFileLocationSpec);
sl@0
   177
	
sl@0
   178
	CFileStore* file=CFileStore::OpenLC(TheFs,parse.NameAndExt(),EFileRead);
sl@0
   179
//
sl@0
   180
	test.Next(_L("Reading from root store"));
sl@0
   181
	TStreamId root=file->Root();
sl@0
   182
	
sl@0
   183
	RStoreReadStream stream;
sl@0
   184
	stream.OpenLC(*file,root);
sl@0
   185
	TBuf8<5> b;
sl@0
   186
	stream.ReadL(b);
sl@0
   187
	test(b==_L8(" root"));
sl@0
   188
	CleanupStack::Pop(&stream);
sl@0
   189
	CEmbeddedStore* store=CEmbeddedStore::FromL(stream);
sl@0
   190
	CleanupStack::PushL(store);
sl@0
   191
	testReadL(*store);
sl@0
   192
	CleanupStack::PopAndDestroy(store);
sl@0
   193
	
sl@0
   194
	stream.OpenLC(*file,root);
sl@0
   195
	stream.ReadL(b);
sl@0
   196
	test(b==_L8(" root"));
sl@0
   197
	CleanupStack::Pop(&stream);
sl@0
   198
	store=CEmbeddedStore::FromLC(stream);
sl@0
   199
	testReadL(*store);
sl@0
   200
	CleanupStack::PopAndDestroy();
sl@0
   201
//
sl@0
   202
	test.Next(_L("Reading from temp store"));
sl@0
   203
	stream.OpenLC(*file,TheTempId);
sl@0
   204
	stream.ReadL(b);
sl@0
   205
	test(b==_L8(" temp"));
sl@0
   206
	CleanupStack::Pop();
sl@0
   207
	store=CEmbeddedStore::FromLC(stream);
sl@0
   208
	testReadL(*store);
sl@0
   209
//
sl@0
   210
	CleanupStack::PopAndDestroy(2);
sl@0
   211
	}
sl@0
   212
sl@0
   213
/**
sl@0
   214
@SYMTestCaseID          SYSLIB-STORE-CT-1198
sl@0
   215
@SYMTestCaseDesc	    Copying in a single file store test.
sl@0
   216
@SYMTestPriority 	    High
sl@0
   217
@SYMTestActions  	    Tests for copying using different buffer sizes
sl@0
   218
@SYMTestExpectedResults Test must not fail
sl@0
   219
@SYMREQ                 REQ0000
sl@0
   220
*/
sl@0
   221
LOCAL_C void testCopyL()
sl@0
   222
	{
sl@0
   223
	test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1198 Opening host file "));
sl@0
   224
	TParsePtrC parse(KFileLocationSpec);
sl@0
   225
	
sl@0
   226
	CFileStore* file=CFileStore::OpenLC(TheFs,parse.NameAndExt(),EFileRead|EFileWrite);
sl@0
   227
//
sl@0
   228
	test.Next(_L("Opening source (root) store"));
sl@0
   229
	TStreamId root=file->Root();
sl@0
   230
	RStoreReadStream src;
sl@0
   231
	src.OpenLC(*file,root);
sl@0
   232
	TBuf8<5> b;
sl@0
   233
	src.ReadL(b);
sl@0
   234
	test(b==_L8(" root"));
sl@0
   235
	CleanupStack::Pop();
sl@0
   236
	CEmbeddedStore* source=CEmbeddedStore::FromLC(src);
sl@0
   237
//
sl@0
   238
	test.Next(_L("Duplicating source store"));
sl@0
   239
	RStoreWriteStream trg;
sl@0
   240
	trg.CreateLC(*file);
sl@0
   241
	MStreamBuf* host=source->Host();
sl@0
   242
	TStreamPos pos=CEmbeddedStore::Position(source->Root());
sl@0
   243
	host->SeekL(host->ERead,EStreamBeginning);
sl@0
   244
	RReadStream stream(host);
sl@0
   245
	trg.WriteL(stream,pos.Offset());
sl@0
   246
	stream>>TheBuf;
sl@0
   247
	TStreamId id;
sl@0
   248
	stream>>id;
sl@0
   249
	test(host->TellL(host->ERead).Offset()==host->SizeL());
sl@0
   250
	trg<<TheBuf;
sl@0
   251
	trg<<id;
sl@0
   252
	trg.CommitL();
sl@0
   253
	source->Detach();
sl@0
   254
	host->Release();
sl@0
   255
	source->Reattach(trg.Sink());
sl@0
   256
	CleanupStack::Pop();
sl@0
   257
	testReadL(*source);
sl@0
   258
//
sl@0
   259
	test.Next(_L("Creating target store"));
sl@0
   260
	trg.CreateLC(*file);
sl@0
   261
	trg.WriteL(_L8(" target"));
sl@0
   262
	CleanupStack::Pop();
sl@0
   263
	CEmbeddedStore* target=CEmbeddedStore::NewLC(trg);
sl@0
   264
//
sl@0
   265
	test.Next(_L("Copying using small transfers"));
sl@0
   266
	RStoreReadStream in;
sl@0
   267
	in.OpenL(*source,source->Root());
sl@0
   268
	in>>TheBuf;
sl@0
   269
	TStreamId copyId;
sl@0
   270
	in>>copyId;
sl@0
   271
	in.Close();
sl@0
   272
	in.OpenL(*source,copyId);
sl@0
   273
	RStoreWriteStream out;
sl@0
   274
	id=out.CreateL(*target);
sl@0
   275
	testCopyL(out,in);
sl@0
   276
	out.CommitL();
sl@0
   277
	out.Close();
sl@0
   278
	in.Close();
sl@0
   279
	in.OpenL(*target,id);
sl@0
   280
	testReadL(in);
sl@0
   281
	in.Close();
sl@0
   282
//
sl@0
   283
	test.Next(_L("Copying using a single big transfer"));
sl@0
   284
	in.OpenL(*source,copyId);
sl@0
   285
	id=out.CreateL(*target);
sl@0
   286
	in.ReadL(out,KTestTotal);
sl@0
   287
	out.CommitL();
sl@0
   288
	out.Close();
sl@0
   289
	in.Close();
sl@0
   290
	in.OpenL(*target,id);
sl@0
   291
	testReadL(in);
sl@0
   292
	in.Close();
sl@0
   293
	in.OpenL(*source,copyId);
sl@0
   294
	id=out.CreateL(*target);
sl@0
   295
	out.WriteL(in,KTestTotal);
sl@0
   296
	out.CommitL();
sl@0
   297
	out.Close();
sl@0
   298
	in.Close();
sl@0
   299
	in.OpenL(*target,id);
sl@0
   300
	testReadL(in);
sl@0
   301
	in.Close();
sl@0
   302
//
sl@0
   303
	CleanupStack::PopAndDestroy(3);
sl@0
   304
	}
sl@0
   305
sl@0
   306
//
sl@0
   307
// Prepare the test directory.
sl@0
   308
//
sl@0
   309
LOCAL_C void setupTestDirectory()
sl@0
   310
    {
sl@0
   311
	TInt r=TheFs.Connect();
sl@0
   312
	test(r==KErrNone);
sl@0
   313
//
sl@0
   314
	TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));	
sl@0
   315
	TParse parse;
sl@0
   316
	parse.Set(drive.Name(), &KFileLocationSpec, NULL);
sl@0
   317
	
sl@0
   318
	r=TheFs.MkDir(parse.DriveAndPath());
sl@0
   319
	test(r==KErrNone||r==KErrAlreadyExists);
sl@0
   320
	r=TheFs.SetSessionPath(parse.DriveAndPath());
sl@0
   321
	test(r==KErrNone);
sl@0
   322
	}
sl@0
   323
sl@0
   324
//
sl@0
   325
// Initialise the cleanup stack.
sl@0
   326
//
sl@0
   327
LOCAL_C void setupCleanup()
sl@0
   328
    {
sl@0
   329
	TheTrapCleanup=CTrapCleanup::New();
sl@0
   330
	test(TheTrapCleanup!=NULL);
sl@0
   331
	TRAPD(r,\
sl@0
   332
		{\
sl@0
   333
		for (TInt i=KTestCleanupStack;i>0;i--)\
sl@0
   334
			CleanupStack::PushL((TAny*)0);\
sl@0
   335
		CleanupStack::Pop(KTestCleanupStack);\
sl@0
   336
		});
sl@0
   337
	test(r==KErrNone);
sl@0
   338
	}
sl@0
   339
sl@0
   340
LOCAL_C void DeleteDataFile(const TDesC& aFullName)
sl@0
   341
	{
sl@0
   342
	RFs fsSession;
sl@0
   343
	TInt err = fsSession.Connect();
sl@0
   344
	if(err == KErrNone)
sl@0
   345
		{
sl@0
   346
		TEntry entry;
sl@0
   347
		if(fsSession.Entry(aFullName, entry) == KErrNone)
sl@0
   348
			{
sl@0
   349
			RDebug::Print(_L("Deleting \"%S\" file.\n"), &aFullName);
sl@0
   350
			err = fsSession.SetAtt(aFullName, 0, KEntryAttReadOnly);
sl@0
   351
			if(err != KErrNone)
sl@0
   352
				{
sl@0
   353
				RDebug::Print(_L("Error %d changing \"%S\" file attributes.\n"), err, &aFullName);
sl@0
   354
				}
sl@0
   355
			err = fsSession.Delete(aFullName);
sl@0
   356
			if(err != KErrNone)
sl@0
   357
				{
sl@0
   358
				RDebug::Print(_L("Error %d deleting \"%S\" file.\n"), err, &aFullName);
sl@0
   359
				}
sl@0
   360
			}
sl@0
   361
		fsSession.Close();
sl@0
   362
		}
sl@0
   363
	else
sl@0
   364
		{
sl@0
   365
		RDebug::Print(_L("Error %d connecting file session. File: %S.\n"), err, &aFullName);
sl@0
   366
		}
sl@0
   367
	}
sl@0
   368
sl@0
   369
//
sl@0
   370
// Test streaming conversions.
sl@0
   371
//
sl@0
   372
GLDEF_C TInt E32Main()
sl@0
   373
    {
sl@0
   374
	test.Title();
sl@0
   375
	setupTestDirectory();
sl@0
   376
	setupCleanup();
sl@0
   377
	__UHEAP_MARK;
sl@0
   378
//
sl@0
   379
	test.Start(_L("Test direct file store"));
sl@0
   380
	TRAPD(r,testWriteL());
sl@0
   381
	test(r==KErrNone);
sl@0
   382
	TRAP(r,testReadL());
sl@0
   383
	test(r==KErrNone);
sl@0
   384
	TRAP(r,testCopyL());
sl@0
   385
	test(r==KErrNone);
sl@0
   386
sl@0
   387
	//deletion of data files must be before call to .End() - DEF047652
sl@0
   388
	TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));	
sl@0
   389
	TParse parse;
sl@0
   390
	parse.Set(drive.Name(), &KFileLocationSpec, NULL);
sl@0
   391
	::DeleteDataFile(parse.FullName());
sl@0
   392
		
sl@0
   393
	test.End();
sl@0
   394
//
sl@0
   395
	__UHEAP_MARKEND;
sl@0
   396
sl@0
   397
	delete TheTrapCleanup;
sl@0
   398
	TheFs.Close();
sl@0
   399
	test.Close();
sl@0
   400
	return 0;
sl@0
   401
    }
sl@0
   402