os/persistentdata/persistentstorage/sql/TEST/t_sqlsecurity5.cpp
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
// Copyright (c) 2006-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
// t_sqlsecurity5 application has capabilities allowing schema access to the test database
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 <sqldb.h>
sl@0
    21
sl@0
    22
///////////////////////////////////////////////////////////////////////////////////////
sl@0
    23
//The test database has:
sl@0
    24
//  SCHEMA database policy: ECapabilityReadDeviceData, ECapabilityWriteUserData, ECapabilityReadUserData
sl@0
    25
//  WRITE database policy:  ECapabilityWriteUserData
sl@0
    26
//  READ database policy:   ECapabilityReadUserData
sl@0
    27
//
sl@0
    28
//Database tables:
sl@0
    29
//  TABLE A(F1 INTEGER, B1 BLOB)
sl@0
    30
//  TABLE B(F2 INTEGER, F3 TEXT, B2 BLOB)
sl@0
    31
//
sl@0
    32
//Database data:
sl@0
    33
//  TABLE A: {1, x'41414141414141414141'}, {2, x'42424242424242424242'}, {3, x'43434343434343434343'}, {4, x'44444444444444444444'}
sl@0
    34
//  TABLE B: {2, "ABC", x'45454545454545454545'}, {4, "DEF", x'46464646464646464646'}
sl@0
    35
sl@0
    36
///////////////////////////////////////////////////////////////////////////////////////
sl@0
    37
sl@0
    38
#define UNUSED_VAR(a) (a) = (a)
sl@0
    39
sl@0
    40
RSqlDatabase TheDb;
sl@0
    41
RTest TheTest(_L("t_sqlsecurity5 test"));
sl@0
    42
sl@0
    43
_LIT(KTestDbName, "c:[21212125]t_ab.db");
sl@0
    44
_LIT(KTestDbName2, "c:\\test\\t_sqlsecurity5_2.db");
sl@0
    45
sl@0
    46
///////////////////////////////////////////////////////////////////////////////////////
sl@0
    47
sl@0
    48
void DeleteTestDb2()
sl@0
    49
	{
sl@0
    50
	TheDb.Close();
sl@0
    51
	(void)RSqlDatabase::Delete(KTestDbName2);
sl@0
    52
	}
sl@0
    53
sl@0
    54
///////////////////////////////////////////////////////////////////////////////////////
sl@0
    55
//Restore original test database function
sl@0
    56
void RestoreOriginalDb()
sl@0
    57
	{
sl@0
    58
	TheDb.Close();
sl@0
    59
	TheDb.Open(KTestDbName);
sl@0
    60
	
sl@0
    61
	// Delete and restore the content of table A (unconditional DELETE, no READ operations)
sl@0
    62
	TheDb.Exec(_L("DELETE FROM A"));
sl@0
    63
	TheDb.Exec(_L("INSERT INTO A(F1,B1) VALUES(1,x'41414141414141414141');INSERT INTO A(F1,B1) VALUES(2,x'42424242424242424242');INSERT INTO A(F1,B1) VALUES(3,x'43434343434343434343');INSERT INTO A(F1,B1) VALUES(4,x'44444444444444444444');"));
sl@0
    64
sl@0
    65
	// Delete and restore the content of table B (unconditional DELETE, no READ operations)
sl@0
    66
	TheDb.Exec(_L("DELETE FROM B"));
sl@0
    67
	TheDb.Exec(_L("INSERT INTO B(F2,F3,B2) VALUES(2, 'ABC',x'45454545454545454545');INSERT INTO B(F2,F3,B2) VALUES(4,'DEF',x'46464646464646464646');"));
sl@0
    68
sl@0
    69
	TheDb.Close();	
sl@0
    70
	}
sl@0
    71
	
sl@0
    72
///////////////////////////////////////////////////////////////////////////////////////
sl@0
    73
//Test macros and functions
sl@0
    74
void Check1(TInt aValue, TInt aLine)
sl@0
    75
	{
sl@0
    76
	if(!aValue)
sl@0
    77
		{
sl@0
    78
		DeleteTestDb2();
sl@0
    79
		RestoreOriginalDb();
sl@0
    80
		RDebug::Print(_L("*** Line %d\r\n"), aLine);
sl@0
    81
		TheTest(EFalse, aLine);
sl@0
    82
		}
sl@0
    83
	}
