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.
sl@0
     1
// Copyright (c) 2007-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
//
sl@0
    15
sl@0
    16
#include <e32test.h>
sl@0
    17
#include <e32uid.h>
sl@0
    18
#include <f32file.h>
sl@0
    19
#include <e32math.h>
sl@0
    20
#include <sqlite3.h>
sl@0
    21
#include "t_sqlitewsd.h"
sl@0
    22
#include "sqliteTestUtl.h"
sl@0
    23
sl@0
    24
#include <spawn.h>
sl@0
    25
#include <sys/wait.h>
sl@0
    26
sl@0
    27
///////////////////////////////////////////////////////////////////////////////////////
sl@0
    28
sl@0
    29
const char* const KTestName = "t_sqlitewsd";
sl@0
    30
static RFs		TheFs;
sl@0
    31
sl@0
    32
static pid_t	TheKSqliteWsdProc2Pid = 0;
sl@0
    33
const char* 	KSqliteWsdProc2Name = "z:\\sys\\bin\\t_sqlitewsd2.exe";
sl@0
    34
sl@0
    35
const char* KTestDir = "c:\\test\\";
sl@0
    36
const char* KTestDb  = "c:\\test\\t_sqlitewsd.db";
sl@0
    37
sl@0
    38
sqlite3* TheDb = 0;
sl@0
    39
sl@0
    40
///////////////////////////////////////////////////////////////////////////////////////
sl@0
    41
sl@0
    42
static void DestroyTestEnv()
sl@0
    43
	{
sl@0
    44
	if(TheDb)
sl@0
    45
		{
sl@0
    46
		(void)sqlite3_close(TheDb);
sl@0
    47
		TheDb = 0;
sl@0
    48
		}
sl@0
    49
	if(TheFs.Handle() != KNullHandle)
sl@0
    50
		{
sl@0
    51
		TFileName fname;
sl@0
    52
		fname.Copy(TPtrC8((const TUint8*)KTestDb));
sl@0
    53
		(void)TheFs.Delete(fname);
sl@0
    54
		}
sl@0
    55
	TheFs.Close();
sl@0
    56
	}
sl@0
    57
sl@0
    58
///////////////////////////////////////////////////////////////////////////////////////
sl@0
    59
sl@0
    60
//Test macros and functions
sl@0
    61
void Check(TInt aValue, TInt aLine)
sl@0
    62
	{
sl@0
    63
	if(!aValue)
sl@0
    64
		{
sl@0
    65
		DestroyTestEnv();
sl@0
    66
		TestTestLine(EFalse, aLine);
sl@0
    67
		}
sl@0
    68
	}
sl@0
    69
	
sl@0
    70
void Check(TInt aValue, TInt aExpected, TInt aLine)
sl@0
    71
	{
sl@0
    72
	if(aValue != aExpected)
sl@0
    73
		{
sl@0
    74
		RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
sl@0
    75
		const char* errMsg = sqlite3_errmsg(TheDb);
sl@0
    76
		if(errMsg)
sl@0
    77
			{
sl@0
    78
			TBuf<200> msgBuf;
sl@0
    79
			msgBuf.Copy(TPtrC8((const TUint8*)errMsg));
sl@0
    80
			RDebug::Print(_L("*** SQLITE error msg: \"%S\".\r\n"), &msgBuf);
sl@0
    81
			}
sl@0
    82
		DestroyTestEnv();
sl@0
    83
		TestTestLine(EFalse, aLine);
sl@0
    84
		}
sl@0
    85
	}
sl@0
    86
sl@0
    87
///////////////////////////////////////////////////////////////////////////////////////
sl@0
    88
sl@0
    89
static void CreateTestEnv()
sl@0
    90
    {
sl@0
    91
	TInt err = TheFs.Connect();
sl@0
    92
	TEST2(err, KErrNone);
sl@0
    93
sl@0
    94
    TFileName testDir;
sl@0
    95
    testDir.Copy(TPtrC8((const TUint8*)KTestDir));
sl@0
    96
	err = TheFs.MkDir(testDir);
sl@0
    97
	TEST(err == KErrNone || err == KErrAlreadyExists);
sl@0
    98
sl@0
    99
	TFileName fname;
sl@0
   100
	fname.Copy(TPtrC8((const TUint8*)KTestDb));
sl@0
   101
	(void)TheFs.Delete(fname);
sl@0
   102
sl@0
   103
	err = sqlite3_open(KTestDb, &TheDb);
sl@0
   104
	TEST2(err, SQLITE_OK);
sl@0
   105
	TEST(TheDb != 0);
sl@0
   106
	}
sl@0
   107
sl@0
   108
///////////////////////////////////////////////////////////////////////////////////////
sl@0
   109
sl@0
   110
static void CreateDb()
sl@0
   111
	{
sl@0
   112
	TEST(TheDb != 0);
sl@0
   113
	TInt err = sqlite3_exec(TheDb, "CREATE TABLE A(F1 INTEGER)", 0, 0, 0);
sl@0
   114
	TEST2(err, SQLITE_OK);
sl@0
   115
	}
sl@0
   116
sl@0
   117
static void RunSqliteWsd2()
sl@0
   118
	{
sl@0
   119
	TInt err = posix_spawn(&TheKSqliteWsdProc2Pid, KSqliteWsdProc2Name, 0, 0, 0, 0);
sl@0
   120
	TEST2(err, 0);
sl@0
   121
	}
