os/persistentdata/persistentstorage/dbms/tdbms/t_dbenvcreate.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 - preparation operations
    15 // Please, ensure that t_predbsc test is executed before t_dbsc<N> tests!
    16 // 
    17 //
    18 
    19 #include <d32dbms.h>
    20 #include <e32test.h>
    21 
    22 static RTest TheTest(_L("t_dbenvcreate: DBMS platform security testing - preparation"));
    23 static RDbs TheDbs;
    24 const TUid KSecureDbUid = {0x11335578};
    25 const TUid KSecureDbUid2 = {0x11335579};
    26 const TUid KSecureDbUid3 = {0x1133557A};
    27 _LIT(KProtDbZName, "z:z.db");
    28 _LIT(KProtDbCName, "C:z.Db");
    29 _LIT(KProtDbZName2, "z:TEstDB.dB");
    30 _LIT(KProtDbCName2, "c:teSTDB.db");
    31 _LIT(KProtDbCName3, "c:AbcD.Db");
    32 _LIT(KProtDbCName4, "c:A0123456789B0123456789C0123456789D0123456789E0123456789F0123.Db");
    33 _LIT(KProtDbCName5, "c:ZADFS.Db");
    34 _LIT(KProtDbFormat3, "SECURE[1133557A]");
    35 _LIT(KProtDbCPath, "C:\\Private\\100012a5\\Dbs_11335578_z.dB");
    36 _LIT(KProtDbCPath2, "C:\\Private\\100012a5\\dBS_11335579_TesTDB.db");
    37 
    38 ///////////////////////////////////////////////////////////////////////////////////////
    39 ///////////////////////////////////////////////////////////////////////////////////////
    40 //Test macros and functions
    41 static void Check(TInt aValue, TInt aLine)
    42 	{
    43 	if(!aValue)
    44 		{
    45 		TheTest(EFalse, aLine);
    46 		}
    47 	}
    48 static void Check(TInt aValue, TInt aExpected, TInt aLine)
    49 	{
    50 	if(aValue != aExpected)
    51 		{
    52 		RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
    53 		TheTest(EFalse, aLine);
    54 		}
    55 	}
    56 #define TEST(arg) 				 ::Check((arg), __LINE__)
    57 #define TEST2(aValue, aExpected) ::Check(aValue, aExpected, __LINE__)
    58 
    59 ///////////////////////////////////////////////////////////////////////////////////////
    60 
    61 /**
    62 @SYMTestCaseID SYSLIB-DBMS-CT-0023
    63 @SYMTestCaseDesc This test app must be executed before all t_dbsc<N> tests.
    64                  It ensures that the test data is copied and prepared for the tests executed
    65 				 after the current executable.
    66 @SYMTestPriority High
    67 @SYMTestActions  Copy test databases from Z: to C: drive in the DBMS server private data cage.
    68 @SYMTestExpectedResults The test must not fail.
    69 @SYMREQ          REQ2429
    70                  DBMS shall provide an API to apply security policies to database tables.
    71 */
    72 static void DoRun()
    73 	{
    74 	TheTest.Start(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0023 Copy protected databases from Z: to C: "));
    75 	TheDbs.DeleteDatabase(KProtDbCName, KSecureDbUid);
    76 	TInt err = TheDbs.CopyDatabase(KProtDbZName, KProtDbCName, KSecureDbUid);
    77 	TheTest.Printf(_L("copy file file from z:z.db to C:z.Db uid = 0x11335578 err = %d"),err);
    78 	TEST2(err, KErrNone);
    79 	TheDbs.DeleteDatabase(KProtDbCName2, KSecureDbUid2);
    80 	err = TheDbs.CopyDatabase(KProtDbZName2, KProtDbCName2, KSecureDbUid2);
    81 	TheTest.Printf(_L("copy file file from z:TEstDB.dB to c:teSTDB.db uid = 0x11335579 err = %d"),err);
    82 	TEST2(err, KErrNone);
    83 
    84 	TheDbs.DeleteDatabase(KProtDbCName3, KSecureDbUid3);
    85 	TheTest.Next(_L("Create protected database on C:"));
    86 	RDbNamedDatabase db;
    87 	err = db.Create(TheDbs, KProtDbCName3, KProtDbFormat3);
    88 	TEST2(err, KErrNone);
    89 	db.Close();
    90 
    91 	TheDbs.DeleteDatabase(KProtDbCName4, KSecureDbUid3);
    92 	err = db.Create(TheDbs, KProtDbCName4, KProtDbFormat3);
    93 	TEST2(err, KErrNone);
    94 	db.Close();
    95 
    96 	TheDbs.DeleteDatabase(KProtDbCName5, KSecureDbUid3);
    97 	err = db.Create(TheDbs, KProtDbCName5, KProtDbFormat3);
    98 	TEST2(err, KErrNone);
    99 	db.Close();
   100 
   101 	RFs fileSess;
   102 	err = fileSess.Connect();
   103 	TEST2(err, KErrNone);
   104 	err = fileSess.SetAtt(KProtDbCPath,  0, KEntryAttReadOnly);
   105 	TEST2(err, KErrNone);
   106 	err = fileSess.SetAtt(KProtDbCPath2,  0, KEntryAttReadOnly);
   107 	TEST2(err, KErrNone);
   108 	fileSess.Close();
   109 	}
   110 
   111 TInt E32Main()
   112     {
   113 	__UHEAP_MARK;
   114 	CTrapCleanup* tc = CTrapCleanup::New();
   115 	TEST(tc != NULL);
   116 
   117 	TheTest.Title();
   118 
   119 	TInt err = TheDbs.Connect();
   120 	TEST2(err, KErrNone);
   121 
   122 	::DoRun();
   123 
   124 	TheDbs.Close();
   125 
   126 	TheTest.End();
   127 	TheTest.Close();
   128 
   129 	delete tc;
   130 
   131 	__UHEAP_MARKEND;
   132 	User::Heap().Check();
   133 	return KErrNone;
   134     }