sl@0
    84
void Check2(TInt aValue, TInt aExpected, TInt aLine)
sl@0
    85
	{
sl@0
    86
	if(aValue != aExpected)
sl@0
    87
		{
sl@0
    88
		DeleteTestDb2();
sl@0
    89
		RestoreOriginalDb();
sl@0
    90
		RDebug::Print(_L("*** Line %d, Expected error: %d, got: %d\r\n"), aLine, aExpected, aValue);
sl@0
    91
		TheTest(EFalse, aLine);
sl@0
    92
		}
sl@0
    93
	}
sl@0
    94
#define TEST(arg) ::Check1((arg), __LINE__)
sl@0
    95
#define TEST2(aValue, aExpected) ::Check2(aValue, aExpected, __LINE__)
sl@0
    96
sl@0
    97
///////////////////////////////////////////////////////////////////////////////////////
sl@0
    98
sl@0
    99
/**
sl@0
   100
@SYMTestCaseID			SYSLIB-SQL-CT-1647
sl@0
   101
@SYMTestCaseDesc		Testing database operations on a secure database.
sl@0
   102
						The test application's capabilities allow schema access to the test secure database.
sl@0
   103
						Verify that any other kind of a database operation will pass.
sl@0
   104
@SYMTestPriority		High
sl@0
   105
@SYMTestActions			Testing database operations on a secure database.
sl@0
   106
@SYMTestExpectedResults Test must not fail
sl@0
   107
@SYMREQ					REQ5792
sl@0
   108
                        REQ5793
sl@0
   109
*/	
sl@0
   110
void SchemaSecurityTest()
sl@0
   111
	{
sl@0
   112
	TInt err = TheDb.Open(KTestDbName);
sl@0
   113
	TEST2(err, KErrNone);
sl@0
   114
	
sl@0
   115
	//Attempt to modify the database schema
sl@0
   116
	err = TheDb.Exec(_L("CREATE TABLE IF NOT EXISTS C(FFF TEXT)"));
sl@0
   117
	TEST(err >= 0);	
sl@0
   118
	//Index operations
sl@0
   119
    err = TheDb.Exec(_L("CREATE INDEX Cidx ON C(FFF)"));
sl@0
   120
    TEST(err >= 0);     
sl@0
   121
    err = TheDb.Exec(_L("ANALYZE C"));
sl@0
   122
    TEST(err >= 0);     
sl@0
   123
    err = TheDb.Exec(_L("DROP INDEX Cidx"));
sl@0
   124
    TEST(err >= 0);     
sl@0
   125
    //Trigger operations
sl@0
   126
    err = TheDb.Exec(_L("CREATE TRIGGER T1 AFTER INSERT ON C BEGIN INSERT INTO B VALUES(1, 2); END;"));
sl@0
   127
    TEST(err >= 0);
sl@0
   128
    err = TheDb.Exec(_L("DROP TRIGGER T1"));
sl@0
   129
    TEST(err >= 0);
sl@0
   130
    //View operations
sl@0
   131
    err = TheDb.Exec(_L("CREATE VIEW V1 AS SELECT * FROM C"));
sl@0
   132
    TEST(err >= 0);
sl@0
   133
    err = TheDb.Exec(_L("DROP VIEW V1"));
sl@0
   134
    TEST(err >= 0);
sl@0
   135
	//Attempt to update the user data (but it includes a READ operation)
sl@0
   136
	err = TheDb.Exec(_L("UPDATE A SET F1 = 11 WHERE F1 = 1"));
sl@0
   137
	TEST(err >= 0);	
sl@0
   138
	//Attempt to update the user data (unconditional UPDATE, no READ operations)
sl@0
   139
	err = TheDb.Exec(_L("UPDATE A SET F1 = 11"));
sl@0
   140
	TEST(err >= 0);	
sl@0
   141
	//Attempt to delete the user data (but it includes a READ operation)
sl@0
   142
	err = TheDb.Exec(_L("DELETE FROM B WHERE F2 = 2"));
sl@0
   143
	TEST(err >= 0);	
sl@0
   144
	//Attempt to delete the user data (unconditional DELETE, no READ operations)
sl@0
   145
	err = TheDb.Exec(_L("DELETE FROM A"));
sl@0
   146
	TEST(err >= 0);	
sl@0
   147
	//Restore the deleted table A
sl@0
   148
	err = TheDb.Exec(_L("INSERT INTO A(F1,B1) VALUES(1,x'41414141414141414141');INSERT INTO A(F1,B1) VALUES(2,x'42424242424242424242');INSERT INTO A(F1,B1) VALUES(3,x'43434343434343434343');INSERT INTO A(F1,B1) VALUES(4,x'44444444444444444444');"));
sl@0
   149
	TEST(err >= 0);	
sl@0
   150
	//Restore the deleted record in table B
sl@0
   151
	err = TheDb.Exec(_L("INSERT INTO B(F2, F3, B2) VALUES(2, 'ABC', x'45454545454545454545');"));
sl@0
   152
	TEST2(err, 1);
sl@0
   153
	//Attempt to insert new user data
sl@0
   154
	err = TheDb.Exec(_L("INSERT INTO B(F2, F3, B2) VALUES(6, 'GHI', x'47474747474747474747');"));
sl@0
   155
	TEST2(err, 1);
sl@0
   156
	//Attempt to read the user data
sl@0
   157
	RSqlStatement stmt;
sl@0
   158
	err = stmt.Prepare(TheDb, _L("SELECT A.F1 FROM B,A WHERE A.F1 = B.F2"));
sl@0
   159
	TEST2(err, KErrNone);
sl@0
   160
	//ColumnCount() has no capabilities assigned
sl@0
   161
	TInt colCnt = stmt.ColumnCount();
sl@0
   162
	TEST2(colCnt, 1);
sl@0
   163
	//
sl@0
   164
	stmt.Close();
sl@0
   165
	TheDb.Close();
sl@0
   166
	}
