os/persistentdata/persistentstorage/store/TCRYPT/t_storcrypt.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 <s32crypt.h>
sl@0
    18
#include <e32test.h>
sl@0
    19
#include <s32mem.h>
sl@0
    20
#include <pbedata.h>
sl@0
    21
#include <pbe.h>
sl@0
    22
sl@0
    23
const TInt KTestCleanupStack=0x20;
sl@0
    24
sl@0
    25
// This is a path specification and should not be used as is
sl@0
    26
_LIT(KFileLocationSpec, "Z:\\STOR-TST\\T_CRYPT.DAT");
sl@0
    27
const TUint8* KTestData=_S8("0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ");
sl@0
    28
const TInt KTestLength=36;
sl@0
    29
const TInt KTestTotal=KTestLength*(KTestLength+1);
sl@0
    30
const TPtrC8 KTestDes(KTestData,KTestLength);
sl@0
    31
const TPBPassword KTestPassword(_L("The password"));
sl@0
    32
sl@0
    33
LOCAL_D CTrapCleanup* TheTrapCleanup;
sl@0
    34
LOCAL_D RTest test(_L("t_storcrypt"));
sl@0
    35
LOCAL_D RFs TheFs;
sl@0
    36
LOCAL_D TStreamId TheTempId;
sl@0
    37
LOCAL_D TBuf8<KTestLength+1> TheBuf;
sl@0
    38
sl@0
    39
LOCAL_D CPBEncryptSet* thePBEKey;
sl@0
    40
sl@0
    41
/**
sl@0
    42
@SYMTestCaseID          SYSLIB-STORE-CT-1126
sl@0
    43
@SYMTestCaseDesc	    Tests for writing and reading an encrypted data to store
sl@0
    44
@SYMTestPriority 	    High
sl@0
    45
@SYMTestActions  	    Encrypt data and write to a store.Read the encrypted data for decrypting and compare the result.
sl@0
    46
@SYMTestExpectedResults Test must not fail
sl@0
    47
@SYMREQ                 REQ0000
sl@0
    48
*/
sl@0
    49
LOCAL_C void testEncryptionDataL()
sl@0
    50
    {
sl@0
    51
	test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1126 "));
sl@0
    52
	CPBEncryptElement* elementKey = CPBEncryptElement::NewLC(KTestPassword);
sl@0
    53
	TParsePtrC parse(KFileLocationSpec);
sl@0
    54
	
sl@0
    55
	RFileWriteStream writeStream;
sl@0
    56
    writeStream.PushL();
sl@0
    57
    User::LeaveIfError(writeStream.Replace(TheFs, parse.NameAndExt(), EFileWrite));
sl@0
    58
sl@0
    59
    REncryptStream encryptStream;
sl@0
    60
    encryptStream.OpenLC(writeStream, *elementKey);
sl@0
    61
sl@0
    62
    encryptStream << KTestDes;
sl@0
    63
    encryptStream.CommitL();
sl@0
    64
    writeStream.CommitL();
sl@0
    65
    CleanupStack::PopAndDestroy(2); // encryptStream, writeStream
sl@0
    66
sl@0
    67
    const CPBEncryptionData& encryptData = elementKey->EncryptionData();
sl@0
    68
sl@0
    69
    CPBEncryptElement* newElementKey = CPBEncryptElement::NewLC(encryptData, KTestPassword);
sl@0
    70
sl@0
    71
    RFileReadStream readStream;
sl@0
    72
    readStream.PushL();
sl@0
    73
    User::LeaveIfError(readStream.Open(TheFs, parse.NameAndExt(), EFileWrite));
sl@0
    74
sl@0
    75
    RDecryptStream decryptStream;
sl@0
    76
    decryptStream.OpenLC(readStream, *newElementKey);
sl@0
    77
sl@0
    78
    decryptStream >> TheBuf;
sl@0
    79
sl@0
    80
    test(KTestDes == TheBuf);
sl@0
    81
sl@0
    82
	CleanupStack::PopAndDestroy(4, elementKey);
sl@0
    83
    }
sl@0
    84
sl@0
    85
/**
sl@0
    86
@SYMTestCaseID          SYSLIB-STORE-CT-1127
sl@0
    87
@SYMTestCaseDesc	    Stream encryption test.
sl@0
    88
                        Tests the functionality of REncryptStream and RDecryptStream classes
sl@0
    89
@SYMTestPriority 	    High
sl@0
    90
@SYMTestActions  	    Tests for writing an encrypted string to a stream,reading back the data,decrypt and
sl@0
    91
                        check with the original data.
sl@0
    92
@SYMTestExpectedResults Test must not fail
sl@0
    93
@SYMREQ                 REQ0000
sl@0
    94
*/
sl@0
    95
