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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
16 //The test uses C:TESTDB.DB secure shared database, which creates tables A, B and C.
19 #include "t_dbplatsecutl.h"
21 //The .spd file has the following capabilities:
23 // Read SurroundingsDD
24 // Write UserEnvironment
25 const TUid KSecureDbUid = {0x12344321};
27 _LIT(KSecure, "SECURE");
28 _LIT(KDbName, "C:TestDB.DB");
33 static RTest TheTest(_L("t_dbnewcap1"));
35 static RDbNamedDatabase TheDb;
36 static RDbTable TheTbl;
38 TDBSCUtils TheDbscUtils(TheTest, NULL);
40 static TColDef const KColumns[]=
42 {_S("ID"), EDbColInt32, TDbCol::ENotNull | TDbCol::EAutoIncrement},
43 {_S("DATA1"), EDbColInt32, TDbCol::ENotNull},
44 {_S("DATA2"), EDbColInt32, TDbCol::ENotNull},
49 @SYMTestCaseID SYSLIB-DBMS-CT-1361
50 @SYMTestCaseDesc Checking to make sure the .spd file used in this test has been created correctly and
51 functions as it should.
52 @SYMTestPriority Medium
53 @SYMTestActions Creating a database and 3 tables (A, B & C), running 3 actions on it and then deleting
54 the database (5 actions in total). Whether the actions are allowed or not is decided on the capabilities
55 that the database has (stated in the MMP file) relative to the capabilities that are needed to perform
56 certain actions (stated in the .spd file).
57 @SYMTestExpectedResults The test must not fail.
60 static void DefectTestL()
62 TheTest.Start(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-1361 An app with \"UserEnvironment\" capabilities set\n "));
64 TheTest.Printf(_L("Test 1: Create tables\n"));
65 //The tests must pass, because the test app has "SCHEMA" capability
66 CDbColSet* colset = TDBSCUtils::CreateColSetLC(KColumns);
67 TInt err = TheDb.CreateTable(KTblNameA, *colset);
69 err = TheDb.CreateTable(KTblNameB, *colset);
71 err = TheDb.CreateTable(KTblNameC, *colset);
73 CleanupStack::PopAndDestroy(colset);
75 TheTest.Printf(_L("Test 2: Opening the tables in insert-only mode\n"));
76 //The tests must pass because the test app has "WRITE" capability
77 err = TheTbl.Open(TheDb, KTblNameA, RDbRowSet::EInsertOnly);
80 err = TheTbl.Open(TheDb, KTblNameB, RDbRowSet::EInsertOnly);
83 err = TheTbl.Open(TheDb, KTblNameC, RDbRowSet::EInsertOnly);
87 TheTest.Printf(_L("Test 3: An attempt to open tables in read-only mode\n"));
88 //The tests must not pass because the test app does not have "READ" capability.
89 err = TheTbl.Open(TheDb, KTblNameA, RDbRowSet::EReadOnly);
90 TEST2(err, KErrPermissionDenied);
91 err = TheTbl.Open(TheDb, KTblNameB, RDbRowSet::EReadOnly);
92 TEST2(err, KErrPermissionDenied);
93 err = TheTbl.Open(TheDb, KTblNameC, RDbRowSet::EReadOnly);
94 TEST2(err, KErrPermissionDenied);
101 CTrapCleanup* tc = CTrapCleanup::New();
104 TInt err = TheDbs.Connect();
105 TEST2(err, KErrNone);
108 format.Copy(KSecure);
109 format.Append(KSecureDbUid.Name());
111 //Make sure there is no previous instance of the database.
112 TDBSCUtils::DeleteDatabase(TheDbs, KSecureDbUid, KDbName);
113 TheTest.Printf(_L("Create a database\n"));
114 err = TheDb.Create(TheDbs, KDbName, format);
115 TEST2(err, KErrNone);
117 TRAP(err, ::DefectTestL());
118 TEST2(err, KErrNone);
122 // Remove the database that was created during the tests
123 TheTest.Printf(_L("Delete the database\n"));
124 err = TDBSCUtils::DeleteDatabase(TheDbs, KSecureDbUid, KDbName);
125 TEST2(err, KErrNone);
134 User::Heap().Check();