Update contrib.
1 // Copyright (c) 2004-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.
14 // DBMS security policy - testing new APIs - table level.
15 // All tests assume that drive C is presented in the system and is not a ROM drive.
19 #include "t_dbplatsecutl.h"
20 #include "t_dbplatsecdef.h"
21 #include "t_dbplatsectbl.h"
23 static TColDef const KColumns[]=
25 {_S("ID"), EDbColInt32, TDbCol::ENotNull | TDbCol::EAutoIncrement},
26 {_S("DATA1"), EDbColInt32, TDbCol::ENotNull},
27 {_S("DATA2"), EDbColInt32, TDbCol::ENotNull},
31 static TColDef const KColumns2[]=
33 {_S("ID"), EDbColInt32, TDbCol::ENotNull | TDbCol::EAutoIncrement},
34 {_S("DATA1"), EDbColLongBinary},
38 static void TblCallTestL()
40 TheTest.Next(_L("Open()"));
41 TInt err = TheTbl1.Open(TheDb1, KTableName1);
44 TheTest.Next(_L("ColSetL()"));
45 CDbColSet* colset = TheTbl1.ColSetL();
46 TInt cnt = colset->Count();
50 const TDbCol& dbc = (*colset)[i + 1];
51 TheTest.Printf(_L("%02d, %S\n"), i + 1, &dbc.iName);
55 TheTest.Next(_L("ColDef()"));
56 TDbCol dbcol = TheTbl1.ColDef(1);
57 TheTest.Printf(_L("%S\n"), &dbcol.iName);
59 TheTest.Next(_L("InsertL()/SetColL()/PutL()"));
61 TheTbl1.SetColL(2, 1);
62 TheTbl1.SetColL(3, 2);
65 TheTbl1.SetColL(2, 3);
66 TheTbl1.SetColL(3, 4);
69 TheTest.Next(_L("AtRow()/AtBeginning()/AtEnd()"));
70 (void)TheTbl1.AtRow();
71 (void)TheTbl1.AtBeginning();
72 (void)TheTbl1.AtEnd();
74 TheTest.Next(_L("BeginningL()/EndL()"));
78 TheTest.Next(_L("FirstL()/LastL()/PreviousL()/PreviousL()"));
79 TBool res = TheTbl1.FirstL();
82 TInt32 val1 = TheTbl1.ColInt32(1);
83 TInt32 val2 = TheTbl1.ColInt32(2);
84 TInt32 val3 = TheTbl1.ColInt32(3);
89 res = TheTbl1.LastL();
92 val1 = TheTbl1.ColInt32(1);
93 val2 = TheTbl1.ColInt32(2);
94 val3 = TheTbl1.ColInt32(3);
99 res = TheTbl1.PreviousL();
102 val1 = TheTbl1.ColInt32(1);
103 val2 = TheTbl1.ColInt32(2);
104 val3 = TheTbl1.ColInt32(3);
109 res = TheTbl1.NextL();
112 val1 = TheTbl1.ColInt32(1);
113 val2 = TheTbl1.ColInt32(2);
114 val3 = TheTbl1.ColInt32(3);
119 TheTest.Next(_L("UpdateL()"));
121 TheTbl1.SetColL(2, 33);
122 TheTbl1.SetColL(3, 44);
125 TheTest.Next(_L("Cancel()"));
127 TheTbl1.SetColL(2, 36);
128 TheTbl1.SetColL(3, 47);
131 TheTest.Next(_L("DeleteL()"));
134 TheTest.Next(_L("IsColNull()"));
135 CDbColSet* colset2 = TDBSCUtils::CreateColSetLC(KColumns2);
136 _LIT(KTempTblName, "TempTbl");
137 err = TheDb1.CreateTable(KTempTblName, *colset2);
138 TEST2(err, KErrNone);
139 CleanupStack::PopAndDestroy(colset2);
141 err = TheTbl2.Open(TheDb1, KTempTblName);
142 TEST2(err, KErrNone);
145 _LIT8(KTestData, "");
146 TheTbl2.SetColL(2, KTestData);
150 err = TheTbl2.Open(TheDb1, KTempTblName);
151 TEST2(err, KErrNone);
152 res = TheTbl2.FirstL();
155 res = TheTbl2.IsColNull(2);
159 TheTest.Next(_L("ColSize()"));
160 res = TheTbl1.FirstL();
163 res = TheTbl1.ColSize(1);
166 TheTest.Next(_L("ColLength()"));
167 TInt len = TheTbl1.ColLength(1);
171 TheTbl1.SetColL(2, 3);
172 TheTbl1.SetColL(3, 4);
175 TheTest.Next(_L("GotoL(TPosition)"));
176 res = TheTbl1.GotoL(RDbRowSet::EFirst);
179 TheTest.Next(_L("Bookmark()/GotoL(TDbBookmark)"));
180 TDbBookmark bkmk = TheTbl1.Bookmark();
181 res = TheTbl1.NextL();
185 val1 = TheTbl1.ColInt32(1);
188 TheTest.Next(_L("CountL()/IsEmptyL()"));
189 cnt = TheTbl1.CountL();
191 res = TheTbl1.IsEmptyL();
194 TheTest.Next(_L("MatchL()"));
195 RDbRowConstraint match;
196 CleanupClosePushL(match);
197 err = match.Open(TheTbl1, TDbQuery(_L("ID > 0")));
198 TEST2(err, KErrNone);
200 TheTbl1.BeginningL();
201 while(TheTbl1.NextL())
203 if(TheTbl1.MatchL(match))
208 CleanupStack::PopAndDestroy(&match);
211 TheTest.Next(_L("FindL()"));
212 res = TheTbl1.FirstL();
214 err = TheTbl1.FindL(RDbRowSet::EForwards, TDbQuery(_L("ID <> 0")));
217 val1 = TheTbl1.ColInt32(1);
220 _LIT8(KTestData2, "0123456789");
221 HBufC8* buf = HBufC8::NewLC(10000);
222 TPtr8 ptr = buf->Des();
228 TheTest.Next(_L("RDbColReadStream"));
229 err = TheTbl2.Open(TheDb1, KTempTblName);
230 TEST2(err, KErrNone);
233 TheTbl2.SetColL(2, *buf);
237 TheTbl2.SetColL(2, KTestData2);
240 res = TheTbl2.PreviousL();
243 RDbColReadStream rstream;
244 rstream.OpenLC(TheTbl2, 2);
246 rstream.ReadL(ptr, ptr.MaxLength());
247 CleanupStack::PopAndDestroy(&rstream);
248 TEST(ptr.Length() == ptr.MaxLength());
250 TheTest.Next(_L("RDbColWriteStream"));
252 RDbColWriteStream wstream;
253 wstream.OpenLC(TheTbl2, 2);
254 wstream.WriteL(ptr, ptr.Length());
256 CleanupStack::PopAndDestroy(&wstream);
260 CleanupStack::PopAndDestroy(buf);
265 static void ViewTestL()
268 CleanupClosePushL(view);
270 TheTest.Next(_L("Prepare()"));
271 TInt err = view.Prepare(TheDb1, TDbQuery(_L("SELECT * FROM ATbl")));
272 TEST2(err, KErrNone);
274 TheTest.Next(_L("Update()"));
275 TBool res = view.FirstL();
279 view.SetColL(2, 100);
280 view.SetColL(3, 200);
283 CleanupStack::PopAndDestroy(&view);
285 TheTest.Next(_L("Prepare() with an update sql"));
286 CleanupClosePushL(view);
287 err = view.Prepare(TheDb1, TDbQuery(_L("UPDATE ATbl SET DATA1 = 400 WHERE ID = 0")));
288 TEST2(err, KErrArgument);
289 CleanupStack::PopAndDestroy(&view);
293 @SYMTestCaseID SYSLIB-DBMS-CT-0021
294 @SYMTestCaseDesc RDbTable method calls test for a secure shared database.
295 Every method of RDbTable class and its base class too, is called
296 and the result - asserted.
297 @SYMTestPriority High
298 @SYMTestActions RDbTable method calls test.
299 @SYMTestExpectedResults The test must not fail.
301 DBMS shall provide an API to apply security policies to database tables.
305 TheTest.Next(_L(" @SYMTestCaseID SYSLIB-DBMS-CT-0021 "));
307 TDBSCUtils::DeleteDatabase(TheDbs, KSecureDbUid, KDb1Name);
310 TheDb1 = TDBSCUtils::CreateDatabase(TheDbs, KSecureDbUid, KDb1Name);
312 CDbColSet* colset = TDBSCUtils::CreateColSetLC(KColumns);
313 TInt err = TheDb1.CreateTable(KTableName1, *colset);
314 TEST2(err, KErrNone);
315 CleanupStack::PopAndDestroy(colset);
317 TheTest.Next(_L("Table calls test"));
320 TheTest.Next(_L("View test"));