Update contrib.
1 // Copyright (c) 1998-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.
16 // MSVC++ up to 5.0 has problems with expanding inline functions
17 // This disables the mad warnings for the whole project
18 #if defined(NDEBUG) && defined(__VC32__) && _MSC_VER<=1100
19 #pragma warning(disable : 4710) // function not expanded. MSVC 5.0 is stupid
26 LOCAL_D CTrapCleanup* TheTrapCleanup;
29 LOCAL_D RDbNamedDatabase TheDatabase;
30 LOCAL_D RDbTable TheTable;
31 LOCAL_D RDbView TheView;
33 const TInt KTestCleanupStack=0x20;
34 const TPtrC KTestDatabase=_L("C:\\DBMS-TST\\T_LIMIT.DB");
35 const TPtrC KTableName(_S("TestTable"));
37 const TPtrC KColFormat=_L("c%d");
39 LOCAL_D RTest test(_L("t_dblimit - testing table limits"));
41 const TInt KRecordLimit=8200;
42 const TInt KMinInlineLimit=16;
43 const TInt KMaxInlineLimit=255;
45 // expected maxima for record structure
46 const TInt KMaxColInt64NN=1025;
47 const TInt KMaxColText8=32;
48 const TInt KMaxColText16=16;
49 const TInt KMaxColLongText8=504;
52 LOCAL_C TBool FitBlob(TInt aCount)
54 // Matches heuristics in DBMS
57 TInt used=(aCount*(2+(KMinInlineLimit<<3))+7)>>3;
58 return used<=KRecordLimit;
61 LOCAL_C TInt InlineLimit(TInt aCount)
63 // Matches heuristics in DBMS
66 TInt used=(aCount*(2+(KMinInlineLimit<<3))+7)>>3;
67 TInt space=(KRecordLimit-used);//>>1;
68 TInt inl=space/aCount+KMinInlineLimit-1;
69 return Min(inl,KMaxInlineLimit);
72 LOCAL_C void OpenDatabase()
77 test (TheDatabase.Open(TheDbs,KTestDatabase)==KErrNone);
80 LOCAL_C void CloseDatabase()
85 LOCAL_C void CreateDatabase()
87 // Create the database-in-a-store
90 test (TheDatabase.Replace(TheFs,KTestDatabase)==KErrNone);
95 LOCAL_C void DestroyDatabase()
97 test (TheDatabase.Destroy()==KErrNone);
100 LOCAL_C CDbColSet* SetLC(TDbCol& aCol,TInt aCount)
102 CDbColSet* set=CDbColSet::NewLC();
106 name.Format(KColFormat,aCount);
113 LOCAL_C TBool TestL(TDbCol& aCol,TInt aCount)
115 test.Printf(_L("\rtesting %d "),aCount);
116 CDbColSet* set=SetLC(aCol,aCount);
118 r=TheDatabase.CreateTable(KTableName,*set);
121 CDbColSet* comp=TheDatabase.ColSetL(KTableName);
122 test (comp->Count()==aCount);
125 CleanupStack::PopAndDestroy();
129 test (TheDatabase.DropTable(KTableName)==KErrNone);
134 See how many columns of this sort can be used
136 @SYMTestCaseID SYSLIB-DBMS-CT-0631
137 @SYMTestCaseDesc Tests for maximum limits on a Table
138 @SYMTestPriority Medium
139 @SYMTestActions Tests for creating a table with maximum number of columns
140 @SYMTestExpectedResults Test must not fail
143 LOCAL_C TInt TestTypeL(TDbCol& aCol)
157 if (TestL(aCol,lim+ii))
161 test.Printf(_L("\r create %d \n"),lim);
165 LOCAL_C void StretchRecordL()
169 col.iType=EDbColLongText8;
170 col.iMaxLength=KDbUndefinedLength;
172 for (TInt ii=4;FitBlob(ii);ii+=4)
174 test.Printf(_L("\rtesting %d "),ii);
175 CDbColSet* set=SetLC(col,ii);
177 test (TheDatabase.CreateTable(KTableName,*set)==KErrNone);
179 test (TheDatabase.AlterTable(KTableName,*set)==KErrNone);
180 CleanupStack::PopAndDestroy();
181 test (TheTable.Open(TheDatabase,KTableName)==KErrNone);
190 buf.Fill('-',InlineLimit(ii)/*>>1*/);
191 TPtrC8 ptr((const TUint8*)buf.Ptr(),buf.Size());
192 TheTable.SetColL(ii-3,ptr);
193 TheTable.SetColL(ii-2,ptr);
194 TheTable.SetColL(ii-1,ptr);
195 TheTable.SetColL(ii,ptr);
199 // test (TheDatabase.Compact()==KErrNone);
201 test (TheDatabase.Compact()==KErrNone);
202 test.Printf(_L("\n"));
206 LOCAL_C void doMainL()
208 test.Start(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0631 TInt64 NOT NULL "));
210 col.iType=EDbColInt64;
211 col.iMaxLength=KDbUndefinedLength;
212 col.iAttributes=TDbCol::ENotNull;
213 test (TestTypeL(col)==KMaxColInt64NN);
214 test.Next(_L("Text8"));
215 col.iType=EDbColText8;
217 test (TestTypeL(col)==KMaxColText8);
218 test.Next(_L("Text16"));
219 col.iType=EDbColText16;
220 test (TestTypeL(col)==KMaxColText16);
221 test.Next(_L("LongText8"));
222 col.iType=EDbColLongText8;
223 test (TestTypeL(col)==KMaxColLongText8);
224 test.Next(_L("Stretching the record"));
228 LOCAL_C void setupTestDirectory()
230 // Prepare the test directory.
233 TInt r=TheFs.Connect();
236 r=TheFs.MkDir(KTestDatabase);
237 test(r==KErrNone || r==KErrAlreadyExists);
240 LOCAL_C void setupCleanup()
242 // Initialise the cleanup stack.
245 TheTrapCleanup=CTrapCleanup::New();
246 test(TheTrapCleanup!=NULL);
249 for (TInt i=KTestCleanupStack;i>0;i--)\
250 CleanupStack::PushL((TAny*)0);\
251 CleanupStack::Pop(KTestCleanupStack);\
256 LOCAL_C void DeleteDataFile(const TDesC& aFullName)
259 TInt err = fsSession.Connect();
263 if(fsSession.Entry(aFullName, entry) == KErrNone)
265 RDebug::Print(_L("Deleting \"%S\" file.\n"), &aFullName);
266 err = fsSession.SetAtt(aFullName, 0, KEntryAttReadOnly);
269 RDebug::Print(_L("Error %d changing \"%S\" file attributes.\n"), err, &aFullName);
271 err = fsSession.Delete(aFullName);
274 RDebug::Print(_L("Error %d deleting \"%S\" file.\n"), err, &aFullName);
281 RDebug::Print(_L("Error %d connecting file session. File: %S.\n"), err, &aFullName);
285 GLDEF_C TInt E32Main()
287 // Test streaming conversions.
291 setupTestDirectory();
293 test (TheDbs.Connect()==KErrNone);
299 ::DeleteDataFile(KTestDatabase); //deletion of data files must be done before call to end - DEF047652
303 delete TheTrapCleanup;