LOCAL_C void testSimpleStreamEncryptionL()
sl@0
    96
    {
sl@0
    97
	test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1127 "));
sl@0
    98
   	CPBEncryptElement* elementKey = CPBEncryptElement::NewL(KTestPassword);
sl@0
    99
	CleanupStack::PushL(elementKey);
sl@0
   100
	TParsePtrC parse(KFileLocationSpec);
sl@0
   101
	
sl@0
   102
	RFileWriteStream writeStream;
sl@0
   103
    writeStream.PushL();
sl@0
   104
    User::LeaveIfError(writeStream.Replace(TheFs, parse.NameAndExt(), EFileWrite));
sl@0
   105
sl@0
   106
	REncryptStream encryptStream;
sl@0
   107
	encryptStream.OpenLC(writeStream, *elementKey);
sl@0
   108
sl@0
   109
    encryptStream << KTestDes;
sl@0
   110
    encryptStream.CommitL();
sl@0
   111
    writeStream.CommitL();
sl@0
   112
    CleanupStack::PopAndDestroy(2); // encryptStream, writeStream
sl@0
   113
sl@0
   114
    RFileReadStream readStream;
sl@0
   115
    readStream.PushL();
sl@0
   116
    User::LeaveIfError(readStream.Open(TheFs, parse.NameAndExt(), EFileWrite));
sl@0
   117
sl@0
   118
    RDecryptStream decryptStream;
sl@0
   119
	decryptStream.OpenLC(readStream, *elementKey);
sl@0
   120
sl@0
   121
    decryptStream >> TheBuf;
sl@0
   122
sl@0
   123
    test(KTestDes == TheBuf);
sl@0
   124
sl@0
   125
    CleanupStack::PopAndDestroy(3, elementKey); // decryptStream, readStream
sl@0
   126
    }
sl@0
   127
sl@0
   128
/**
sl@0
   129
@SYMTestCaseID          PDS-STORE-CT-4042
sl@0
   130
@SYMTestCaseDesc	    Tests for attaching write stream and read stream to an encrypted stream.
sl@0
   131
@SYMTestPriority 	    High
sl@0
   132
@SYMTestActions  	    Encrypt data and write to a store.Read the encrypted data for decrypting and compare the result.
sl@0
   133
@SYMTestExpectedResults Test must not fail
sl@0
   134
@SYMDEF                 DEF135804
sl@0
   135
*/
sl@0
   136
LOCAL_C void testEncryptionDataAttachL()
sl@0
   137
	{
sl@0
   138
	test.Next(_L(" @SYMTestCaseID:PDS-STORE-CT-4042 "));
sl@0
   139
	CPBEncryptElement* elementKey = CPBEncryptElement::NewLC(KTestPassword);
sl@0
   140
	TParsePtrC parse(KFileLocationSpec);
sl@0
   141
	
sl@0
   142
	RFileWriteStream writeStream;
sl@0
   143
	writeStream.PushL();
sl@0
   144
	User::LeaveIfError(writeStream.Replace(TheFs, parse.NameAndExt(), EFileWrite));
sl@0
   145
	
sl@0
   146
	REncryptStream encryptStream;
sl@0
   147
	TRAPD(ret, encryptStream.AttachL(writeStream, *elementKey));
sl@0
   148
	test(ret == KErrNone);
sl@0
   149
	encryptStream.PushL();
sl@0
   150
	
sl@0
   151
	encryptStream << KTestDes;
sl@0
   152
	encryptStream.CommitL();
sl@0
   153
	writeStream.CommitL();
sl@0
   154
	
sl@0
   155
	CleanupStack::PopAndDestroy(2); // encryptStream, writeStream
sl@0
   156
	
sl@0
   157
	const CPBEncryptionData& encryptData = elementKey->EncryptionData();
sl@0
   158
	
sl@0
   159
	CPBEncryptElement* newElementKey = CPBEncryptElement::NewLC(encryptData, KTestPassword);
sl@0
   160
	
sl@0
   161
	RFileReadStream readStream;
sl@0
   162
	readStream.PushL();
sl@0
   163
	User::LeaveIfError(readStream.Open(TheFs, parse.NameAndExt(), EFileWrite));
sl@0
   164
	
sl@0
   165
	
sl@0
   166
	RDecryptStream decryptStream;
sl@0
   167
	decryptStream.AttachL(readStream, *newElementKey);
sl@0
   168
	decryptStream.PushL();
sl@0
   169
	
sl@0
   170
	decryptStream >> TheBuf;
sl@0
   171
	
sl@0
   172
	test(KTestDes == TheBuf);
sl@0
   173
	
sl@0
   174
	CleanupStack::PopAndDestroy(4, elementKey);
sl@0
   175
	}
sl@0
   176
sl@0
   177
sl@0
   178
//
sl@0
   179
// Test writing to a store
sl@0
   180
//
sl@0
   181
// Writes two streams in a store - the first containing sections of
sl@0
   182
// the test data repeated, and the the second containing the test data
sl@0
   183
// and the id of the first stream.  Returns the id of the second
sl@0
   184
// stream.
sl@0
   185
//
sl@0
   186
