Update contrib.
1 // Copyright (c) 2003-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.
22 LOCAL_D RTest test(_L("t_dbpanic - Panic test when cancelling two blobs transactions"));
23 LOCAL_D CTrapCleanup* TheTrapCleanup;
24 LOCAL_D RDbTable TheTables[2];
27 LOCAL_D RDbNamedDatabase TheDatabase;
29 const TPtrC KTestDatabase=_L("\\DBMS-TST\\T_PANIC.DB");
32 @SYMTestCaseID SYSLIB-DBMS-CT-0641
33 @SYMTestCaseDesc Tests for creating the database and tables
34 @SYMTestPriority Medium
35 @SYMTestActions Tests for creating the tables.Leave on error.
36 @SYMTestExpectedResults Test must not fail
39 LOCAL_C void PreTestL()
41 test.Next(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0641 "));
42 // Create the database:
43 User::LeaveIfError(TheDatabase.Replace(TheFs,KTestDatabase));
44 CleanupClosePushL(TheDatabase);
46 // Create tables in the database:
47 User::LeaveIfError(TheDatabase.Execute(_L("create table ta (a integer, b Long Varbinary)")));
48 User::LeaveIfError(TheDatabase.Execute(_L("create table tb (a integer, b Long Varbinary)")));
51 User::LeaveIfError(TheTables[0].Open(TheDatabase, _L("ta")));
52 CleanupClosePushL(TheTables[0]);
53 User::LeaveIfError(TheTables[1].Open(TheDatabase, _L("tb")));
54 CleanupClosePushL(TheTables[1]);
58 @SYMTestCaseID SYSLIB-DBMS-CT-0642
59 @SYMTestCaseDesc Tests for transaction of large data
60 @SYMTestPriority Medium
61 @SYMTestActions Tests for streaming of blob data
62 @SYMTestExpectedResults Test must not fail
67 test.Next(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0642 "));
68 // Start a transaction:
71 // Create a new row on each table:
72 TheTables[0].InsertL();
73 TheTables[1].InsertL();
75 for(TInt i = 0; i < 2; ++i)
77 // Setting to null sets the dirty flag:
78 TheTables[i].SetColNullL(1);
80 // Create a blob of data:
81 _LIT8(blobdata, "abcdefghijklmnopqrstuvwxyz");
82 CBufFlat * blobbuff = CBufFlat::NewL(32);
83 CleanupStack::PushL(blobbuff);
84 blobbuff->InsertL(0, blobdata());
86 // Open a read stream on the blob:
87 RBufReadStream blobstream;
88 blobstream.Open(*blobbuff, 0);
89 CleanupClosePushL(blobstream);
91 // Open a write stream on the table:
92 RDbColWriteStream blobwrite;
93 blobwrite.OpenLC(TheTables[i], 2);
95 // Stream data from the read stream to the write stream:
96 blobwrite.WriteL(blobstream);
99 // Close the write stream:
100 CleanupStack::PopAndDestroy();
101 // Close the read stream:
102 CleanupStack::PopAndDestroy();
103 // Delete the blob of data:
104 CleanupStack::PopAndDestroy(blobbuff);
107 TheTables[0].Cancel();
108 TheTables[1].Cancel(); //This call to cancel panics.
111 // End the transaction:
112 TheDatabase.Commit();
116 @SYMTestCaseID SYSLIB-DBMS-CT-0643
117 @SYMTestCaseDesc Tests for closing of tables
118 @SYMTestPriority Medium
119 @SYMTestActions Tests for closing of tables and database
120 @SYMTestExpectedResults Test must not fail
123 LOCAL_C void PostTestL()
125 test.Next(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0643 "));
127 TheTables[0].Close();
128 CleanupStack::Pop(); // Table close
129 TheTables[1].Close();
130 CleanupStack::Pop(); // Table close
132 // Close the database:
133 CleanupStack::PopAndDestroy();
138 test.Start(_L("bang"));
140 // Open a connection to the DBMS server:
141 User::LeaveIfError(TheDbs.Connect());
142 CleanupClosePushL(TheDbs);
148 CleanupStack::PopAndDestroy(); // TheDbs close
151 LOCAL_C void DeleteDataFile(const TDesC& aFullName)
154 TInt err = fsSession.Connect();
158 if(fsSession.Entry(aFullName, entry) == KErrNone)
160 RDebug::Print(_L("Deleting \"%S\" file.\n"), &aFullName);
161 err = fsSession.SetAtt(aFullName, 0, KEntryAttReadOnly);
164 RDebug::Print(_L("Error %d changing \"%S\" file attributes.\n"), err, &aFullName);
166 err = fsSession.Delete(aFullName);
169 RDebug::Print(_L("Error %d deleting \"%S\" file.\n"), err, &aFullName);
176 RDebug::Print(_L("Error %d connecting file session. File: %S.\n"), err, &aFullName);
181 // Test streaming conversions.
183 GLDEF_C TInt E32Main()
186 TheTrapCleanup=CTrapCleanup::New();
188 TInt r=TheFs.Connect();
190 r=TheFs.MkDir(KTestDatabase);
191 test(r==KErrNone || r==KErrAlreadyExists);
196 ::DeleteDataFile(KTestDatabase);
201 delete TheTrapCleanup;