os/persistentdata/persistentstorage/store/TSTOR/t_stordict.cpp
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
// Copyright (c) 1998-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
#include <e32test.h>
sl@0
    16
#include <s32mem.h>
sl@0
    17
sl@0
    18
//
sl@0
    19
// CTestStreamDictionary
sl@0
    20
// The only reason this class to be used here is to 
sl@0
    21
// get an access to CStreamDictionary::iArray (private data member). 
sl@0
    22
//
sl@0
    23
class CTestStreamDictionary : public CStreamDictionary
sl@0
    24
	{
sl@0
    25
public:
sl@0
    26
	struct TEntry 
sl@0
    27
	    {
sl@0
    28
	    TUid uid;
sl@0
    29
	    TStreamId id;
sl@0
    30
	    };
sl@0
    31
public:
sl@0
    32
	static CTestStreamDictionary* NewL();
sl@0
    33
	CTestStreamDictionary();
sl@0
    34
	TUid Uid(TInt aInt) 
sl@0
    35
	    { 
sl@0
    36
	    return (*iCheat)[aInt].uid; 
sl@0
    37
	    }
sl@0
    38
	TStreamId StreamId(TInt aInt) 
sl@0
    39
	    { 
sl@0
    40
	    return (*iCheat)[aInt].id; 
sl@0
    41
	    }
sl@0
    42
	TInt Count() 
sl@0
    43
	    { 
sl@0
    44
	    return iCheat->Count(); 
sl@0
    45
	    }
sl@0
    46
private:
sl@0
    47
	CArrayFixSeg<TEntry>* iCheat;
sl@0
    48
	};
sl@0
    49
sl@0
    50
CTestStreamDictionary* CTestStreamDictionary::NewL()
sl@0
    51
	{
sl@0
    52
	CTestStreamDictionary* thing=new(ELeave) CTestStreamDictionary();
sl@0
    53
	return thing;
sl@0
    54
	}
sl@0
    55
sl@0
    56
CTestStreamDictionary::CTestStreamDictionary()
sl@0
    57
	: iCheat((CArrayFixSeg<TEntry>*)&iCheat-1) //Now iCheat points to the base class' private data member: 
sl@0
    58
	                                           //CStreamDictionary::iArray.
sl@0
    59
                                               //This way it is possible to call iArray's methods (even though it is private).
sl@0
    60
	{
sl@0
    61
	}
sl@0
    62
sl@0
    63
sl@0
    64
//
sl@0
    65
// Test code
sl@0
    66
//
sl@0
    67
sl@0
    68
const TInt KTestExpandSize=0x20;
sl@0
    69
sl@0
    70
static RTest TheTest(_L("t_stordict"));
sl@0
    71
sl@0
    72
// some uid-stream pairs to use for testing
sl@0
    73
const TUid testUid1={1};
sl@0
    74
static TStreamId testStreamId1=TStreamId(1);
sl@0
    75
//
sl@0
    76
const TUid testUid2={57};
sl@0
    77
static TStreamId testStreamId2=TStreamId(57);
sl@0
    78
//
sl@0
    79
const TUid testUid3={99999};
sl@0
    80
static TStreamId testStreamId3=TStreamId(425);
sl@0
    81
//
sl@0
    82
sl@0
    83
//Put test data files to be deleted at the end here!
sl@0
    84
void DeleteDataFiles()
sl@0
    85
    {
sl@0
    86
    }
sl@0
    87
sl@0
    88
//Tests macros and functions.
sl@0
    89
//If (!aValue) then the test will be panicked, the test data files will be deleted.
sl@0
    90
static void Check(TInt aValue, TInt aLine)
sl@0
    91
    {
sl@0
    92
    if(!aValue)
sl@0
    93
        {
sl@0
    94
        DeleteDataFiles();
sl@0
    95
        TheTest(EFalse, aLine);
sl@0
    96
        }
sl@0
    97
    }
sl@0
    98
//If (aValue != aExpected) then the test will be panicked, the test data files will be deleted.
sl@0
    99
static void Check(TInt aValue, TInt aExpected, TInt aLine)
sl@0
   100
    {
sl@0
   101
    if(aValue != aExpected)
sl@0
   102
        {
sl@0
   103
        RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
sl@0
   104
        DeleteDataFiles();
sl@0
   105
        TheTest(EFalse, aLine);
sl@0
   106
        }
sl@0
   107
    }
sl@0
   108
//Use these to test conditions.
sl@0
   109
#define TEST(arg) ::Check((arg), __LINE__)
sl@0
   110
#define TEST2(aValue, aExpected) ::Check(aValue, aExpected, __LINE__)
sl@0
   111
sl@0
   112
/**
sl@0
   113
@SYMTestCaseID          SYSLIB-STORE-CT-1201
sl@0
   114
@SYMTestCaseDesc	    Tests for copy operations on dictionary files
sl@0
   115
@SYMTestPriority 	    High
sl@0
   116
@SYMTestActions  	    Attempt for copying two classes using memory based streams.
sl@0
   117
@SYMTestExpectedResults Test must not fail
sl@0
   118
@SYMREQ                 REQ0000
sl@0
   119
*/
sl@0
   120
