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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
23 const TInt KTestCleanupStack=0x20;
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"));
33 LOCAL_D CTrapCleanup* TheTrapCleanup;
34 LOCAL_D RTest test(_L("t_storcrypt"));
36 LOCAL_D TStreamId TheTempId;
37 LOCAL_D TBuf8<KTestLength+1> TheBuf;
39 LOCAL_D CPBEncryptSet* thePBEKey;
42 @SYMTestCaseID SYSLIB-STORE-CT-1126
43 @SYMTestCaseDesc Tests for writing and reading an encrypted data to store
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
49 LOCAL_C void testEncryptionDataL()
51 test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1126 "));
52 CPBEncryptElement* elementKey = CPBEncryptElement::NewLC(KTestPassword);
53 TParsePtrC parse(KFileLocationSpec);
55 RFileWriteStream writeStream;
57 User::LeaveIfError(writeStream.Replace(TheFs, parse.NameAndExt(), EFileWrite));
59 REncryptStream encryptStream;
60 encryptStream.OpenLC(writeStream, *elementKey);
62 encryptStream << KTestDes;
63 encryptStream.CommitL();
64 writeStream.CommitL();
65 CleanupStack::PopAndDestroy(2); // encryptStream, writeStream
67 const CPBEncryptionData& encryptData = elementKey->EncryptionData();
69 CPBEncryptElement* newElementKey = CPBEncryptElement::NewLC(encryptData, KTestPassword);
71 RFileReadStream readStream;
73 User::LeaveIfError(readStream.Open(TheFs, parse.NameAndExt(), EFileWrite));
75 RDecryptStream decryptStream;
76 decryptStream.OpenLC(readStream, *newElementKey);
78 decryptStream >> TheBuf;
80 test(KTestDes == TheBuf);
82 CleanupStack::PopAndDestroy(4, elementKey);
86 @SYMTestCaseID SYSLIB-STORE-CT-1127
87 @SYMTestCaseDesc Stream encryption test.
88 Tests the functionality of REncryptStream and RDecryptStream classes
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
95 LOCAL_C void testSimpleStreamEncryptionL()
97 test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1127 "));
98 CPBEncryptElement* elementKey = CPBEncryptElement::NewL(KTestPassword);
99 CleanupStack::PushL(elementKey);
100 TParsePtrC parse(KFileLocationSpec);
102 RFileWriteStream writeStream;
104 User::LeaveIfError(writeStream.Replace(TheFs, parse.NameAndExt(), EFileWrite));
106 REncryptStream encryptStream;
107 encryptStream.OpenLC(writeStream, *elementKey);
109 encryptStream << KTestDes;
110 encryptStream.CommitL();
111 writeStream.CommitL();
112 CleanupStack::PopAndDestroy(2); // encryptStream, writeStream
114 RFileReadStream readStream;
116 User::LeaveIfError(readStream.Open(TheFs, parse.NameAndExt(), EFileWrite));
118 RDecryptStream decryptStream;
119 decryptStream.OpenLC(readStream, *elementKey);
121 decryptStream >> TheBuf;
123 test(KTestDes == TheBuf);
125 CleanupStack::PopAndDestroy(3, elementKey); // decryptStream, readStream
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
136 LOCAL_C void testEncryptionDataAttachL()
138 test.Next(_L(" @SYMTestCaseID:PDS-STORE-CT-4042 "));
139 CPBEncryptElement* elementKey = CPBEncryptElement::NewLC(KTestPassword);
140 TParsePtrC parse(KFileLocationSpec);
142 RFileWriteStream writeStream;
144 User::LeaveIfError(writeStream.Replace(TheFs, parse.NameAndExt(), EFileWrite));
146 REncryptStream encryptStream;
147 TRAPD(ret, encryptStream.AttachL(writeStream, *elementKey));
148 test(ret == KErrNone);
149 encryptStream.PushL();
151 encryptStream << KTestDes;
152 encryptStream.CommitL();
153 writeStream.CommitL();
155 CleanupStack::PopAndDestroy(2); // encryptStream, writeStream
157 const CPBEncryptionData& encryptData = elementKey->EncryptionData();
159 CPBEncryptElement* newElementKey = CPBEncryptElement::NewLC(encryptData, KTestPassword);
161 RFileReadStream readStream;
163 User::LeaveIfError(readStream.Open(TheFs, parse.NameAndExt(), EFileWrite));
166 RDecryptStream decryptStream;
167 decryptStream.AttachL(readStream, *newElementKey);
168 decryptStream.PushL();
170 decryptStream >> TheBuf;
172 test(KTestDes == TheBuf);
174 CleanupStack::PopAndDestroy(4, elementKey);
179 // Test writing to a store
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
186 LOCAL_C TStreamId testWriteL(CStreamStore& aStore)
188 test.Next(_L("Writing..."));
189 RStoreWriteStream out;
190 TStreamId id=out.CreateLC(aStore);
191 for (TInt i=0;i<=KTestLength;++i)
193 out.WriteL(KTestDes,i);
194 out.WriteL(&KTestData[i],KTestLength-i);
198 TStreamId head=out.CreateL(aStore);
202 CleanupStack::PopAndDestroy();
207 // Test reading from a store
209 // Test that the data in a stream is the same as the data the
210 // testWriteL() function writes to the first stream.
212 LOCAL_C void testReadL(RReadStream& aStream)
214 for (TInt i=KTestLength;i>=0;--i)
216 aStream.ReadL(TheBuf,i);
217 test(TheBuf.Length()==i);
219 aStream.ReadL(&TheBuf[i],KTestLength-i);
220 TheBuf.SetLength(KTestLength);
221 test(TheBuf==KTestDes);
226 // Test reading from a store
228 // Reads back and checks the data written to a store by testWriteL(),
229 // given the store and the id returned.
231 LOCAL_C void testReadL(const CStreamStore& aStore,TStreamId anId)
233 test.Next(_L("Reading..."));
235 in.OpenLC(aStore,anId);
242 CleanupStack::PopAndDestroy();
246 // Test copying from one stream to another.
250 LOCAL_C void testCopyL(RWriteStream& aWriteStream,RReadStream& aReadStream)
252 test.Next(_L("Copying"));
253 for (TInt i=KTestLength;i>=0;--i)
255 aWriteStream.WriteL(aReadStream,i);
256 aReadStream.ReadL(aWriteStream,KTestLength-i);
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
267 LOCAL_C void testWriteL()
269 test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1128 Replacing host file "));
271 TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));
273 parse.Set(drive.Name(), &KFileLocationSpec, NULL);
275 CFileStore* file=CPermanentFileStore::ReplaceLC(TheFs,parse.NameAndExt(),EFileWrite);
276 file->SetTypeL(file->Layout());
278 test.Next(_L("Writing root store"));
279 RStoreWriteStream stream;
280 TStreamId embed=stream.CreateL(*file);
281 CEmbeddedStore* store=CEmbeddedStore::NewLC(stream);
283 CSecureStore* secure=CSecureStore::NewLC(*store, *thePBEKey);
285 store->SetRootL(testWriteL(*secure));
286 CleanupStack::PopAndDestroy(secure);
288 CleanupStack::PopAndDestroy();
291 TStreamId root=stream.CreateLC(*file);
292 REncryptStream encrypt;
293 encrypt.AttachLC(stream,*thePBEKey);
295 encrypt<<_L8(" root")<<embed;
297 CleanupStack::PopAndDestroy(2);
300 file->SetRootL(root);
302 test.Next(_L("Writing temp store"));
303 embed=stream.CreateL(*file);
304 store=CEmbeddedStore::NewLC(stream);
305 secure = CSecureStore::NewLC(*store, *thePBEKey);
307 store->SetRootL(testWriteL(*secure));
308 CleanupStack::PopAndDestroy(secure);
310 CleanupStack::PopAndDestroy();
313 TheTempId=stream.CreateLC(*file);
314 encrypt.OpenLC(stream,*thePBEKey);
316 encrypt<<_L8(" temp")<<embed;
318 CleanupStack::PopAndDestroy();
320 CleanupStack::PopAndDestroy();
324 CleanupStack::PopAndDestroy(file);
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
334 LOCAL_C void testReadL()
336 test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1129 Opening host file "));
338 TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));
340 parse.Set(drive.Name(), &KFileLocationSpec, NULL);
342 CFileStore* file=CFileStore::OpenLC(TheFs,parse.NameAndExt(),EFileRead);
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);
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);
361 testReadL(*secure,store->Root());
362 CleanupStack::PopAndDestroy(2);
364 test.Next(_L("Reading from temp store"));
365 stream.OpenLC(*file,TheTempId);
366 decrypt.OpenLC(stream,*thePBEKey);
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);
375 testReadL(*secure,store->Root());
377 CleanupStack::PopAndDestroy(3);
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
387 LOCAL_C void testCopyL()
389 test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1130 Opening host file "));
391 TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));
393 parse.Set(drive.Name(), &KFileLocationSpec, NULL);
395 CFileStore* file=CFileStore::OpenLC(TheFs,parse.NameAndExt(),EFileRead|EFileWrite);
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);
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);
414 test.Next(_L("Creating target store"));
415 RStoreWriteStream trg;
417 CEmbeddedStore* target=CEmbeddedStore::NewLC(trg);
418 CSecureStore* starget=NULL;
419 starget=CSecureStore::NewLC(*target,*thePBEKey);
421 test.Next(_L("Copying using small transfers"));
423 in.OpenL(*ssource,source->Root());
428 in.OpenL(*ssource,copyId);
429 RStoreWriteStream out;
430 TStreamId id=out.CreateL(*starget);
435 in.OpenL(*starget,id);
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);
446 in.OpenL(*starget,id);
449 in.OpenL(*ssource,copyId);
450 id=out.CreateL(*starget);
451 out.WriteL(in,KTestTotal);
455 in.OpenL(*starget,id);
459 CleanupStack::PopAndDestroy(5);
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
469 LOCAL_C void testBugL()
471 test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1131 Opening host file "));
473 TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));
475 parse.Set(drive.Name(), &KFileLocationSpec, NULL);
477 CFileStore* file=CDirectFileStore::ReplaceLC(TheFs,parse.NameAndExt(),EFileRead|EFileWrite);
478 file->SetTypeL(file->Layout());
479 CSecureStore* secure=NULL;
481 secure=CSecureStore::NewLC(*file,*thePBEKey);
483 test.Next(_L("Writing long stream"));
484 RStoreWriteStream out;
485 TStreamId id=out.CreateLC(*secure);
487 for (ii=0;ii<400;++ii)
488 out<<_L("a goodly length of data");
490 CleanupStack::PopAndDestroy();
491 file->SetRootL(out.CreateLC(*secure));
494 CleanupStack::PopAndDestroy(2, secure);
496 CleanupStack::PopAndDestroy();
498 test.Next(_L("Opening host file"));
499 file=CFileStore::OpenLC(TheFs,parse.NameAndExt(),EFileRead);
500 secure=CSecureStore::NewLC(*file,*thePBEKey);
503 test.Next(_L("Reading"));
505 in.OpenLC(*secure,file->Root());
507 CleanupStack::PopAndDestroy();
508 test(buf==_L("spam"));
509 in.OpenLC(*secure,id);
510 for (ii=0;ii<400;++ii)
513 test (buf==_L("a goodly length of data"));
515 CleanupStack::PopAndDestroy(3);
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.
527 LOCAL_C void testForgottenAPI_L()
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);
534 CPBEncryptElement* elementKey = CPBEncryptElement::NewLC(KTestPassword);
535 const CPBEncryptionData& encryptData = elementKey->EncryptionData();
537 CleanupStack::PopAndDestroy();
542 RBufReadStream rstr(*buffer,0);
543 CPBEncryptionData* enData = CPBEncryptionData::NewL(rstr);
544 test(enData != NULL);
548 rstr.Open(*buffer,0);
549 enData = CPBEncryptionData::NewLC(rstr);
550 test(enData != NULL);
551 CleanupStack::PopAndDestroy();
556 CleanupStack::PopAndDestroy();
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
567 LOCAL_C void testExtendDeleteL()
569 test.Next(_L("@SYMTestCaseID PDS-STORE-CT-4019"));
570 TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));
572 parse.Set(drive.Name(), &KFileLocationSpec, NULL);
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;
579 secure=CSecureStore::NewLC(*file,*thePBEKey);
580 TStreamId id = secure->ExtendL();
582 test.Next(_L("Testing Delete"));
583 TRAPD(r, secure->DeleteL(id));
585 TRAP(r, secure->DeleteL(id));
586 test(r == KErrNotFound);
588 CleanupStack::PopAndDestroy(2);
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
600 LOCAL_C void testWriteReplaceL()
602 test.Next(_L("@SYMTestCaseID PDS-STORE-CT-4020"));
603 TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));
605 parse.Set(drive.Name(), &KFileLocationSpec, NULL);
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;
612 secure=CSecureStore::NewLC(*file,*thePBEKey);
613 RStoreWriteStream out;
614 TStreamId id = out.CreateL(*secure);
617 TRAPD(r, out.OpenL(*secure, id) );
619 out.WriteL(KTestDes,8);
622 r = secure->Commit();
625 TRAP(r,out.ReplaceL(*secure, id));
627 out.WriteL(KTestDes,8);
633 CleanupStack::PopAndDestroy(2);
638 LOCAL_C void setupTestDirectory()
640 // Prepare the test directory.
643 TInt r=TheFs.Connect();
646 TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));
648 parse.Set(drive.Name(), &KFileLocationSpec, NULL);
650 r=TheFs.MkDir(parse.DriveAndPath());
651 test(r==KErrNone||r==KErrAlreadyExists);
652 r=TheFs.SetSessionPath(parse.DriveAndPath());
656 LOCAL_C void setupCleanup()
658 // Initialise the cleanup stack.
661 TheTrapCleanup=CTrapCleanup::New();
662 test(TheTrapCleanup!=NULL);
665 for (TInt i=KTestCleanupStack;i>0;i--)\
666 CleanupStack::PushL((TAny*)0);\
667 CleanupStack::Pop(KTestCleanupStack);\
672 LOCAL_C void runTestsL()
674 test.Start(_L("Test direct file store"));
678 TRAP(r,testEncryptionDataL());
680 TRAP(r,testSimpleStreamEncryptionL());
684 TRAP(r,testEncryptionDataAttachL());
688 // Old API tests with new PBE parameters
689 thePBEKey = CPBEncryptSet::NewL(KTestPassword);
691 TRAP(r,testWriteL());
699 TRAP(r,testForgottenAPI_L());
701 TRAP(r,testExtendDeleteL());
703 TRAP(r,testWriteReplaceL());
710 LOCAL_C void DeleteDataFile(const TDesC& aFullName)
713 TInt err = fsSession.Connect();
717 if(fsSession.Entry(aFullName, entry) == KErrNone)
719 RDebug::Print(_L("Deleting \"%S\" file.\n"), &aFullName);
720 err = fsSession.SetAtt(aFullName, 0, KEntryAttReadOnly);
723 RDebug::Print(_L("Error %d changing \"%S\" file attributes.\n"), err, &aFullName);
725 err = fsSession.Delete(aFullName);
728 RDebug::Print(_L("Error %d deleting \"%S\" file.\n"), err, &aFullName);
735 RDebug::Print(_L("Error %d connecting file session. File: %S.\n"), err, &aFullName);
739 GLDEF_C TInt E32Main()
741 // Test streaming conversions.
745 setupTestDirectory();
749 TRAPD(r, runTestsL());
752 //deletion of data files must be before call to .End() - DEF047652
753 TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));
755 parse.Set(drive.Name(), &KFileLocationSpec, NULL);
756 ::DeleteDataFile(parse.FullName());
762 delete TheTrapCleanup;