sl@0
   167
sl@0
   168
/**
sl@0
   169
@SYMTestCaseID			SYSLIB-SQL-UT-4037
sl@0
   170
@SYMTestCaseDesc		RSqlStatement::DeclaredColumnType() - security test.
sl@0
   171
						The test calls RSqlStatement::DeclaredColumnType() on a secure database.
sl@0
   172
						It should be possible to retrieve the declared column type without problems.
sl@0
   173
@SYMTestPriority		High
sl@0
   174
@SYMTestActions			RSqlStatement::DeclaredColumnType() - security test.
sl@0
   175
@SYMTestExpectedResults Test must not fail
sl@0
   176
@SYMREQ					REQ5794
sl@0
   177
*/
sl@0
   178
void DeclaredColumnTypeTest()
sl@0
   179
	{
sl@0
   180
	TInt err = TheDb.Open(KTestDbName);
sl@0
   181
	TEST2(err, KErrNone);
sl@0
   182
	RSqlStatement stmt;
sl@0
   183
	err = stmt.Prepare(TheDb, _L("SELECT A.F1 FROM B,A WHERE A.F1 = B.F2"));
sl@0
   184
	TEST2(err, KErrNone);
sl@0
   185
	//DeclaredColumnType() has no capabilities assigned
sl@0
   186
	TSqlColumnType colType;
sl@0
   187
	err = stmt.DeclaredColumnType(0, colType);
sl@0
   188
	TEST2(err, KErrNone);
sl@0
   189
	TEST2(colType, ESqlInt);
sl@0
   190
	err = stmt.Next();
sl@0
   191
	TEST2(err, KSqlAtRow);
sl@0
   192
	RDebug::Print(_L("Value=%d\r\n"), stmt.ColumnInt(0));
sl@0
   193
	err = stmt.Next();
sl@0
   194
	TEST2(err, KSqlAtRow);
sl@0
   195
	RDebug::Print(_L("Value=%d\r\n"), stmt.ColumnInt(0));
sl@0
   196
	stmt.Close();
sl@0
   197
	//Attempt to read the system data
sl@0
   198
	err = stmt.Prepare(TheDb, _L("SELECT * FROM SQLITE_MASTER"));
sl@0
   199
	TEST2(err, KErrNone);
sl@0
   200
	err = stmt.Next();
sl@0
   201
	TEST2(err, KSqlAtRow);
sl@0
   202
	TPtrC p;
sl@0
   203
	err = stmt.ColumnText(0, p);
sl@0
   204
	TEST2(err, KErrNone);
sl@0
   205
	RDebug::Print(_L("Value=%S\r\n"), &p);
sl@0
   206
	//
sl@0
   207
	stmt.Close();
sl@0
   208
	TheDb.Close();
sl@0
   209
	}