LOCAL_C TStreamId testWriteL(CStreamStore& aStore)
sl@0
   187
	{
sl@0
   188
	test.Next(_L("Writing..."));
sl@0
   189
	RStoreWriteStream out;
sl@0
   190
	TStreamId id=out.CreateLC(aStore);
sl@0
   191
	for (TInt i=0;i<=KTestLength;++i)
sl@0
   192
		{
sl@0
   193
		out.WriteL(KTestDes,i);
sl@0
   194
		out.WriteL(&KTestData[i],KTestLength-i);
sl@0
   195
		}
sl@0
   196
	out.CommitL();
sl@0
   197
	out.Close();
sl@0
   198
	TStreamId head=out.CreateL(aStore);
sl@0
   199
	out<<KTestDes;
sl@0
   200
	out<<id;
sl@0
   201
	out.CommitL();
sl@0
   202
	CleanupStack::PopAndDestroy();
sl@0
   203
	return head;
sl@0
   204
	}
sl@0
   205
sl@0
   206
//
sl@0
   207
// Test reading from a store
sl@0
   208
//
sl@0
   209
// Test that the data in a stream is the same as the data the
sl@0
   210
// testWriteL() function writes to the first stream.
sl@0
   211
//
sl@0
   212
LOCAL_C void testReadL(RReadStream& aStream)
sl@0
   213
	{
sl@0
   214
	for (TInt i=KTestLength;i>=0;--i)
sl@0
   215
		{
sl@0
   216
		aStream.ReadL(TheBuf,i);
sl@0
   217
		test(TheBuf.Length()==i);
sl@0
   218
		TheBuf.SetMax();
sl@0
   219
		aStream.ReadL(&TheBuf[i],KTestLength-i);
sl@0
   220
		TheBuf.SetLength(KTestLength);
sl@0
   221
		test(TheBuf==KTestDes);
sl@0
   222
		}
sl@0
   223
	}
sl@0
   224
sl@0
   225
//
sl@0
   226
// Test reading from a store
sl@0
   227
//
sl@0
   228
// Reads back and checks the data written to a store by testWriteL(),
sl@0
   229
// given the store and the id returned.
sl@0
   230
//
sl@0
   231
LOCAL_C void testReadL(const CStreamStore& aStore,TStreamId anId)
sl@0
   232
	{
sl@0
   233
	test.Next(_L("Reading..."));
sl@0
   234
	RStoreReadStream in;
sl@0
   235
	in.OpenLC(aStore,anId);
sl@0
   236
	in>>TheBuf;
sl@0
   237
	TStreamId id;
sl@0
   238
	in>>id;
sl@0
   239
	in.Close();
sl@0
   240
	in.OpenL(aStore,id);
sl@0
   241
	testReadL(in);
sl@0
   242
	CleanupStack::PopAndDestroy();
sl@0
   243
	}
sl@0
   244
sl@0
   245
//
sl@0
   246
// Test copying from one stream to another.
sl@0
   247
//
sl@0
   248
//
sl@0
   249
//
sl@0
   250
LOCAL_C void testCopyL(RWriteStream& aWriteStream,RReadStream& aReadStream)
sl@0
   251
	{
sl@0
   252
	test.Next(_L("Copying"));
sl@0
   253
	for (TInt i=KTestLength;i>=0;--i)
sl@0
   254
		{
sl@0
   255
		aWriteStream.WriteL(aReadStream,i);
sl@0
   256
		aReadStream.ReadL(aWriteStream,KTestLength-i);
sl@0
   257
		}
sl@0
   258
	}
sl@0
   259
/**
sl@0
   260
@SYMTestCaseID          SYSLIB-STORE-CT-1128
sl@0
   261
@SYMTestCaseDesc	    Tests for writing to a store
sl@0
   262
@SYMTestPriority 	    High
sl@0
   263
@SYMTestActions  	    Attempt for writing to a root store and empty store.
sl@0
   264
@SYMTestExpectedResults Test must not fail
sl@0
   265
@SYMREQ                 REQ0000
sl@0
   266
*/
sl@0
   267
LOCAL_C void testWriteL()
sl@0
   268
	{
sl@0
   269
	test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1128 Replacing host file "));
sl@0
   270
	
sl@0
   271
	TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));	
sl@0
   272
	TParse parse;
sl@0
   273
	parse.Set(drive.Name(), &KFileLocationSpec, NULL);
sl@0
   274
	
sl@0
   275
	CFileStore* file=CPermanentFileStore::ReplaceLC(TheFs,parse.NameAndExt(),EFileWrite);
sl@0
   276
	file->SetTypeL(file->Layout());
sl@0
   277
//
sl@0
   278
	test.Next(_L("Writing root store"));
sl@0
   279
	RStoreWriteStream stream;
sl@0
   280
	TStreamId embed=stream.CreateL(*file);
sl@0
   281
	CEmbeddedStore* store=CEmbeddedStore::NewLC(stream);
sl@0
   282
sl@0
   283
	CSecureStore* secure=CSecureStore::NewLC(*store, *thePBEKey);
sl@0
   284
sl@0
   285
	store->SetRootL(testWriteL(*secure));
sl@0
   286
	CleanupStack::PopAndDestroy(secure);
sl@0
   287
	store->CommitL();
sl@0
   288
	CleanupStack::PopAndDestroy();
sl@0
   289
sl@0
   290
	__UHEAP_MARK;
sl@0
   291
	TStreamId root=stream.CreateLC(*file);
sl@0
   292
	REncryptStream encrypt;
