sl@0
|
1 |
// Copyright (c) 2008-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 |
// Note: Only runs on hardware as you cannot remove MMC card on emulator
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#include <e32test.h>
|
sl@0
|
19 |
#include <bautils.h>
|
sl@0
|
20 |
#include <s32stor.h>
|
sl@0
|
21 |
#include <sqldb.h>
|
sl@0
|
22 |
|
sl@0
|
23 |
///////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
24 |
|
sl@0
|
25 |
static RFs TheFs;
|
sl@0
|
26 |
RTest TheTest(_L("t_sqlattach2 test"));
|
sl@0
|
27 |
RSqlDatabase TheDb;
|
sl@0
|
28 |
RSqlDatabase TheDb2;
|
sl@0
|
29 |
_LIT(KTestMMCDir, "c:\\test\\");
|
sl@0
|
30 |
_LIT(KTestDir, "E:\\test\\");
|
sl@0
|
31 |
_LIT(KTestDatabase1, "c:\\test\\t_sqlattach2_1.db");
|
sl@0
|
32 |
_LIT(KTestMMCDatabase1, "E:\\test\\t_sqlattach2_2.db");
|
sl@0
|
33 |
_LIT(KTestMMCDatabase2, "E:\\test\\t_sqlattach2_3.db");
|
sl@0
|
34 |
|
sl@0
|
35 |
|
sl@0
|
36 |
_LIT(KTxtInsertMMCTxt," Insert MMC card\r\n");
|
sl@0
|
37 |
_LIT(KTxtRemoveMMCTxt," Remove MMC card\r\n");
|
sl@0
|
38 |
_LIT(KTxtPressAnyKey," [press any key to continue]\r\n");
|
sl@0
|
39 |
_LIT(KTxtDefectTitle,"DEF116630 SQL, Missing test scenario: Open db, attach db on external media, remove media");
|
sl@0
|
40 |
|
sl@0
|
41 |
|
sl@0
|
42 |
///////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
43 |
///////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
44 |
//Test macros and functions
|
sl@0
|
45 |
void Check1(TInt aValue, TInt aLine)
|
sl@0
|
46 |
{
|
sl@0
|
47 |
if(!aValue)
|
sl@0
|
48 |
{
|
sl@0
|
49 |
RDebug::Print(_L("*** Line %d\r\n"), aLine);
|
sl@0
|
50 |
TheTest(EFalse, aLine);
|
sl@0
|
51 |
}
|
sl@0
|
52 |
}
|
sl@0
|
53 |
void Check2(TInt aValue, TInt aExpected, TInt aLine)
|
sl@0
|
54 |
{
|
sl@0
|
55 |
if(aValue != aExpected)
|
sl@0
|
56 |
{
|
sl@0
|
57 |
RDebug::Print(_L("*** Line %d, Expected error: %d, got: %d\r\n"), aLine, aExpected, aValue);
|
sl@0
|
58 |
TheTest(EFalse, aLine);
|
sl@0
|
59 |
}
|
sl@0
|
60 |
}
|
sl@0
|
61 |
#define TEST(arg) ::Check1((arg), __LINE__)
|
sl@0
|
62 |
#define TEST2(aValue, aExpected) ::Check2(aValue, aExpected, __LINE__)
|
sl@0
|
63 |
|
sl@0
|
64 |
///////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
65 |
|
sl@0
|
66 |
//Creates file session instance and the test directory
|
sl@0
|
67 |
void CreateTestEnv()
|
sl@0
|
68 |
{
|
sl@0
|
69 |
TInt err = TheFs.Connect();
|
sl@0
|
70 |
TEST2(err, KErrNone);
|
sl@0
|
71 |
|
sl@0
|
72 |
err = TheFs.MkDir(KTestDir);
|
sl@0
|
73 |
TEST(err == KErrNone || err == KErrAlreadyExists);
|
sl@0
|
74 |
err = TheFs.MkDir(KTestMMCDir);
|
sl@0
|
75 |
TEST(err == KErrNone || err == KErrAlreadyExists);
|
sl@0
|
76 |
}
|
sl@0
|
77 |
|
sl@0
|
78 |
|
sl@0
|
79 |
/**
|
sl@0
|
80 |
@SYMTestCaseID SYSLIB-SQL-CT-4021
|
sl@0
|
81 |
@SYMTestCaseDesc Determine the result of union select operations on an external media located attached database
|
sl@0
|
82 |
when the external media is removed.
|
sl@0
|
83 |
@SYMTestPriority Medium
|
sl@0
|
84 |
|
sl@0
|
85 |
@SYMTestActions Create database one on internal media and database two on external media.
|
sl@0
|
86 |
Insert records into both databases.
|
sl@0
|
87 |
Attach database two which resides on MMC card to database one.
|
sl@0
|
88 |
Prepare a union SELECT sql statement1 to retrieve records from the internal and attached database with database two listed before database one.
|
sl@0
|
89 |
Prepare a union SELECT sql statement2 to retrieve records from the internal and attached database with database one listed before database two
|
sl@0
|
90 |
Pauses and prompts the removal of the MMC card.
|
sl@0
|
91 |
Exec union select statement1 across databases.
|
sl@0
|
92 |
Exec union select statement2 across databases.
|
sl@0
|
93 |
|
sl@0
|
94 |
@SYMTestExpectedResults Databases are created and populated successfully.
|
sl@0
|
95 |
Database are attached sucessfully.
|
sl@0
|
96 |
Union statement1 operations return KErrNotReady
|
sl@0
|
97 |
Union statement2 operations return one record from internal database.
|
sl@0
|
98 |
@SYMDEF DEF116630
|
sl@0
|
99 |
*/
|
sl@0
|
100 |
void SqlAttachMMCDb2InternalDbUnionTestL()
|
sl@0
|
101 |
{
|
sl@0
|
102 |
|
sl@0
|
103 |
CConsoleBase* console=Console::NewL(KTxtDefectTitle,TSize(KConsFullScreen,KConsFullScreen));
|
sl@0
|
104 |
CleanupStack::PushL(console);
|
sl@0
|
105 |
console->Printf(KTxtInsertMMCTxt);
|
sl@0
|
106 |
console->Printf(KTxtPressAnyKey);
|
sl@0
|
107 |
console->Getch(); // get and ignore character
|
sl@0
|
108 |
|
sl@0
|
109 |
//Initially remove any preexisting database;
|
sl@0
|
110 |
(void)RSqlDatabase::Delete(KTestMMCDatabase1);
|
sl@0
|
111 |
(void)RSqlDatabase::Delete(KTestDatabase1);
|
sl@0
|
112 |
|
sl@0
|
113 |
TInt err = TheDb.Create(KTestDatabase1);
|
sl@0
|
114 |
TEST2(err, KErrNone);
|
sl@0
|
115 |
err = TheDb.Exec(_L8("CREATE TABLE A(Id INTEGER)"));
|
sl@0
|
116 |
TEST(err >= 0);
|
sl@0
|
117 |
err = TheDb.Exec(_L8("INSERT INTO A(Id) VALUES(1)"));
|
sl@0
|
118 |
TEST2(err, 1);
|
sl@0
|
119 |
err = TheDb.Exec(_L8("INSERT INTO A(Id) VALUES(2)"));
|
sl@0
|
120 |
TEST2(err, 1);
|
sl@0
|
121 |
TheDb.Close();
|
sl@0
|
122 |
|
sl@0
|
123 |
err = TheDb.Create(KTestMMCDatabase1);
|
sl@0
|
124 |
TEST2(err, KErrNone);
|
sl@0
|
125 |
err = TheDb.Exec(_L8("CREATE TABLE B(N INTEGER)"));
|
sl@0
|
126 |
TEST(err >= 0);
|
sl@0
|
127 |
err = TheDb.Exec(_L8("INSERT INTO B(N) VALUES(10)"));
|
sl@0
|
128 |
TEST2(err, 1);
|
sl@0
|
129 |
err = TheDb.Exec(_L8("INSERT INTO B(N) VALUES(20)"));
|
sl@0
|
130 |
TEST2(err, 1);
|
sl@0
|
131 |
err = TheDb.Exec(_L8("INSERT INTO B(N) VALUES(30)"));
|
sl@0
|
132 |
TEST2(err, 1);
|
sl@0
|
133 |
err = TheDb.Exec(_L8("INSERT INTO B(N) VALUES(40)"));
|
sl@0
|
134 |
TEST2(err, 1);
|
sl@0
|
135 |
TheDb.Close();
|
sl@0
|
136 |
|
sl@0
|
137 |
err = TheDb.Open(KTestDatabase1);
|
sl@0
|
138 |
TEST2(err, KErrNone);
|
sl@0
|
139 |
err = TheDb.Attach(KTestMMCDatabase1, _L("Db2"));
|
sl@0
|
140 |
TEST2(err, KErrNone);
|
sl@0
|
141 |
|
sl@0
|
142 |
RSqlStatement stmt;
|
sl@0
|
143 |
err = stmt.Prepare(TheDb, _L8("SELECT * FROM B union all Select * from A"));
|
sl@0
|
144 |
TEST2(err, KErrNone);
|
sl@0
|
145 |
|
sl@0
|
146 |
RSqlStatement stmt2;
|
sl@0
|
147 |
err = stmt2.Prepare(TheDb, _L8("SELECT * FROM A union all Select * from B"));
|
sl@0
|
148 |
TEST2(err, KErrNone);
|
sl@0
|
149 |
|
sl@0
|
150 |
console->Printf(KTxtRemoveMMCTxt);
|
sl@0
|
151 |
console->Printf(KTxtPressAnyKey);
|
sl@0
|
152 |
console->Getch(); // get and ignore character
|
sl@0
|
153 |
|
sl@0
|
154 |
err = stmt.Next();
|
sl@0
|
155 |
TEST2(err, KSqlAtRow);
|
sl@0
|
156 |
stmt.Close();
|
sl@0
|
157 |
|
sl@0
|
158 |
err = stmt2.Next();
|
sl@0
|
159 |
TEST2(err, KSqlAtRow);
|
sl@0
|
160 |
stmt2.Close();
|
sl@0
|
161 |
|
sl@0
|
162 |
err = TheDb.Detach(_L("Db2"));
|
sl@0
|
163 |
TEST2(err, KErrNone);
|
sl@0
|
164 |
|
sl@0
|
165 |
TheDb.Close();
|
sl@0
|
166 |
|
sl@0
|
167 |
CleanupStack::PopAndDestroy(); // close console
|
sl@0
|
168 |
(void)RSqlDatabase::Delete(KTestDatabase1);
|
sl@0
|
169 |
}
|
sl@0
|
170 |
|
sl@0
|
171 |
|
sl@0
|
172 |
/**
|
sl@0
|
173 |
@SYMTestCaseID SYSLIB-SQL-CT-4022
|
sl@0
|
174 |
@SYMTestCaseDesc Determine the result of operations on an external media located attached database
|
sl@0
|
175 |
when the external media is removed.
|
sl@0
|
176 |
|
sl@0
|
177 |
@SYMTestPriority Medium
|
sl@0
|
178 |
@SYMTestActions Create database one on internal media and database two on external media.
|
sl@0
|
179 |
Insert records into both databases.
|
sl@0
|
180 |
Attach database two which resides on MMC card to database one.
|
sl@0
|
181 |
Prepare a SELECT sql statement to retrieve records from the attached database two.
|
sl@0
|
182 |
Retrieve a record from database 2.
|
sl@0
|
183 |
Pauses and prompts the removal of the MMC card.
|
sl@0
|
184 |
Attempt to insert two records into database two.
|
sl@0
|
185 |
Prepare a SELECT sql statement to retrieve records from the attached database one.
|
sl@0
|
186 |
Attempt to select a record from dabase one.
|
sl@0
|
187 |
Attempt to insert record into database one.
|
sl@0
|
188 |
Reinsert the MMC card.
|
sl@0
|
189 |
Attempt to insert record in database one.
|
sl@0
|
190 |
Attempt to insert a record in database two.
|
sl@0
|
191 |
|
sl@0
|
192 |
@SYMTestExpectedResults Databases are created and populated successfully.
|
sl@0
|
193 |
Database are attached sucessfully.
|
sl@0
|
194 |
Select operations on database one are successful
|
sl@0
|
195 |
After MMC removal
|
sl@0
|
196 |
Disk write for database two return KErrNotReady.
|
sl@0
|
197 |
Select operations on database two are successful
|
sl@0
|
198 |
Select operations on database one are successful
|
sl@0
|
199 |
Write operations for database one are successful.
|
sl@0
|
200 |
After MMC re-insert
|
sl@0
|
201 |
Inserting a record into database one are succesful.
|
sl@0
|
202 |
Inserting a record into database two are successful
|
sl@0
|
203 |
|
sl@0
|
204 |
@SYMDEF DEF116630
|
sl@0
|
205 |
*/
|
sl@0
|
206 |
void SqlAttachMMCDb2InternalDbTestL()
|
sl@0
|
207 |
{
|
sl@0
|
208 |
|
sl@0
|
209 |
CConsoleBase* console=Console::NewL(KTxtDefectTitle,TSize(KConsFullScreen,KConsFullScreen));
|
sl@0
|
210 |
CleanupStack::PushL(console);
|
sl@0
|
211 |
console->Printf(KTxtInsertMMCTxt);
|
sl@0
|
212 |
console->Printf(KTxtPressAnyKey);
|
sl@0
|
213 |
console->Getch(); // get and ignore character
|
sl@0
|
214 |
|
sl@0
|
215 |
//Initially remove any preexisting database;
|
sl@0
|
216 |
(void)RSqlDatabase::Delete(KTestMMCDatabase1);
|
sl@0
|
217 |
(void)RSqlDatabase::Delete(KTestDatabase1);
|
sl@0
|
218 |
|
sl@0
|
219 |
TInt err = TheDb.Create(KTestDatabase1);
|
sl@0
|
220 |
TEST2(err, KErrNone);
|
sl@0
|
221 |
err = TheDb.Exec(_L8("CREATE TABLE A(Id INTEGER)"));
|
sl@0
|
222 |
TEST(err >= 0);
|
sl@0
|
223 |
err = TheDb.Exec(_L8("INSERT INTO A(Id) VALUES(1)"));
|
sl@0
|
224 |
TEST2(err, 1);
|
sl@0
|
225 |
err = TheDb.Exec(_L8("INSERT INTO A(Id) VALUES(2)"));
|
sl@0
|
226 |
TEST2(err, 1);
|
sl@0
|
227 |
TheDb.Close();
|
sl@0
|
228 |
|
sl@0
|
229 |
err = TheDb.Create(KTestMMCDatabase1);
|
sl@0
|
230 |
TEST2(err, KErrNone);
|
sl@0
|
231 |
err = TheDb.Exec(_L8("CREATE TABLE B(N INTEGER)"));
|
sl@0
|
232 |
TEST(err >= 0);
|
sl@0
|
233 |
err = TheDb.Exec(_L8("INSERT INTO B(N) VALUES(10)"));
|
sl@0
|
234 |
TEST2(err, 1);
|
sl@0
|
235 |
err = TheDb.Exec(_L8("INSERT INTO B(N) VALUES(20)"));
|
sl@0
|
236 |
TEST2(err, 1);
|
sl@0
|
237 |
err = TheDb.Exec(_L8("INSERT INTO B(N) VALUES(30)"));
|
sl@0
|
238 |
TEST2(err, 1);
|
sl@0
|
239 |
err = TheDb.Exec(_L8("INSERT INTO B(N) VALUES(40)"));
|
sl@0
|
240 |
TEST2(err, 1);
|
sl@0
|
241 |
TheDb.Close();
|
sl@0
|
242 |
|
sl@0
|
243 |
err = TheDb.Open(KTestDatabase1);
|
sl@0
|
244 |
TEST2(err, KErrNone);
|
sl@0
|
245 |
err = TheDb.Attach(KTestMMCDatabase1, _L("Db2"));
|
sl@0
|
246 |
TEST2(err, KErrNone);
|
sl@0
|
247 |
|
sl@0
|
248 |
RSqlStatement stmt;
|
sl@0
|
249 |
err = stmt.Prepare(TheDb, _L8("SELECT * FROM B"));
|
sl@0
|
250 |
TEST2(err, KErrNone);
|
sl@0
|
251 |
|
sl@0
|
252 |
err = stmt.Next();
|
sl@0
|
253 |
TEST2(err, KSqlAtRow);
|
sl@0
|
254 |
|
sl@0
|
255 |
console->Printf(KTxtRemoveMMCTxt);
|
sl@0
|
256 |
console->Printf(KTxtPressAnyKey);
|
sl@0
|
257 |
console->Getch(); // get and ignore character
|
sl@0
|
258 |
|
sl@0
|
259 |
err = stmt.Next();
|
sl@0
|
260 |
TEST2(err, KSqlAtRow);
|
sl@0
|
261 |
|
sl@0
|
262 |
err = TheDb.Exec(_L8("INSERT INTO B(N) VALUES(40)"));
|
sl@0
|
263 |
TEST2(err, KErrNotReady);
|
sl@0
|
264 |
|
sl@0
|
265 |
|
sl@0
|
266 |
err = TheDb.Exec(_L8("INSERT INTO B(N) VALUES(50)"));
|
sl@0
|
267 |
TEST2(err, KErrNotReady);
|
sl@0
|
268 |
|
sl@0
|
269 |
|
sl@0
|
270 |
err = stmt.Next();
|
sl@0
|
271 |
TEST2(err, KSqlAtRow);
|
sl@0
|
272 |
stmt.Close();
|
sl@0
|
273 |
//Check that you can still perform operations on internal media based database
|
sl@0
|
274 |
RSqlStatement stmt2;
|
sl@0
|
275 |
err = stmt2.Prepare(TheDb, _L8("SELECT * FROM A"));
|
sl@0
|
276 |
TEST2(err, KErrNone);
|
sl@0
|
277 |
err = stmt2.Next();
|
sl@0
|
278 |
TEST2(err, KSqlAtRow);
|
sl@0
|
279 |
|
sl@0
|
280 |
err = TheDb.Exec(_L8("INSERT INTO A(Id) VALUES(40)"));
|
sl@0
|
281 |
TEST2(err, 1);
|
sl@0
|
282 |
|
sl@0
|
283 |
err = stmt2.Next();
|
sl@0
|
284 |
TEST2(err, KSqlAtRow);
|
sl@0
|
285 |
stmt2.Close();
|
sl@0
|
286 |
|
sl@0
|
287 |
//Check that databases start working again when mmc card reinserted.
|
sl@0
|
288 |
console->Printf(KTxtInsertMMCTxt);
|
sl@0
|
289 |
console->Printf(KTxtPressAnyKey);
|
sl@0
|
290 |
console->Getch(); // get and ignore character
|
sl@0
|
291 |
|
sl@0
|
292 |
err = TheDb.Detach(_L("Db2"));
|
sl@0
|
293 |
TEST2(err, KErrNone);
|
sl@0
|
294 |
|
sl@0
|
295 |
TheDb.Close();
|
sl@0
|
296 |
|
sl@0
|
297 |
err = TheDb2.Open(KTestDatabase1);
|
sl@0
|
298 |
TEST2(err, KErrNone);
|
sl@0
|
299 |
err = TheDb2.Attach(KTestMMCDatabase1, _L("Db2"));
|
sl@0
|
300 |
TEST2(err, KErrNone);
|
sl@0
|
301 |
|
sl@0
|
302 |
|
sl@0
|
303 |
err = TheDb2.Exec(_L8("INSERT INTO A(Id) VALUES(50)"));
|
sl@0
|
304 |
TEST2(err, 1);
|
sl@0
|
305 |
err = TheDb2.Exec(_L8("INSERT INTO B(N) VALUES(50)"));
|
sl@0
|
306 |
TEST2(err, 1);
|
sl@0
|
307 |
|
sl@0
|
308 |
err = TheDb2.Detach(_L("Db2"));
|
sl@0
|
309 |
TEST2(err, KErrNone);
|
sl@0
|
310 |
|
sl@0
|
311 |
TheDb2.Close();
|
sl@0
|
312 |
CleanupStack::PopAndDestroy(); // close console
|
sl@0
|
313 |
(void)RSqlDatabase::Delete(KTestMMCDatabase1);
|
sl@0
|
314 |
(void)RSqlDatabase::Delete(KTestDatabase1);
|
sl@0
|
315 |
}
|
sl@0
|
316 |
|
sl@0
|
317 |
/**
|
sl@0
|
318 |
@SYMTestCaseID SYSLIB-SQL-CT-4023
|
sl@0
|
319 |
@SYMTestCaseDesc Determine the result of multiple disk write operations on an internal and
|
sl@0
|
320 |
external media located database when the attached external media is removed.
|
sl@0
|
321 |
@SYMTestPriority Medium
|
sl@0
|
322 |
|
sl@0
|
323 |
@SYMTestActions Create database 1 on internal media and database two on external media.
|
sl@0
|
324 |
Insert records into both databases.
|
sl@0
|
325 |
Attaches database 2 which resides on MMC card to database 1.
|
sl@0
|
326 |
Prepare a SELECT sql statement to retrieve records from database 1.
|
sl@0
|
327 |
Retrieve a record from database 1.
|
sl@0
|
328 |
Pause and prompts the removal of the MMC card.
|
sl@0
|
329 |
Attempt to insert a record into database one.
|
sl@0
|
330 |
Attempt to select records from dabase one.
|
sl@0
|
331 |
Attempt to prepare a select statement on database two.
|
sl@0
|
332 |
Attempt to retrieve a record from database two.
|
sl@0
|
333 |
Attempts to insert record into database two.
|
sl@0
|
334 |
@SYMTestExpectedResults Databases are created and populated successfully.
|
sl@0
|
335 |
Database are attached sucessfully.
|
sl@0
|
336 |
Prepare and select operations on database one are successful
|
sl@0
|
337 |
MMC Removed
|
sl@0
|
338 |
Write operations on database one are successful.
|
sl@0
|
339 |
Select operations on database one are successful.
|
sl@0
|
340 |
Prepare statement on database two are successful
|
sl@0
|
341 |
Disk read/write operations on database two return KErrNotReady.
|
sl@0
|
342 |
|
sl@0
|
343 |
@SYMDEF DEF116630
|
sl@0
|
344 |
*/
|
sl@0
|
345 |
void SqlAttachMMCDb2InternalDbAndDoDiskOpsTestL()
|
sl@0
|
346 |
{
|
sl@0
|
347 |
|
sl@0
|
348 |
CConsoleBase* console=Console::NewL(KTxtDefectTitle,TSize(KConsFullScreen,KConsFullScreen));
|
sl@0
|
349 |
CleanupStack::PushL(console);
|
sl@0
|
350 |
console->Printf(KTxtInsertMMCTxt);
|
sl@0
|
351 |
console->Printf(KTxtPressAnyKey);
|
sl@0
|
352 |
console->Getch(); // get and ignore character
|
sl@0
|
353 |
|
sl@0
|
354 |
//Initially remove any preexisting database;
|
sl@0
|
355 |
(void)RSqlDatabase::Delete(KTestMMCDatabase1);
|
sl@0
|
356 |
(void)RSqlDatabase::Delete(KTestDatabase1);
|
sl@0
|
357 |
|
sl@0
|
358 |
TInt err = TheDb.Create(KTestDatabase1);
|
sl@0
|
359 |
TEST2(err, KErrNone);
|
sl@0
|
360 |
err = TheDb.Exec(_L8("CREATE TABLE A(Id INTEGER)"));
|
sl@0
|
361 |
TEST(err >= 0);
|
sl@0
|
362 |
err = TheDb.Exec(_L8("INSERT INTO A(Id) VALUES(1)"));
|
sl@0
|
363 |
TEST2(err, 1);
|
sl@0
|
364 |
err = TheDb.Exec(_L8("INSERT INTO A(Id) VALUES(2)"));
|
sl@0
|
365 |
TEST2(err, 1);
|
sl@0
|
366 |
TheDb.Close();
|
sl@0
|
367 |
|
sl@0
|
368 |
err = TheDb.Create(KTestMMCDatabase1);
|
sl@0
|
369 |
TEST2(err, KErrNone);
|
sl@0
|
370 |
err = TheDb.Exec(_L8("CREATE TABLE B(N INTEGER)"));
|
sl@0
|
371 |
TEST(err >= 0);
|
sl@0
|
372 |
err = TheDb.Exec(_L8("INSERT INTO B(N) VALUES(10)"));
|
sl@0
|
373 |
TEST2(err, 1);
|
sl@0
|
374 |
err = TheDb.Exec(_L8("INSERT INTO B(N) VALUES(20)"));
|
sl@0
|
375 |
TEST2(err, 1);
|
sl@0
|
376 |
err = TheDb.Exec(_L8("INSERT INTO B(N) VALUES(30)"));
|
sl@0
|
377 |
TEST2(err, 1);
|
sl@0
|
378 |
TheDb.Close();
|
sl@0
|
379 |
|
sl@0
|
380 |
err = TheDb.Open(KTestDatabase1);
|
sl@0
|
381 |
TEST2(err, KErrNone);
|
sl@0
|
382 |
err = TheDb.Attach(KTestMMCDatabase1, _L("Db2"));
|
sl@0
|
383 |
TEST2(err, KErrNone);
|
sl@0
|
384 |
|
sl@0
|
385 |
RSqlStatement stmt;
|
sl@0
|
386 |
err = stmt.Prepare(TheDb, _L8("SELECT * FROM A"));
|
sl@0
|
387 |
TEST2(err, KErrNone);
|
sl@0
|
388 |
err = stmt.Next();
|
sl@0
|
389 |
TEST2(err, KSqlAtRow);
|
sl@0
|
390 |
|
sl@0
|
391 |
console->Printf(KTxtRemoveMMCTxt);
|
sl@0
|
392 |
console->Printf(KTxtPressAnyKey);
|
sl@0
|
393 |
console->Getch(); // get and ignore character
|
sl@0
|
394 |
|
sl@0
|
395 |
err = TheDb.Exec(_L8("INSERT INTO A(Id) VALUES(40)"));
|
sl@0
|
396 |
TEST2(err, 1);
|
sl@0
|
397 |
|
sl@0
|
398 |
err = stmt.Next();
|
sl@0
|
399 |
TEST2(err, KSqlAtRow);
|
sl@0
|
400 |
|
sl@0
|
401 |
stmt.Close();
|
sl@0
|
402 |
|
sl@0
|
403 |
//Check that you can still perform operations on external media based database
|
sl@0
|
404 |
RSqlStatement stmt2;
|
sl@0
|
405 |
err = stmt2.Prepare(TheDb, _L8("SELECT * FROM B"));
|
sl@0
|
406 |
TEST2(err, KErrNone);
|
sl@0
|
407 |
err = stmt2.Next();
|
sl@0
|
408 |
TEST2(err,KSqlAtRow);
|
sl@0
|
409 |
|
sl@0
|
410 |
stmt2.Close();
|
sl@0
|
411 |
|
sl@0
|
412 |
err = TheDb.Exec(_L8("INSERT INTO B(N) VALUES(40)"));
|
sl@0
|
413 |
TEST2(err, KErrNotReady);
|
sl@0
|
414 |
|
sl@0
|
415 |
err = TheDb.Detach(_L("Db2"));
|
sl@0
|
416 |
TEST2(err, KErrNone);
|
sl@0
|
417 |
|
sl@0
|
418 |
TheDb.Close();
|
sl@0
|
419 |
CleanupStack::PopAndDestroy(); // close console
|
sl@0
|
420 |
(void)RSqlDatabase::Delete(KTestDatabase1);
|
sl@0
|
421 |
}
|
sl@0
|
422 |
|
sl@0
|
423 |
/**
|
sl@0
|
424 |
@SYMTestCaseID SYSLIB-SQL-CT-4024
|
sl@0
|
425 |
@SYMTestCaseDesc Determine the result of operations on an internal media located attached database
|
sl@0
|
426 |
to a external media database
|
sl@0
|
427 |
when the external media is removed.
|
sl@0
|
428 |
@SYMTestPriority Medium
|
sl@0
|
429 |
|
sl@0
|
430 |
@SYMTestActions Create database 1 on internal media and database two on external media.
|
sl@0
|
431 |
Insert records into both databases.
|
sl@0
|
432 |
Attempt to Attach database 1 to database two which resides on MMC card.
|
sl@0
|
433 |
Attempt to Prepare a SELECT statement to retrieve records from the attached database 2.
|
sl@0
|
434 |
Attempt to retrieve record from database two.
|
sl@0
|
435 |
Pause and prompts the removal of the MMC card.
|
sl@0
|
436 |
Attempt to SELECT a record from database two.
|
sl@0
|
437 |
Attempt to insert a record into database two.
|
sl@0
|
438 |
Attempt to SELECT a record from database two.
|
sl@0
|
439 |
Attempt to prepare a select statement on database one.
|
sl@0
|
440 |
Attempt to select records from dabase one.
|
sl@0
|
441 |
Attempt to insert record into database one.
|
sl@0
|
442 |
|
sl@0
|
443 |
@SYMTestExpectedResults Databases are created and populated successfully.
|
sl@0
|
444 |
Database are attached sucessfully.
|
sl@0
|
445 |
Select operations on database two are successful
|
sl@0
|
446 |
MMC Removed
|
sl@0
|
447 |
Select operation on database two is successful
|
sl@0
|
448 |
Operations involving a disk write for database 2 return KErrNotReady.
|
sl@0
|
449 |
Select operation on database two is successful
|
sl@0
|
450 |
Prepare select operations on database on is successful
|
sl@0
|
451 |
Select operations on database one are successful
|
sl@0
|
452 |
Insert operations on database one are successful
|
sl@0
|
453 |
@SYMDEF DEF116630
|
sl@0
|
454 |
*/
|
sl@0
|
455 |
void SqlAttachInternalDb2MMCDbTestL()
|
sl@0
|
456 |
{
|
sl@0
|
457 |
|
sl@0
|
458 |
CConsoleBase* console=Console::NewL(KTxtDefectTitle,TSize(KConsFullScreen,KConsFullScreen));
|
sl@0
|
459 |
CleanupStack::PushL(console);
|
sl@0
|
460 |
console->Printf(KTxtInsertMMCTxt);
|
sl@0
|
461 |
console->Printf(KTxtPressAnyKey);
|
sl@0
|
462 |
console->Getch(); // get and ignore character
|
sl@0
|
463 |
|
sl@0
|
464 |
//Initially remove any preexisting database;
|
sl@0
|
465 |
(void)RSqlDatabase::Delete(KTestMMCDatabase1);
|
sl@0
|
466 |
(void)RSqlDatabase::Delete(KTestDatabase1);
|
sl@0
|
467 |
|
sl@0
|
468 |
TInt err = TheDb.Create(KTestDatabase1);
|
sl@0
|
469 |
TEST2(err, KErrNone);
|
sl@0
|
470 |
err = TheDb.Exec(_L8("CREATE TABLE A(Id INTEGER)"));
|
sl@0
|
471 |
TEST(err >= 0);
|
sl@0
|
472 |
err = TheDb.Exec(_L8("INSERT INTO A(Id) VALUES(1)"));
|
sl@0
|
473 |
TEST2(err, 1);
|
sl@0
|
474 |
err = TheDb.Exec(_L8("INSERT INTO A(Id) VALUES(2)"));
|
sl@0
|
475 |
TEST2(err, 1);
|
sl@0
|
476 |
TheDb.Close();
|
sl@0
|
477 |
|
sl@0
|
478 |
err = TheDb.Create(KTestMMCDatabase1);
|
sl@0
|
479 |
TEST2(err, KErrNone);
|
sl@0
|
480 |
err = TheDb.Exec(_L8("CREATE TABLE B(N INTEGER)"));
|
sl@0
|
481 |
TEST(err >= 0);
|
sl@0
|
482 |
err = TheDb.Exec(_L8("INSERT INTO B(N) VALUES(10)"));
|
sl@0
|
483 |
TEST2(err, 1);
|
sl@0
|
484 |
err = TheDb.Exec(_L8("INSERT INTO B(N) VALUES(20)"));
|
sl@0
|
485 |
TEST2(err, 1);
|
sl@0
|
486 |
err = TheDb.Exec(_L8("INSERT INTO B(N) VALUES(30)"));
|
sl@0
|
487 |
TEST2(err, 1);
|
sl@0
|
488 |
TheDb.Close();
|
sl@0
|
489 |
|
sl@0
|
490 |
err = TheDb.Open(KTestMMCDatabase1);
|
sl@0
|
491 |
TEST2(err, KErrNone);
|
sl@0
|
492 |
err = TheDb.Attach(KTestDatabase1, _L("Db2"));
|
sl@0
|
493 |
TEST2(err, KErrNone);
|
sl@0
|
494 |
|
sl@0
|
495 |
RSqlStatement stmt;
|
sl@0
|
496 |
err = stmt.Prepare(TheDb, _L8("SELECT * FROM B"));
|
sl@0
|
497 |
TEST2(err, KErrNone);
|
sl@0
|
498 |
err = stmt.Next();
|
sl@0
|
499 |
TEST2(err, KSqlAtRow);
|
sl@0
|
500 |
|
sl@0
|
501 |
console->Printf(KTxtRemoveMMCTxt);
|
sl@0
|
502 |
console->Printf(KTxtPressAnyKey);
|
sl@0
|
503 |
console->Getch(); // get and ignore character
|
sl@0
|
504 |
|
sl@0
|
505 |
err = stmt.Next();
|
sl@0
|
506 |
TEST2(err, KSqlAtRow);
|
sl@0
|
507 |
|
sl@0
|
508 |
err = TheDb.Exec(_L8("INSERT INTO B(N) VALUES(40)"));
|
sl@0
|
509 |
TEST2(err, KErrNotReady);
|
sl@0
|
510 |
|
sl@0
|
511 |
err = stmt.Next();
|
sl@0
|
512 |
TEST2(err, KSqlAtRow);
|
sl@0
|
513 |
stmt.Close();
|
sl@0
|
514 |
|
sl@0
|
515 |
//Check that you can still perform operations on internal media based database
|
sl@0
|
516 |
RSqlStatement stmt2;
|
sl@0
|
517 |
err = stmt2.Prepare(TheDb, _L8("SELECT * FROM A"));
|
sl@0
|
518 |
TEST2(err, KErrNone);
|
sl@0
|
519 |
err = stmt2.Next();
|
sl@0
|
520 |
TEST2(err, KSqlAtRow);
|
sl@0
|
521 |
|
sl@0
|
522 |
err = TheDb.Exec(_L8("INSERT INTO A(Id) VALUES(40)"));
|
sl@0
|
523 |
TEST2(err, 1);
|
sl@0
|
524 |
|
sl@0
|
525 |
err = stmt2.Next();
|
sl@0
|
526 |
TEST2(err, KSqlAtRow);
|
sl@0
|
527 |
stmt2.Close();
|
sl@0
|
528 |
|
sl@0
|
529 |
err = TheDb.Detach(_L("Db2"));
|
sl@0
|
530 |
TEST2(err, KErrNone);
|
sl@0
|
531 |
|
sl@0
|
532 |
TheDb.Close();
|
sl@0
|
533 |
CleanupStack::PopAndDestroy(); // close console
|
sl@0
|
534 |
(void)RSqlDatabase::Delete(KTestDatabase1);
|
sl@0
|
535 |
}
|
sl@0
|
536 |
|
sl@0
|
537 |
/**
|
sl@0
|
538 |
@SYMTestCaseID SYSLIB-SQL-CT-4025
|
sl@0
|
539 |
@SYMTestCaseDesc Determine the result of operations on an external media located attached database
|
sl@0
|
540 |
to another external media database when the external media is removed.
|
sl@0
|
541 |
@SYMTestPriority Medium
|
sl@0
|
542 |
@SYMTestActions Create database one and database two on external media.
|
sl@0
|
543 |
Insert records into both databases.
|
sl@0
|
544 |
Attach database two to database one
|
sl@0
|
545 |
Prepare a select statement on database two.
|
sl@0
|
546 |
Retrieve a record from database two.
|
sl@0
|
547 |
Pause and prompts the removal of the MMC card.
|
sl@0
|
548 |
Retrieve a record from database two.
|
sl@0
|
549 |
Attempt to insert a record into database two.
|
sl@0
|
550 |
Attempt to insert another record into database two.
|
sl@0
|
551 |
Retrieve a record from database two.
|
sl@0
|
552 |
Prepare a select statement on database one.
|
sl@0
|
553 |
Attempt to retrieve record from database one.
|
sl@0
|
554 |
Attempt to insert a record into database one.
|
sl@0
|
555 |
Attempt to retrieve record from database one.
|
sl@0
|
556 |
|
sl@0
|
557 |
@SYMTestExpectedResults Databases are created and populated successfully.
|
sl@0
|
558 |
Database are attached sucessfully.
|
sl@0
|
559 |
Select operations on database two are successful
|
sl@0
|
560 |
MMC Removed.
|
sl@0
|
561 |
Read operations are successful on database two.
|
sl@0
|
562 |
First Insert operation return KErrNotReady for database two.
|
sl@0
|
563 |
Second Insert operation return KErrNotReady for database two.
|
sl@0
|
564 |
Read operations are still successful on database two.
|
sl@0
|
565 |
Read operations are still successful on database one.
|
sl@0
|
566 |
Insert operation returns KErrNotReady.
|
sl@0
|
567 |
Read operations are still successful on database one.
|
sl@0
|
568 |
@SYMDEF DEF116630
|
sl@0
|
569 |
*/
|
sl@0
|
570 |
void SqlAttachMMCDb12MMCDb2TestL()
|
sl@0
|
571 |
{
|
sl@0
|
572 |
|
sl@0
|
573 |
CConsoleBase* console=Console::NewL(KTxtDefectTitle,TSize(KConsFullScreen,KConsFullScreen));
|
sl@0
|
574 |
CleanupStack::PushL(console);
|
sl@0
|
575 |
console->Printf(KTxtInsertMMCTxt);
|
sl@0
|
576 |
console->Printf(KTxtPressAnyKey);
|
sl@0
|
577 |
console->Getch(); // get and ignore character
|
sl@0
|
578 |
|
sl@0
|
579 |
//Initially remove any preexisting database;
|
sl@0
|
580 |
(void)RSqlDatabase::Delete(KTestMMCDatabase1);
|
sl@0
|
581 |
(void)RSqlDatabase::Delete(KTestMMCDatabase2);
|
sl@0
|
582 |
|
sl@0
|
583 |
TInt err = TheDb.Create(KTestMMCDatabase1);
|
sl@0
|
584 |
TEST2(err, KErrNone);
|
sl@0
|
585 |
err = TheDb.Exec(_L8("CREATE TABLE A(Id INTEGER)"));
|
sl@0
|
586 |
TEST(err >= 0);
|
sl@0
|
587 |
err = TheDb.Exec(_L8("INSERT INTO A(Id) VALUES(1)"));
|
sl@0
|
588 |
TEST2(err, 1);
|
sl@0
|
589 |
err = TheDb.Exec(_L8("INSERT INTO A(Id) VALUES(2)"));
|
sl@0
|
590 |
TEST2(err, 1);
|
sl@0
|
591 |
TheDb.Close();
|
sl@0
|
592 |
|
sl@0
|
593 |
err = TheDb.Create(KTestMMCDatabase2);
|
sl@0
|
594 |
TEST2(err, KErrNone);
|
sl@0
|
595 |
err = TheDb.Exec(_L8("CREATE TABLE B(N INTEGER)"));
|
sl@0
|
596 |
TEST(err >= 0);
|
sl@0
|
597 |
err = TheDb.Exec(_L8("INSERT INTO B(N) VALUES(10)"));
|
sl@0
|
598 |
TEST2(err, 1);
|
sl@0
|
599 |
err = TheDb.Exec(_L8("INSERT INTO B(N) VALUES(20)"));
|
sl@0
|
600 |
TEST2(err, 1);
|
sl@0
|
601 |
err = TheDb.Exec(_L8("INSERT INTO B(N) VALUES(30)"));
|
sl@0
|
602 |
TEST2(err, 1);
|
sl@0
|
603 |
TheDb.Close();
|
sl@0
|
604 |
|
sl@0
|
605 |
err = TheDb.Open(KTestMMCDatabase1);
|
sl@0
|
606 |
TEST2(err, KErrNone);
|
sl@0
|
607 |
err = TheDb.Attach(KTestMMCDatabase2, _L("Db2"));
|
sl@0
|
608 |
TEST2(err, KErrNone);
|
sl@0
|
609 |
|
sl@0
|
610 |
RSqlStatement stmt;
|
sl@0
|
611 |
err = stmt.Prepare(TheDb, _L8("SELECT * FROM B"));
|
sl@0
|
612 |
TEST2(err, KErrNone);
|
sl@0
|
613 |
err = stmt.Next();
|
sl@0
|
614 |
TEST2(err, KSqlAtRow);
|
sl@0
|
615 |
|
sl@0
|
616 |
console->Printf(KTxtRemoveMMCTxt);
|
sl@0
|
617 |
console->Printf(KTxtPressAnyKey);
|
sl@0
|
618 |
console->Getch(); // get and ignore character
|
sl@0
|
619 |
|
sl@0
|
620 |
err = stmt.Next();
|
sl@0
|
621 |
TEST2(err, KSqlAtRow);
|
sl@0
|
622 |
|
sl@0
|
623 |
err = TheDb.Exec(_L8("INSERT INTO B(N) VALUES(40)"));
|
sl@0
|
624 |
TEST2(err, KErrNotReady);
|
sl@0
|
625 |
|
sl@0
|
626 |
err = TheDb.Exec(_L8("INSERT INTO B(N) VALUES(50)"));
|
sl@0
|
627 |
TEST2(err, KErrNotReady);
|
sl@0
|
628 |
|
sl@0
|
629 |
err = stmt.Next();
|
sl@0
|
630 |
TEST2(err, KSqlAtRow);
|
sl@0
|
631 |
stmt.Close();
|
sl@0
|
632 |
|
sl@0
|
633 |
//Check the error conditions when you attempt operations on the other database
|
sl@0
|
634 |
RSqlStatement stmt2;
|
sl@0
|
635 |
err = stmt2.Prepare(TheDb, _L8("SELECT * FROM A"));
|
sl@0
|
636 |
TEST2(err, KErrNone);
|
sl@0
|
637 |
err = stmt2.Next();
|
sl@0
|
638 |
TEST2(err, KSqlAtRow);
|
sl@0
|
639 |
|
sl@0
|
640 |
err = TheDb.Exec(_L8("INSERT INTO A(Id) VALUES(40)"));
|
sl@0
|
641 |
TEST2(err, KErrNotReady);
|
sl@0
|
642 |
|
sl@0
|
643 |
err = stmt2.Next();
|
sl@0
|
644 |
TEST2(err, KSqlAtRow);
|
sl@0
|
645 |
stmt2.Close();
|
sl@0
|
646 |
|
sl@0
|
647 |
TheDb.Close();
|
sl@0
|
648 |
|
sl@0
|
649 |
//Initially remove any preexisting database;
|
sl@0
|
650 |
(void)RSqlDatabase::Delete(KTestMMCDatabase1);
|
sl@0
|
651 |
(void)RSqlDatabase::Delete(KTestMMCDatabase2);
|
sl@0
|
652 |
|
sl@0
|
653 |
CleanupStack::PopAndDestroy(); // close console
|
sl@0
|
654 |
}
|
sl@0
|
655 |
|
sl@0
|
656 |
|
sl@0
|
657 |
|
sl@0
|
658 |
void DoTestsL()
|
sl@0
|
659 |
{
|
sl@0
|
660 |
TheTest.Start(_L(" @SYMTestCaseID:SYSLIB-SQL-CT-4022 \"SQL against attached MMC db when MMC removed\" test "));
|
sl@0
|
661 |
SqlAttachMMCDb2InternalDbTestL();
|
sl@0
|
662 |
|
sl@0
|
663 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-CT-4024 SQL against MMC db with attached internal database when MMC removed "));
|
sl@0
|
664 |
SqlAttachInternalDb2MMCDbTestL();
|
sl@0
|
665 |
|
sl@0
|
666 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-CT-4025 SQL against MMC based db with attached MMC based database when MMC removed "));
|
sl@0
|
667 |
SqlAttachMMCDb12MMCDb2TestL();
|
sl@0
|
668 |
|
sl@0
|
669 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-CT-4023 SQL against internal database with attached MMC db when MMC removed "));
|
sl@0
|
670 |
SqlAttachMMCDb2InternalDbAndDoDiskOpsTestL();
|
sl@0
|
671 |
|
sl@0
|
672 |
TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-CT-4021 SQL UNION against internal database with attached MMC db when MMC removed "));
|
sl@0
|
673 |
SqlAttachMMCDb2InternalDbUnionTestL();
|
sl@0
|
674 |
|
sl@0
|
675 |
}
|
sl@0
|
676 |
|
sl@0
|
677 |
TInt E32Main()
|
sl@0
|
678 |
{
|
sl@0
|
679 |
TheTest.Title();
|
sl@0
|
680 |
|
sl@0
|
681 |
CTrapCleanup* tc = CTrapCleanup::New();
|
sl@0
|
682 |
|
sl@0
|
683 |
__UHEAP_MARK;
|
sl@0
|
684 |
CreateTestEnv();
|
sl@0
|
685 |
TRAPD(err, DoTestsL());
|
sl@0
|
686 |
TheFs.Close();
|
sl@0
|
687 |
TEST2(err, KErrNone);
|
sl@0
|
688 |
|
sl@0
|
689 |
__UHEAP_MARKEND;
|
sl@0
|
690 |
|
sl@0
|
691 |
TheTest.End();
|
sl@0
|
692 |
TheTest.Close();
|
sl@0
|
693 |
|
sl@0
|
694 |
delete tc;
|
sl@0
|
695 |
|
sl@0
|
696 |
User::Heap().Check();
|
sl@0
|
697 |
return KErrNone;
|
sl@0
|
698 |
}
|