sl@0
   210
sl@0
   211
/**
sl@0
   212
@SYMTestCaseID			SYSLIB-SQL-UT-4046
sl@0
   213
@SYMTestCaseDesc		RSqlDatabase::Size(TSize&), platsec test.
sl@0
   214
						The test verifies that RSqlDatabase::Size(TSize&) can be called
sl@0
   215
						on the main or on an attached database no matter what the client capabilities are.
sl@0
   216
@SYMTestPriority		Medium
sl@0
   217
@SYMTestActions			RSqlDatabase::Size(TSize&), platsec test.
sl@0
   218
@SYMTestExpectedResults Test must not fail
sl@0
   219
@SYMREQ					REQ10407
sl@0
   220
*/
sl@0
   221
void Size2Test()
sl@0
   222
	{
sl@0
   223
	TInt err = TheDb.Open(KTestDbName);
sl@0
   224
	TEST2(err, KErrNone);
sl@0
   225
	//Size(TSize&) has no capabilities assigned
sl@0
   226
	RSqlDatabase::TSize size;
sl@0
   227
	err = TheDb.Size(size);
sl@0
   228
	TEST2(err, KErrNone);
sl@0
   229
	//Attach and repeat the test again
sl@0
   230
	_LIT(KAttachDbName, "Db");
sl@0
   231
	err = TheDb.Attach(KTestDbName, KAttachDbName);
sl@0
   232
	TEST2(err, KErrNone);
sl@0
   233
	TEST(size.iSize > 0);
sl@0
   234
	TEST(size.iFree >= 0);
sl@0
   235
	err = TheDb.Size(size, KAttachDbName);
sl@0
   236
	TEST2(err, KErrNone);
sl@0
   237
	TEST(size.iSize > 0);
sl@0
   238
	TEST(size.iFree >= 0);
sl@0
   239
	err = TheDb.Detach(KAttachDbName);
sl@0
   240
	TEST2(err, KErrNone);
sl@0
   241
	TheDb.Close();
sl@0
   242
	}
sl@0
   243
sl@0
   244
/**
sl@0
   245
@SYMTestCaseID			SYSLIB-SQL-UT-4047
sl@0
   246
@SYMTestCaseDesc		RSqlDatabase::Compact(), platsec test.
sl@0
   247
						The test verifies that RSqlDatabase::Compact() can be called
sl@0
   248
						on the main or on an attached database no matter what the client capabilities are.
sl@0
   249
@SYMTestPriority		Medium
sl@0
   250
@SYMTestActions			RSqlDatabase::Compact(), platsec test.
sl@0
   251
@SYMTestExpectedResults Test must not fail
sl@0
   252
@SYMREQ					REQ10405
sl@0
   253
*/
sl@0
   254
void CompactTest()
sl@0
   255
	{
sl@0
   256
	TInt err = TheDb.Open(KTestDbName);
sl@0
   257
	TEST2(err, KErrNone);
sl@0
   258
	
sl@0
   259
	err = TheDb.Compact(RSqlDatabase::EMaxCompaction);
sl@0
   260
	TEST(err >= 0);
sl@0
   261
	
sl@0
   262
	TRequestStatus stat;
sl@0
   263
	TheDb.Compact(RSqlDatabase::EMaxCompaction, stat);
sl@0
   264
	User::WaitForRequest(stat);
sl@0
   265
	TEST(stat.Int() >= 0);
sl@0
   266
sl@0
   267
	TheDb.Close();
sl@0
   268
	
sl@0
   269
	err = TheDb.Create(KTestDbName2);
sl@0
   270
	TEST2(err, KErrNone);
sl@0
   271
	_LIT(KDbName, "Db");
sl@0
   272
	err = TheDb.Attach(KTestDbName, KDbName);
sl@0
   273
	TEST2(err, KErrNone);
sl@0
   274
sl@0
   275
	err = TheDb.Compact(RSqlDatabase::EMaxCompaction, KDbName);
sl@0
   276
	TEST(err >= 0);
sl@0
   277
sl@0
   278
	TheDb.Compact(RSqlDatabase::EMaxCompaction, stat, KDbName);
sl@0
   279
	User::WaitForRequest(stat);
sl@0
   280
	TEST(stat.Int() >= 0);
sl@0
   281
	
sl@0
   282
	err = TheDb.Detach(KDbName);
sl@0
   283
	TheDb.Close();
sl@0
   284
	(void)RSqlDatabase::Delete(KTestDbName2);
sl@0
   285
	}
