Update contrib.
1 // Copyright (c) 2007-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.
21 #include "t_sqlitewsd.h"
22 #include "sqliteTestUtl.h"
27 ///////////////////////////////////////////////////////////////////////////////////////
29 const char* const KTestName = "t_sqlitewsd";
32 static pid_t TheKSqliteWsdProc2Pid = 0;
33 const char* KSqliteWsdProc2Name = "z:\\sys\\bin\\t_sqlitewsd2.exe";
35 const char* KTestDir = "c:\\test\\";
36 const char* KTestDb = "c:\\test\\t_sqlitewsd.db";
40 ///////////////////////////////////////////////////////////////////////////////////////
42 static void DestroyTestEnv()
46 (void)sqlite3_close(TheDb);
49 if(TheFs.Handle() != KNullHandle)
52 fname.Copy(TPtrC8((const TUint8*)KTestDb));
53 (void)TheFs.Delete(fname);
58 ///////////////////////////////////////////////////////////////////////////////////////
60 //Test macros and functions
61 void Check(TInt aValue, TInt aLine)
66 TestTestLine(EFalse, aLine);
70 void Check(TInt aValue, TInt aExpected, TInt aLine)
72 if(aValue != aExpected)
74 RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
75 const char* errMsg = sqlite3_errmsg(TheDb);
79 msgBuf.Copy(TPtrC8((const TUint8*)errMsg));
80 RDebug::Print(_L("*** SQLITE error msg: \"%S\".\r\n"), &msgBuf);
83 TestTestLine(EFalse, aLine);
87 ///////////////////////////////////////////////////////////////////////////////////////
89 static void CreateTestEnv()
91 TInt err = TheFs.Connect();
95 testDir.Copy(TPtrC8((const TUint8*)KTestDir));
96 err = TheFs.MkDir(testDir);
97 TEST(err == KErrNone || err == KErrAlreadyExists);
100 fname.Copy(TPtrC8((const TUint8*)KTestDb));
101 (void)TheFs.Delete(fname);
103 err = sqlite3_open(KTestDb, &TheDb);
104 TEST2(err, SQLITE_OK);
108 ///////////////////////////////////////////////////////////////////////////////////////
110 static void CreateDb()
113 TInt err = sqlite3_exec(TheDb, "CREATE TABLE A(F1 INTEGER)", 0, 0, 0);
114 TEST2(err, SQLITE_OK);
117 static void RunSqliteWsd2()
119 TInt err = posix_spawn(&TheKSqliteWsdProc2Pid, KSqliteWsdProc2Name, 0, 0, 0, 0);
123 static void DestroySqliteWsd2()
125 (void)waitpid(TheKSqliteWsdProc2Pid, 0, 0);
130 sqlite3_stmt* stmt = 0;
131 const char* tail = 0;
132 TInt err = sqlite3_prepare(TheDb, "SELECT * FROM A", -1, &stmt, &tail);
133 TEST2(err, SQLITE_OK);
134 TEST(!tail || tail[0] == 0);
135 TInt proc1Id1recCnt = 0;
136 TInt proc1Id2recCnt = 0;
137 TInt proc2Id1recCnt = 0;
138 TInt proc2Id2recCnt = 0;
139 while((err = sqlite3_step(stmt)) == SQLITE_ROW)
141 TInt val = sqlite3_column_int(stmt, 0);
144 case KWsdProc1RecId1:
147 case KWsdProc1RecId2:
150 case KWsdProc2RecId1:
153 case KWsdProc2RecId2:
161 sqlite3_finalize(stmt);
162 TEST2(err, SQLITE_DONE);
163 TEST2((proc1Id1recCnt + proc1Id2recCnt), KTestRecordCnt);
164 TEST2((proc2Id1recCnt + proc2Id2recCnt), KTestRecordCnt);
168 @SYMTestCaseID SYSLIB-SQLITE3-UT-4026
169 @SYMTestCaseDesc SQLITE OS porting layer - WSD test.
170 The test verifies that the WSD object allocation and access inside the OS porting layer
171 works properly on both the emulator and the hardware.
172 The test runs two separate processes. Each process establishes a connection to the same
173 database and inserts 500 records simultaneously.
174 During the inserts, the SQLITE OS porting layer will use a mutex to synchronise the database
175 operations between the two processes. If the WSD implementation does not work properly,
176 then the mutex object won't be allocated per process and the same mutex instance will be used by
177 both processes on the emulator. This will lead to panics/asserts inside the OS porting layer.
178 The number of the inserted record and record ids is verified at the end of the test.
179 @SYMTestPriority High
180 @SYMTestActions SQLITE OS porting layer - WSD test.
181 @SYMTestExpectedResults Test must not fail
184 static void DoWsdTests()
186 TestStart(" @SYMTestCaseID:SYSLIB-SQLITE3-UT-4026 Create the test database ");
188 TestNext("Run the second process: t_sqlitewsd2");
190 TestNext("Insert the records");
191 DoInserts(KWsdProc1Id, KWsdProc1RecId1, KWsdProc1RecId2);
193 TestNext("Verify the inserted records");
197 ///////////////////////////////////////////////////////////////////////////////////////
204 CTrapCleanup* tc = CTrapCleanup::New();
219 User::Heap().Check();