template <class T1,class T2>
sl@0
   121
void testCopyL(T1& aCopy,const T2& anOriginal)
sl@0
   122
	{
sl@0
   123
	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1201 "));
sl@0
   124
	CBufSeg* buf=0;
sl@0
   125
	TRAPD(r,buf=CBufSeg::NewL(KTestExpandSize));
sl@0
   126
    TEST2(r, KErrNone);
sl@0
   127
//
sl@0
   128
// Write anOriginal out to the buffer.
sl@0
   129
//
sl@0
   130
	RBufWriteStream out;
sl@0
   131
	out.Append(*buf);
sl@0
   132
	TRAP(r,out<<anOriginal);
sl@0
   133
	TEST2(r, KErrNone);
sl@0
   134
	TRAP(r,out.CommitL());
sl@0
   135
    TEST2(r, KErrNone);
sl@0
   136
//
sl@0
   137
// Read anOriginal in from the buffer.
sl@0
   138
//
sl@0
   139
	RBufReadStream in(*buf);
sl@0
   140
	TRAP(r,in>>aCopy);
sl@0
   141
    TEST2(r, KErrNone);
sl@0
   142
//
sl@0
   143
// See if it's consumed the lot.
sl@0
   144
//
sl@0
   145
	TUint8 b;
sl@0
   146
	TEST2(in.Source()->ReadL(&b,1), 0);
sl@0
   147
//
sl@0
   148
	delete buf;
sl@0
   149
	}
sl@0
   150
sl@0
   151
/**
sl@0
   152
@SYMTestCaseID          SYSLIB-STORE-CT-1202
sl@0
   153
@SYMTestCaseDesc	    Tests if two dictionary files are equal
sl@0
   154
@SYMTestPriority 	    High
sl@0
   155
@SYMTestActions  	    Tests if count of entries,UID and streamID's are equal
sl@0
   156
@SYMTestExpectedResults Test must not fail
sl@0
   157
@SYMREQ                 REQ0000
sl@0
   158
*/
sl@0
   159
void testIsEqual(CTestStreamDictionary* aCopy,CTestStreamDictionary* aOrig)
sl@0
   160
	{
sl@0
   161
	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1202 "));
sl@0
   162
	TInt origCount=aOrig->Count();
sl@0
   163
	TEST(origCount==aCopy->Count());
sl@0
   164
	//
sl@0
   165
	for (TInt i=0 ; i<origCount ; i++)
sl@0
   166
		{
sl@0
   167
		TEST(aOrig->Uid(i)==aCopy->Uid(i));
sl@0
   168
		TEST(aOrig->StreamId(i)==aCopy->StreamId(i));
sl@0
   169
		}
sl@0
   170
	}
sl@0
   171
sl@0
   172
/**
sl@0
   173
@SYMTestCaseID          SYSLIB-STORE-CT-1203
sl@0
   174
@SYMTestCaseDesc	    Tests for simple operations on a dictionary file
sl@0
   175
@SYMTestPriority 	    High
sl@0
   176
@SYMTestActions  	    Tests for assign,re-assigning,removing entries from the file
sl@0
   177
@SYMTestExpectedResults Test must not fail
sl@0
   178
@SYMREQ                 REQ0000
sl@0
   179
*/
sl@0
   180