sl@0
   286
	
sl@0
   287
/**
sl@0
   288
@SYMTestCaseID			SYSLIB-SQL-UT-4098
sl@0
   289
@SYMTestCaseDesc		Testing incremental blob reads and writes on a secure database.
sl@0
   290
						The test application's schema capabilities allow read and write access to the blobs.
sl@0
   291
						Verify that both reads and writes are allowed and also that database operations 
sl@0
   292
						that require schema capability are allowed.
sl@0
   293
@SYMTestPriority		Medium
sl@0
   294
@SYMTestActions			Testing incremental blob reads and writes and schema operations on a secure database.
sl@0
   295
@SYMTestExpectedResults Test must not fail
sl@0
   296
@SYMREQ					REQ5794
sl@0
   297
*/	
sl@0
   298
void SchemaBlobTestL()
sl@0
   299
	{
sl@0
   300
	// Current database data:
sl@0
   301
	// TABLE A: {1, x'41414141414141414141'}, {2, x'42424242424242424242'}, {3, x'43434343434343434343'}, {4, x'44444444444444444444'}
sl@0
   302
	// TABLE B: {4, "DEF", x'46464646464646464646'} <- ROWID = 2, {2, "ABC", x'45454545454545454545'} <- ROWID = 3, {6, "GHI", x'47474747474747474747'} <- ROWID = 4
sl@0
   303
sl@0
   304
	RSqlDatabase db;
sl@0
   305
	TInt err = db.Open(KTestDbName);
sl@0
   306
	TEST2(err, KErrNone);
sl@0
   307
			
sl@0
   308
	// Attempt to read the blobs in tables A and B
sl@0
   309
	RSqlBlobReadStream rdStrm;
sl@0
   310
	CleanupClosePushL(rdStrm);
sl@0
   311
	TBuf8<20> data;
sl@0
   312
	TRAP(err, rdStrm.OpenL(db, _L("A"), _L("B1"), 2));
sl@0
   313
	TEST2(err, KErrNone);
sl@0
   314
	TRAP(err, rdStrm.ReadL(data, 7));
sl@0
   315
	TEST2(err, KErrNone);
sl@0
   316
	TEST(data.Compare(_L8("BBBBBBB")) == 0);
sl@0
   317
	rdStrm.Close();
sl@0
   318
	TRAP(err, rdStrm.OpenL(db, _L("B"), _L("B2"), 2));
sl@0
   319
	TEST2(err, KErrNone);
sl@0
   320
	TRAP(err, rdStrm.ReadL(data, 9));
sl@0
   321
	TEST2(err, KErrNone);
sl@0
   322
	TEST(data.Compare(_L8("FFFFFFFFF")) == 0);
sl@0
   323
	CleanupStack::PopAndDestroy(&rdStrm);	
sl@0
   324
sl@0
   325
	HBufC8* wholeBuf = TSqlBlob::GetLC(db, _L("A"), _L("B1"), 1);
sl@0
   326
	TEST(wholeBuf->Des().Compare(_L8("AAAAAAAAAA")) == 0);	
sl@0
   327
	CleanupStack::PopAndDestroy(wholeBuf);  	
sl@0
   328
	wholeBuf = TSqlBlob::GetLC(db, _L("B"), _L("B2"), 4);
sl@0
   329
	TEST(wholeBuf->Des().Compare(_L8("GGGGGGGGGG")) == 0);	
sl@0
   330
	CleanupStack::PopAndDestroy(wholeBuf); 
sl@0
   331
sl@0
   332
	HBufC8* buf = HBufC8::NewLC(10);	
sl@0
   333
	TPtr8 bufPtr(buf->Des());	  
sl@0
   334
	err = TSqlBlob::Get(db, _L("A"), _L("B1"), bufPtr, 3);
sl@0
   335
	TEST2(err, KErrNone); 
sl@0
   336
	TEST(bufPtr.Compare(_L8("CCCCCCCCCC")) == 0);	
sl@0
   337
	err = TSqlBlob::Get(db, _L("B"), _L("B2"), bufPtr, 2);
sl@0
   338
	TEST2(err, KErrNone); 
sl@0
   339
	TEST(bufPtr.Compare(_L8("FFFFFFFFFF")) == 0);
sl@0
   340
	CleanupStack::PopAndDestroy(buf); 
sl@0
   341
	
sl@0
   342
	// Attempt to write the blobs in tables A and B
sl@0
   343
	RSqlBlobWriteStream wrStrm;
sl@0
   344
	CleanupClosePushL(wrStrm);
sl@0
   345
	TRAP(err, wrStrm.OpenL(db, _L("A"), _L("B1"), 1));
sl@0
   346
	TEST2(err, KErrNone);
sl@0
   347
	TRAP(err, wrStrm.WriteL(_L8("ZZZ")));
sl@0
   348
	TEST2(err, KErrNone);
sl@0
   349
	wrStrm.Close();
sl@0
   350
	TRAP(err, wrStrm.OpenL(db, _L("B"), _L("B2"), 3));
sl@0
   351
	TEST2(err, KErrNone);
sl@0
   352
	TRAP(err, wrStrm.WriteL(_L8("WWWWWWWWWW")));
sl@0
   353
	TEST2(err, KErrNone);
sl@0
   354
	CleanupStack::PopAndDestroy(&wrStrm);	
sl@0
   355
sl@0
   356
	TRAP(err, TSqlBlob::SetL(db, _L("A"), _L("B1"), _L8("UUUUUUUU"), 4));
sl@0
   357
	TEST2(err, KErrNone);
sl@0
   358
	TRAP(err, TSqlBlob::SetL(db, _L("B"), _L("B2"), _L8("SSS"), 4));
sl@0
   359
	TEST2(err, KErrNone);
sl@0
   360
	
sl@0
   361
	// SQLite and system tables
sl@0
   362
	
sl@0
   363
	// Attempt to read from and write to the SQLite master table -
sl@0
   364
	// reads should be permitted because schema capability is enough for this, 
sl@0
   365
	// writes should be permitted because schema capability is enough for this
sl@0
   366
	CleanupClosePushL(rdStrm);
sl@0
   367
	TRAP(err, rdStrm.OpenL(db, _L("sqlite_master"), _L("tbl_name"), 1)); // TEXT column
sl@0
   368
	TEST2(err, KErrNone);
sl@0
   369
	TRAP(err, rdStrm.ReadL(data, 1));
sl@0
   370
	TEST2(err, KErrNone);
sl@0
   371
	CleanupStack::PopAndDestroy(&rdStrm); 	
sl@0
   372
sl@0
   373
	wholeBuf = TSqlBlob::GetLC(db, _L("sqlite_master"), _L("tbl_name"), 1);
sl@0
   374
	TEST(wholeBuf->Length() > 0);	
sl@0
   375
	CleanupStack::PopAndDestroy(wholeBuf);  	
sl@0
   376
sl@0
   377
	buf = HBufC8::NewLC(100);
sl@0
   378
	bufPtr.Set(buf->Des());	 	  
sl@0
   379
	err = TSqlBlob::Get(db, _L("sqlite_master"), _L("tbl_name"), bufPtr, 1);
sl@0
   380
	TEST2(err, KErrNone); 
sl@0
   381
	TEST(bufPtr.Length() > 0);	
sl@0
   382
	CleanupStack::PopAndDestroy(buf); 
sl@0
   383
	
sl@0
   384
	CleanupClosePushL(wrStrm);
sl@0
   385
	TRAP(err, wrStrm.OpenL(db, _L("sqlite_master"), _L("tbl_name"), 1));
sl@0
   386
	TEST2(err, KErrNone);
sl@0
   387
	TRAP(err, wrStrm.WriteL(_L8("myTableName")));
sl@0
   388
	TEST2(err, KErrNone);
sl@0
   389
	CleanupStack::PopAndDestroy(&wrStrm);	
sl@0
   390
sl@0
   391
	TRAP(err, TSqlBlob::SetL(db, _L("sqlite_master"), _L("tbl_name"), _L8("myTableName"), 1));
sl@0
   392
	TEST2(err, KErrNone);
sl@0
   393
sl@0
   394
	// Attempt to read from and write to the system tables - neither reads nor writes should be permitted
sl@0
   395
	CleanupClosePushL(rdStrm);
sl@0
   396
	TRAP(err, rdStrm.OpenL(db, _L("symbian_security"), _L("PolicyData"), 1)); // BLOB column
sl@0
   397
	TEST2(err, KErrPermissionDenied);
sl@0
   398
	CleanupStack::PopAndDestroy(&rdStrm);	
sl@0
   399
sl@0
   400
	TRAP(err, wholeBuf = TSqlBlob::GetLC(db, _L("symbian_security"), _L("PolicyData"), 1));
sl@0
   401
	TEST2(err, KErrPermissionDenied);
sl@0
   402
sl@0
   403
	buf = HBufC8::NewLC(100);	
sl@0
   404
	bufPtr.Set(buf->Des());	  
sl@0
   405
	err = TSqlBlob::Get(db, _L("symbian_security"), _L("PolicyData"), bufPtr, 1);
sl@0
   406
	TEST2(err, KErrPermissionDenied); 
sl@0
   407
	CleanupStack::PopAndDestroy(buf); 
sl@0
   408
	
sl@0
   409
	CleanupClosePushL(wrStrm);
sl@0
   410
	TRAP(err, wrStrm.OpenL(db, _L("symbian_security"), _L("PolicyData"), 1));
sl@0
   411
	TEST2(err, KErrPermissionDenied);
sl@0
   412
	CleanupStack::PopAndDestroy(&wrStrm);	
sl@0
   413
sl@0
   414
	TRAP(err, TSqlBlob::SetL(db, _L("symbian_security"), _L("PolicyData"), _L8("VVVV"), 1));
sl@0
   415
	TEST2(err, KErrPermissionDenied);
sl@0
   416
	
sl@0
   417
	db.Close();
sl@0
   418
	}