sl@0
   293
	encrypt.AttachLC(stream,*thePBEKey);
sl@0
   294
sl@0
   295
	encrypt<<_L8(" root")<<embed;
sl@0
   296
	encrypt.CommitL();
sl@0
   297
	CleanupStack::PopAndDestroy(2);
sl@0
   298
	__UHEAP_MARKEND;
sl@0
   299
sl@0
   300
	file->SetRootL(root);
sl@0
   301
//
sl@0
   302
	test.Next(_L("Writing temp store"));
sl@0
   303
	embed=stream.CreateL(*file);
sl@0
   304
	store=CEmbeddedStore::NewLC(stream);
sl@0
   305
	secure = CSecureStore::NewLC(*store, *thePBEKey);
sl@0
   306
sl@0
   307
	store->SetRootL(testWriteL(*secure));
sl@0
   308
	CleanupStack::PopAndDestroy(secure);
sl@0
   309
	store->CommitL();
sl@0
   310
	CleanupStack::PopAndDestroy();
sl@0
   311
sl@0
   312
	__UHEAP_MARK;
sl@0
   313
	TheTempId=stream.CreateLC(*file);
sl@0
   314
	encrypt.OpenLC(stream,*thePBEKey);
sl@0
   315
sl@0
   316
	encrypt<<_L8(" temp")<<embed;
sl@0
   317
	encrypt.CommitL();
sl@0
   318
	CleanupStack::PopAndDestroy();
sl@0
   319
	stream.CommitL();
sl@0
   320
	CleanupStack::PopAndDestroy();
sl@0
   321
	__UHEAP_MARKEND;
sl@0
   322
//
sl@0
   323
	file->CommitL();
sl@0
   324
	CleanupStack::PopAndDestroy(file);
sl@0
   325
	}
sl@0
   326
/**
sl@0
   327
@SYMTestCaseID          SYSLIB-STORE-CT-1129
sl@0
   328
@SYMTestCaseDesc	    Tests for reading from a store
sl@0
   329
@SYMTestPriority 	    High
sl@0
   330
@SYMTestActions  	    Attempt for reading from a root store and temporary store
sl@0
   331
@SYMTestExpectedResults Test must not fail
sl@0
   332
@SYMREQ                 REQ0000
sl@0
   333
*/
sl@0
   334
LOCAL_C void testReadL()
sl@0
   335
	{
sl@0
   336
	test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1129 Opening host file "));
sl@0
   337
	
sl@0
   338
	TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));	
sl@0
   339
	TParse parse;
sl@0
   340
	parse.Set(drive.Name(), &KFileLocationSpec, NULL);
sl@0
   341
	
sl@0
   342
	CFileStore* file=CFileStore::OpenLC(TheFs,parse.NameAndExt(),EFileRead);
sl@0
   343
//
sl@0
   344
	test.Next(_L("Reading from root store"));
sl@0
   345
	TStreamId root=file->Root();
sl@0
   346
	RStoreReadStream stream;
sl@0
   347
	stream.OpenLC(*file,root);
sl@0
   348
	RDecryptStream decrypt;
sl@0
   349
	decrypt.AttachLC(stream,*thePBEKey);
sl@0
   350
sl@0
   351
	TStreamId embed;
sl@0
   352
	TBuf8<5> b;
sl@0
   353
	decrypt>>b>>embed;
sl@0
   354
	test(b==_L8(" root"));
sl@0
   355
	CleanupStack::PopAndDestroy(2);
sl@0
   356
	stream.OpenL(*file,embed);
sl@0
   357
	CEmbeddedStore* store=CEmbeddedStore::FromLC(stream);
sl@0
   358
	CSecureStore* secure=NULL;
sl@0
   359
	secure=CSecureStore::NewLC(*store,*thePBEKey);
sl@0
   360
sl@0
   361
	testReadL(*secure,store->Root());
sl@0
   362
	CleanupStack::PopAndDestroy(2);
sl@0
   363
//
sl@0
   364
	test.Next(_L("Reading from temp store"));
sl@0
   365
	stream.OpenLC(*file,TheTempId);
sl@0
   366
	decrypt.OpenLC(stream,*thePBEKey);
sl@0
   367
sl@0
   368
	decrypt>>b>>embed;
sl@0
   369
	test(b==_L8(" temp"));
sl@0
   370
	CleanupStack::PopAndDestroy(2);
sl@0
   371
	stream.OpenL(*file,embed);
sl@0
   372
	store=CEmbeddedStore::FromLC(stream);
sl@0
   373
	secure=CSecureStore::NewLC(*store,*thePBEKey);
sl@0
   374
sl@0
   375
	testReadL(*secure,store->Root());
sl@0
   376
//
sl@0
   377
	CleanupStack::PopAndDestroy(3);
sl@0
   378
	}
sl@0
   379
/**
sl@0
   380
@SYMTestCaseID          SYSLIB-STORE-CT-1130
sl@0
   381
@SYMTestCaseDesc	    Tests copying from one stream to another stream
sl@0
   382
@SYMTestPriority 	    High
sl@0
   383
@SYMTestActions  	    Attempt for copying using different transfer sizes
sl@0
   384
@SYMTestExpectedResults Test must not fail
sl@0
   385
@SYMREQ                 REQ0000
sl@0
   386
*/
sl@0
   387
