sl@0: // Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: sl@0: static RTest TheTest(_L("t_storbench")); sl@0: static CTrapCleanup* TheTrapCleanup; sl@0: static RFs TheFs; sl@0: sl@0: TFileName TheDirectStoreFilePath; sl@0: TFileName ThePermStoreFilePath; sl@0: TFileName TheStreamsFilePath; sl@0: sl@0: static void DeleteDataFiles(); sl@0: sl@0: const TInt KTestCleanupStack=0x20; sl@0: sl@0: class TElement sl@0: { sl@0: public : sl@0: TElement(); sl@0: public : sl@0: TBuf<256> iData; sl@0: }; sl@0: sl@0: TElement::TElement() sl@0: { sl@0: _LIT(KTextBase,"BASE"); sl@0: iData = KTextBase; sl@0: } sl@0: sl@0: #include "T_BMStreams.inl" sl@0: #include "T_BMStreamStore.inl" sl@0: #include "T_BMDirectFileStore.inl" sl@0: #include "T_BMPermFileStore.inl" sl@0: sl@0: //Tests macroses and functions. sl@0: //If (!aValue) then the test will be panicked, the test data files will be deleted. sl@0: static void Check(TInt aValue, TInt aLine) sl@0: { sl@0: if(!aValue) sl@0: { sl@0: DeleteDataFiles(); sl@0: TheTest(EFalse, aLine); sl@0: } sl@0: } sl@0: //If (aValue != aExpected) then the test will be panicked, the test data files will be deleted. sl@0: static void Check(TInt aValue, TInt aExpected, TInt aLine) sl@0: { sl@0: if(aValue != aExpected) sl@0: { sl@0: RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue); sl@0: DeleteDataFiles(); sl@0: TheTest(EFalse, aLine); sl@0: } sl@0: } sl@0: //Use these to test conditions. sl@0: #define TEST(arg) ::Check((arg), __LINE__) sl@0: #define TEST2(aValue, aExpected) ::Check(aValue, aExpected, __LINE__) sl@0: sl@0: LOCAL_C void PerformanceTesting() sl@0: { sl@0: TheTest.Start(_L(" @SYMTestCaseID:SYSLIB-STORE-LEGACY-STOREBENCHMARK-1204 Performance Testing for STORE Component ")); sl@0: // Call the performance tests sl@0: TRAPD(err, doStreamingL()); sl@0: TEST2(err, KErrNone); sl@0: sl@0: TRAP(err, doStoreStreamsL()); sl@0: TEST2(err, KErrNone); sl@0: sl@0: TRAP(err, doDirectFileStoresL()); sl@0: TEST2(err, KErrNone); sl@0: sl@0: TRAP(err, doPermanentFileStoreL()); sl@0: TEST2(err, KErrNone); sl@0: } sl@0: sl@0: // Prepare the test directory. sl@0: LOCAL_C void setupTestDirectory() sl@0: { sl@0: TInt err=TheFs.Connect(); sl@0: TEST2(err, KErrNone); sl@0: sl@0: TPtrC testDir=_L("\\STOR-TST\\"); sl@0: err=TheFs.MkDir(testDir); sl@0: TEST(err == KErrNone || err == KErrAlreadyExists); sl@0: sl@0: err=TheFs.SetSessionPath(testDir); sl@0: TEST2(err, KErrNone); sl@0: } sl@0: sl@0: // Initialise the cleanup stack. sl@0: LOCAL_C void setupCleanup() sl@0: { sl@0: TheTrapCleanup=CTrapCleanup::New(); sl@0: TEST(TheTrapCleanup != NULL); sl@0: TRAPD(err,\ sl@0: {\ sl@0: for (TInt i=KTestCleanupStack;i>0;i--)\ sl@0: CleanupStack::PushL((TAny*)1);\ sl@0: TEST(err==KErrNone);\ sl@0: CleanupStack::Pop(KTestCleanupStack);\ sl@0: }); sl@0: TEST2(err, KErrNone); sl@0: } sl@0: sl@0: static void DeleteDataFile(const TDesC& aFullName) sl@0: { sl@0: RFs fsSession; sl@0: TInt err = fsSession.Connect(); sl@0: if(err == KErrNone) sl@0: { sl@0: TEntry entry; sl@0: if(fsSession.Entry(aFullName, entry) == KErrNone) sl@0: { sl@0: RDebug::Print(_L("Deleting \"%S\" file.\n"), &aFullName); sl@0: err = fsSession.SetAtt(aFullName, 0, KEntryAttReadOnly); sl@0: if(err != KErrNone) sl@0: { sl@0: RDebug::Print(_L("Error %d changing \"%S\" file attributes.\n"), err, &aFullName); sl@0: } sl@0: err = fsSession.Delete(aFullName); sl@0: if(err != KErrNone) sl@0: { sl@0: RDebug::Print(_L("Error %d deleting \"%S\" file.\n"), err, &aFullName); sl@0: } sl@0: } sl@0: fsSession.Close(); sl@0: } sl@0: else sl@0: { sl@0: RDebug::Print(_L("Error %d connecting file session. File: %S.\n"), err, &aFullName); sl@0: } sl@0: } sl@0: static void DeleteDataFiles() sl@0: { sl@0: DeleteDataFile(TheDirectStoreFilePath); sl@0: DeleteDataFile(ThePermStoreFilePath); sl@0: DeleteDataFile(TheStreamsFilePath); sl@0: } sl@0: sl@0: // Test the stream and stores sl@0: GLDEF_C TInt E32Main() sl@0: { sl@0: __UHEAP_MARK; sl@0: TheTest.Title(); sl@0: setupTestDirectory(); sl@0: setupCleanup(); sl@0: sl@0: TRAPD(err, PerformanceTesting()); sl@0: TEST2(err, KErrNone); sl@0: sl@0: DeleteDataFiles(); sl@0: sl@0: TheTest.End(); sl@0: delete TheTrapCleanup; sl@0: TheFs.Close(); sl@0: TheTest.Close(); sl@0: __UHEAP_MARKEND; sl@0: sl@0: return 0; sl@0: } sl@0: sl@0: sl@0: