1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/persistentdata/persistentstorage/store/TSTOR/t_storbench.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,181 @@
1.4 +// Copyright (c) 2005-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 <s32mem.h>
1.20 +#include <s32file.h>
1.21 +#include <e32test.h>
1.22 +#include <e32base.h>
1.23 +#include <e32cons.h>
1.24 +
1.25 +static RTest TheTest(_L("t_storbench"));
1.26 +static CTrapCleanup* TheTrapCleanup;
1.27 +static RFs TheFs;
1.28 +
1.29 +TFileName TheDirectStoreFilePath;
1.30 +TFileName ThePermStoreFilePath;
1.31 +TFileName TheStreamsFilePath;
1.32 +
1.33 +static void DeleteDataFiles();
1.34 +
1.35 +const TInt KTestCleanupStack=0x20;
1.36 +
1.37 +class TElement
1.38 + {
1.39 +public :
1.40 + TElement();
1.41 +public :
1.42 + TBuf<256> iData;
1.43 + };
1.44 +
1.45 +TElement::TElement()
1.46 + {
1.47 + _LIT(KTextBase,"BASE");
1.48 + iData = KTextBase;
1.49 + }
1.50 +
1.51 +#include "T_BMStreams.inl"
1.52 +#include "T_BMStreamStore.inl"
1.53 +#include "T_BMDirectFileStore.inl"
1.54 +#include "T_BMPermFileStore.inl"
1.55 +
1.56 +//Tests macroses and functions.
1.57 +//If (!aValue) then the test will be panicked, the test data files will be deleted.
1.58 +static void Check(TInt aValue, TInt aLine)
1.59 + {
1.60 + if(!aValue)
1.61 + {
1.62 + DeleteDataFiles();
1.63 + TheTest(EFalse, aLine);
1.64 + }
1.65 + }
1.66 +//If (aValue != aExpected) then the test will be panicked, the test data files will be deleted.
1.67 +static void Check(TInt aValue, TInt aExpected, TInt aLine)
1.68 + {
1.69 + if(aValue != aExpected)
1.70 + {
1.71 + RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
1.72 + DeleteDataFiles();
1.73 + TheTest(EFalse, aLine);
1.74 + }
1.75 + }
1.76 +//Use these to test conditions.
1.77 +#define TEST(arg) ::Check((arg), __LINE__)
1.78 +#define TEST2(aValue, aExpected) ::Check(aValue, aExpected, __LINE__)
1.79 +
1.80 +LOCAL_C void PerformanceTesting()
1.81 + {
1.82 + TheTest.Start(_L(" @SYMTestCaseID:SYSLIB-STORE-LEGACY-STOREBENCHMARK-1204 Performance Testing for STORE Component "));
1.83 + // Call the performance tests
1.84 + TRAPD(err, doStreamingL());
1.85 + TEST2(err, KErrNone);
1.86 +
1.87 + TRAP(err, doStoreStreamsL());
1.88 + TEST2(err, KErrNone);
1.89 +
1.90 + TRAP(err, doDirectFileStoresL());
1.91 + TEST2(err, KErrNone);
1.92 +
1.93 + TRAP(err, doPermanentFileStoreL());
1.94 + TEST2(err, KErrNone);
1.95 + }
1.96 +
1.97 +// Prepare the test directory.
1.98 +LOCAL_C void setupTestDirectory()
1.99 + {
1.100 + TInt err=TheFs.Connect();
1.101 + TEST2(err, KErrNone);
1.102 +
1.103 + TPtrC testDir=_L("\\STOR-TST\\");
1.104 + err=TheFs.MkDir(testDir);
1.105 + TEST(err == KErrNone || err == KErrAlreadyExists);
1.106 +
1.107 + err=TheFs.SetSessionPath(testDir);
1.108 + TEST2(err, KErrNone);
1.109 + }
1.110 +
1.111 +// Initialise the cleanup stack.
1.112 +LOCAL_C void setupCleanup()
1.113 + {
1.114 + TheTrapCleanup=CTrapCleanup::New();
1.115 + TEST(TheTrapCleanup != NULL);
1.116 + TRAPD(err,\
1.117 + {\
1.118 + for (TInt i=KTestCleanupStack;i>0;i--)\
1.119 + CleanupStack::PushL((TAny*)1);\
1.120 + TEST(err==KErrNone);\
1.121 + CleanupStack::Pop(KTestCleanupStack);\
1.122 + });
1.123 + TEST2(err, KErrNone);
1.124 + }
1.125 +
1.126 +static void DeleteDataFile(const TDesC& aFullName)
1.127 + {
1.128 + RFs fsSession;
1.129 + TInt err = fsSession.Connect();
1.130 + if(err == KErrNone)
1.131 + {
1.132 + TEntry entry;
1.133 + if(fsSession.Entry(aFullName, entry) == KErrNone)
1.134 + {
1.135 + RDebug::Print(_L("Deleting \"%S\" file.\n"), &aFullName);
1.136 + err = fsSession.SetAtt(aFullName, 0, KEntryAttReadOnly);
1.137 + if(err != KErrNone)
1.138 + {
1.139 + RDebug::Print(_L("Error %d changing \"%S\" file attributes.\n"), err, &aFullName);
1.140 + }
1.141 + err = fsSession.Delete(aFullName);
1.142 + if(err != KErrNone)
1.143 + {
1.144 + RDebug::Print(_L("Error %d deleting \"%S\" file.\n"), err, &aFullName);
1.145 + }
1.146 + }
1.147 + fsSession.Close();
1.148 + }
1.149 + else
1.150 + {
1.151 + RDebug::Print(_L("Error %d connecting file session. File: %S.\n"), err, &aFullName);
1.152 + }
1.153 + }
1.154 +static void DeleteDataFiles()
1.155 + {
1.156 + DeleteDataFile(TheDirectStoreFilePath);
1.157 + DeleteDataFile(ThePermStoreFilePath);
1.158 + DeleteDataFile(TheStreamsFilePath);
1.159 + }
1.160 +
1.161 +// Test the stream and stores
1.162 +GLDEF_C TInt E32Main()
1.163 + {
1.164 + __UHEAP_MARK;
1.165 + TheTest.Title();
1.166 + setupTestDirectory();
1.167 + setupCleanup();
1.168 +
1.169 + TRAPD(err, PerformanceTesting());
1.170 + TEST2(err, KErrNone);
1.171 +
1.172 + DeleteDataFiles();
1.173 +
1.174 + TheTest.End();
1.175 + delete TheTrapCleanup;
1.176 + TheFs.Close();
1.177 + TheTest.Close();
1.178 + __UHEAP_MARKEND;
1.179 +
1.180 + return 0;
1.181 + }
1.182 +
1.183 +
1.184 +