LOCAL_C void testCopyL()
sl@0
   388
	{
sl@0
   389
	test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1130 Opening host file "));
sl@0
   390
	
sl@0
   391
	TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));	
sl@0
   392
	TParse parse;
sl@0
   393
	parse.Set(drive.Name(), &KFileLocationSpec, NULL);
sl@0
   394
	
sl@0
   395
	CFileStore* file=CFileStore::OpenLC(TheFs,parse.NameAndExt(),EFileRead|EFileWrite);
sl@0
   396
//
sl@0
   397
	test.Next(_L("Opening source (root) store"));
sl@0
   398
	TStreamId root=file->Root();
sl@0
   399
	RStoreReadStream src;
sl@0
   400
	src.OpenLC(*file,root);
sl@0
   401
	RDecryptStream decrypt;
sl@0
   402
	decrypt.OpenLC(src,*thePBEKey);
sl@0
   403
sl@0
   404
	TBuf8<5> b;
sl@0
   405
	TStreamId embed;
sl@0
   406
	decrypt>>b>>embed;
sl@0
   407
	test(b==_L8(" root"));
sl@0
   408
	CleanupStack::PopAndDestroy(2); // src, decrypt
sl@0
   409
	src.OpenL(*file,embed);
sl@0
   410
	CEmbeddedStore* source=CEmbeddedStore::FromLC(src);
sl@0
   411
	CSecureStore* ssource=NULL;
sl@0
   412
	ssource=CSecureStore::NewLC(*source,*thePBEKey);
sl@0
   413
sl@0
   414
	test.Next(_L("Creating target store"));
sl@0
   415
	RStoreWriteStream trg;
sl@0
   416
	trg.CreateL(*file);
sl@0
   417
	CEmbeddedStore* target=CEmbeddedStore::NewLC(trg);
sl@0
   418
	CSecureStore* starget=NULL;
sl@0
   419
	starget=CSecureStore::NewLC(*target,*thePBEKey);
sl@0
   420
sl@0
   421
	test.Next(_L("Copying using small transfers"));
sl@0
   422
	RStoreReadStream in;
sl@0
   423
	in.OpenL(*ssource,source->Root());
sl@0
   424
	in>>TheBuf;
sl@0
   425
	TStreamId copyId;
sl@0
   426
	in>>copyId;
sl@0
   427
	in.Close();
sl@0
   428
	in.OpenL(*ssource,copyId);
sl@0
   429
	RStoreWriteStream out;
sl@0
   430
	TStreamId id=out.CreateL(*starget);
sl@0
   431
	testCopyL(out,in);
sl@0
   432
	out.CommitL();
sl@0
   433
	out.Close();
sl@0
   434
	in.Close();
sl@0
   435
	in.OpenL(*starget,id);
sl@0
   436
	testReadL(in);
sl@0
   437
	in.Close();
sl@0
   438
//
sl@0
   439
	test.Next(_L("Copying using a single big transfer"));
sl@0
   440
	in.OpenL(*ssource,copyId);
sl@0
   441
	id=out.CreateL(*starget);
sl@0
   442
	in.ReadL(out,KTestTotal);
sl@0
   443
	out.CommitL();
sl@0
   444
	out.Close();
sl@0
   445
	in.Close();
sl@0
   446
	in.OpenL(*starget,id);
sl@0
   447
	testReadL(in);
sl@0
   448
	in.Close();
sl@0
   449
	in.OpenL(*ssource,copyId);
sl@0
   450
	id=out.CreateL(*starget);
sl@0
   451
	out.WriteL(in,KTestTotal);
sl@0
   452
	out.CommitL();
sl@0
   453
	out.Close();
sl@0
   454
	in.Close();
sl@0
   455
	in.OpenL(*starget,id);
sl@0
   456
	testReadL(in);
sl@0
   457
	in.Close();
sl@0
   458
//
sl@0
   459
	CleanupStack::PopAndDestroy(5);
sl@0
   460
	}
sl@0
   461
/**
sl@0
   462
@SYMTestCaseID          SYSLIB-STORE-CT-1131
sl@0
   463
@SYMTestCaseDesc	    Writing and reading back a long stream test
sl@0
   464
@SYMTestPriority 	    High
sl@0
   465
@SYMTestActions  	    Attempt to write long data to a stream and read back and test for the integrity of the data.
sl@0
   466
@SYMTestExpectedResults Test must not fail
sl@0
   467
@SYMREQ                 REQ0000
sl@0
   468
*/
sl@0
   469
LOCAL_C void testBugL()
sl@0
   470
	{
sl@0
   471
	test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1131 Opening host file "));
sl@0
   472
	
sl@0
   473
	TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));	
sl@0
   474
	TParse parse;
sl@0
   475
	parse.Set(drive.Name(), &KFileLocationSpec, NULL);
sl@0
   476
	
sl@0
   477
	CFileStore* file=CDirectFileStore::ReplaceLC(TheFs,parse.NameAndExt(),EFileRead|EFileWrite);
