1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/persistentdata/persistentstorage/store/TFILE/t_storfperm.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,624 @@
1.4 +// Copyright (c) 1998-2010 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 <e32test.h>
1.21 +
1.22 +const TInt KTestCleanupStack=0x20;
1.23 +
1.24 +// This is a path specification and should not be used as is
1.25 +_LIT(KFileLocationSpec, "Z:\\STOR-TST\\T_FPERM.DAT");
1.26 +const TUint8* KTestData=_S8("0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ");
1.27 +const TInt KTestLength=36;
1.28 +const TInt KTestTotal=KTestLength*(KTestLength+1);
1.29 +const TPtrC8 KTestDes(KTestData,KTestLength);
1.30 +
1.31 +LOCAL_D CTrapCleanup* TheTrapCleanup;
1.32 +LOCAL_D RTest test(_L("t_storfperm"));
1.33 +LOCAL_D RFs TheFs;
1.34 +LOCAL_D TFileName TheTempFile;
1.35 +LOCAL_D TBuf8<KTestLength+1> TheBuf;
1.36 +/**
1.37 +@SYMTestCaseID SYSLIB-STORE-CT-1152
1.38 +@SYMTestCaseDesc Tests empty streams
1.39 +@SYMTestPriority High
1.40 +@SYMTestActions Tests for empty stream buffers.Check for end of file error,overflow error flags
1.41 +@SYMTestExpectedResults Test must not fail
1.42 +@SYMREQ REQ0000
1.43 +*/
1.44 +LOCAL_C void testEmptyL(CStreamStore& aStore)
1.45 + {
1.46 + test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1152 Stream created using 'extend' "));
1.47 + TStreamId empty=aStore.ExtendL();
1.48 + RStoreReadStream in;
1.49 + in.OpenL(aStore,empty);
1.50 + TUint8 b;
1.51 + test(in.Source()->ReadL(&b,1)==0);
1.52 + in.Source()->SeekL(0,KStreamBeginning);
1.53 + test(in.Source()->SeekL(MStreamBuf::ERead,EStreamMark)==KStreamBeginning);
1.54 + test(in.Source()->SizeL()==0);
1.55 + TRAPD(r,in.Source()->SeekL(MStreamBuf::ERead,EStreamBeginning,1));
1.56 + test(r==KErrEof);
1.57 + TRAP(r,in.Source()->SeekL(MStreamBuf::ERead,EStreamEnd,-1));
1.58 + test(r==KErrEof);
1.59 + in.Close();
1.60 + RStoreWriteStream out;
1.61 + out.OpenL(aStore,empty);
1.62 + out.Sink()->SeekL(0,KStreamBeginning);
1.63 + test(out.Sink()->SeekL(MStreamBuf::EWrite,EStreamMark)==KStreamBeginning);
1.64 + test(out.Sink()->SizeL()==0);
1.65 + TRAP(r,out.Sink()->SeekL(MStreamBuf::EWrite,EStreamBeginning,1));
1.66 + test(r==KErrEof);
1.67 + TRAP(r,out.Sink()->SeekL(MStreamBuf::EWrite,EStreamEnd,-1));
1.68 + test(r==KErrEof);
1.69 + TRAP(r,out.WriteUint8L(0));
1.70 + test(r==KErrOverflow);
1.71 + out.Close();
1.72 +//
1.73 + test.Next(_L("Replacing empty with empty"));
1.74 + out.ReplaceL(aStore,empty);
1.75 + out.CommitL();
1.76 + out.Release();
1.77 + in.OpenL(aStore,empty);
1.78 + test(in.Source()->ReadL(&b,1)==0);
1.79 + in.Source()->SeekL(0,KStreamBeginning);
1.80 + test(in.Source()->SeekL(MStreamBuf::ERead,EStreamMark)==KStreamBeginning);
1.81 + test(in.Source()->SizeL()==0);
1.82 + TRAP(r,in.Source()->SeekL(MStreamBuf::ERead,EStreamBeginning,1));
1.83 + test(r==KErrEof);
1.84 + TRAP(r,in.Source()->SeekL(MStreamBuf::ERead,EStreamEnd,-1));
1.85 + test(r==KErrEof);
1.86 + in.Close();
1.87 + out.OpenL(aStore,empty);
1.88 + out.Sink()->SeekL(0,KStreamBeginning);
1.89 + test(out.Sink()->SeekL(MStreamBuf::EWrite,EStreamMark)==KStreamBeginning);
1.90 + test(out.Sink()->SizeL()==0);
1.91 + TRAP(r,out.Sink()->SeekL(MStreamBuf::EWrite,EStreamBeginning,1));
1.92 + test(r==KErrEof);
1.93 + TRAP(r,out.Sink()->SeekL(MStreamBuf::EWrite,EStreamEnd,-1));
1.94 + test(r==KErrEof);
1.95 + TRAP(r,out.WriteUint8L(0));
1.96 + test(r==KErrOverflow);
1.97 + out.Close();
1.98 + }
1.99 +
1.100 +//
1.101 +// Test writing to a store
1.102 +//
1.103 +LOCAL_C void testWriteL(CPersistentStore& aStore)
1.104 + {
1.105 + test.Next(_L("Writing..."));
1.106 + RStoreWriteStream out;
1.107 + TStreamId id=out.CreateLC(aStore);
1.108 + TStreamPos end=KStreamBeginning; //*
1.109 + for (TInt i=0;i<=KTestLength;++i)
1.110 + {
1.111 + test(out.Sink()->SeekL(MStreamBuf::EWrite,EStreamMark)==end); //*
1.112 + out.WriteL(KTestDes,i);
1.113 + test(out.Sink()->SeekL(0,EStreamEnd,-i)==end); //*
1.114 + out.WriteL(&KTestData[i],KTestLength-i);
1.115 + end+=KTestLength; //*
1.116 + }
1.117 +//* test(out.Sink()->SizeL()==end.Offset());
1.118 +//* out.WriteL(KTestDes,12);
1.119 +//* end+=12;
1.120 + test(out.Sink()->SizeL()==end.Offset()); //*
1.121 + out.CommitL();
1.122 + test(out.Sink()->SizeL()==end.Offset()); //*
1.123 + out.Close();
1.124 + aStore.SetRootL(out.CreateL(aStore));
1.125 + out<<KTestDes;
1.126 + out<<id;
1.127 + out.CommitL();
1.128 + CleanupStack::PopAndDestroy();
1.129 + }
1.130 +
1.131 +//
1.132 +// Test reading from a store
1.133 +//
1.134 +LOCAL_C void testReadL(RReadStream& aStream)
1.135 + {
1.136 + for (TInt i=KTestLength;i>=0;--i)
1.137 + {
1.138 + aStream.ReadL(TheBuf,i);
1.139 + test(TheBuf.Length()==i);
1.140 + TheBuf.SetMax();
1.141 + aStream.ReadL(&TheBuf[i],KTestLength-i);
1.142 + TheBuf.SetLength(KTestLength);
1.143 + test(TheBuf==KTestDes);
1.144 + }
1.145 + }
1.146 +
1.147 +//
1.148 +// Test reading from a store
1.149 +//
1.150 +LOCAL_C void testReadL(const CPersistentStore& aStore)
1.151 + {
1.152 + test.Next(_L("Reading..."));
1.153 + RStoreReadStream in;
1.154 + in.OpenLC(aStore,aStore.Root());
1.155 + in>>TheBuf;
1.156 + TStreamId id;
1.157 + in>>id;
1.158 + in.Close();
1.159 + in.OpenL(aStore,id);
1.160 + testReadL(in);
1.161 + CleanupStack::PopAndDestroy();
1.162 + }
1.163 +
1.164 +//
1.165 +// Test copying from one stream to another.
1.166 +//
1.167 +LOCAL_C void testCopyL(RWriteStream& aWriteStream,RReadStream& aReadStream)
1.168 + {
1.169 + test.Next(_L("Copying"));
1.170 + for (TInt i=KTestLength;i>=0;--i)
1.171 + {
1.172 + aWriteStream.WriteL(aReadStream,i);
1.173 + aReadStream.ReadL(aWriteStream,KTestLength-i);
1.174 + }
1.175 + }
1.176 +/**
1.177 +@SYMTestCaseID SYSLIB-STORE-CT-1153
1.178 +@SYMTestCaseDesc Tests for writing using a permanent file store
1.179 +@SYMTestPriority High
1.180 +@SYMTestActions Tests for memory and end of file error while creating the store.
1.181 + Tests for writing to replaced,temporary,opened,created file.
1.182 + Tests for creating an already existing file.
1.183 + Tests for panic while deleting a file.
1.184 +@SYMTestExpectedResults Test must not fail
1.185 +@SYMREQ REQ0000
1.186 +*/
1.187 +LOCAL_C void testWriteL()
1.188 + {
1.189 + test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1153 Creating and failing to open 'ghost' file "));
1.190 +
1.191 + TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));
1.192 + TParse parse;
1.193 + parse.Set(drive.Name(), &KFileLocationSpec, NULL);
1.194 +
1.195 + TheFs.Delete(parse.NameAndExt());
1.196 + CFileStore* store=CPermanentFileStore::CreateLC(TheFs,parse.NameAndExt(),EFileWrite);
1.197 + CleanupStack::PopAndDestroy();
1.198 + store=NULL;
1.199 + TRAPD(r,store=CPermanentFileStore::OpenL(TheFs,parse.NameAndExt(),EFileRead|EFileWrite));
1.200 + test(store==NULL&&r==KErrEof);
1.201 +//
1.202 + test.Next(_L("Empty tests on replaced file"));
1.203 + store=CPermanentFileStore::ReplaceLC(TheFs,parse.NameAndExt(),EFileWrite);
1.204 + store->SetTypeL(TUidType(KPermanentFileStoreLayoutUid,KPermanentFileStoreLayoutUid));
1.205 + testEmptyL(*store);
1.206 + CleanupStack::PopAndDestroy();
1.207 +//
1.208 + test.Next(_L("Writing to temp file"));
1.209 + store=CPermanentFileStore::TempLC(TheFs,parse.DriveAndPath(),TheTempFile,EFileWrite);
1.210 + store->SetTypeL(TUidType(store->Layout(),KNullUid,KPermanentFileStoreLayoutUid));
1.211 + testWriteL(*store);
1.212 + store->CommitL();
1.213 + CleanupStack::PopAndDestroy();
1.214 + (void)TheFs.Delete(TheTempFile);
1.215 +//
1.216 + test.Next(_L("Writing to temp file - 2"));
1.217 + store=CPermanentFileStore::TempL(TheFs,parse.DriveAndPath(),TheTempFile,EFileWrite);
1.218 + CleanupStack::PushL(store);
1.219 + store->SetTypeL(TUidType(store->Layout(),KNullUid,KPermanentFileStoreLayoutUid));
1.220 + testWriteL(*store);
1.221 + store->CommitL();
1.222 + CleanupStack::PopAndDestroy();
1.223 +//
1.224 + test.Next(_L("Writing to opened file"));
1.225 + store=CPermanentFileStore::OpenLC(TheFs,parse.NameAndExt(),EFileRead|EFileWrite);
1.226 + testWriteL(*store);
1.227 + store->CommitL();
1.228 + CleanupStack::PopAndDestroy();
1.229 +//
1.230 + test.Next(_L("Failing to create existing file"));
1.231 + store=NULL;
1.232 + TRAP(r,store=CPermanentFileStore::CreateL(TheFs,TheTempFile,EFileWrite));
1.233 + test(store==NULL&&r==KErrAlreadyExists);
1.234 + if (TheFs.Delete(parse.NameAndExt())!=KErrNone)
1.235 + test.Panic(_L("Deleting file"));
1.236 +//
1.237 + test.Next(_L("Writing to created file"));
1.238 + RFile file;
1.239 + test(file.Create(TheFs,parse.NameAndExt(),EFileWrite)==KErrNone);
1.240 + store=CPermanentFileStore::NewLC(file);
1.241 + store->SetTypeL(KPermanentFileStoreLayoutUid);
1.242 + testWriteL(*store);
1.243 + store->CommitL();
1.244 + CleanupStack::PopAndDestroy();
1.245 + }
1.246 +/**
1.247 +@SYMTestCaseID SYSLIB-STORE-CT-1154
1.248 +@SYMTestCaseDesc Tests for reading using a permanent file store.
1.249 +@SYMTestPriority High
1.250 +@SYMTestActions Read data from a stream
1.251 +@SYMTestExpectedResults Test must not fail
1.252 +@SYMREQ REQ0000
1.253 +*/
1.254 +LOCAL_C void testReadL()
1.255 + {
1.256 + test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1154 Reading from opened file "));
1.257 +
1.258 + TParsePtrC parse(KFileLocationSpec);
1.259 +
1.260 + RFile file;
1.261 + test(file.Open(TheFs,parse.NameAndExt(),EFileRead)==KErrNone);
1.262 + CFileStore* store=CFileStore::FromLC(file);
1.263 + testReadL(*store);
1.264 + store->CommitL();
1.265 + CleanupStack::PopAndDestroy();
1.266 +//
1.267 + test.Next(_L("Reading from temp file"));
1.268 + test(file.Open(TheFs,TheTempFile,EFileRead)==KErrNone);
1.269 + store=CPermanentFileStore::FromLC(file);
1.270 + testReadL(*store);
1.271 + CleanupStack::PopAndDestroy();
1.272 + }
1.273 +
1.274 +LOCAL_C void testRootL(CPersistentStore& aStore)
1.275 + {
1.276 + aStore.SetRootL(aStore.ExtendL());
1.277 + aStore.CommitL();
1.278 + }
1.279 +
1.280 +LOCAL_C void testDummyL(CFileStore& aStore)
1.281 + {
1.282 + aStore.SetTypeL(aStore.Layout());
1.283 + aStore.CommitL();
1.284 + }
1.285 +/**
1.286 +@SYMTestCaseID SYSLIB-STORE-CT-1155
1.287 +@SYMTestCaseDesc Tests for recovery from write failures
1.288 +@SYMTestPriority High
1.289 +@SYMTestActions Tests for access denied error during writing,commit and update process
1.290 +@SYMTestExpectedResults Test must not fail
1.291 +@SYMREQ REQ0000
1.292 +*/
1.293 +LOCAL_C void testRecoveryL()
1.294 + {
1.295 + test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1155 Recovering from write failures "));
1.296 + TParsePtrC parse(KFileLocationSpec);
1.297 +
1.298 + CFileStore* store=CPermanentFileStore::ReplaceLC(TheFs,parse.NameAndExt(),EFileWrite);
1.299 + store->SetTypeL(KPermanentFileStoreLayoutUid);
1.300 + testWriteL(*store);
1.301 + store->CommitL();
1.302 +//
1.303 + store->File().Close();
1.304 + test(store->File().Open(TheFs,parse.NameAndExt(),EFileRead)==KErrNone);
1.305 +// fail during writing
1.306 + TRAPD(r,store->SetTypeL(store->Type());testWriteL(*store));
1.307 + test(r==KErrAccessDenied);
1.308 + store->Revert();
1.309 + testReadL(*store);
1.310 +// fail during commit
1.311 + TRAP(r,testRootL(*store));
1.312 + test(r==KErrAccessDenied);
1.313 + store->Revert();
1.314 + testReadL(*store);
1.315 +// fail during dummy update
1.316 + TRAP(r,testDummyL(*store));
1.317 + test(r==KErrAccessDenied);
1.318 + store->Revert();
1.319 + testReadL(*store);
1.320 + CleanupStack::PopAndDestroy();
1.321 + }
1.322 +/**
1.323 +@SYMTestCaseID SYSLIB-STORE-CT-1156
1.324 +@SYMTestCaseDesc Tests copying in a single file store.
1.325 +@SYMTestPriority High
1.326 +@SYMTestActions Tests for copying using different buffer sizes
1.327 +@SYMTestExpectedResults Test must not fail
1.328 +@SYMREQ REQ0000
1.329 +*/
1.330 +LOCAL_C void testCopyL()
1.331 + {
1.332 + test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1156 Copying using small transfers "));
1.333 + TParsePtrC parse(KFileLocationSpec);
1.334 +
1.335 + CFileStore* store=CFileStore::OpenLC(TheFs,parse.NameAndExt(),EFileRead|EFileWrite);
1.336 + RStoreReadStream in;
1.337 + in.OpenLC(*store,store->Root());
1.338 + in>>TheBuf;
1.339 + TStreamId copyId;
1.340 + in>>copyId;
1.341 + in.Close();
1.342 + in.OpenL(*store,copyId);
1.343 + RStoreWriteStream out;
1.344 + TStreamId id=out.CreateLC(*store);
1.345 + testCopyL(out,in);
1.346 + out.CommitL();
1.347 + out.Close();
1.348 + in.Close();
1.349 + in.OpenL(*store,id);
1.350 + testReadL(in);
1.351 + in.Close();
1.352 +//
1.353 + test.Next(_L("Copying using a single big transfer"));
1.354 + in.OpenL(*store,copyId);
1.355 + id=out.CreateL(*store);
1.356 + in.ReadL(out,KTestTotal);
1.357 + out.CommitL();
1.358 + out.Close();
1.359 + in.Close();
1.360 + in.OpenL(*store,id);
1.361 + testReadL(in);
1.362 + in.Close();
1.363 + in.OpenL(*store,copyId);
1.364 + id=out.CreateL(*store);
1.365 + out.WriteL(in,KTestTotal);
1.366 + out.CommitL();
1.367 + out.Close();
1.368 + in.Close();
1.369 + in.OpenL(*store,id);
1.370 + testReadL(in);
1.371 +//
1.372 + CleanupStack::PopAndDestroy(3);
1.373 + }
1.374 +
1.375 +//
1.376 +// Test empty streams.
1.377 +//
1.378 +LOCAL_C void testEmptyL()
1.379 + {
1.380 + test.Next(_L("Empty tests on existing file"));
1.381 + TParsePtrC parse(KFileLocationSpec);
1.382 + CFileStore* store=CFileStore::OpenLC(TheFs,parse.NameAndExt(),EFileRead|EFileWrite);
1.383 + testEmptyL(*store);
1.384 +//
1.385 + CleanupStack::PopAndDestroy();
1.386 + }
1.387 +/**
1.388 +@SYMTestCaseID SYSLIB-STORE-CT-1157
1.389 +@SYMTestCaseDesc Tests for detaching file from store
1.390 +@SYMTestPriority High
1.391 +@SYMTestActions Detach the file and discard the store
1.392 +@SYMTestExpectedResults Test must not fail
1.393 +@SYMREQ REQ0000
1.394 +*/
1.395 +LOCAL_C void testDetachL()
1.396 + {
1.397 + test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1157 Writing a file store "));
1.398 + TParsePtrC parse(KFileLocationSpec);
1.399 +
1.400 + CFileStore* store=CPermanentFileStore::ReplaceLC(TheFs,parse.NameAndExt(),EFileWrite|EFileRead);
1.401 + store->SetTypeL(KPermanentFileStoreLayoutUid);
1.402 + testWriteL(*store);
1.403 + store->CommitL();
1.404 +//
1.405 + test.Next(_L("Detach the file and discard the store"));
1.406 + RFile file=store->File();
1.407 + store->Detach();
1.408 + store->Reattach(file);
1.409 + RFile& file2 = store->File();
1.410 + test(file2.SubSessionHandle() != KNullHandle);
1.411 + store->Detach();
1.412 + CleanupStack::PopAndDestroy();
1.413 +//
1.414 + test.Next(_L("Re-construct the store and check the contents"));
1.415 + store=CFileStore::FromLC(file);
1.416 + testReadL(*store);
1.417 + store->Reset();
1.418 + CleanupStack::PopAndDestroy();
1.419 + }
1.420 +/**
1.421 +@SYMTestCaseID SYSLIB-STORE-CT-1158
1.422 +@SYMTestCaseDesc Tests for defect No 039456
1.423 + Permanent File Store allows code to open and read from deleted streams
1.424 +@SYMTestPriority High
1.425 +@SYMTestActions Create four streams,delete last three and close the store.
1.426 + Open the store and test for reading the first stream.
1.427 +@SYMTestExpectedResults Test must not fail
1.428 +@SYMREQ REQ0000
1.429 +*/
1.430 +LOCAL_C void testDef039456L()
1.431 +{
1.432 + _LIT(KMsvDrivelessTestPath, ":\\t_storperm.dat");
1.433 + TFileName msvTestPath;
1.434 + msvTestPath.Append(RFs::GetSystemDriveChar());
1.435 + msvTestPath.Append(KMsvDrivelessTestPath);
1.436 +
1.437 + _LIT(KStringOne, "1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111");
1.438 + _LIT(KStringTwo, "2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222");
1.439 +
1.440 + test.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1158 "));
1.441 + TheFs.Delete(msvTestPath);
1.442 + CPermanentFileStore* testStore = CPermanentFileStore::CreateLC(TheFs, msvTestPath, EFileWrite|EFileShareAny);
1.443 + testStore->SetTypeL(KPermanentFileStoreLayoutUid);
1.444 +
1.445 + // create four streams,
1.446 + RStoreWriteStream wstream;
1.447 + TStreamId stream_one=wstream.CreateLC(*testStore);
1.448 + wstream << KStringOne;
1.449 + wstream.CommitL();
1.450 + CleanupStack::PopAndDestroy(&wstream);
1.451 + testStore->CommitL();
1.452 + TStreamId stream_two=wstream.CreateLC(*testStore);
1.453 + wstream << KStringTwo;
1.454 + wstream.CommitL();
1.455 + CleanupStack::PopAndDestroy(&wstream);
1.456 + testStore->CommitL();
1.457 + TStreamId stream_three=wstream.CreateLC(*testStore);
1.458 + wstream << KStringOne;
1.459 + wstream.CommitL();
1.460 + CleanupStack::PopAndDestroy(&wstream);
1.461 + testStore->CommitL();
1.462 + TStreamId stream_four=wstream.CreateLC(*testStore);
1.463 + wstream << KStringOne;
1.464 + wstream.CommitL();
1.465 + CleanupStack::PopAndDestroy(&wstream);
1.466 + testStore->CommitL();
1.467 +
1.468 + // delete last three streams added (not in the order added)
1.469 + testStore->DeleteL(stream_four);
1.470 + testStore->CommitL();
1.471 + testStore->DeleteL(stream_three);
1.472 + testStore->CommitL();
1.473 + testStore->DeleteL(stream_two);
1.474 + testStore->CommitL();
1.475 +
1.476 + // close the store
1.477 + CleanupStack::PopAndDestroy(testStore);
1.478 +
1.479 + // open store, try and read each of the streams, only stream_one should be present
1.480 + testStore = CPermanentFileStore::OpenLC(TheFs, msvTestPath, EFileWrite|EFileShareAny);
1.481 + RStoreReadStream rstream1, rstream2;
1.482 +
1.483 + // check stream_one ok
1.484 + TRAPD(error_stream_one,rstream1.OpenL(*testStore,stream_one));
1.485 + test(error_stream_one==KErrNone);
1.486 + rstream1.Close();
1.487 +
1.488 + // shouldn't be able to open this stream as we deleted it....
1.489 + TRAPD(error_stream_two,rstream2.OpenL(*testStore,stream_two));
1.490 + test(error_stream_two==KErrNotFound);
1.491 +
1.492 + CleanupStack::PopAndDestroy(testStore);
1.493 +
1.494 + (void)TheFs.Delete(msvTestPath);
1.495 + }
1.496 +
1.497 +/**
1.498 +@SYMTestCaseID PDS-STORE-UT-4059
1.499 +@SYMTestCaseDesc Tests for defect No ou1cimx1#422232
1.500 + The installed help topics are not organized to Application help topics.
1.501 +@SYMTestPriority High
1.502 +@SYMTestActions Tests that the EFileWriteDirectIO is appended only when necessary, also
1.503 + test that any EFileWriteBuffered is unset (no error occurs when this is
1.504 + passed in)
1.505 +@SYMTestExpectedResults Test must not fail
1.506 +@SYMDEF ou1cimx1#422232
1.507 +*/
1.508 +LOCAL_C void testOpenL()
1.509 + {
1.510 + _LIT(KFileName,"C:\\t_storfperm.dat");
1.511 +
1.512 + test.Next(_L("@SYMTestCaseID:PDS-STORE-UT-4059: CPermanentFileStore::ReplaceL() test"));
1.513 + CPermanentFileStore* testStore = CPermanentFileStore::ReplaceL(TheFs, KFileName, EFileWrite|EFileWriteBuffered);
1.514 + delete testStore;
1.515 +
1.516 + (void)TheFs.Delete(KFileName);
1.517 + }
1.518 +
1.519 +//
1.520 +// Prepare the test directory.
1.521 +//
1.522 +LOCAL_C void setupTestDirectory()
1.523 + {
1.524 + TInt r=TheFs.Connect();
1.525 + test(r==KErrNone);
1.526 +//
1.527 + TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));
1.528 + TParse parse;
1.529 + parse.Set(drive.Name(), &KFileLocationSpec, NULL);
1.530 +
1.531 + r=TheFs.MkDir(parse.DriveAndPath());
1.532 + test(r==KErrNone||r==KErrAlreadyExists);
1.533 + r=TheFs.SetSessionPath(parse.DriveAndPath());
1.534 + test(r==KErrNone);
1.535 + }
1.536 +
1.537 +//
1.538 +// Initialise the cleanup stack.
1.539 +//
1.540 +LOCAL_C void setupCleanup()
1.541 + {
1.542 + TheTrapCleanup=CTrapCleanup::New();
1.543 + test(TheTrapCleanup!=NULL);
1.544 + TRAPD(r,\
1.545 + {\
1.546 + for (TInt i=KTestCleanupStack;i>0;i--)\
1.547 + CleanupStack::PushL((TAny*)0);\
1.548 + CleanupStack::Pop(KTestCleanupStack);\
1.549 + });
1.550 + test(r==KErrNone);
1.551 + }
1.552 +
1.553 +LOCAL_C void DeleteDataFile(const TDesC& aFullName)
1.554 + {
1.555 + RFs fsSession;
1.556 + TInt err = fsSession.Connect();
1.557 + if(err == KErrNone)
1.558 + {
1.559 + TEntry entry;
1.560 + if(fsSession.Entry(aFullName, entry) == KErrNone)
1.561 + {
1.562 + RDebug::Print(_L("Deleting \"%S\" file.\n"), &aFullName);
1.563 + err = fsSession.SetAtt(aFullName, 0, KEntryAttReadOnly);
1.564 + if(err != KErrNone)
1.565 + {
1.566 + RDebug::Print(_L("Error %d changing \"%S\" file attributes.\n"), err, &aFullName);
1.567 + }
1.568 + err = fsSession.Delete(aFullName);
1.569 + if(err != KErrNone)
1.570 + {
1.571 + RDebug::Print(_L("Error %d deleting \"%S\" file.\n"), err, &aFullName);
1.572 + }
1.573 + }
1.574 + fsSession.Close();
1.575 + }
1.576 + else
1.577 + {
1.578 + RDebug::Print(_L("Error %d connecting file session. File: %S.\n"), err, &aFullName);
1.579 + }
1.580 + }
1.581 +
1.582 +//
1.583 +// Test permanent file store.
1.584 +//
1.585 +GLDEF_C TInt E32Main()
1.586 + {
1.587 + test.Title();
1.588 + setupTestDirectory();
1.589 + setupCleanup();
1.590 + __UHEAP_MARK;
1.591 +//
1.592 + test.Start(_L("Test permanent file store"));
1.593 + TRAPD(r,testWriteL());
1.594 + test(r==KErrNone);
1.595 + TRAP(r,testReadL());
1.596 + test(r==KErrNone);
1.597 + TRAP(r,testRecoveryL());
1.598 + test(r==KErrNone);
1.599 + TRAP(r,testCopyL());
1.600 + test(r==KErrNone);
1.601 + TRAP(r,testEmptyL());
1.602 + test(r==KErrNone);
1.603 + TRAP(r,testDetachL());
1.604 + test(r==KErrNone);
1.605 + TRAP(r,testDef039456L());
1.606 + test(r==KErrNone);
1.607 + TRAP(r,testOpenL());
1.608 + test(r==KErrNone);
1.609 +
1.610 + //deletion of data files must be before call to .End() - DEF047652
1.611 + TDriveUnit drive(static_cast<TUint>(RFs::GetSystemDrive()));
1.612 + TParse parse;
1.613 + parse.Set(drive.Name(), &KFileLocationSpec, NULL);
1.614 + ::DeleteDataFile(parse.FullName());
1.615 +
1.616 + test.End();
1.617 +//
1.618 + __UHEAP_MARKEND;
1.619 +
1.620 + delete TheTrapCleanup;
1.621 + if (TheFs.Delete(TheTempFile)!=KErrNone)
1.622 + test.Panic(_L("Deleting temp file"));
1.623 + TheFs.Close();
1.624 + test.Close();
1.625 + return 0;
1.626 + }
1.627 +