os/persistentdata/persistentstorage/store/TSTOR/t_storbench.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
//
sl@0
    15
sl@0
    16
#include <s32mem.h>
sl@0
    17
#include <s32file.h>
sl@0
    18
#include <e32test.h>
sl@0
    19
#include <e32base.h>
sl@0
    20
#include <e32cons.h>
sl@0
    21
sl@0
    22
static	RTest				TheTest(_L("t_storbench"));
sl@0
    23
static	CTrapCleanup*		TheTrapCleanup;
sl@0
    24
static	RFs					TheFs;
sl@0
    25
sl@0
    26
TFileName TheDirectStoreFilePath;
sl@0
    27
TFileName ThePermStoreFilePath;
sl@0
    28
TFileName TheStreamsFilePath;
sl@0
    29
sl@0
    30
static void DeleteDataFiles();
sl@0
    31
sl@0
    32
const TInt KTestCleanupStack=0x20;
sl@0
    33
sl@0
    34
class TElement
sl@0
    35
	{
sl@0
    36
public :
sl@0
    37
	TElement();
sl@0
    38
public :
sl@0
    39
	TBuf<256> iData;
sl@0
    40
	};
sl@0
    41
sl@0
    42
TElement::TElement()
sl@0
    43
	{
sl@0
    44
	_LIT(KTextBase,"BASE");
sl@0
    45
	iData = KTextBase;
sl@0
    46
	}
sl@0
    47
sl@0
    48
#include "T_BMStreams.inl"
sl@0
    49
#include "T_BMStreamStore.inl"
sl@0
    50
#include "T_BMDirectFileStore.inl"
sl@0
    51
#include "T_BMPermFileStore.inl"
sl@0
    52
sl@0
    53
//Tests macroses and functions.
sl@0
    54
//If (!aValue) then the test will be panicked, the test data files will be deleted.
sl@0
    55
static void Check(TInt aValue, TInt aLine)
sl@0
    56
	{
sl@0
    57
	if(!aValue)
sl@0
    58
		{
sl@0
    59
		DeleteDataFiles();
sl@0
    60
		TheTest(EFalse, aLine);
sl@0
    61
		}
sl@0
    62
	}
sl@0
    63
//If (aValue != aExpected) then the test will be panicked, the test data files will be deleted.
sl@0
    64
static void Check(TInt aValue, TInt aExpected, TInt aLine)
sl@0
    65
	{
sl@0
    66
	if(aValue != aExpected)
sl@0
    67
		{
sl@0
    68
		RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
sl@0
    69
		DeleteDataFiles();
sl@0
    70
		TheTest(EFalse, aLine);
sl@0
    71
		}
sl@0
    72
	}
sl@0
    73
//Use these to test conditions.
sl@0
    74
#define TEST(arg) ::Check((arg), __LINE__)
sl@0
    75
#define TEST2(aValue, aExpected) ::Check(aValue, aExpected, __LINE__)
sl@0
    76
sl@0
    77
LOCAL_C void PerformanceTesting()
sl@0
    78
	{
sl@0
    79
	TheTest.Start(_L(" @SYMTestCaseID:SYSLIB-STORE-LEGACY-STOREBENCHMARK-1204 Performance Testing for STORE Component "));
sl@0
    80
	// Call the performance tests
sl@0
    81
	TRAPD(err, doStreamingL());
sl@0
    82
	TEST2(err, KErrNone);
sl@0
    83
sl@0
    84
	TRAP(err, doStoreStreamsL());
sl@0
    85
	TEST2(err, KErrNone);
sl@0
    86
sl@0
    87
	TRAP(err, doDirectFileStoresL());
sl@0
    88
	TEST2(err, KErrNone);
sl@0
    89
sl@0
    90
	TRAP(err, doPermanentFileStoreL());
sl@0
    91
	TEST2(err, KErrNone);
sl@0
    92
	}
sl@0
    93
sl@0
    94
// Prepare the test directory.
sl@0
    95