sl@0
   478
	file->SetTypeL(file->Layout());
sl@0
   479
	CSecureStore* secure=NULL;
sl@0
   480
sl@0
   481
		secure=CSecureStore::NewLC(*file,*thePBEKey);
sl@0
   482
sl@0
   483
	test.Next(_L("Writing long stream"));
sl@0
   484
	RStoreWriteStream out;
sl@0
   485
	TStreamId id=out.CreateLC(*secure);
sl@0
   486
	TInt ii;
sl@0
   487
	for (ii=0;ii<400;++ii)
sl@0
   488
		out<<_L("a goodly length of data");
sl@0
   489
	out.CommitL();
sl@0
   490
	CleanupStack::PopAndDestroy();
sl@0
   491
	file->SetRootL(out.CreateLC(*secure));
sl@0
   492
	out<<_L("spam")<<id;
sl@0
   493
	out.CommitL();
sl@0
   494
	CleanupStack::PopAndDestroy(2, secure);
sl@0
   495
	file->CommitL();
sl@0
   496
	CleanupStack::PopAndDestroy();
sl@0
   497
//
sl@0
   498
	test.Next(_L("Opening host file"));
sl@0
   499
	file=CFileStore::OpenLC(TheFs,parse.NameAndExt(),EFileRead);
sl@0
   500
	secure=CSecureStore::NewLC(*file,*thePBEKey);
sl@0
   501
//
sl@0
   502
	TBuf<30> buf;
sl@0
   503
	test.Next(_L("Reading"));
sl@0
   504
	RStoreReadStream in;
sl@0
   505
	in.OpenLC(*secure,file->Root());
sl@0
   506
	in>>buf>>id;
sl@0
   507
	CleanupStack::PopAndDestroy();
sl@0
   508
	test(buf==_L("spam"));
sl@0
   509
	in.OpenLC(*secure,id);
sl@0
   510
	for (ii=0;ii<400;++ii)
sl@0
   511
		{
sl@0
   512
		in>>buf;
sl@0
   513
		test (buf==_L("a goodly length of data"));
sl@0
   514
		}
sl@0
   515
	CleanupStack::PopAndDestroy(3);
sl@0
   516
	}
sl@0
   517
sl@0
   518
/**
sl@0
   519
@SYMTestCaseID          PDS-STORE-CT-4016
sl@0
   520
@SYMTestCaseDesc	    Tests for CPBEncryptElement
sl@0
   521
@SYMTestPriority 	    High
sl@0
   522
@SYMTestActions  	    Externalizing and internalizing CPBEncryptionData. Tests for constructors.
sl@0
   523
@SYMTestExpectedResults Externalizing must not fail. After internalization CPBEncryptionData object should
sl@0
   524
						be valid. Object created with all constructors should be valid.
sl@0
   525
@SYMDEF                 DEF135804
sl@0
   526
*/
sl@0
   527
LOCAL_C void testForgottenAPI_L()
sl@0
   528
	{
sl@0
   529
	test.Next(_L("@SYMTestCaseID PDS-STORE-CT-4016: Tests for CPBEncryptElement"));
sl@0
   530
	CBufFlat* buffer = CBufFlat::NewL(10*1024);
sl@0
   531
	CleanupStack::PushL(buffer);
sl@0
   532
	RBufWriteStream wstr(*buffer,0);
sl@0
   533
	
sl@0
   534
	CPBEncryptElement* elementKey = CPBEncryptElement::NewLC(KTestPassword);
sl@0
   535
    const CPBEncryptionData& encryptData = elementKey->EncryptionData();    
sl@0
   536
    wstr << encryptData;
sl@0
   537
    CleanupStack::PopAndDestroy();
sl@0
   538
	
sl@0
   539
	wstr.CommitL();
sl@0
   540
	wstr.Close();
sl@0
   541
	
sl@0
   542
	RBufReadStream rstr(*buffer,0);
sl@0
   543
	CPBEncryptionData* enData = CPBEncryptionData::NewL(rstr);
sl@0
   544
	test(enData != NULL);
sl@0
   545
	delete enData;
sl@0
   546
	enData = NULL;
sl@0
   547
	rstr.Close();
sl@0
   548
	rstr.Open(*buffer,0);
sl@0
   549
	enData = CPBEncryptionData::NewLC(rstr);
sl@0
   550
	test(enData != NULL);
sl@0
   551
	CleanupStack::PopAndDestroy();
sl@0
   552
	enData = NULL;
sl@0
   553
	
sl@0
   554
	rstr.Close();
sl@0
   555
	
sl@0
   556
	CleanupStack::PopAndDestroy();
sl@0
   557
	}
sl@0
   558
sl@0
   559
/**
sl@0
   560
@SYMTestCaseID          PDS-STORE-CT-4019
sl@0
   561
@SYMTestCaseDesc	    Tests adding and deleting a stream from securestore
sl@0
   562
@SYMTestPriority 	    High
sl@0
   563
@SYMTestActions  	    Create a new stream and Delete it again
sl@0
   564
@SYMTestExpectedResults Test must not fail
sl@0
   565
@SYMDEF                 DEF135804
sl@0
   566
*/
sl@0
   567
