Update contrib.
1 // Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
22 static RTest TheTest(_L("t_storbench"));
23 static CTrapCleanup* TheTrapCleanup;
26 TFileName TheDirectStoreFilePath;
27 TFileName ThePermStoreFilePath;
28 TFileName TheStreamsFilePath;
30 static void DeleteDataFiles();
32 const TInt KTestCleanupStack=0x20;
44 _LIT(KTextBase,"BASE");
48 #include "T_BMStreams.inl"
49 #include "T_BMStreamStore.inl"
50 #include "T_BMDirectFileStore.inl"
51 #include "T_BMPermFileStore.inl"
53 //Tests macroses and functions.
54 //If (!aValue) then the test will be panicked, the test data files will be deleted.
55 static void Check(TInt aValue, TInt aLine)
60 TheTest(EFalse, aLine);
63 //If (aValue != aExpected) then the test will be panicked, the test data files will be deleted.
64 static void Check(TInt aValue, TInt aExpected, TInt aLine)
66 if(aValue != aExpected)
68 RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
70 TheTest(EFalse, aLine);
73 //Use these to test conditions.
74 #define TEST(arg) ::Check((arg), __LINE__)
75 #define TEST2(aValue, aExpected) ::Check(aValue, aExpected, __LINE__)
77 LOCAL_C void PerformanceTesting()
79 TheTest.Start(_L(" @SYMTestCaseID:SYSLIB-STORE-LEGACY-STOREBENCHMARK-1204 Performance Testing for STORE Component "));
80 // Call the performance tests
81 TRAPD(err, doStreamingL());
84 TRAP(err, doStoreStreamsL());
87 TRAP(err, doDirectFileStoresL());
90 TRAP(err, doPermanentFileStoreL());
94 // Prepare the test directory.
95 LOCAL_C void setupTestDirectory()
97 TInt err=TheFs.Connect();
100 TPtrC testDir=_L("\\STOR-TST\\");
101 err=TheFs.MkDir(testDir);
102 TEST(err == KErrNone || err == KErrAlreadyExists);
104 err=TheFs.SetSessionPath(testDir);
105 TEST2(err, KErrNone);
108 // Initialise the cleanup stack.
109 LOCAL_C void setupCleanup()
111 TheTrapCleanup=CTrapCleanup::New();
112 TEST(TheTrapCleanup != NULL);
115 for (TInt i=KTestCleanupStack;i>0;i--)\
116 CleanupStack::PushL((TAny*)1);\
117 TEST(err==KErrNone);\
118 CleanupStack::Pop(KTestCleanupStack);\
120 TEST2(err, KErrNone);
123 static void DeleteDataFile(const TDesC& aFullName)
126 TInt err = fsSession.Connect();
130 if(fsSession.Entry(aFullName, entry) == KErrNone)
132 RDebug::Print(_L("Deleting \"%S\" file.\n"), &aFullName);
133 err = fsSession.SetAtt(aFullName, 0, KEntryAttReadOnly);
136 RDebug::Print(_L("Error %d changing \"%S\" file attributes.\n"), err, &aFullName);
138 err = fsSession.Delete(aFullName);
141 RDebug::Print(_L("Error %d deleting \"%S\" file.\n"), err, &aFullName);
148 RDebug::Print(_L("Error %d connecting file session. File: %S.\n"), err, &aFullName);
151 static void DeleteDataFiles()
153 DeleteDataFile(TheDirectStoreFilePath);
154 DeleteDataFile(ThePermStoreFilePath);
155 DeleteDataFile(TheStreamsFilePath);
158 // Test the stream and stores
159 GLDEF_C TInt E32Main()
163 setupTestDirectory();
166 TRAPD(err, PerformanceTesting());
167 TEST2(err, KErrNone);
172 delete TheTrapCleanup;