LOCAL_C void simpleTestsL()
sl@0
   181
	{
sl@0
   182
	CTestStreamDictionary* dic=CTestStreamDictionary::NewL();
sl@0
   183
	// attempt finding and removing with an empty dictionary
sl@0
   184
	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1203 Manipulating an empty dictionary "));
sl@0
   185
	TEST2(dic->Count(), 0);
sl@0
   186
	TEST(dic->At(testUid1)==KNullStreamId);
sl@0
   187
	dic->Remove(testUid1);
sl@0
   188
	TEST2(dic->Count(), 0);
sl@0
   189
	TEST(dic->IsNull());
sl@0
   190
	//
sl@0
   191
	// assign an entry
sl@0
   192
	TheTest.Next(_L("Assigning entries and manipulating them"));
sl@0
   193
	TRAPD(ret,dic->AssignL(testUid1,testStreamId1));
sl@0
   194
	TEST2(ret, KErrNone);
sl@0
   195
	TEST2(dic->Count(), 1);
sl@0
   196
	TEST(!dic->IsNull());
sl@0
   197
	TEST(dic->At(testUid1)==testStreamId1);
sl@0
   198
	//
sl@0
   199
	// assign another entry
sl@0
   200
	TRAP(ret,dic->AssignL(testUid2,testStreamId2));
sl@0
   201
	TEST2(ret, KErrNone);
sl@0
   202
	TEST2(dic->Count(), 2);
sl@0
   203
	TEST(dic->At(testUid2)==testStreamId2);
sl@0
   204
	//
sl@0
   205
	// re-assign uid1
sl@0
   206
	TRAP(ret,dic->AssignL(testUid1,testStreamId3));
sl@0
   207
	TEST2(ret, KErrNone);
sl@0
   208
	TEST2(dic->Count(), 2);
sl@0
   209
	TEST(dic->At(testUid1)==testStreamId3);
sl@0
   210
	//
sl@0
   211
	// test finding and removing a non-existant entry from a non-empty dictionary
sl@0
   212
	TEST(dic->At(testUid3)==KNullStreamId);
sl@0
   213
	dic->Remove(testUid3);
sl@0
   214
	TEST2(dic->Count(), 2);
sl@0
   215
	//
sl@0
   216
	// test removing an entry
sl@0
   217
	dic->Remove(testUid1);
sl@0
   218
	TEST2(dic->Count(), 1);
sl@0
   219
	TEST(dic->At(testUid1)==KNullStreamId);
sl@0
   220
	TEST(dic->At(testUid2)==testStreamId2);
sl@0
   221
	TEST(!dic->IsNull());
sl@0
   222
	//
sl@0
   223
	// test removing the other entry
sl@0
   224
	dic->Remove(testUid2);
sl@0
   225
	TEST2(dic->Count(), 0);
sl@0
   226
	TEST(dic->IsNull());
sl@0
   227
	TEST(dic->At(testUid1)==KNullStreamId);
sl@0
   228
	TEST(dic->At(testUid2)==KNullStreamId);
sl@0
   229
	//
sl@0
   230
	delete dic;
sl@0
   231
	}
sl@0
   232
sl@0
   233
/**
sl@0
   234
@SYMTestCaseID          SYSLIB-STORE-CT-1204
sl@0
   235
@SYMTestCaseDesc	    Streaming dictionary files tests
sl@0
   236
@SYMTestPriority 	    High
sl@0
   237
@SYMTestActions  	    Tests for copying an empty dictionary and dictionary containing different sets of entries
sl@0
   238
                        Tests for equality of two dictionary files and test the copied file.
sl@0
   239
@SYMTestExpectedResults Test must not fail
sl@0
   240
@SYMREQ                 REQ0000
sl@0
   241
*/
sl@0
   242
LOCAL_C void streamingTestsL()
sl@0
   243
	{
sl@0
   244
	CTestStreamDictionary* orig=CTestStreamDictionary::NewL();
sl@0
   245
	CTestStreamDictionary* copy=CTestStreamDictionary::NewL();
sl@0
   246
	//
sl@0
   247
	// copy an empty dictionary
sl@0
   248
	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-STORE-CT-1204 Streaming an empty dictionary "));
sl@0
   249
	TEST(orig->IsNull());
sl@0
   250
	testCopyL(*copy,*orig);
sl@0
   251
	TEST(copy->IsNull());
sl@0
   252
	//
sl@0
   253
	// copy a dictionary containing a range of entries
sl@0
   254
	TheTest.Next(_L("Streaming a dictionary containing entries"));
sl@0
   255
	TRAPD(ret,orig->AssignL(testUid1,testStreamId1));
sl@0
   256
	TRAP(ret,orig->AssignL(testUid2,testStreamId2));
sl@0
   257
	TRAP(ret,orig->AssignL(testUid3,testStreamId3));
sl@0
   258
	testCopyL(*copy,*orig);
sl@0
   259
	testIsEqual(copy,orig);
sl@0
   260
	TEST(!copy->IsNull());
sl@0
   261
	//
sl@0
   262
	delete orig;
sl@0
   263
	delete copy;
sl@0
   264
	}
sl@0
   265
sl@0
   266
void DoTestL()
sl@0
   267
    {
sl@0
   268
    simpleTestsL();
sl@0
   269
    streamingTestsL();
sl@0
   270
    }
sl@0
   271
sl@0
   272
TInt E32Main()
sl@0
   273
	{
sl@0
   274
    __UHEAP_MARK;
sl@0
   275
	
sl@0
   276
    TheTest.Title();
sl@0
   277
	
sl@0
   278
    CTrapCleanup* trapCleanup = CTrapCleanup::New();
sl@0
   279
    TheTest(trapCleanup != NULL);
sl@0
   280
sl@0
   281
	TheTest.Start(_L("Testing CStreamDictionary..."));
sl@0
   282
	
sl@0
   283
	TRAPD(err, DoTestL());
sl@0
   284
    TEST2(err, KErrNone);
sl@0
   285
sl@0
   286
    DeleteDataFiles();
sl@0
   287
    
sl@0
   288
    TheTest.End();
sl@0
   289
    TheTest.Close();
sl@0
   290
sl@0
   291
    delete trapCleanup;
sl@0
   292
    
sl@0
   293
    __UHEAP_MARKEND;
sl@0
   294
    
sl@0
   295
	return KErrNone;
sl@0
   296
	}
sl@0
   297