sl@0
   122
	
sl@0
   123
static void DestroySqliteWsd2()
sl@0
   124
	{
sl@0
   125
	(void)waitpid(TheKSqliteWsdProc2Pid, 0, 0);
sl@0
   126
	}
sl@0
   127
sl@0
   128
void DoVerify()
sl@0
   129
	{
sl@0
   130
	sqlite3_stmt* stmt = 0;
sl@0
   131
  	const char* tail = 0;
sl@0
   132
	TInt err = sqlite3_prepare(TheDb, "SELECT * FROM A", -1, &stmt, &tail);
sl@0
   133
	TEST2(err, SQLITE_OK);
sl@0
   134
	TEST(!tail || tail[0] == 0);
sl@0
   135
	TInt proc1Id1recCnt = 0;
sl@0
   136
	TInt proc1Id2recCnt = 0;
sl@0
   137
	TInt proc2Id1recCnt = 0;
sl@0
   138
	TInt proc2Id2recCnt = 0;
sl@0
   139
	while((err = sqlite3_step(stmt)) == SQLITE_ROW)
sl@0
   140
		{
sl@0
   141
		TInt val = sqlite3_column_int(stmt, 0);
sl@0
   142
		switch(val)
sl@0
   143
			{
sl@0
   144
			case KWsdProc1RecId1: 
sl@0
   145
				++proc1Id1recCnt;
sl@0
   146
				break;
sl@0
   147
			case KWsdProc1RecId2: 
sl@0
   148
				++proc1Id2recCnt;
sl@0
   149
				break;
sl@0
   150
			case KWsdProc2RecId1: 
sl@0
   151
				++proc2Id1recCnt;
sl@0
   152
				break;
sl@0
   153
			case KWsdProc2RecId2: 
sl@0
   154
				++proc2Id2recCnt;
sl@0
   155
				break;
sl@0
   156
			default:
sl@0
   157
				TEST(0);
sl@0
   158
				break;
sl@0
   159
			}
sl@0
   160
		}
sl@0
   161
	sqlite3_finalize(stmt);
sl@0
   162
	TEST2(err, SQLITE_DONE);
sl@0
   163
	TEST2((proc1Id1recCnt + proc1Id2recCnt), KTestRecordCnt);
sl@0
   164
	TEST2((proc2Id1recCnt + proc2Id2recCnt), KTestRecordCnt);
sl@0
   165
	}
sl@0
   166
sl@0
   167
/**
sl@0
   168
@SYMTestCaseID			SYSLIB-SQLITE3-UT-4026
sl@0
   169
@SYMTestCaseDesc		SQLITE OS porting layer - WSD test.
sl@0
   170
						The test verifies that the WSD object allocation and access	inside the OS porting layer 
sl@0
   171
						works properly on both the emulator and the hardware.
sl@0
   172
						The test runs two separate processes. Each process establishes a connection to the same
sl@0
   173
						database and inserts 500 records simultaneously.
sl@0
   174
						During the inserts, the SQLITE OS porting layer will use a mutex to synchronise the database
sl@0
   175
						operations between the two processes. If the WSD implementation does not work properly,
sl@0
   176
						then the mutex object won't be allocated per process and the same mutex instance will be used by
sl@0
   177
						both processes on the emulator. This will lead to panics/asserts inside the OS porting layer.
sl@0
   178
						The number of the inserted record and record ids is verified at the end of the test.
sl@0
   179
@SYMTestPriority		High
sl@0
   180
@SYMTestActions			SQLITE OS porting layer - WSD test.
sl@0
   181
@SYMTestExpectedResults Test must not fail
sl@0
   182
@SYMREQ					REQ8782
sl@0
   183
*/
sl@0
   184
static void DoWsdTests()
sl@0
   185
	{
sl@0
   186
	TestStart(" @SYMTestCaseID:SYSLIB-SQLITE3-UT-4026 Create the test database ");
sl@0
   187
	CreateDb();
sl@0
   188
	TestNext("Run the second process: t_sqlitewsd2");
sl@0
   189
	RunSqliteWsd2();
sl@0
   190
	TestNext("Insert the records");
sl@0
   191
	DoInserts(KWsdProc1Id, KWsdProc1RecId1, KWsdProc1RecId2);
sl@0
   192
	DestroySqliteWsd2();
sl@0
   193
	TestNext("Verify the inserted records");
sl@0
   194
	DoVerify();
sl@0
   195
	}
sl@0
   196
sl@0
   197
///////////////////////////////////////////////////////////////////////////////////////
sl@0
   198
sl@0
   199
TInt E32Main()
sl@0
   200
	{
sl@0
   201
	TestOpen(KTestName);
sl@0
   202
	TestTitle();
sl@0
   203
	
sl@0
   204
	CTrapCleanup* tc = CTrapCleanup::New();
sl@0
   205
	
sl@0
   206
	__UHEAP_MARK;
sl@0
   207
	
sl@0
   208
	CreateTestEnv();
sl@0
   209
	DoWsdTests();
sl@0
   210
	DestroyTestEnv();
sl@0
   211
	
sl@0
   212
	__UHEAP_MARKEND;
sl@0
   213
	
sl@0
   214
	TestEnd();
sl@0
   215
	TestClose();
sl@0
   216
	
sl@0
   217
	delete tc;
sl@0
   218
	
sl@0
   219
	User::Heap().Check();
sl@0
   220
	return KErrNone;
sl@0
   221
	}