sl@0
   419
sl@0
   420
void DoTestsL()
sl@0
   421
	{
sl@0
   422
	TheTest.Start(_L(" @SYMTestCaseID:SYSLIB-SQL-CT-1647 Schema database access test "));
sl@0
   423
	SchemaSecurityTest();
sl@0
   424
	
sl@0
   425
	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-4037 Declared column type test"));
sl@0
   426
	DeclaredColumnTypeTest();
sl@0
   427
	
sl@0
   428
	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-4046 Size(TSize&) test"));
sl@0
   429
	Size2Test();
sl@0
   430
	
sl@0
   431
	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-4047 Compact() test"));
sl@0
   432
	CompactTest();
sl@0
   433
	
sl@0
   434
	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-SQL-UT-4098 Schema blob access test"));
sl@0
   435
	SchemaBlobTestL();
sl@0
   436
	
sl@0
   437
	RestoreOriginalDb(); // the same db is used by the other t_security test exe's
sl@0
   438
	}
sl@0
   439
sl@0
   440
TInt E32Main()
sl@0
   441
	{
sl@0
   442
	TheTest.Title();
sl@0
   443
	
sl@0
   444
	CTrapCleanup* tc = CTrapCleanup::New();
sl@0
   445
	
sl@0
   446
	__UHEAP_MARK;
sl@0
   447
		
sl@0
   448
	TRAPD(err, DoTestsL());
sl@0
   449
	TEST2(err, KErrNone);
sl@0
   450
sl@0
   451
	__UHEAP_MARKEND;
sl@0
   452
	
sl@0
   453
	TheTest.End();
sl@0
   454
	TheTest.Close();
sl@0
   455
	
sl@0
   456
	delete tc;
sl@0
   457
sl@0
   458
	User::Heap().Check();
sl@0
   459
	return KErrNone;
sl@0
   460
	}