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.
20 LOCAL_D CTrapCleanup* TheTrapCleanup;
22 LOCAL_D RTest test(_L("t_dbclient"));
24 LOCAL_D const TPtrC KColName(_S("A_column_name"));
25 LOCAL_D TDbColName VarName(_S("Column_A"));
27 const TInt KTestCleanupStack=0x20;
28 const TInt KLeaveError=-4000;
29 const TInt KColCount=26;
32 @SYMTestCaseID SYSLIB-DBMS-CT-0586
33 @SYMTestCaseDesc Tests for TDbCol class
34 @SYMTestPriority Medium
35 @SYMTestActions Tests for column name and type after creating them.
36 @SYMTestExpectedResults Test must not fail
39 LOCAL_C void TestTDbCol()
41 test.Start(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0586 Testing TDbCol "));
42 TDbCol c1(KColName,EDbColText8);
43 test(c1.iName==KColName);
44 test(c1.iType==EDbColText8);
45 test(c1.iMaxLength==KDbDefaultTextColLength);
46 test(c1.iAttributes==0);
47 TDbCol c2(KColName,EDbColText8,1234);
48 test(c2.iName==KColName);
49 test(c2.iType==EDbColText8);
50 test(c2.iMaxLength==1234);
51 test(c2.iAttributes==0);
52 TDbCol c3(KColName,EDbColBit);
53 test(c3.iName==KColName);
54 test(c3.iType==EDbColBit);
55 test(c3.iMaxLength==KDbUndefinedLength);
56 test(c3.iAttributes==0);
60 @SYMTestCaseID SYSLIB-DBMS-CT-0587
61 @SYMTestCaseDesc CDbColSet class test
62 @SYMTestPriority Medium
63 @SYMTestActions Tests for creation of a CDbColSet column set object
64 Tests for adding and removing columns to the column set
65 @SYMTestExpectedResults Test must not fail
68 LOCAL_C void TestCDbColSetL()
71 test.Start(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0587 ctor and dtor "));
72 CDbColSet* c=CDbColSet::NewL(); // assume it will succeed
79 TRAP(r,c=CDbColSet::NewL());
85 CleanupStack::PopAndDestroy();
88 TDbCol col(KColName,EDbColText,20);
92 TRAP(r,c=CDbColSet::NewLC();c->AddL(col);User::Leave(KLeaveError););
96 test.Next(_L("Add columns"));
99 for (ii=1;ii<=KColCount;ii++)
101 VarName[7]=(TUint8)('A'-1+ii);
102 test(c->Col(VarName)==NULL);
103 TDbCol column(VarName,EDbColInt32);
105 test(c->Count()==ii);
106 test(c->ColNo(VarName)!=KDbNullColNo);
107 test(c->Col(VarName)!=NULL);
109 test.Next(_L("Check columns: operator[] and ColNo()"));
110 for (ii=1;ii<=KColCount;ii++)
112 const TDbCol& col=(*c)[ii];
113 test(c->ColNo(col.iName)==ii);
115 test.Next(_L("Remove columns"));
116 for (ii=1;ii<=KColCount;ii+=2)
118 VarName[7]=(TUint8)('A'-1+ii);
121 test(c->Count()==13);
122 test.Next(_L("Clear"));
125 CleanupStack::PopAndDestroy();
131 @SYMTestCaseID SYSLIB-DBMS-CT-0588
132 @SYMTestCaseDesc Tests for TDbColSetIter class
133 @SYMTestPriority Medium
134 @SYMTestActions Tests for iterate over the contents of a column set
135 @SYMTestExpectedResults Test must not fail
138 LOCAL_C void TestTDbColSetIterL()
140 test.Next(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0588 Testing TDbColSetIter "));
141 CDbColSet* c=CDbColSet::NewLC();
143 for (ii=0;ii<KColCount;++ii)
145 VarName[7]=(TUint8)('A'-1+ii);
146 c->AddL(TDbCol(VarName,EDbColInt32));
148 TDbColSetIter iter1(*c);
149 TDbColSetIter iter2(iter1);
153 test(iter1.Col()==++ii);
154 test(iter1.operator->()==&iter1.operator*());
155 test(&*iter1++==&*iter2);
158 test(&*iter1==&*++iter2);
162 CleanupStack::PopAndDestroy();
167 @SYMTestCaseID SYSLIB-DBMS-CT-0589
168 @SYMTestCaseDesc Tests for TDbCol,CDbColSet,TDbColSetIter classes
169 @SYMTestPriority Medium
170 @SYMTestActions Executes the tests of TDbCol,CDbColSet,TDbColSetIter
171 @SYMTestExpectedResults Test must not fail
174 LOCAL_C void TestColSetL()
176 test.Next(_L("@SYMTestCaseID:SYSLIB-DBMS-CT-0589 "));
178 test.Next(_L("Testing CDbColSet"));
180 TestTDbColSetIterL();
185 @SYMTestCaseID SYSLIB-DBMS-CT-0590
186 @SYMTestCaseDesc Tests for TDbKeyCol class
187 @SYMTestPriority Medium
188 @SYMTestActions Attempts to test for attributes of the key column together.
189 @SYMTestExpectedResults Test must not fail
192 LOCAL_C void TestTDbKeyCol()
194 test.Next(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0590 Testing TDbKeyCol "));
195 TDbKeyCol c1(KColName);
196 test(c1.iName==KColName);
197 test(c1.iOrder==TDbKeyCol::EAsc);
198 TDbKeyCol c2(KColName,TDbKeyCol::EDesc);
199 test(c2.iName==KColName);
200 test(c2.iOrder==TDbKeyCol::EDesc);
204 @SYMTestCaseID SYSLIB-DBMS-CT-0591
205 @SYMTestCaseDesc Tests the CDbKey class
206 @SYMTestPriority Medium
207 @SYMTestActions Tests for the new CDbKey creation using NewL and NewLC functions
208 @SYMTestExpectedResults Test must not fail
211 LOCAL_C void TestCDbKeyL()
214 test.Start(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0591 ctor and dtor "));
215 CDbKey* k=CDbKey::NewL(); // assume it will succeed
221 TRAP(r,k=CDbKey::NewL());
227 CleanupStack::PopAndDestroy();
233 TRAP(r,k=CDbKey::NewLC();k->AddL(KColName);User::Leave(KLeaveError););
234 test(r==KLeaveError);
237 test.Next(_L("Add key columns"));
240 for (ii=1;ii<=KColCount;++ii)
242 VarName[7]=(TUint8)('A'-1+ii);
244 test(k->Count()==ii);
245 test((*k)[ii-1].iName==VarName);
247 test.Next(_L("Remove key columns"));
248 for (ii=1;ii<=KColCount;ii+=2)
250 VarName[7]=TUint8('A'-1+ii);
253 test(k->Count()==KColCount/2);
254 test.Next(_L("Clear"));
257 test.Next(_L("Unique flag"));
258 test(!k->IsUnique());
263 CleanupStack::PopAndDestroy();
269 @SYMTestCaseID SYSLIB-DBMS-CT-0592
270 @SYMTestCaseDesc Tests the TDbKeyCol,CDbKey classes
271 @SYMTestPriority Medium
272 @SYMTestActions Executes the TDbKeyCol,CDbKey tests
273 @SYMTestExpectedResults Test must not fail
276 LOCAL_C void TestKeyL()
278 test.Start(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0592 "));
280 test.Next(_L("Testing CDbKey"));
286 LOCAL_C void setupCleanup()
288 // Initialise the cleanup stack.
291 TheTrapCleanup=CTrapCleanup::New();
292 test(TheTrapCleanup!=NULL);
295 for (TInt i=KTestCleanupStack;i>0;i--)\
296 CleanupStack::PushL((TAny*)0);\
297 CleanupStack::Pop(KTestCleanupStack);\
302 GLDEF_C TInt E32Main()
304 // Test Client-side objects
311 test.Start(_L("Test the Column Set"));
312 TRAPD(r,TestColSetL();)
315 test.Next(_L("Test the Key"));
321 delete TheTrapCleanup;