LOCAL_C void testExtendDeleteL()
sl@0
   568
	{
sl@0
   569
	test.Next(_L("@SYMTestCaseID PDS-STORE-CT-4019"));
sl@0
   570
	TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));	
sl@0
   571
	TParse parse;
sl@0
   572
	parse.Set(drive.Name(), &KFileLocationSpec, NULL);
sl@0
   573
		
sl@0
   574
	test.Next(_L("Testing Extend"));
sl@0
   575
	CFileStore* file=CPermanentFileStore::ReplaceLC(TheFs,parse.NameAndExt(),EFileRead|EFileWrite);
sl@0
   576
	file->SetTypeL(file->Layout());
sl@0
   577
	CSecureStore* secure=NULL;
sl@0
   578
sl@0
   579
	secure=CSecureStore::NewLC(*file,*thePBEKey);
sl@0
   580
	TStreamId id = secure->ExtendL();
sl@0
   581
	test(id != NULL);
sl@0
   582
	test.Next(_L("Testing Delete"));		
sl@0
   583
	TRAPD(r, secure->DeleteL(id));
sl@0
   584
	test(r == KErrNone);
sl@0
   585
	TRAP(r, secure->DeleteL(id));
sl@0
   586
	test(r == KErrNotFound);
sl@0
   587
	
sl@0
   588
	CleanupStack::PopAndDestroy(2);
sl@0
   589
	
sl@0
   590
	}
sl@0
   591
sl@0
   592
/**
sl@0
   593
@SYMTestCaseID          PDS-STORE-CT-4020
sl@0
   594
@SYMTestCaseDesc	    Tests writing and replacing a stream from securestore
sl@0
   595
@SYMTestPriority 	    High
sl@0
   596
@SYMTestActions  	    Create a new stream in the store and then open it for replacement
sl@0
   597
@SYMTestExpectedResults stream is created and writtenn to successfully
sl@0
   598
@SYMDEF                 DEF135804
sl@0
   599
*/
sl@0
   600
LOCAL_C void testWriteReplaceL()
sl@0
   601
	{
sl@0
   602
	test.Next(_L("@SYMTestCaseID PDS-STORE-CT-4020"));
sl@0
   603
	TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));	
sl@0
   604
	TParse parse;
sl@0
   605
	parse.Set(drive.Name(), &KFileLocationSpec, NULL);
sl@0
   606
		
sl@0
   607
	test.Next(_L("Testing Extend"));
sl@0
   608
	CFileStore* file=CPermanentFileStore::ReplaceLC(TheFs,parse.NameAndExt(),EFileRead|EFileWrite);
sl@0
   609
	file->SetTypeL(file->Layout());
sl@0
   610
	CSecureStore* secure=NULL;
sl@0
   611
sl@0
   612
	secure=CSecureStore::NewLC(*file,*thePBEKey);
sl@0
   613
	RStoreWriteStream out;
sl@0
   614
	TStreamId id = out.CreateL(*secure);
sl@0
   615
	test(id != NULL);
sl@0
   616
	out.Close();
sl@0
   617
	TRAPD(r, out.OpenL(*secure, id) );
sl@0
   618
	test(r == KErrNone);
sl@0
   619
	out.WriteL(KTestDes,8);
sl@0
   620
	out.CommitL();
sl@0
   621
	out.Close();
sl@0
   622
	r = secure->Commit();
sl@0
   623
	test(r == KErrNone);
sl@0
   624
	
sl@0
   625
	TRAP(r,out.ReplaceL(*secure, id));
sl@0
   626
	test(r == KErrNone);
sl@0
   627
	out.WriteL(KTestDes,8);
sl@0
   628
	out.CommitL();
sl@0
   629
	out.Close();
sl@0
   630
	secure->Revert();
sl@0
   631
	out.Close();
sl@0
   632
	
sl@0
   633
	CleanupStack::PopAndDestroy(2);
sl@0
   634
		
sl@0
   635
	}
sl@0
   636
sl@0
   637
sl@0
   638
LOCAL_C void setupTestDirectory()
sl@0
   639
//
sl@0
   640
// Prepare the test directory.
sl@0
   641
//
sl@0
   642
    {
sl@0
   643
	TInt r=TheFs.Connect();
sl@0
   644
	test(r==KErrNone);
sl@0
   645
//
sl@0
   646
	TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));	
sl@0
   647
	TParse parse;
sl@0
   648
	parse.Set(drive.Name(), &KFileLocationSpec, NULL);
sl@0
   649
	
sl@0
   650
	r=TheFs.MkDir(parse.DriveAndPath());
sl@0
   651
	test(r==KErrNone||r==KErrAlreadyExists);
sl@0
   652
	r=TheFs.SetSessionPath(parse.DriveAndPath());
sl@0
   653
	test(r==KErrNone);
sl@0
   654
	}
sl@0
   655
sl@0
   656
LOCAL_C void setupCleanup()
sl@0
   657
//
sl@0
   658
// Initialise the cleanup stack.
sl@0
   659
