os/persistentdata/persistentstorage/sqlite3api/TEST/t_sqlitewsd.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 #include <e32test.h>
    17 #include <e32uid.h>
    18 #include <f32file.h>
    19 #include <e32math.h>
    20 #include <sqlite3.h>
    21 #include "t_sqlitewsd.h"
    22 #include "sqliteTestUtl.h"
    23 
    24 #include <spawn.h>
    25 #include <sys/wait.h>
    26 
    27 ///////////////////////////////////////////////////////////////////////////////////////
    28 
    29 const char* const KTestName = "t_sqlitewsd";
    30 static RFs		TheFs;
    31 
    32 static pid_t	TheKSqliteWsdProc2Pid = 0;
    33 const char* 	KSqliteWsdProc2Name = "z:\\sys\\bin\\t_sqlitewsd2.exe";
    34 
    35 const char* KTestDir = "c:\\test\\";
    36 const char* KTestDb  = "c:\\test\\t_sqlitewsd.db";
    37 
    38 sqlite3* TheDb = 0;
    39 
    40 ///////////////////////////////////////////////////////////////////////////////////////
    41 
    42 static void DestroyTestEnv()
    43 	{
    44 	if(TheDb)
    45 		{
    46 		(void)sqlite3_close(TheDb);
    47 		TheDb = 0;
    48 		}
    49 	if(TheFs.Handle() != KNullHandle)
    50 		{
    51 		TFileName fname;
    52 		fname.Copy(TPtrC8((const TUint8*)KTestDb));
    53 		(void)TheFs.Delete(fname);
    54 		}
    55 	TheFs.Close();
    56 	}
    57 
    58 ///////////////////////////////////////////////////////////////////////////////////////
    59 
    60 //Test macros and functions
    61 void Check(TInt aValue, TInt aLine)
    62 	{
    63 	if(!aValue)
    64 		{
    65 		DestroyTestEnv();
    66 		TestTestLine(EFalse, aLine);
    67 		}
    68 	}
    69 	
    70 void Check(TInt aValue, TInt aExpected, TInt aLine)
    71 	{
    72 	if(aValue != aExpected)
    73 		{
    74 		RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
    75 		const char* errMsg = sqlite3_errmsg(TheDb);
    76 		if(errMsg)
    77 			{
    78 			TBuf<200> msgBuf;
    79 			msgBuf.Copy(TPtrC8((const TUint8*)errMsg));
    80 			RDebug::Print(_L("*** SQLITE error msg: \"%S\".\r\n"), &msgBuf);
    81 			}
    82 		DestroyTestEnv();
    83 		TestTestLine(EFalse, aLine);
    84 		}
    85 	}
    86 
    87 ///////////////////////////////////////////////////////////////////////////////////////
    88 
    89 static void CreateTestEnv()
    90     {
    91 	TInt err = TheFs.Connect();
    92 	TEST2(err, KErrNone);
    93 
    94     TFileName testDir;
    95     testDir.Copy(TPtrC8((const TUint8*)KTestDir));
    96 	err = TheFs.MkDir(testDir);
    97 	TEST(err == KErrNone || err == KErrAlreadyExists);
    98 
    99 	TFileName fname;
   100 	fname.Copy(TPtrC8((const TUint8*)KTestDb));
   101 	(void)TheFs.Delete(fname);
   102 
   103 	err = sqlite3_open(KTestDb, &TheDb);
   104 	TEST2(err, SQLITE_OK);
   105 	TEST(TheDb != 0);
   106 	}
   107 
   108 ///////////////////////////////////////////////////////////////////////////////////////
   109 
   110 static void CreateDb()
   111 	{
   112 	TEST(TheDb != 0);
   113 	TInt err = sqlite3_exec(TheDb, "CREATE TABLE A(F1 INTEGER)", 0, 0, 0);
   114 	TEST2(err, SQLITE_OK);
   115 	}
   116 
   117 static void RunSqliteWsd2()
   118 	{
   119 	TInt err = posix_spawn(&TheKSqliteWsdProc2Pid, KSqliteWsdProc2Name, 0, 0, 0, 0);
   120 	TEST2(err, 0);
   121 	}
   122 	
   123 static void DestroySqliteWsd2()
   124 	{
   125 	(void)waitpid(TheKSqliteWsdProc2Pid, 0, 0);
   126 	}
   127 
   128 void DoVerify()
   129 	{
   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)
   140 		{
   141 		TInt val = sqlite3_column_int(stmt, 0);
   142 		switch(val)
   143 			{
   144 			case KWsdProc1RecId1: 
   145 				++proc1Id1recCnt;
   146 				break;
   147 			case KWsdProc1RecId2: 
   148 				++proc1Id2recCnt;
   149 				break;
   150 			case KWsdProc2RecId1: 
   151 				++proc2Id1recCnt;
   152 				break;
   153 			case KWsdProc2RecId2: 
   154 				++proc2Id2recCnt;
   155 				break;
   156 			default:
   157 				TEST(0);
   158 				break;
   159 			}
   160 		}
   161 	sqlite3_finalize(stmt);
   162 	TEST2(err, SQLITE_DONE);
   163 	TEST2((proc1Id1recCnt + proc1Id2recCnt), KTestRecordCnt);
   164 	TEST2((proc2Id1recCnt + proc2Id2recCnt), KTestRecordCnt);
   165 	}
   166 
   167 /**
   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
   182 @SYMREQ					REQ8782
   183 */
   184 static void DoWsdTests()
   185 	{
   186 	TestStart(" @SYMTestCaseID:SYSLIB-SQLITE3-UT-4026 Create the test database ");
   187 	CreateDb();
   188 	TestNext("Run the second process: t_sqlitewsd2");
   189 	RunSqliteWsd2();
   190 	TestNext("Insert the records");
   191 	DoInserts(KWsdProc1Id, KWsdProc1RecId1, KWsdProc1RecId2);
   192 	DestroySqliteWsd2();
   193 	TestNext("Verify the inserted records");
   194 	DoVerify();
   195 	}
   196 
   197 ///////////////////////////////////////////////////////////////////////////////////////
   198 
   199 TInt E32Main()
   200 	{
   201 	TestOpen(KTestName);
   202 	TestTitle();
   203 	
   204 	CTrapCleanup* tc = CTrapCleanup::New();
   205 	
   206 	__UHEAP_MARK;
   207 	
   208 	CreateTestEnv();
   209 	DoWsdTests();
   210 	DestroyTestEnv();
   211 	
   212 	__UHEAP_MARKEND;
   213 	
   214 	TestEnd();
   215 	TestClose();
   216 	
   217 	delete tc;
   218 	
   219 	User::Heap().Check();
   220 	return KErrNone;
   221 	}