sl@0: // Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // DBMS security policy - testing new APIs. sl@0: // This test app has "PowerMgmt" (TABLE A: READ) capability, which allows it to sl@0: // read data from table A. sl@0: // The UID policy file is 11335579.spd. sl@0: // The test uses C:TESTDB.DB secure shared database, which has tables A, B and C, each of them sl@0: // with at least one record. sl@0: // Please, ensure that t_dbenvcreate test is executed before t_dbplatsec/t_dbplatsecperf tests! sl@0: // Please, ensure that t_dbenvdestroy test is executed after t_dbplatsec/t_dbplatsecperf tests! sl@0: // sl@0: // sl@0: sl@0: #include sl@0: #include sl@0: #include "t_dbplatsecutl.h" sl@0: sl@0: const TUid KSecureDbUid = {0x11335579}; sl@0: _LIT(KSecure, "SECURE"); sl@0: _LIT(KDbName, "C:TestDB.DB"); sl@0: _LIT(KTblNameA, "A"); sl@0: _LIT(KTblNameB, "B"); sl@0: _LIT(KTblNameC, "C"); sl@0: sl@0: static RTest TheTest(_L("t_dbplatsec3: DBMS platform security testing - 3")); sl@0: static RDbs TheDbs; sl@0: static RDbNamedDatabase TheDb; sl@0: static RDbTable TheTbl; sl@0: static RDbView TheView; sl@0: sl@0: TDBSCUtils TheDbscUtils(TheTest, NULL); sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-DBMS-CT-0015 sl@0: @SYMTestCaseDesc OPen table test. sl@0: This test app has "PowerMgmt" (TABLE A: READ) capability, which allows it to sl@0: read data from table A. B and C tables can be read too, because they do sl@0: not have read security policy. The attempts to open A, B and C tables in sl@0: insert/update mode must fail. sl@0: @SYMTestPriority High sl@0: @SYMTestActions Open table test. sl@0: @SYMTestExpectedResults The test must not fail. sl@0: @SYMREQ REQ2429 sl@0: DBMS shall provide an API to apply security policies to database tables. sl@0: */ sl@0: static void TblOpenL() sl@0: { sl@0: TheTest.Printf(_L("An attempt to open table A\n")); sl@0: //The test must fail, because the test app cannot satisfy table A, policy W. sl@0: TInt err = TheTbl.Open(TheDb, KTblNameA); sl@0: TEST2(err, KErrPermissionDenied); sl@0: //The test must pass, because the test app can satisfy table A, policy R. sl@0: err = TheTbl.Open(TheDb, KTblNameA, RDbRowSet::EReadOnly); sl@0: TEST2(err, KErrNone); sl@0: TheTbl.Close(); sl@0: sl@0: TheTest.Printf(_L("An attempt to open table B\n")); sl@0: //The test must fail, because the test app cannot satisfy table B, policy W. sl@0: err = TheTbl.Open(TheDb, KTblNameB); sl@0: TEST2(err, KErrPermissionDenied); sl@0: //The test must pass, because table B has no R policy. sl@0: err = TheTbl.Open(TheDb, KTblNameB, RDbRowSet::EReadOnly); sl@0: TEST2(err, KErrNone); sl@0: TheTbl.Close(); sl@0: sl@0: TheTest.Printf(_L("An attempt to open table C\n")); sl@0: //The test must fail, because the test app cannot satisfy table C, policy W. sl@0: err = TheTbl.Open(TheDb, KTblNameC); sl@0: TEST2(err, KErrPermissionDenied); sl@0: //The test must pass, because table C has no R policy. sl@0: err = TheTbl.Open(TheDb, KTblNameC, RDbRowSet::EReadOnly); sl@0: TEST2(err, KErrNone); sl@0: TheTbl.Close(); sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-DBMS-CT-0016 sl@0: @SYMTestCaseDesc R/W operations at a table level. sl@0: This test app has "PowerMgmt" (TABLE A: READ) capability, which allows it to sl@0: read data from table A. B and C tables can be read too, because they do sl@0: not have read security policy. sl@0: @SYMTestPriority High sl@0: @SYMTestActions R/W table operations. sl@0: @SYMTestExpectedResults The test must not fail. sl@0: @SYMREQ REQ2429 sl@0: DBMS shall provide an API to apply security policies to database tables. sl@0: */ sl@0: static void TblRWL() sl@0: { sl@0: TheTest.Printf(_L("Table A - Write\n")); sl@0: TInt err = TheTbl.Open(TheDb, KTblNameA, RDbRowSet::EReadOnly); sl@0: TEST2(err, KErrNone); sl@0: //The test must fail, because the test app cannot satisfy table A, policy W. sl@0: TRAP(err, TheTbl.InsertL()); sl@0: TEST2(err, KErrPermissionDenied); sl@0: err = TheDb.Execute(_L("UPDATE A SET DATA1 = 400 WHERE ID < 10")); sl@0: TEST2(err, KErrPermissionDenied); sl@0: sl@0: TheTest.Printf(_L("Table A - Read\n")); sl@0: //The test must pass, because the test app can satisfy table A, policy R. sl@0: TBool res = EFalse; sl@0: TRAP(err, res = TheTbl.FirstL()); sl@0: TEST2(err, KErrNone); sl@0: TEST(res); sl@0: TInt cnt = TheTbl.CountL(); sl@0: TEST(cnt > 0); sl@0: err = TheView.Prepare(TheDb, TDbQuery(_L("SELECT * FROM A"))); sl@0: TEST2(err, KErrNone); sl@0: cnt = TheView.CountL(); sl@0: TEST(cnt > 0); sl@0: TheView.Close(); sl@0: sl@0: TheTbl.Close(); sl@0: sl@0: TheTest.Printf(_L("Table B - Write\n")); sl@0: err = TheTbl.Open(TheDb, KTblNameB, RDbRowSet::EReadOnly); sl@0: TEST2(err, KErrNone); sl@0: //The test must fail, because the test app cannot satisfy table B, policy W. sl@0: TRAP(err, TheTbl.InsertL()); sl@0: TEST2(err, KErrPermissionDenied); sl@0: err = TheDb.Execute(_L("INSERT INTO B (DATA2) VALUES (45)")); sl@0: TEST2(err, KErrPermissionDenied); sl@0: sl@0: TheTest.Printf(_L("Table B - Read\n")); sl@0: //The test must pass, because table B has no R policy. sl@0: TRAP(err, res = TheTbl.FirstL()); sl@0: TEST2(err, KErrNone); sl@0: TEST(res); sl@0: cnt = TheTbl.CountL(); sl@0: TEST(cnt > 0); sl@0: err = TheView.Prepare(TheDb, TDbQuery(_L("SELECT * FROM B"))); sl@0: TEST2(err, KErrNone); sl@0: cnt = TheView.CountL(); sl@0: TEST(cnt > 0); sl@0: TheView.Close(); sl@0: sl@0: TheTbl.Close(); sl@0: sl@0: TheTest.Printf(_L("Table C - Write\n")); sl@0: err = TheTbl.Open(TheDb, KTblNameC); sl@0: //The test must fail, because the test app cannot satisfy table C, policy W. sl@0: TEST2(err, KErrPermissionDenied); sl@0: err = TheTbl.Open(TheDb, KTblNameC, RDbRowSet::EReadOnly); sl@0: TEST2(err, KErrNone); sl@0: TRAP(err, TheTbl.InsertL()); sl@0: TEST2(err, KErrPermissionDenied); sl@0: err = TheDb.Execute(_L("UPDATE C SET DATA1 = 400 WHERE ID < 10")); sl@0: TEST2(err, KErrPermissionDenied); sl@0: sl@0: TheTest.Printf(_L("Table C - Read\n")); sl@0: //The test must pass, because table C has no R policy. sl@0: TRAP(err, res = TheTbl.FirstL()); sl@0: TEST2(err, KErrNone); sl@0: TEST(res); sl@0: cnt = TheTbl.CountL(); sl@0: TEST(cnt > 0); sl@0: err = TheView.Prepare(TheDb, TDbQuery(_L("SELECT * FROM C"))); sl@0: TEST2(err, KErrNone); sl@0: cnt = TheView.CountL(); sl@0: TEST(cnt > 0); sl@0: TheView.Close(); sl@0: sl@0: TheTbl.Close(); sl@0: } sl@0: sl@0: static void DoRunL() sl@0: { sl@0: TheTest.Start(_L("An app with \"TABLE A:READ\" capabilities set")); sl@0: sl@0: TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0015 Open table tests ")); sl@0: ::TblOpenL(); sl@0: sl@0: TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0016 Table R/W tests ")); sl@0: ::TblRWL(); sl@0: } sl@0: sl@0: TInt E32Main() sl@0: { sl@0: __UHEAP_MARK; sl@0: CTrapCleanup* tc = CTrapCleanup::New(); sl@0: TEST(tc != NULL); sl@0: sl@0: TInt err = TheDbs.Connect(); sl@0: TEST2(err, KErrNone); sl@0: sl@0: TBuf<32> format; sl@0: TheTest.Printf(_L("Open database\n")); sl@0: format.Copy(KSecure); sl@0: format.Append(KSecureDbUid.Name()); sl@0: err = TheDb.Open(TheDbs, KDbName, format); sl@0: TEST2(err, KErrNone); sl@0: sl@0: TRAP(err, ::DoRunL()); sl@0: TEST2(err, KErrNone); sl@0: sl@0: TheView.Close(); sl@0: TheTbl.Close(); sl@0: TheDb.Close(); sl@0: TheDbs.Close(); sl@0: sl@0: TheTest.End(); sl@0: TheTest.Close(); sl@0: sl@0: delete tc; sl@0: sl@0: __UHEAP_MARKEND; sl@0: User::Heap().Check(); sl@0: return KErrNone; sl@0: }