//
sl@0
   660
    {
sl@0
   661
	TheTrapCleanup=CTrapCleanup::New();
sl@0
   662
	test(TheTrapCleanup!=NULL);
sl@0
   663
	TRAPD(r,\
sl@0
   664
		{\
sl@0
   665
		for (TInt i=KTestCleanupStack;i>0;i--)\
sl@0
   666
			CleanupStack::PushL((TAny*)0);\
sl@0
   667
		CleanupStack::Pop(KTestCleanupStack);\
sl@0
   668
		});
sl@0
   669
	test(r==KErrNone);
sl@0
   670
	}
sl@0
   671
sl@0
   672
LOCAL_C void runTestsL()
sl@0
   673
    {
sl@0
   674
	test.Start(_L("Test direct file store"));
sl@0
   675
	TInt r = KErrNone;
sl@0
   676
sl@0
   677
//	New PBE tests
sl@0
   678
	TRAP(r,testEncryptionDataL());
sl@0
   679
	test(r==KErrNone);
sl@0
   680
	TRAP(r,testSimpleStreamEncryptionL());
sl@0
   681
	test(r==KErrNone);
sl@0
   682
	
sl@0
   683
	
sl@0
   684
	TRAP(r,testEncryptionDataAttachL());
sl@0
   685
	test(r==KErrNone);
sl@0
   686
	
sl@0
   687
sl@0
   688
//	Old API tests with new PBE parameters
sl@0
   689
	thePBEKey = CPBEncryptSet::NewL(KTestPassword);
sl@0
   690
sl@0
   691
	TRAP(r,testWriteL());
sl@0
   692
	test(r==KErrNone);
sl@0
   693
	TRAP(r,testReadL());
sl@0
   694
	test(r==KErrNone);
sl@0
   695
	TRAP(r,testCopyL());
sl@0
   696
	test(r==KErrNone);
sl@0
   697
	TRAP(r,testBugL());
sl@0
   698
	test(r==KErrNone);
sl@0
   699
	TRAP(r,testForgottenAPI_L());
sl@0
   700
	test(r==KErrNone);
sl@0
   701
	TRAP(r,testExtendDeleteL());
sl@0
   702
	test(r==KErrNone);
sl@0
   703
	TRAP(r,testWriteReplaceL());
sl@0
   704
		test(r==KErrNone);
sl@0
   705
sl@0
   706
	delete thePBEKey;
sl@0
   707
sl@0
   708
    }
sl@0
   709
sl@0
   710
LOCAL_C void DeleteDataFile(const TDesC& aFullName)
sl@0
   711
	{
sl@0
   712
	RFs fsSession;
sl@0
   713
	TInt err = fsSession.Connect();
sl@0
   714
	if(err == KErrNone)
sl@0
   715
		{
sl@0
   716
		TEntry entry;
sl@0
   717
		if(fsSession.Entry(aFullName, entry) == KErrNone)
sl@0
   718
			{
sl@0
   719
			RDebug::Print(_L("Deleting \"%S\" file.\n"), &aFullName);
sl@0
   720
			err = fsSession.SetAtt(aFullName, 0, KEntryAttReadOnly);
sl@0
   721
			if(err != KErrNone)
sl@0
   722
				{
sl@0
   723
				RDebug::Print(_L("Error %d changing \"%S\" file attributes.\n"), err, &aFullName);
sl@0
   724
				}
sl@0
   725
			err = fsSession.Delete(aFullName);
sl@0
   726
			if(err != KErrNone)
sl@0
   727
				{
sl@0
   728
				RDebug::Print(_L("Error %d deleting \"%S\" file.\n"), err, &aFullName);
sl@0
   729
				}
sl@0
   730
			}
sl@0
   731
		fsSession.Close();
sl@0
   732
		}
sl@0
   733
	else
sl@0
   734
		{
sl@0
   735
		RDebug::Print(_L("Error %d connecting file session. File: %S.\n"), err, &aFullName);
sl@0
   736
		}
sl@0
   737
	}
sl@0
   738
sl@0
   739
GLDEF_C TInt E32Main()
sl@0
   740
//
sl@0
   741
// Test streaming conversions.
sl@0
   742
//
sl@0
   743
    {
sl@0
   744
	test.Title();
sl@0
   745
	setupTestDirectory();
sl@0
   746
	setupCleanup();
sl@0
   747
	__UHEAP_MARK;
sl@0
   748
//
sl@0
   749
    TRAPD(r, runTestsL());
sl@0
   750
    test(r == KErrNone);
sl@0
   751
sl@0
   752
    //deletion of data files must be before call to .End() - DEF047652
sl@0
   753
    TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));	
sl@0
   754
	TParse parse;
sl@0
   755
	parse.Set(drive.Name(), &KFileLocationSpec, NULL);
sl@0
   756
	::DeleteDataFile(parse.FullName());
sl@0
   757
	
sl@0
   758
    test.End();
sl@0
   759
//
sl@0
   760
	__UHEAP_MARKEND;
sl@0
   761
sl@0
   762
	delete TheTrapCleanup;
sl@0
   763
	TheFs.Close();
sl@0
   764
	test.Close();
sl@0
   765
	return r!=KErrNone;
sl@0
   766
    }