1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/persistentdata/persistentstorage/dbms/tdbms/t_dbbig.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,568 @@
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 +// MSVC++ up to 5.0 has problems with expanding inline functions
1.20 +// This disables the mad warnings for the whole project
1.21 +#if defined(NDEBUG) && defined(__VC32__) && _MSC_VER<=1100
1.22 +#pragma warning(disable : 4710) // function not expanded. MSVC 5.0 is stupid
1.23 +#endif
1.24 +
1.25 +#include <d32dbms.h>
1.26 +#include <s32file.h>
1.27 +#include <e32test.h>
1.28 +#include <e32math.h>
1.29 +#include <hal.h>
1.30 +
1.31 +class TTimer
1.32 + {
1.33 +public:
1.34 + void Start(const TDesC& aDes);
1.35 + void Stop();
1.36 +private:
1.37 + TUint iTicks;
1.38 + };
1.39 +
1.40 +LOCAL_D RTest test(_L("t_dbbig - Test Large DBMS objects"));
1.41 +LOCAL_D CTrapCleanup* TheTrapCleanup;
1.42 +LOCAL_D CFileStore* TheStore;
1.43 +LOCAL_D RDbStoreDatabase TheDatabase;
1.44 +LOCAL_D RDbTable TheTable;
1.45 +LOCAL_D RFs TheFs;
1.46 +
1.47 +const TInt KTestCleanupStack=0x20;
1.48 +const TPtrC KTestDir=_L("C:\\DBMS-TST\\");
1.49 +const TPtrC KTestFile=_L("T_BIG.DB");
1.50 +const TPtrC KTableName(_S("table"));
1.51 +const TPtrC KIndexText=_S("text");
1.52 +const TPtrC KIndexInt=_S("int");
1.53 +const TPtrC KColumnText=_S("text");
1.54 +const TPtrC KColumnInt=_S("int");
1.55 +const TPtrC KIncFormat=_S("%5d\r");
1.56 +const TInt KRecords=1000;
1.57 +const TPtrC KOtherTable=_S("extra");
1.58 +
1.59 +static TTimer TheTimer;
1.60 +
1.61 +void TTimer::Start(const TDesC& aDes)
1.62 + {
1.63 + test.Printf(_L(" %S: "),&aDes);
1.64 + iTicks=User::FastCounter();
1.65 + }
1.66 +
1.67 +void TTimer::Stop()
1.68 + {
1.69 + TUint ticks = User::FastCounter() - iTicks;
1.70 + TInt freq = 0;
1.71 + test(HAL::Get(HAL::EFastCounterFrequency, freq) == KErrNone);
1.72 + const TInt KMicroSecIn1Sec = 1000000;
1.73 + const TInt KMsIn1Sec = 1000;
1.74 + double v = ((double)ticks * KMicroSecIn1Sec) / (double)freq; TInt v2 = (TInt)v;
1.75 + test.Printf(_L("%d ms\r\n"),v2/KMsIn1Sec);
1.76 + }
1.77 +
1.78 +/**
1.79 +@SYMTestCaseID SYSLIB-DBMS-CT-1309
1.80 +@SYMTestCaseDesc Create the database-in-a-store
1.81 +@SYMTestPriority Medium
1.82 +@SYMTestActions Calls up RDbStoreDatabase::CreateL() function
1.83 +@SYMTestExpectedResults Test must not fail
1.84 +@SYMREQ REQ0000
1.85 +*/
1.86 +LOCAL_C void CreateDatabaseL()
1.87 + {
1.88 + test.Next(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-1309 "));
1.89 + CFileStore* store=CPermanentFileStore::ReplaceLC(TheFs,KTestFile,EFileRead|EFileWrite);
1.90 + store->SetTypeL(KPermanentFileStoreLayoutUid);
1.91 + TStreamId id;
1.92 + id=TheDatabase.CreateL(store);
1.93 + store->SetRootL(id);
1.94 + store->CommitL();
1.95 + CleanupStack::Pop();
1.96 + TheStore=store;
1.97 + }
1.98 +
1.99 +/**
1.100 +@SYMTestCaseID SYSLIB-DBMS-CT-1310
1.101 +@SYMTestCaseDesc Open the database-in-a-store
1.102 +@SYMTestPriority Medium
1.103 +@SYMTestActions Call up RDbStoreDatabase::OpenL()
1.104 +@SYMTestExpectedResults Test must not fail
1.105 +@SYMREQ REQ0000
1.106 +*/
1.107 +LOCAL_C void OpenDatabaseL()
1.108 + {
1.109 + test.Next(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-1310 "));
1.110 + CFileStore* store=CPermanentFileStore::OpenLC(TheFs,KTestFile,EFileRead|EFileWrite);
1.111 + TheDatabase.OpenL(store,store->Root());
1.112 + CleanupStack::Pop();
1.113 + TheStore=store;
1.114 + }
1.115 +
1.116 +/**
1.117 +@SYMTestCaseID SYSLIB-DBMS-CT-1311
1.118 +@SYMTestCaseDesc Close the database in store
1.119 +@SYMTestPriority Medium
1.120 +@SYMTestActions Test for RDbStoreDatabase::Close() function
1.121 +@SYMTestExpectedResults Test must not fail
1.122 +@SYMREQ REQ0000
1.123 +*/
1.124 +LOCAL_C void CloseDatabase()
1.125 + {
1.126 + test.Next(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-1311 "));
1.127 + TheDatabase.Close();
1.128 + delete TheStore;
1.129 + }
1.130 +
1.131 +LOCAL_C void CreateTableL()
1.132 + {
1.133 + CDbColSet *cs=CDbColSet::NewLC();
1.134 + TDbCol col1(KColumnInt,EDbColInt32);
1.135 + col1.iAttributes=TDbCol::ENotNull;
1.136 + cs->AddL(col1);
1.137 + TDbCol col2(KColumnText,EDbColText,200/sizeof(TText));
1.138 + col2.iAttributes=TDbCol::ENotNull;
1.139 + cs->AddL(col2);
1.140 + test(TheDatabase.CreateTable(KTableName,*cs)==KErrNone);
1.141 + CleanupStack::PopAndDestroy();
1.142 + }
1.143 +
1.144 +LOCAL_C void WriteRecordsL(TInt aCount)
1.145 + {
1.146 + TBuf<10> text;
1.147 + TInt jj=0;
1.148 + for (TInt ii=0;ii<aCount;++ii)
1.149 + {
1.150 + TheTable.InsertL();
1.151 + jj=(jj+23);
1.152 + if (jj>=aCount)
1.153 + jj-=aCount;
1.154 + TheTable.SetColL(1,jj);
1.155 + text.Num(jj);
1.156 + TheTable.SetColL(2,text);
1.157 + TheTable.PutL();
1.158 + }
1.159 + }
1.160 +
1.161 +/**
1.162 +@SYMTestCaseID SYSLIB-DBMS-CT-1312
1.163 +@SYMTestCaseDesc Create a table in database
1.164 +@SYMTestPriority Medium
1.165 +@SYMTestActions Build a table and write records into the table.Test for commiting the transactions.
1.166 +@SYMTestExpectedResults Test must not fail
1.167 +@SYMREQ REQ0000
1.168 +*/
1.169 +LOCAL_C void BuildTableL(TInt aCount)
1.170 + {
1.171 + test.Next(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-1312 "));
1.172 + TheTimer.Start(_L("build"));
1.173 + CreateTableL();
1.174 + TheDatabase.Begin();
1.175 + test(TheTable.Open(TheDatabase,KTableName)==KErrNone);
1.176 + WriteRecordsL(aCount);
1.177 + test(TheDatabase.Commit()==KErrNone);
1.178 + TheTable.Close();
1.179 + TheTimer.Stop();
1.180 + }
1.181 +
1.182 +/**
1.183 +@SYMTestCaseID SYSLIB-DBMS-CT-1313
1.184 +@SYMTestCaseDesc Tests for total rows in the rowset
1.185 +@SYMTestPriority Medium
1.186 +@SYMTestActions Iterate through the table.Test for the total numbers of rows available
1.187 +@SYMTestExpectedResults Test must not fail
1.188 +@SYMREQ REQ0000
1.189 +*/
1.190 +LOCAL_C void IterateL(RDbTable::TPosition aDirection)
1.191 + {
1.192 + test.Next(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-1313 "));
1.193 + TheTimer.Start(_L("iterate"));
1.194 + TInt cc=0;
1.195 + while (TheTable.GotoL(aDirection))
1.196 + {
1.197 + ++cc;
1.198 + TheTable.GetL();
1.199 + }
1.200 + TheTimer.Stop();
1.201 + test(cc=TheTable.CountL());
1.202 + }
1.203 +
1.204 +/**
1.205 +@SYMTestCaseID SYSLIB-DBMS-CT-0580
1.206 +@SYMTestCaseDesc Tests the database definition and enquiry functions
1.207 +@SYMTestPriority Medium
1.208 +@SYMTestActions Tests by setting an active index for the table.
1.209 +@SYMTestExpectedResults Test must not fail
1.210 +@SYMREQ REQ0000
1.211 +*/
1.212 +LOCAL_C void TestIndexL(const TDesC& aName,const CDbKey& aKey)
1.213 + {
1.214 + test.Next(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0580 "));
1.215 + TheTimer.Start(_L("build"));
1.216 + test(TheDatabase.CreateIndex(aName,KTableName,aKey)==KErrNone);
1.217 + TheTimer.Stop();
1.218 + test(TheTable.Open(TheDatabase,KTableName)==KErrNone);
1.219 + test(TheTable.SetIndex(aName)==KErrNone);
1.220 + IterateL(TheTable.ENext);
1.221 + TheTable.Close();
1.222 + }
1.223 +
1.224 +/**
1.225 +@SYMTestCaseID SYSLIB-DBMS-CT-0581
1.226 +@SYMTestCaseDesc Tests the database definition and enquiry functions
1.227 +@SYMTestPriority Medium
1.228 +@SYMTestActions Tests for bookmark which saves the current location of a rowset.
1.229 +@SYMTestExpectedResults Test must not fail
1.230 +@SYMREQ REQ0000
1.231 +*/
1.232 +LOCAL_C void TestBookmarkL()
1.233 + {
1.234 + test.Start(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0581 creating alien bookmark "));
1.235 + CDbColSet* cs=CDbColSet::NewLC();
1.236 + TDbCol col(_L("column"),EDbColUint8);
1.237 + col.iAttributes=TDbCol::ENotNull+TDbCol::EAutoIncrement;
1.238 + cs->AddL(col);
1.239 + test (TheDatabase.CreateTable(KOtherTable,*cs)==KErrNone);
1.240 + CleanupStack::PopAndDestroy();
1.241 + RDbTable extra;
1.242 + test (extra.Open(TheDatabase,KOtherTable)==KErrNone);
1.243 + extra.InsertL();
1.244 + extra.PutL();
1.245 + TDbBookmark alien=extra.Bookmark();
1.246 + extra.Close();
1.247 +//
1.248 + test.Next(_L("Alien bookmark"));
1.249 + test (TheTable.Open(TheDatabase,KTableName)==KErrNone);
1.250 + TRAPD(r,TheTable.GotoL(alien));
1.251 + test (r==KErrNotFound);
1.252 + test (TheTable.SetIndex(KIndexInt)==KErrNone);
1.253 + TRAP(r,TheTable.GotoL(alien));
1.254 + test (r==KErrNotFound);
1.255 + test (TheTable.SetIndex(KIndexText)==KErrNone);
1.256 + TRAP(r,TheTable.GotoL(alien));
1.257 + test (r==KErrNotFound);
1.258 +//
1.259 + test.Next(_L("Cross-view bookmarks"));
1.260 + TheTable.LastL(); // indexed view
1.261 + TheTable.PreviousL();
1.262 + TDbBookmark mark=TheTable.Bookmark();
1.263 + test (extra.Open(TheDatabase,KTableName)==KErrNone);
1.264 + TRAP(r,extra.GotoL(mark));
1.265 + test (r==KErrNone);
1.266 + test (extra.PreviousL());
1.267 + TRAP(r,TheTable.GotoL(extra.Bookmark()));
1.268 + test (r==KErrNone);
1.269 + extra.Close();
1.270 +//
1.271 + test.Next(_L("Bookmark persistence"));
1.272 + TheTable.Close();
1.273 + test (TheTable.Open(TheDatabase,KTableName)==KErrNone);
1.274 + TRAP(r,TheTable.GotoL(mark));
1.275 + test (r==KErrNone);
1.276 + TheTable.Close();
1.277 +//
1.278 + test.Next(_L("Delete alien record"));
1.279 + test (extra.Open(TheDatabase,KOtherTable)==KErrNone);
1.280 + TRAP(r, extra.GotoL(mark));
1.281 + test (r==KErrNotFound);
1.282 + TRAP(r,extra.GotoL(alien));
1.283 + test (r==KErrNone);
1.284 + extra.DeleteL();
1.285 + TRAP(r,extra.GotoL(alien));
1.286 + test (r==KErrNotFound);
1.287 + extra.Close();
1.288 +//
1.289 + test.Next(_L("Delete extra table"));
1.290 + test (TheDatabase.DropTable(KOtherTable)==KErrNone);
1.291 + test (TheTable.Open(TheDatabase,KTableName)==KErrNone);
1.292 + TRAP(r,TheTable.GotoL(alien));
1.293 + test (r==KErrNotFound);
1.294 + TheTable.Close();
1.295 +//
1.296 + test.End();
1.297 + }
1.298 +
1.299 +/**
1.300 +@SYMTestCaseID SYSLIB-DBMS-CT-1314
1.301 +@SYMTestCaseDesc Discarding indexes belonging to the table on database
1.302 +@SYMTestPriority Medium
1.303 +@SYMTestActions Tests for RDbIncremental::DropTable(),RDbIncremental::Next() function.
1.304 +@SYMTestExpectedResults Test must not fail
1.305 +@SYMREQ REQ0000
1.306 +*/
1.307 +LOCAL_C void BreakIndex()
1.308 + {
1.309 + test.Next(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-1314 "));
1.310 + TheTimer.Start(_L("break"));
1.311 + TInt step;
1.312 + RDbIncremental drop;
1.313 + test(drop.DropTable(TheDatabase,KTableName,step)==KErrNone);
1.314 + test(drop.Next(step)==KErrNone);
1.315 + test(step>0);
1.316 + drop.Close(); // abort the drop
1.317 + test(TheDatabase.IsDamaged());
1.318 + TheTimer.Stop();
1.319 + }
1.320 +
1.321 +/**
1.322 +@SYMTestCaseID SYSLIB-DBMS-CT-1315
1.323 +@SYMTestCaseDesc Database recovery test
1.324 +@SYMTestPriority Medium
1.325 +@SYMTestActions Calls up RDbStoreDatabase::Recover() function
1.326 +@SYMTestExpectedResults Test must not fail
1.327 +@SYMREQ REQ0000
1.328 +*/
1.329 +LOCAL_C void Recover()
1.330 + {
1.331 + test.Next(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-1315 "));
1.332 + TheTimer.Start(_L("recover"));
1.333 + test(TheDatabase.Recover()==KErrNone);
1.334 + TheTimer.Stop();
1.335 + test(!TheDatabase.IsDamaged());
1.336 + }
1.337 +
1.338 +/**
1.339 +@SYMTestCaseID SYSLIB-DBMS-CT-1316
1.340 +@SYMTestCaseDesc Tests for dropping an index
1.341 +@SYMTestPriority Medium
1.342 +@SYMTestActions Drop an integer and text index from the table. Test for damage of database
1.343 +@SYMTestExpectedResults Test must not fail
1.344 +@SYMREQ REQ0000
1.345 +*/
1.346 +LOCAL_C void DropIndexes()
1.347 + {
1.348 + test.Next(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-1316 "));
1.349 + TheTimer.Start(_L("drop Int[32]"));
1.350 + test(TheDatabase.DropIndex(KIndexInt,KTableName)==KErrNone);
1.351 + TheTimer.Stop();
1.352 + TheTimer.Start(_L("drop Text[200]"));
1.353 + test(TheDatabase.DropIndex(KIndexText,KTableName)==KErrNone);
1.354 + TheTimer.Stop();
1.355 + test(!TheDatabase.IsDamaged());
1.356 + }
1.357 +
1.358 +/**
1.359 +@SYMTestCaseID SYSLIB-DBMS-CT-1317
1.360 +@SYMTestCaseDesc Deleting a table from the database
1.361 +@SYMTestPriority Medium
1.362 +@SYMTestActions Delete the rows from the rowset.Check for empty rows in the rowset.
1.363 +@SYMTestExpectedResults Test must not fail
1.364 +@SYMREQ REQ0000
1.365 +*/
1.366 +LOCAL_C void DeleteTableL()
1.367 + {
1.368 + test.Next(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-1317 "));
1.369 + const TInt KTenthRecords=KRecords/10;
1.370 +
1.371 + test (TheTable.Open(TheDatabase,KTableName)==KErrNone);
1.372 + TheDatabase.Begin();
1.373 + TInt ii;
1.374 + for (ii=0;ii<15;++ii)
1.375 + {
1.376 + TheTable.NextL();
1.377 + TheTable.DeleteL();
1.378 + }
1.379 + TheTable.NextL();
1.380 + TDbBookmark mark=TheTable.Bookmark();
1.381 + TheTable.Close();
1.382 + TheDatabase.Commit();
1.383 + CloseDatabase();
1.384 + OpenDatabaseL();
1.385 + TheTimer.Start(_L("delete table"));
1.386 + test (TheTable.Open(TheDatabase,KTableName)==KErrNone);
1.387 + TheDatabase.Begin();
1.388 + TheTable.GotoL(mark);
1.389 + TheTable.DeleteL();
1.390 + for (ii=0;ii<KTenthRecords*2-16;++ii)
1.391 + {
1.392 + TheTable.NextL();
1.393 + TheTable.DeleteL();
1.394 + }
1.395 + TheTable.EndL();
1.396 + for (ii=0;ii<KTenthRecords*2;++ii)
1.397 + {
1.398 + TheTable.PreviousL();
1.399 + TheTable.DeleteL();
1.400 + }
1.401 + TheTable.BeginningL();
1.402 + for (ii=0;ii<KTenthRecords*3;++ii)
1.403 + TheTable.NextL();
1.404 + for (ii=0;ii<KTenthRecords*2;++ii)
1.405 + {
1.406 + TheTable.NextL();
1.407 + TheTable.DeleteL();
1.408 + }
1.409 + for (ii=0;ii<KTenthRecords*2;++ii)
1.410 + {
1.411 + TheTable.PreviousL();
1.412 + TheTable.DeleteL();
1.413 + }
1.414 + for (ii=0;ii<KTenthRecords;++ii)
1.415 + {
1.416 + TheTable.NextL();
1.417 + TheTable.DeleteL();
1.418 + }
1.419 + for (ii=0;ii<KTenthRecords;++ii)
1.420 + {
1.421 + TheTable.PreviousL();
1.422 + TheTable.DeleteL();
1.423 + }
1.424 + test (TheTable.CountL()==0);
1.425 + test (!TheTable.NextL());
1.426 + test (!TheTable.PreviousL());
1.427 + test (TheDatabase.Commit()==KErrNone);
1.428 + TheTable.Close();
1.429 + TheTimer.Stop();
1.430 + }
1.431 +
1.432 +/**
1.433 +@SYMTestCaseID SYSLIB-DBMS-CT-0579
1.434 +@SYMTestCaseDesc Tests the database definition and enquiry functions
1.435 +@SYMTestPriority Medium
1.436 +@SYMTestActions Executes the index and bookmark tests
1.437 +@SYMTestExpectedResults Test must not fail
1.438 +@SYMREQ REQ0000
1.439 +*/
1.440 +LOCAL_C void BigTestL()
1.441 + {
1.442 + test.Start(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0579 Table "));
1.443 + CreateDatabaseL();
1.444 + BuildTableL(KRecords);
1.445 + test(TheTable.Open(TheDatabase,KTableName)==KErrNone);
1.446 + TheTable.EndL();
1.447 + IterateL(TheTable.EPrevious);
1.448 + TheTable.BeginningL();
1.449 + IterateL(TheTable.ENext);
1.450 + TheTable.EndL();
1.451 + IterateL(TheTable.EPrevious);
1.452 + TheTable.Close();
1.453 + test.Next(_L("Int32 Index"));
1.454 + CDbKey *key=CDbKey::NewLC();
1.455 + key->AddL(KColumnInt);
1.456 + key->MakeUnique();
1.457 + TestIndexL(KIndexInt,*key);
1.458 + test.Next(_L("Text[200] Index"));
1.459 + key->Clear();
1.460 + key->AddL(KColumnText);
1.461 + key->MakeUnique();
1.462 + TestIndexL(KIndexText,*key);
1.463 + test.Next(_L("Bookmarks"));
1.464 + TestBookmarkL();
1.465 + test.Next(_L("Int32 Index"));
1.466 + TheTimer.Start(_L("drop"));
1.467 + test(TheDatabase.DropIndex(KIndexInt,KTableName)==KErrNone);
1.468 + TheTimer.Stop();
1.469 + key->Clear();
1.470 + key->AddL(KColumnInt);
1.471 + key->MakeUnique();
1.472 + TestIndexL(KIndexInt,*key);
1.473 + CleanupStack::PopAndDestroy();
1.474 + test.Next(_L("Break & Recover"));
1.475 + BreakIndex();
1.476 + Recover();
1.477 + test.Next(_L("Drop Indexes"));
1.478 + DropIndexes();
1.479 + test.Next(_L("Delete all records"));
1.480 + DeleteTableL();
1.481 + CloseDatabase();
1.482 + test.End();
1.483 + }
1.484 +
1.485 +//
1.486 +// Prepare the test directory.
1.487 +//
1.488 +LOCAL_C void setupTestDirectory()
1.489 + {
1.490 + TInt r=TheFs.Connect();
1.491 + test(r==KErrNone);
1.492 + r=TheFs.MkDir(KTestDir);
1.493 + test(r==KErrNone || r==KErrAlreadyExists);
1.494 + r=TheFs.SetSessionPath(KTestDir);
1.495 + test(r==KErrNone);
1.496 + }
1.497 +
1.498 +//
1.499 +// Initialise the cleanup stack.
1.500 +//
1.501 +LOCAL_C void setupCleanup()
1.502 + {
1.503 + TheTrapCleanup=CTrapCleanup::New();
1.504 + test(TheTrapCleanup!=NULL);
1.505 + TRAPD(r,\
1.506 + {\
1.507 + for (TInt i=KTestCleanupStack;i>0;i--)\
1.508 + CleanupStack::PushL((TAny*)0);\
1.509 + CleanupStack::Pop(KTestCleanupStack);\
1.510 + });
1.511 + test(r==KErrNone);
1.512 + }
1.513 +
1.514 +LOCAL_C void DeleteDataFile(const TDesC& aFullName)
1.515 + {
1.516 + RFs fsSession;
1.517 + TInt err = fsSession.Connect();
1.518 + if(err == KErrNone)
1.519 + {
1.520 + TEntry entry;
1.521 + if(fsSession.Entry(aFullName, entry) == KErrNone)
1.522 + {
1.523 + RDebug::Print(_L("Deleting \"%S\" file.\n"), &aFullName);
1.524 + err = fsSession.SetAtt(aFullName, 0, KEntryAttReadOnly);
1.525 + if(err != KErrNone)
1.526 + {
1.527 + RDebug::Print(_L("Error %d changing \"%S\" file attributes.\n"), err, &aFullName);
1.528 + }
1.529 + err = fsSession.Delete(aFullName);
1.530 + if(err != KErrNone)
1.531 + {
1.532 + RDebug::Print(_L("Error %d deleting \"%S\" file.\n"), err, &aFullName);
1.533 + }
1.534 + }
1.535 + fsSession.Close();
1.536 + }
1.537 + else
1.538 + {
1.539 + RDebug::Print(_L("Error %d connecting file session. File: %S.\n"), err, &aFullName);
1.540 + }
1.541 + }
1.542 +
1.543 +//
1.544 +// Test streaming conversions.
1.545 +//
1.546 +GLDEF_C TInt E32Main()
1.547 + {
1.548 + test.Title();
1.549 + setupTestDirectory();
1.550 + setupCleanup();
1.551 + __UHEAP_MARK;
1.552 +//
1.553 + test.Start(_L("Standard database"));
1.554 + TRAPD(r,BigTestL();)
1.555 + test(r==KErrNone);
1.556 +
1.557 + // clean up data files used by this test - must be done before call to End() - DEF047652
1.558 + _LIT(KTestDbName, "C:\\DBMS-TST\\T_BIG.DB");
1.559 + ::DeleteDataFile(KTestDbName);
1.560 +
1.561 + test.End();
1.562 +//
1.563 + __UHEAP_MARKEND;
1.564 + delete TheTrapCleanup;
1.565 +
1.566 +
1.567 +
1.568 + TheFs.Close();
1.569 + test.Close();
1.570 + return 0;
1.571 + }