LOCAL_C void setupTestDirectory()
sl@0
    96
    {
sl@0
    97
	TInt err=TheFs.Connect();
sl@0
    98
	TEST2(err, KErrNone);
sl@0
    99
sl@0
   100
	TPtrC testDir=_L("\\STOR-TST\\");
sl@0
   101
	err=TheFs.MkDir(testDir);
sl@0
   102
	TEST(err == KErrNone || err == KErrAlreadyExists);
sl@0
   103
sl@0
   104
	err=TheFs.SetSessionPath(testDir);
sl@0
   105
	TEST2(err, KErrNone);
sl@0
   106
	}
sl@0
   107
sl@0
   108
// Initialise the cleanup stack.
sl@0
   109
LOCAL_C void setupCleanup()
sl@0
   110
    {
sl@0
   111
	TheTrapCleanup=CTrapCleanup::New();
sl@0
   112
	TEST(TheTrapCleanup != NULL);
sl@0
   113
	TRAPD(err,\
sl@0
   114
		{\
sl@0
   115
		for (TInt i=KTestCleanupStack;i>0;i--)\
sl@0
   116
			CleanupStack::PushL((TAny*)1);\
sl@0
   117
		TEST(err==KErrNone);\
sl@0
   118
		CleanupStack::Pop(KTestCleanupStack);\
sl@0
   119
		});
sl@0
   120
	TEST2(err, KErrNone);
sl@0
   121
	}
sl@0
   122
sl@0
   123
static void DeleteDataFile(const TDesC& aFullName)
sl@0
   124
	{
sl@0
   125
	RFs fsSession;
sl@0
   126
	TInt err = fsSession.Connect();
sl@0
   127
	if(err == KErrNone)
sl@0
   128
		{
sl@0
   129
		TEntry entry;
sl@0
   130
		if(fsSession.Entry(aFullName, entry) == KErrNone)
sl@0
   131
			{
sl@0
   132
			RDebug::Print(_L("Deleting \"%S\" file.\n"), &aFullName);
sl@0
   133
			err = fsSession.SetAtt(aFullName, 0, KEntryAttReadOnly);
sl@0
   134
			if(err != KErrNone)
sl@0
   135
				{
sl@0
   136
				RDebug::Print(_L("Error %d changing \"%S\" file attributes.\n"), err, &aFullName);
sl@0
   137
				}
sl@0
   138
			err = fsSession.Delete(aFullName);
sl@0
   139
			if(err != KErrNone)
sl@0
   140
				{
sl@0
   141
				RDebug::Print(_L("Error %d deleting \"%S\" file.\n"), err, &aFullName);
sl@0
   142
				}
sl@0
   143
			}
sl@0
   144
		fsSession.Close();
sl@0
   145
		}
sl@0
   146
	else
sl@0
   147
		{
sl@0
   148
		RDebug::Print(_L("Error %d connecting file session. File: %S.\n"), err, &aFullName);
sl@0
   149
		}
sl@0
   150
	}
sl@0
   151
static void DeleteDataFiles()
sl@0
   152
	{
sl@0
   153
	DeleteDataFile(TheDirectStoreFilePath);
sl@0
   154
	DeleteDataFile(ThePermStoreFilePath);
sl@0
   155
	DeleteDataFile(TheStreamsFilePath);
sl@0
   156
	}
sl@0
   157
sl@0
   158
// Test the stream and stores
sl@0
   159
GLDEF_C TInt E32Main()
sl@0
   160
    {
sl@0
   161
	__UHEAP_MARK;
sl@0
   162
	TheTest.Title();
sl@0
   163
	setupTestDirectory();
sl@0
   164
	setupCleanup();
sl@0
   165
sl@0
   166
	TRAPD(err, PerformanceTesting());
sl@0
   167
	TEST2(err, KErrNone);
sl@0
   168
sl@0
   169
	DeleteDataFiles();
sl@0
   170
sl@0
   171
	TheTest.End();
sl@0
   172
	delete TheTrapCleanup;
sl@0
   173
	TheFs.Close();
sl@0
   174
	TheTest.Close();
sl@0
   175
	__UHEAP_MARKEND;
sl@0
   176
sl@0
   177
	return 0;
sl@0
   178
	}
sl@0
   179
sl@0
   180
sl@0
   181