os/persistentdata/persistentstorage/dbms/tdbms/t_dbplatsec4.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 2004-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 // DBMS security policy - testing new APIs.
    15 // This test app has "WriteDeviceData" (TABLE B: WRITE) capability, although it does not allows
    16 // writing data to table B, because (UID: WRITE) policy is not satisfied.
    17 // The UID policy file is 11335579.spd.
    18 // The test uses C:TESTDB.DB secure shared database, which has tables A, B and C, each of them
    19 // with at least one record.
    20 // Please, ensure that t_dbenvcreate test is executed before t_dbplatsec<N>/t_dbplatsecperf tests!
    21 // Please, ensure that t_dbenvdestroy test is executed after t_dbplatsec<N>/t_dbplatsecperf tests!
    22 // 
    23 //
    24 
    25 #include <e32test.h>
    26 #include <d32dbms.h>
    27 #include "t_dbplatsecutl.h"
    28 
    29 const TUid KSecureDbUid = {0x11335579};
    30 _LIT(KSecure,	"SECURE");
    31 _LIT(KDbName,	"C:TestDB.DB");
    32 _LIT(KTblNameA,	"A");
    33 _LIT(KTblNameB,	"B");
    34 _LIT(KTblNameC,	"C");
    35 
    36 static RTest 				TheTest(_L("t_dbplatsec4: DBMS platform security testing - 4"));
    37 static RDbs 				TheDbs;
    38 static RDbNamedDatabase 	TheDb;
    39 static RDbTable 			TheTbl;
    40 static RDbView 				TheView;
    41 
    42 TDBSCUtils 	TheDbscUtils(TheTest, NULL);
    43 
    44 /**
    45 @SYMTestCaseID SYSLIB-DBMS-CT-0017
    46 @SYMTestCaseDesc Open table test.
    47 				 This test app has "WriteDeviceData" (TABLE B: WRITE) capability,
    48 				 although it does not allows writing data to table B, because
    49 				 (UID: WRITE) policy is not satisfied. The attempts to open database
    50 				 tables in insert/update mode must fail.
    51 @SYMTestPriority High
    52 @SYMTestActions  Open table test.
    53 @SYMTestExpectedResults The test must not fail.
    54 @SYMREQ REQ2429
    55                  DBMS shall provide an API to apply security policies to database tables.
    56 */
    57 static void TblTestL()
    58 	{
    59 	TheTest.Printf(_L("An attempt to open table A\n"));
    60 	//The test must fail, because the test app cannot satisfy table A, policy W.
    61 	TInt err = TheTbl.Open(TheDb, KTblNameA);
    62 	TEST2(err, KErrPermissionDenied);
    63 	//The test must fail, because the test app cannot satisfy table A, policy R.
    64 	err = TheTbl.Open(TheDb, KTblNameA, RDbRowSet::EReadOnly);
    65 	TEST2(err, KErrPermissionDenied);
    66 
    67 	TheTest.Printf(_L("An attempt to open table B\n"));
    68 	//The test must fail, because the test app cannot satisfy table B, policy W.
    69 	err = TheTbl.Open(TheDb, KTblNameB);
    70 	TEST2(err, KErrPermissionDenied);
    71 	//The test must pass, because table B has no R policy.
    72 	err = TheTbl.Open(TheDb, KTblNameB, RDbRowSet::EReadOnly);
    73 	TEST2(err, KErrNone);
    74 	TheTbl.Close();
    75 
    76 	TheTest.Printf(_L("An attempt to write to table B\n"));
    77 	//The test must fail, because the test app cannot satisfy table B, policy W.
    78 	err = TheDb.Execute(_L("UPDATE B SET DATA1 = 400 WHERE ID < 10"));
    79 	TEST2(err, KErrPermissionDenied);
    80 
    81 	TheTest.Printf(_L("An attempt to open table C\n"));
    82 	//The test must fail, because the test app cannot satisfy table C, policy W.
    83 	err = TheTbl.Open(TheDb, KTblNameC);
    84 	TEST2(err, KErrPermissionDenied);
    85 	//The test must pass, because table C has no R policy.
    86 	err = TheTbl.Open(TheDb, KTblNameC, RDbRowSet::EReadOnly);
    87 	TEST2(err, KErrNone);
    88 	TheTbl.Close();
    89 	}
    90 
    91 static void DoRunL()
    92 	{
    93 	TheTest.Start(_L("An app with \"TABLE B:WRITE\" capabilities set"));
    94 
    95 	TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0017 Tble tests "));
    96 	::TblTestL();
    97 	}
    98 
    99 TInt E32Main()
   100     {
   101 	__UHEAP_MARK;
   102 	CTrapCleanup* tc = CTrapCleanup::New();
   103 	TEST(tc != NULL);
   104 
   105 	TInt err = TheDbs.Connect();
   106 	TEST2(err, KErrNone);
   107 
   108 	TBuf<32> format;
   109 	TheTest.Printf(_L("Open database\n"));
   110 	format.Copy(KSecure);
   111 	format.Append(KSecureDbUid.Name());
   112 	err = TheDb.Open(TheDbs, KDbName, format);
   113 	TEST2(err, KErrNone);
   114 
   115 	TRAP(err, ::DoRunL());
   116 	TEST2(err, KErrNone);
   117 
   118 	TheView.Close();
   119 	TheTbl.Close();
   120 	TheDb.Close();
   121 	TheDbs.Close();
   122 
   123 	TheTest.End();
   124 	TheTest.Close();
   125 
   126 	delete tc;
   127 
   128 	__UHEAP_MARKEND;
   129 	User::Heap().Check();
   130 	return KErrNone;
   131     }