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