os/persistentdata/persistentstorage/dbms/tdbms/t_dbnewcap1.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2004-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
//
sl@0
    15
sl@0
    16
//The test uses C:TESTDB.DB secure shared database, which creates tables A, B and C.
sl@0
    17
#include <e32test.h>
sl@0
    18
#include <d32dbms.h>
sl@0
    19
#include "t_dbplatsecutl.h"
sl@0
    20
sl@0
    21
//The .spd file has the following capabilities:
sl@0
    22
//	Schema	None
sl@0
    23
//	Read	SurroundingsDD
sl@0
    24
//	Write	UserEnvironment
sl@0
    25
const TUid KSecureDbUid = {0x12344321};
sl@0
    26
sl@0
    27
_LIT(KSecure,	"SECURE");
sl@0
    28
_LIT(KDbName,	"C:TestDB.DB");
sl@0
    29
_LIT(KTblNameA,	"A");
sl@0
    30
_LIT(KTblNameB,	"B");
sl@0
    31
_LIT(KTblNameC,	"C");
sl@0
    32
sl@0
    33
static RTest 				TheTest(_L("t_dbnewcap1"));
sl@0
    34
static RDbs 				TheDbs;
sl@0
    35
static RDbNamedDatabase 	TheDb;
sl@0
    36
static RDbTable 			TheTbl;
sl@0
    37
sl@0
    38
TDBSCUtils 	TheDbscUtils(TheTest, NULL);
sl@0
    39
sl@0
    40
static TColDef const KColumns[]=
sl@0
    41
	{
sl@0
    42
	{_S("ID"), EDbColInt32, TDbCol::ENotNull | TDbCol::EAutoIncrement},
sl@0
    43
	{_S("DATA1"), EDbColInt32, TDbCol::ENotNull},
sl@0
    44
	{_S("DATA2"), EDbColInt32, TDbCol::ENotNull},
sl@0
    45
	{0}
sl@0
    46
	};
sl@0
    47
sl@0
    48
/**
sl@0
    49
@SYMTestCaseID SYSLIB-DBMS-CT-1361
sl@0
    50
@SYMTestCaseDesc Checking to make sure the .spd file used in this test has been created correctly and
sl@0
    51
functions as it should.
sl@0
    52
@SYMTestPriority Medium
sl@0
    53
@SYMTestActions Creating a database and 3 tables (A, B & C), running 3 actions on it and then deleting
sl@0
    54
the database (5 actions in total). Whether the actions are allowed or not is decided on the capabilities
sl@0
    55
that the database has (stated in the MMP file) relative to the capabilities that are needed to perform
sl@0
    56
certain actions (stated in the .spd file).
sl@0
    57
@SYMTestExpectedResults The test must not fail.
sl@0
    58
@SYMDEF DEF065282
sl@0
    59
*/
sl@0
    60
static void DefectTestL()
sl@0
    61
	{
sl@0
    62
	TheTest.Start(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-1361 An app with \"UserEnvironment\" capabilities set\n "));
sl@0
    63
sl@0
    64
	TheTest.Printf(_L("Test 1: Create tables\n"));
sl@0
    65
	//The tests must pass, because the test app has "SCHEMA" capability
sl@0
    66
	CDbColSet* colset = TDBSCUtils::CreateColSetLC(KColumns);
sl@0
    67
	TInt err = TheDb.CreateTable(KTblNameA, *colset);
sl@0
    68
	TEST2(err, KErrNone);
sl@0
    69
	err = TheDb.CreateTable(KTblNameB, *colset);
sl@0
    70
	TEST2(err, KErrNone);
sl@0
    71
	err = TheDb.CreateTable(KTblNameC, *colset);
sl@0
    72
	TEST2(err, KErrNone);
sl@0
    73
	CleanupStack::PopAndDestroy(colset);
sl@0
    74
sl@0
    75
	TheTest.Printf(_L("Test 2: Opening the tables in insert-only mode\n"));
sl@0
    76
	//The tests must pass because the test app has "WRITE" capability
sl@0
    77
	err = TheTbl.Open(TheDb, KTblNameA, RDbRowSet::EInsertOnly);
sl@0
    78
	TEST2(err, KErrNone);
sl@0
    79
	TheTbl.Close();
sl@0
    80
	err = TheTbl.Open(TheDb, KTblNameB, RDbRowSet::EInsertOnly);
sl@0
    81
	TEST2(err, KErrNone);
sl@0
    82
	TheTbl.Close();
sl@0
    83
	err = TheTbl.Open(TheDb, KTblNameC, RDbRowSet::EInsertOnly);
sl@0
    84
	TEST2(err, KErrNone);
sl@0
    85
	TheTbl.Close();
sl@0
    86
sl@0
    87
	TheTest.Printf(_L("Test 3: An attempt to open tables in read-only mode\n"));
sl@0
    88
	//The tests must not pass because the test app does not have "READ" capability.
sl@0
    89
	err = TheTbl.Open(TheDb, KTblNameA, RDbRowSet::EReadOnly);
sl@0
    90
	TEST2(err, KErrPermissionDenied);
sl@0
    91
	err = TheTbl.Open(TheDb, KTblNameB, RDbRowSet::EReadOnly);
sl@0
    92
	TEST2(err, KErrPermissionDenied);
sl@0
    93
	err = TheTbl.Open(TheDb, KTblNameC, RDbRowSet::EReadOnly);
sl@0
    94
	TEST2(err, KErrPermissionDenied);
sl@0
    95
	TheTbl.Close();
sl@0
    96
	}
sl@0
    97
sl@0
    98
TInt E32Main()
sl@0
    99
    {
sl@0
   100
	__UHEAP_MARK;
sl@0
   101
	CTrapCleanup* tc = CTrapCleanup::New();
sl@0
   102
	TEST(tc != NULL);
sl@0
   103
sl@0
   104
	TInt err = TheDbs.Connect();
sl@0
   105
	TEST2(err, KErrNone);
sl@0
   106
sl@0
   107
	TBuf<32> format;
sl@0
   108
	format.Copy(KSecure);
sl@0
   109
	format.Append(KSecureDbUid.Name());
sl@0
   110
sl@0
   111
	//Make sure there is no previous instance of the database.
sl@0
   112
	TDBSCUtils::DeleteDatabase(TheDbs, KSecureDbUid, KDbName);
sl@0
   113
	TheTest.Printf(_L("Create a database\n"));
sl@0
   114
	err = TheDb.Create(TheDbs, KDbName, format);
sl@0
   115
	TEST2(err, KErrNone);
sl@0
   116
sl@0
   117
	TRAP(err, ::DefectTestL());
sl@0
   118
	TEST2(err, KErrNone);
sl@0
   119
sl@0
   120
	TheTbl.Close();
sl@0
   121
	TheDb.Close();
sl@0
   122
	// Remove the database that was created during the tests
sl@0
   123
	TheTest.Printf(_L("Delete the database\n"));
sl@0
   124
	err = TDBSCUtils::DeleteDatabase(TheDbs, KSecureDbUid, KDbName);
sl@0
   125
	TEST2(err, KErrNone);
sl@0
   126
	TheDbs.Close();
sl@0
   127
sl@0
   128
	TheTest.End();
sl@0
   129
	TheTest.Close();
sl@0
   130
sl@0
   131
	delete tc;
sl@0
   132
sl@0
   133
	__UHEAP_MARKEND;
sl@0
   134
	User::Heap().Check();
sl@0
   135
	return KErrNone;
sl@0
   136
    }