1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/persistentdata/persistentstorage/store/TCRYPT/t_storcrypt.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,766 @@
1.4 +// Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +//
1.18 +
1.19 +#include <s32file.h>
1.20 +#include <s32crypt.h>
1.21 +#include <e32test.h>
1.22 +#include <s32mem.h>
1.23 +#include <pbedata.h>
1.24 +#include <pbe.h>
1.25 +
1.26 +const TInt KTestCleanupStack=0x20;
1.27 +
1.28 +// This is a path specification and should not be used as is
1.29 +_LIT(KFileLocationSpec, "Z:\\STOR-TST\\T_CRYPT.DAT");
1.30 +const TUint8* KTestData=_S8("0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ");
1.31 +const TInt KTestLength=36;
1.32 +const TInt KTestTotal=KTestLength*(KTestLength+1);
1.33 +const TPtrC8 KTestDes(KTestData,KTestLength);
1.34 +const TPBPassword KTestPassword(_L("The password"));
1.35 +
1.36 +LOCAL_D CTrapCleanup* TheTrapCleanup;
1.37 +LOCAL_D RTest test(_L("t_storcrypt"));
1.38 +LOCAL_D RFs TheFs;
1.39 +LOCAL_D TStreamId TheTempId;
1.40 +LOCAL_D TBuf8<KTestLength+1> TheBuf;
1.41 +
1.42 +LOCAL_D CPBEncryptSet* thePBEKey;
1.43 +
1.44 +/**
1.45 +@SYMTestCaseID SYSLIB-STORE-CT-1126
1.46 +@SYMTestCaseDesc Tests for writing and reading an encrypted data to store
1.47 +@SYMTestPriority High
1.48 +@SYMTestActions Encrypt data and write to a store.Read the encrypted data for decrypting and compare the result.
1.49 +@SYMTestExpectedResults Test must not fail
1.50 +@SYMREQ REQ0000
1.51 +*/
1.52 +LOCAL_C void testEncryptionDataL()
1.53 + {
1.54 + test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1126 "));
1.55 + CPBEncryptElement* elementKey = CPBEncryptElement::NewLC(KTestPassword);
1.56 + TParsePtrC parse(KFileLocationSpec);
1.57 +
1.58 + RFileWriteStream writeStream;
1.59 + writeStream.PushL();
1.60 + User::LeaveIfError(writeStream.Replace(TheFs, parse.NameAndExt(), EFileWrite));
1.61 +
1.62 + REncryptStream encryptStream;
1.63 + encryptStream.OpenLC(writeStream, *elementKey);
1.64 +
1.65 + encryptStream << KTestDes;
1.66 + encryptStream.CommitL();
1.67 + writeStream.CommitL();
1.68 + CleanupStack::PopAndDestroy(2); // encryptStream, writeStream
1.69 +
1.70 + const CPBEncryptionData& encryptData = elementKey->EncryptionData();
1.71 +
1.72 + CPBEncryptElement* newElementKey = CPBEncryptElement::NewLC(encryptData, KTestPassword);
1.73 +
1.74 + RFileReadStream readStream;
1.75 + readStream.PushL();
1.76 + User::LeaveIfError(readStream.Open(TheFs, parse.NameAndExt(), EFileWrite));
1.77 +
1.78 + RDecryptStream decryptStream;
1.79 + decryptStream.OpenLC(readStream, *newElementKey);
1.80 +
1.81 + decryptStream >> TheBuf;
1.82 +
1.83 + test(KTestDes == TheBuf);
1.84 +
1.85 + CleanupStack::PopAndDestroy(4, elementKey);
1.86 + }
1.87 +
1.88 +/**
1.89 +@SYMTestCaseID SYSLIB-STORE-CT-1127
1.90 +@SYMTestCaseDesc Stream encryption test.
1.91 + Tests the functionality of REncryptStream and RDecryptStream classes
1.92 +@SYMTestPriority High
1.93 +@SYMTestActions Tests for writing an encrypted string to a stream,reading back the data,decrypt and
1.94 + check with the original data.
1.95 +@SYMTestExpectedResults Test must not fail
1.96 +@SYMREQ REQ0000
1.97 +*/
1.98 +LOCAL_C void testSimpleStreamEncryptionL()
1.99 + {
1.100 + test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1127 "));
1.101 + CPBEncryptElement* elementKey = CPBEncryptElement::NewL(KTestPassword);
1.102 + CleanupStack::PushL(elementKey);
1.103 + TParsePtrC parse(KFileLocationSpec);
1.104 +
1.105 + RFileWriteStream writeStream;
1.106 + writeStream.PushL();
1.107 + User::LeaveIfError(writeStream.Replace(TheFs, parse.NameAndExt(), EFileWrite));
1.108 +
1.109 + REncryptStream encryptStream;
1.110 + encryptStream.OpenLC(writeStream, *elementKey);
1.111 +
1.112 + encryptStream << KTestDes;
1.113 + encryptStream.CommitL();
1.114 + writeStream.CommitL();
1.115 + CleanupStack::PopAndDestroy(2); // encryptStream, writeStream
1.116 +
1.117 + RFileReadStream readStream;
1.118 + readStream.PushL();
1.119 + User::LeaveIfError(readStream.Open(TheFs, parse.NameAndExt(), EFileWrite));
1.120 +
1.121 + RDecryptStream decryptStream;
1.122 + decryptStream.OpenLC(readStream, *elementKey);
1.123 +
1.124 + decryptStream >> TheBuf;
1.125 +
1.126 + test(KTestDes == TheBuf);
1.127 +
1.128 + CleanupStack::PopAndDestroy(3, elementKey); // decryptStream, readStream
1.129 + }
1.130 +
1.131 +/**
1.132 +@SYMTestCaseID PDS-STORE-CT-4042
1.133 +@SYMTestCaseDesc Tests for attaching write stream and read stream to an encrypted stream.
1.134 +@SYMTestPriority High
1.135 +@SYMTestActions Encrypt data and write to a store.Read the encrypted data for decrypting and compare the result.
1.136 +@SYMTestExpectedResults Test must not fail
1.137 +@SYMDEF DEF135804
1.138 +*/
1.139 +LOCAL_C void testEncryptionDataAttachL()
1.140 + {
1.141 + test.Next(_L(" @SYMTestCaseID:PDS-STORE-CT-4042 "));
1.142 + CPBEncryptElement* elementKey = CPBEncryptElement::NewLC(KTestPassword);
1.143 + TParsePtrC parse(KFileLocationSpec);
1.144 +
1.145 + RFileWriteStream writeStream;
1.146 + writeStream.PushL();
1.147 + User::LeaveIfError(writeStream.Replace(TheFs, parse.NameAndExt(), EFileWrite));
1.148 +
1.149 + REncryptStream encryptStream;
1.150 + TRAPD(ret, encryptStream.AttachL(writeStream, *elementKey));
1.151 + test(ret == KErrNone);
1.152 + encryptStream.PushL();
1.153 +
1.154 + encryptStream << KTestDes;
1.155 + encryptStream.CommitL();
1.156 + writeStream.CommitL();
1.157 +
1.158 + CleanupStack::PopAndDestroy(2); // encryptStream, writeStream
1.159 +
1.160 + const CPBEncryptionData& encryptData = elementKey->EncryptionData();
1.161 +
1.162 + CPBEncryptElement* newElementKey = CPBEncryptElement::NewLC(encryptData, KTestPassword);
1.163 +
1.164 + RFileReadStream readStream;
1.165 + readStream.PushL();
1.166 + User::LeaveIfError(readStream.Open(TheFs, parse.NameAndExt(), EFileWrite));
1.167 +
1.168 +
1.169 + RDecryptStream decryptStream;
1.170 + decryptStream.AttachL(readStream, *newElementKey);
1.171 + decryptStream.PushL();
1.172 +
1.173 + decryptStream >> TheBuf;
1.174 +
1.175 + test(KTestDes == TheBuf);
1.176 +
1.177 + CleanupStack::PopAndDestroy(4, elementKey);
1.178 + }
1.179 +
1.180 +
1.181 +//
1.182 +// Test writing to a store
1.183 +//
1.184 +// Writes two streams in a store - the first containing sections of
1.185 +// the test data repeated, and the the second containing the test data
1.186 +// and the id of the first stream. Returns the id of the second
1.187 +// stream.
1.188 +//
1.189 +LOCAL_C TStreamId testWriteL(CStreamStore& aStore)
1.190 + {
1.191 + test.Next(_L("Writing..."));
1.192 + RStoreWriteStream out;
1.193 + TStreamId id=out.CreateLC(aStore);
1.194 + for (TInt i=0;i<=KTestLength;++i)
1.195 + {
1.196 + out.WriteL(KTestDes,i);
1.197 + out.WriteL(&KTestData[i],KTestLength-i);
1.198 + }
1.199 + out.CommitL();
1.200 + out.Close();
1.201 + TStreamId head=out.CreateL(aStore);
1.202 + out<<KTestDes;
1.203 + out<<id;
1.204 + out.CommitL();
1.205 + CleanupStack::PopAndDestroy();
1.206 + return head;
1.207 + }
1.208 +
1.209 +//
1.210 +// Test reading from a store
1.211 +//
1.212 +// Test that the data in a stream is the same as the data the
1.213 +// testWriteL() function writes to the first stream.
1.214 +//
1.215 +LOCAL_C void testReadL(RReadStream& aStream)
1.216 + {
1.217 + for (TInt i=KTestLength;i>=0;--i)
1.218 + {
1.219 + aStream.ReadL(TheBuf,i);
1.220 + test(TheBuf.Length()==i);
1.221 + TheBuf.SetMax();
1.222 + aStream.ReadL(&TheBuf[i],KTestLength-i);
1.223 + TheBuf.SetLength(KTestLength);
1.224 + test(TheBuf==KTestDes);
1.225 + }
1.226 + }
1.227 +
1.228 +//
1.229 +// Test reading from a store
1.230 +//
1.231 +// Reads back and checks the data written to a store by testWriteL(),
1.232 +// given the store and the id returned.
1.233 +//
1.234 +LOCAL_C void testReadL(const CStreamStore& aStore,TStreamId anId)
1.235 + {
1.236 + test.Next(_L("Reading..."));
1.237 + RStoreReadStream in;
1.238 + in.OpenLC(aStore,anId);
1.239 + in>>TheBuf;
1.240 + TStreamId id;
1.241 + in>>id;
1.242 + in.Close();
1.243 + in.OpenL(aStore,id);
1.244 + testReadL(in);
1.245 + CleanupStack::PopAndDestroy();
1.246 + }
1.247 +
1.248 +//
1.249 +// Test copying from one stream to another.
1.250 +//
1.251 +//
1.252 +//
1.253 +LOCAL_C void testCopyL(RWriteStream& aWriteStream,RReadStream& aReadStream)
1.254 + {
1.255 + test.Next(_L("Copying"));
1.256 + for (TInt i=KTestLength;i>=0;--i)
1.257 + {
1.258 + aWriteStream.WriteL(aReadStream,i);
1.259 + aReadStream.ReadL(aWriteStream,KTestLength-i);
1.260 + }
1.261 + }
1.262 +/**
1.263 +@SYMTestCaseID SYSLIB-STORE-CT-1128
1.264 +@SYMTestCaseDesc Tests for writing to a store
1.265 +@SYMTestPriority High
1.266 +@SYMTestActions Attempt for writing to a root store and empty store.
1.267 +@SYMTestExpectedResults Test must not fail
1.268 +@SYMREQ REQ0000
1.269 +*/
1.270 +LOCAL_C void testWriteL()
1.271 + {
1.272 + test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1128 Replacing host file "));
1.273 +
1.274 + TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));
1.275 + TParse parse;
1.276 + parse.Set(drive.Name(), &KFileLocationSpec, NULL);
1.277 +
1.278 + CFileStore* file=CPermanentFileStore::ReplaceLC(TheFs,parse.NameAndExt(),EFileWrite);
1.279 + file->SetTypeL(file->Layout());
1.280 +//
1.281 + test.Next(_L("Writing root store"));
1.282 + RStoreWriteStream stream;
1.283 + TStreamId embed=stream.CreateL(*file);
1.284 + CEmbeddedStore* store=CEmbeddedStore::NewLC(stream);
1.285 +
1.286 + CSecureStore* secure=CSecureStore::NewLC(*store, *thePBEKey);
1.287 +
1.288 + store->SetRootL(testWriteL(*secure));
1.289 + CleanupStack::PopAndDestroy(secure);
1.290 + store->CommitL();
1.291 + CleanupStack::PopAndDestroy();
1.292 +
1.293 + __UHEAP_MARK;
1.294 + TStreamId root=stream.CreateLC(*file);
1.295 + REncryptStream encrypt;
1.296 + encrypt.AttachLC(stream,*thePBEKey);
1.297 +
1.298 + encrypt<<_L8(" root")<<embed;
1.299 + encrypt.CommitL();
1.300 + CleanupStack::PopAndDestroy(2);
1.301 + __UHEAP_MARKEND;
1.302 +
1.303 + file->SetRootL(root);
1.304 +//
1.305 + test.Next(_L("Writing temp store"));
1.306 + embed=stream.CreateL(*file);
1.307 + store=CEmbeddedStore::NewLC(stream);
1.308 + secure = CSecureStore::NewLC(*store, *thePBEKey);
1.309 +
1.310 + store->SetRootL(testWriteL(*secure));
1.311 + CleanupStack::PopAndDestroy(secure);
1.312 + store->CommitL();
1.313 + CleanupStack::PopAndDestroy();
1.314 +
1.315 + __UHEAP_MARK;
1.316 + TheTempId=stream.CreateLC(*file);
1.317 + encrypt.OpenLC(stream,*thePBEKey);
1.318 +
1.319 + encrypt<<_L8(" temp")<<embed;
1.320 + encrypt.CommitL();
1.321 + CleanupStack::PopAndDestroy();
1.322 + stream.CommitL();
1.323 + CleanupStack::PopAndDestroy();
1.324 + __UHEAP_MARKEND;
1.325 +//
1.326 + file->CommitL();
1.327 + CleanupStack::PopAndDestroy(file);
1.328 + }
1.329 +/**
1.330 +@SYMTestCaseID SYSLIB-STORE-CT-1129
1.331 +@SYMTestCaseDesc Tests for reading from a store
1.332 +@SYMTestPriority High
1.333 +@SYMTestActions Attempt for reading from a root store and temporary store
1.334 +@SYMTestExpectedResults Test must not fail
1.335 +@SYMREQ REQ0000
1.336 +*/
1.337 +LOCAL_C void testReadL()
1.338 + {
1.339 + test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1129 Opening host file "));
1.340 +
1.341 + TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));
1.342 + TParse parse;
1.343 + parse.Set(drive.Name(), &KFileLocationSpec, NULL);
1.344 +
1.345 + CFileStore* file=CFileStore::OpenLC(TheFs,parse.NameAndExt(),EFileRead);
1.346 +//
1.347 + test.Next(_L("Reading from root store"));
1.348 + TStreamId root=file->Root();
1.349 + RStoreReadStream stream;
1.350 + stream.OpenLC(*file,root);
1.351 + RDecryptStream decrypt;
1.352 + decrypt.AttachLC(stream,*thePBEKey);
1.353 +
1.354 + TStreamId embed;
1.355 + TBuf8<5> b;
1.356 + decrypt>>b>>embed;
1.357 + test(b==_L8(" root"));
1.358 + CleanupStack::PopAndDestroy(2);
1.359 + stream.OpenL(*file,embed);
1.360 + CEmbeddedStore* store=CEmbeddedStore::FromLC(stream);
1.361 + CSecureStore* secure=NULL;
1.362 + secure=CSecureStore::NewLC(*store,*thePBEKey);
1.363 +
1.364 + testReadL(*secure,store->Root());
1.365 + CleanupStack::PopAndDestroy(2);
1.366 +//
1.367 + test.Next(_L("Reading from temp store"));
1.368 + stream.OpenLC(*file,TheTempId);
1.369 + decrypt.OpenLC(stream,*thePBEKey);
1.370 +
1.371 + decrypt>>b>>embed;
1.372 + test(b==_L8(" temp"));
1.373 + CleanupStack::PopAndDestroy(2);
1.374 + stream.OpenL(*file,embed);
1.375 + store=CEmbeddedStore::FromLC(stream);
1.376 + secure=CSecureStore::NewLC(*store,*thePBEKey);
1.377 +
1.378 + testReadL(*secure,store->Root());
1.379 +//
1.380 + CleanupStack::PopAndDestroy(3);
1.381 + }
1.382 +/**
1.383 +@SYMTestCaseID SYSLIB-STORE-CT-1130
1.384 +@SYMTestCaseDesc Tests copying from one stream to another stream
1.385 +@SYMTestPriority High
1.386 +@SYMTestActions Attempt for copying using different transfer sizes
1.387 +@SYMTestExpectedResults Test must not fail
1.388 +@SYMREQ REQ0000
1.389 +*/
1.390 +LOCAL_C void testCopyL()
1.391 + {
1.392 + test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1130 Opening host file "));
1.393 +
1.394 + TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));
1.395 + TParse parse;
1.396 + parse.Set(drive.Name(), &KFileLocationSpec, NULL);
1.397 +
1.398 + CFileStore* file=CFileStore::OpenLC(TheFs,parse.NameAndExt(),EFileRead|EFileWrite);
1.399 +//
1.400 + test.Next(_L("Opening source (root) store"));
1.401 + TStreamId root=file->Root();
1.402 + RStoreReadStream src;
1.403 + src.OpenLC(*file,root);
1.404 + RDecryptStream decrypt;
1.405 + decrypt.OpenLC(src,*thePBEKey);
1.406 +
1.407 + TBuf8<5> b;
1.408 + TStreamId embed;
1.409 + decrypt>>b>>embed;
1.410 + test(b==_L8(" root"));
1.411 + CleanupStack::PopAndDestroy(2); // src, decrypt
1.412 + src.OpenL(*file,embed);
1.413 + CEmbeddedStore* source=CEmbeddedStore::FromLC(src);
1.414 + CSecureStore* ssource=NULL;
1.415 + ssource=CSecureStore::NewLC(*source,*thePBEKey);
1.416 +
1.417 + test.Next(_L("Creating target store"));
1.418 + RStoreWriteStream trg;
1.419 + trg.CreateL(*file);
1.420 + CEmbeddedStore* target=CEmbeddedStore::NewLC(trg);
1.421 + CSecureStore* starget=NULL;
1.422 + starget=CSecureStore::NewLC(*target,*thePBEKey);
1.423 +
1.424 + test.Next(_L("Copying using small transfers"));
1.425 + RStoreReadStream in;
1.426 + in.OpenL(*ssource,source->Root());
1.427 + in>>TheBuf;
1.428 + TStreamId copyId;
1.429 + in>>copyId;
1.430 + in.Close();
1.431 + in.OpenL(*ssource,copyId);
1.432 + RStoreWriteStream out;
1.433 + TStreamId id=out.CreateL(*starget);
1.434 + testCopyL(out,in);
1.435 + out.CommitL();
1.436 + out.Close();
1.437 + in.Close();
1.438 + in.OpenL(*starget,id);
1.439 + testReadL(in);
1.440 + in.Close();
1.441 +//
1.442 + test.Next(_L("Copying using a single big transfer"));
1.443 + in.OpenL(*ssource,copyId);
1.444 + id=out.CreateL(*starget);
1.445 + in.ReadL(out,KTestTotal);
1.446 + out.CommitL();
1.447 + out.Close();
1.448 + in.Close();
1.449 + in.OpenL(*starget,id);
1.450 + testReadL(in);
1.451 + in.Close();
1.452 + in.OpenL(*ssource,copyId);
1.453 + id=out.CreateL(*starget);
1.454 + out.WriteL(in,KTestTotal);
1.455 + out.CommitL();
1.456 + out.Close();
1.457 + in.Close();
1.458 + in.OpenL(*starget,id);
1.459 + testReadL(in);
1.460 + in.Close();
1.461 +//
1.462 + CleanupStack::PopAndDestroy(5);
1.463 + }
1.464 +/**
1.465 +@SYMTestCaseID SYSLIB-STORE-CT-1131
1.466 +@SYMTestCaseDesc Writing and reading back a long stream test
1.467 +@SYMTestPriority High
1.468 +@SYMTestActions Attempt to write long data to a stream and read back and test for the integrity of the data.
1.469 +@SYMTestExpectedResults Test must not fail
1.470 +@SYMREQ REQ0000
1.471 +*/
1.472 +LOCAL_C void testBugL()
1.473 + {
1.474 + test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1131 Opening host file "));
1.475 +
1.476 + TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));
1.477 + TParse parse;
1.478 + parse.Set(drive.Name(), &KFileLocationSpec, NULL);
1.479 +
1.480 + CFileStore* file=CDirectFileStore::ReplaceLC(TheFs,parse.NameAndExt(),EFileRead|EFileWrite);
1.481 + file->SetTypeL(file->Layout());
1.482 + CSecureStore* secure=NULL;
1.483 +
1.484 + secure=CSecureStore::NewLC(*file,*thePBEKey);
1.485 +
1.486 + test.Next(_L("Writing long stream"));
1.487 + RStoreWriteStream out;
1.488 + TStreamId id=out.CreateLC(*secure);
1.489 + TInt ii;
1.490 + for (ii=0;ii<400;++ii)
1.491 + out<<_L("a goodly length of data");
1.492 + out.CommitL();
1.493 + CleanupStack::PopAndDestroy();
1.494 + file->SetRootL(out.CreateLC(*secure));
1.495 + out<<_L("spam")<<id;
1.496 + out.CommitL();
1.497 + CleanupStack::PopAndDestroy(2, secure);
1.498 + file->CommitL();
1.499 + CleanupStack::PopAndDestroy();
1.500 +//
1.501 + test.Next(_L("Opening host file"));
1.502 + file=CFileStore::OpenLC(TheFs,parse.NameAndExt(),EFileRead);
1.503 + secure=CSecureStore::NewLC(*file,*thePBEKey);
1.504 +//
1.505 + TBuf<30> buf;
1.506 + test.Next(_L("Reading"));
1.507 + RStoreReadStream in;
1.508 + in.OpenLC(*secure,file->Root());
1.509 + in>>buf>>id;
1.510 + CleanupStack::PopAndDestroy();
1.511 + test(buf==_L("spam"));
1.512 + in.OpenLC(*secure,id);
1.513 + for (ii=0;ii<400;++ii)
1.514 + {
1.515 + in>>buf;
1.516 + test (buf==_L("a goodly length of data"));
1.517 + }
1.518 + CleanupStack::PopAndDestroy(3);
1.519 + }
1.520 +
1.521 +/**
1.522 +@SYMTestCaseID PDS-STORE-CT-4016
1.523 +@SYMTestCaseDesc Tests for CPBEncryptElement
1.524 +@SYMTestPriority High
1.525 +@SYMTestActions Externalizing and internalizing CPBEncryptionData. Tests for constructors.
1.526 +@SYMTestExpectedResults Externalizing must not fail. After internalization CPBEncryptionData object should
1.527 + be valid. Object created with all constructors should be valid.
1.528 +@SYMDEF DEF135804
1.529 +*/
1.530 +LOCAL_C void testForgottenAPI_L()
1.531 + {
1.532 + test.Next(_L("@SYMTestCaseID PDS-STORE-CT-4016: Tests for CPBEncryptElement"));
1.533 + CBufFlat* buffer = CBufFlat::NewL(10*1024);
1.534 + CleanupStack::PushL(buffer);
1.535 + RBufWriteStream wstr(*buffer,0);
1.536 +
1.537 + CPBEncryptElement* elementKey = CPBEncryptElement::NewLC(KTestPassword);
1.538 + const CPBEncryptionData& encryptData = elementKey->EncryptionData();
1.539 + wstr << encryptData;
1.540 + CleanupStack::PopAndDestroy();
1.541 +
1.542 + wstr.CommitL();
1.543 + wstr.Close();
1.544 +
1.545 + RBufReadStream rstr(*buffer,0);
1.546 + CPBEncryptionData* enData = CPBEncryptionData::NewL(rstr);
1.547 + test(enData != NULL);
1.548 + delete enData;
1.549 + enData = NULL;
1.550 + rstr.Close();
1.551 + rstr.Open(*buffer,0);
1.552 + enData = CPBEncryptionData::NewLC(rstr);
1.553 + test(enData != NULL);
1.554 + CleanupStack::PopAndDestroy();
1.555 + enData = NULL;
1.556 +
1.557 + rstr.Close();
1.558 +
1.559 + CleanupStack::PopAndDestroy();
1.560 + }
1.561 +
1.562 +/**
1.563 +@SYMTestCaseID PDS-STORE-CT-4019
1.564 +@SYMTestCaseDesc Tests adding and deleting a stream from securestore
1.565 +@SYMTestPriority High
1.566 +@SYMTestActions Create a new stream and Delete it again
1.567 +@SYMTestExpectedResults Test must not fail
1.568 +@SYMDEF DEF135804
1.569 +*/
1.570 +LOCAL_C void testExtendDeleteL()
1.571 + {
1.572 + test.Next(_L("@SYMTestCaseID PDS-STORE-CT-4019"));
1.573 + TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));
1.574 + TParse parse;
1.575 + parse.Set(drive.Name(), &KFileLocationSpec, NULL);
1.576 +
1.577 + test.Next(_L("Testing Extend"));
1.578 + CFileStore* file=CPermanentFileStore::ReplaceLC(TheFs,parse.NameAndExt(),EFileRead|EFileWrite);
1.579 + file->SetTypeL(file->Layout());
1.580 + CSecureStore* secure=NULL;
1.581 +
1.582 + secure=CSecureStore::NewLC(*file,*thePBEKey);
1.583 + TStreamId id = secure->ExtendL();
1.584 + test(id != NULL);
1.585 + test.Next(_L("Testing Delete"));
1.586 + TRAPD(r, secure->DeleteL(id));
1.587 + test(r == KErrNone);
1.588 + TRAP(r, secure->DeleteL(id));
1.589 + test(r == KErrNotFound);
1.590 +
1.591 + CleanupStack::PopAndDestroy(2);
1.592 +
1.593 + }
1.594 +
1.595 +/**
1.596 +@SYMTestCaseID PDS-STORE-CT-4020
1.597 +@SYMTestCaseDesc Tests writing and replacing a stream from securestore
1.598 +@SYMTestPriority High
1.599 +@SYMTestActions Create a new stream in the store and then open it for replacement
1.600 +@SYMTestExpectedResults stream is created and writtenn to successfully
1.601 +@SYMDEF DEF135804
1.602 +*/
1.603 +LOCAL_C void testWriteReplaceL()
1.604 + {
1.605 + test.Next(_L("@SYMTestCaseID PDS-STORE-CT-4020"));
1.606 + TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));
1.607 + TParse parse;
1.608 + parse.Set(drive.Name(), &KFileLocationSpec, NULL);
1.609 +
1.610 + test.Next(_L("Testing Extend"));
1.611 + CFileStore* file=CPermanentFileStore::ReplaceLC(TheFs,parse.NameAndExt(),EFileRead|EFileWrite);
1.612 + file->SetTypeL(file->Layout());
1.613 + CSecureStore* secure=NULL;
1.614 +
1.615 + secure=CSecureStore::NewLC(*file,*thePBEKey);
1.616 + RStoreWriteStream out;
1.617 + TStreamId id = out.CreateL(*secure);
1.618 + test(id != NULL);
1.619 + out.Close();
1.620 + TRAPD(r, out.OpenL(*secure, id) );
1.621 + test(r == KErrNone);
1.622 + out.WriteL(KTestDes,8);
1.623 + out.CommitL();
1.624 + out.Close();
1.625 + r = secure->Commit();
1.626 + test(r == KErrNone);
1.627 +
1.628 + TRAP(r,out.ReplaceL(*secure, id));
1.629 + test(r == KErrNone);
1.630 + out.WriteL(KTestDes,8);
1.631 + out.CommitL();
1.632 + out.Close();
1.633 + secure->Revert();
1.634 + out.Close();
1.635 +
1.636 + CleanupStack::PopAndDestroy(2);
1.637 +
1.638 + }
1.639 +
1.640 +
1.641 +LOCAL_C void setupTestDirectory()
1.642 +//
1.643 +// Prepare the test directory.
1.644 +//
1.645 + {
1.646 + TInt r=TheFs.Connect();
1.647 + test(r==KErrNone);
1.648 +//
1.649 + TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));
1.650 + TParse parse;
1.651 + parse.Set(drive.Name(), &KFileLocationSpec, NULL);
1.652 +
1.653 + r=TheFs.MkDir(parse.DriveAndPath());
1.654 + test(r==KErrNone||r==KErrAlreadyExists);
1.655 + r=TheFs.SetSessionPath(parse.DriveAndPath());
1.656 + test(r==KErrNone);
1.657 + }
1.658 +
1.659 +LOCAL_C void setupCleanup()
1.660 +//
1.661 +// Initialise the cleanup stack.
1.662 +//
1.663 + {
1.664 + TheTrapCleanup=CTrapCleanup::New();
1.665 + test(TheTrapCleanup!=NULL);
1.666 + TRAPD(r,\
1.667 + {\
1.668 + for (TInt i=KTestCleanupStack;i>0;i--)\
1.669 + CleanupStack::PushL((TAny*)0);\
1.670 + CleanupStack::Pop(KTestCleanupStack);\
1.671 + });
1.672 + test(r==KErrNone);
1.673 + }
1.674 +
1.675 +LOCAL_C void runTestsL()
1.676 + {
1.677 + test.Start(_L("Test direct file store"));
1.678 + TInt r = KErrNone;
1.679 +
1.680 +// New PBE tests
1.681 + TRAP(r,testEncryptionDataL());
1.682 + test(r==KErrNone);
1.683 + TRAP(r,testSimpleStreamEncryptionL());
1.684 + test(r==KErrNone);
1.685 +
1.686 +
1.687 + TRAP(r,testEncryptionDataAttachL());
1.688 + test(r==KErrNone);
1.689 +
1.690 +
1.691 +// Old API tests with new PBE parameters
1.692 + thePBEKey = CPBEncryptSet::NewL(KTestPassword);
1.693 +
1.694 + TRAP(r,testWriteL());
1.695 + test(r==KErrNone);
1.696 + TRAP(r,testReadL());
1.697 + test(r==KErrNone);
1.698 + TRAP(r,testCopyL());
1.699 + test(r==KErrNone);
1.700 + TRAP(r,testBugL());
1.701 + test(r==KErrNone);
1.702 + TRAP(r,testForgottenAPI_L());
1.703 + test(r==KErrNone);
1.704 + TRAP(r,testExtendDeleteL());
1.705 + test(r==KErrNone);
1.706 + TRAP(r,testWriteReplaceL());
1.707 + test(r==KErrNone);
1.708 +
1.709 + delete thePBEKey;
1.710 +
1.711 + }
1.712 +
1.713 +LOCAL_C void DeleteDataFile(const TDesC& aFullName)
1.714 + {
1.715 + RFs fsSession;
1.716 + TInt err = fsSession.Connect();
1.717 + if(err == KErrNone)
1.718 + {
1.719 + TEntry entry;
1.720 + if(fsSession.Entry(aFullName, entry) == KErrNone)
1.721 + {
1.722 + RDebug::Print(_L("Deleting \"%S\" file.\n"), &aFullName);
1.723 + err = fsSession.SetAtt(aFullName, 0, KEntryAttReadOnly);
1.724 + if(err != KErrNone)
1.725 + {
1.726 + RDebug::Print(_L("Error %d changing \"%S\" file attributes.\n"), err, &aFullName);
1.727 + }
1.728 + err = fsSession.Delete(aFullName);
1.729 + if(err != KErrNone)
1.730 + {
1.731 + RDebug::Print(_L("Error %d deleting \"%S\" file.\n"), err, &aFullName);
1.732 + }
1.733 + }
1.734 + fsSession.Close();
1.735 + }
1.736 + else
1.737 + {
1.738 + RDebug::Print(_L("Error %d connecting file session. File: %S.\n"), err, &aFullName);
1.739 + }
1.740 + }
1.741 +
1.742 +GLDEF_C TInt E32Main()
1.743 +//
1.744 +// Test streaming conversions.
1.745 +//
1.746 + {
1.747 + test.Title();
1.748 + setupTestDirectory();
1.749 + setupCleanup();
1.750 + __UHEAP_MARK;
1.751 +//
1.752 + TRAPD(r, runTestsL());
1.753 + test(r == KErrNone);
1.754 +
1.755 + //deletion of data files must be before call to .End() - DEF047652
1.756 + TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));
1.757 + TParse parse;
1.758 + parse.Set(drive.Name(), &KFileLocationSpec, NULL);
1.759 + ::DeleteDataFile(parse.FullName());
1.760 +
1.761 + test.End();
1.762 +//
1.763 + __UHEAP_MARKEND;
1.764 +
1.765 + delete TheTrapCleanup;
1.766 + TheFs.Close();
1.767 + test.Close();
1.768 + return r!=KErrNone;
1.769 + }