os/persistentdata/persistentstorage/dbms/tdbms/t_dbpanic.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) 2003-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
#include <d32dbms.h>
sl@0
    17
#include <s32file.h>
sl@0
    18
#include <e32test.h>
sl@0
    19
#include <e32math.h>
sl@0
    20
#include <s32mem.h>
sl@0
    21
sl@0
    22
LOCAL_D RTest test(_L("t_dbpanic - Panic test when cancelling two blobs transactions"));
sl@0
    23
LOCAL_D CTrapCleanup* TheTrapCleanup;
sl@0
    24
LOCAL_D RDbTable TheTables[2];
sl@0
    25
LOCAL_D RFs TheFs;
sl@0
    26
LOCAL_D RDbs TheDbs;
sl@0
    27
LOCAL_D RDbNamedDatabase TheDatabase;
sl@0
    28
sl@0
    29
const TPtrC KTestDatabase=_L("\\DBMS-TST\\T_PANIC.DB");
sl@0
    30
sl@0
    31
/**
sl@0
    32
@SYMTestCaseID          SYSLIB-DBMS-CT-0641
sl@0
    33
@SYMTestCaseDesc        Tests for creating the database and tables
sl@0
    34
@SYMTestPriority        Medium
sl@0
    35
@SYMTestActions         Tests for creating the tables.Leave on error.
sl@0
    36
@SYMTestExpectedResults Test must not fail
sl@0
    37
@SYMREQ                 REQ0000
sl@0
    38
*/
sl@0
    39
LOCAL_C void PreTestL()
sl@0
    40
	{
sl@0
    41
	test.Next(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0641 "));
sl@0
    42
	// Create the database:
sl@0
    43
	User::LeaveIfError(TheDatabase.Replace(TheFs,KTestDatabase));
sl@0
    44
	CleanupClosePushL(TheDatabase);
sl@0
    45
sl@0
    46
	// Create tables in the database:
sl@0
    47
	User::LeaveIfError(TheDatabase.Execute(_L("create table ta (a integer, b Long Varbinary)")));
sl@0
    48
	User::LeaveIfError(TheDatabase.Execute(_L("create table tb (a integer, b Long Varbinary)")));
sl@0
    49
sl@0
    50
	// Open the tables:
sl@0
    51
	User::LeaveIfError(TheTables[0].Open(TheDatabase, _L("ta")));
sl@0
    52
	CleanupClosePushL(TheTables[0]);
sl@0
    53
	User::LeaveIfError(TheTables[1].Open(TheDatabase, _L("tb")));
sl@0
    54
	CleanupClosePushL(TheTables[1]);
sl@0
    55
	}
sl@0
    56
sl@0
    57
/**
sl@0
    58
@SYMTestCaseID          SYSLIB-DBMS-CT-0642
sl@0
    59
@SYMTestCaseDesc        Tests for transaction of large data
sl@0
    60
@SYMTestPriority        Medium
sl@0
    61
@SYMTestActions         Tests for streaming of blob data
sl@0
    62
@SYMTestExpectedResults Test must not fail
sl@0
    63
@SYMREQ                 REQ0000
sl@0
    64
*/
sl@0
    65
LOCAL_C void TestL()
sl@0
    66
	{
sl@0
    67
	test.Next(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0642 "));
sl@0
    68
	// Start a transaction:
sl@0
    69
	TheDatabase.Begin();
sl@0
    70
sl@0
    71
	// Create a new row on each table:
sl@0
    72
	TheTables[0].InsertL();
sl@0
    73
	TheTables[1].InsertL();
sl@0
    74
sl@0
    75
	for(TInt i = 0; i < 2; ++i)
sl@0
    76
		{
sl@0
    77
		// Setting to null sets the dirty flag:
sl@0
    78
		TheTables[i].SetColNullL(1);
sl@0
    79
sl@0
    80
		// Create a blob of data:
sl@0
    81
		_LIT8(blobdata, "abcdefghijklmnopqrstuvwxyz");
sl@0
    82
		CBufFlat * blobbuff = CBufFlat::NewL(32);
sl@0
    83
		CleanupStack::PushL(blobbuff);
sl@0
    84
		blobbuff->InsertL(0, blobdata());
sl@0
    85
sl@0
    86
		// Open a read stream on the blob:
sl@0
    87
		RBufReadStream blobstream;
sl@0
    88
		blobstream.Open(*blobbuff, 0);
sl@0
    89
		CleanupClosePushL(blobstream);
sl@0
    90
sl@0
    91
		// Open a write stream on the table:
sl@0
    92
		RDbColWriteStream blobwrite;
sl@0
    93
		blobwrite.OpenLC(TheTables[i], 2);
sl@0
    94
sl@0
    95
		// Stream data from the read stream to the write stream:
sl@0
    96
		blobwrite.WriteL(blobstream);
sl@0
    97
		blobwrite.CommitL();
sl@0
    98
sl@0
    99
		// Close the write stream:
sl@0
   100
		CleanupStack::PopAndDestroy();
sl@0
   101
		// Close the read stream:
sl@0
   102
		CleanupStack::PopAndDestroy();
sl@0
   103
		// Delete the blob of data:
sl@0
   104
		CleanupStack::PopAndDestroy(blobbuff);
sl@0
   105
		}
sl@0
   106
sl@0
   107
	TheTables[0].Cancel();
sl@0
   108
	TheTables[1].Cancel(); //This call to cancel panics.
sl@0
   109
sl@0
   110
sl@0
   111
	// End the transaction:
sl@0
   112
	TheDatabase.Commit();
sl@0
   113
	}
sl@0
   114
sl@0
   115
/**
sl@0
   116
@SYMTestCaseID          SYSLIB-DBMS-CT-0643
sl@0
   117
@SYMTestCaseDesc        Tests for closing of tables
sl@0
   118
@SYMTestPriority        Medium
sl@0
   119
@SYMTestActions         Tests for closing of tables and database
sl@0
   120
@SYMTestExpectedResults Test must not fail
sl@0
   121
@SYMREQ                 REQ0000
sl@0
   122
*/
sl@0
   123
LOCAL_C void PostTestL()
sl@0
   124
	{
sl@0
   125
	test.Next(_L(" @SYMTestCaseID:SYSLIB-DBMS-CT-0643 "));
sl@0
   126
	// Close the tables:
sl@0
   127
	TheTables[0].Close();
sl@0
   128
	CleanupStack::Pop(); // Table close
sl@0
   129
	TheTables[1].Close();
sl@0
   130
	CleanupStack::Pop(); // Table close
sl@0
   131
sl@0
   132
	// Close the database:
sl@0
   133
	CleanupStack::PopAndDestroy();
sl@0
   134
	}
sl@0
   135
sl@0
   136
void doTestL()
sl@0
   137
	{
sl@0
   138
	test.Start(_L("bang"));
sl@0
   139
sl@0
   140
	// Open a connection to the DBMS server:
sl@0
   141
	User::LeaveIfError(TheDbs.Connect());
sl@0
   142
	CleanupClosePushL(TheDbs);
sl@0
   143
sl@0
   144
	PreTestL();
sl@0
   145
	TestL();
sl@0
   146
	PostTestL();
sl@0
   147
sl@0
   148
	CleanupStack::PopAndDestroy(); // TheDbs close
sl@0
   149
	}
sl@0
   150
sl@0
   151
LOCAL_C void DeleteDataFile(const TDesC& aFullName)
sl@0
   152
	{
sl@0
   153
	RFs fsSession;
sl@0
   154
	TInt err = fsSession.Connect();
sl@0
   155
	if(err == KErrNone)
sl@0
   156
		{
sl@0
   157
		TEntry entry;
sl@0
   158
		if(fsSession.Entry(aFullName, entry) == KErrNone)
sl@0
   159
			{
sl@0
   160
			RDebug::Print(_L("Deleting \"%S\" file.\n"), &aFullName);
sl@0
   161
			err = fsSession.SetAtt(aFullName, 0, KEntryAttReadOnly);
sl@0
   162
			if(err != KErrNone)
sl@0
   163
				{
sl@0
   164
				RDebug::Print(_L("Error %d changing \"%S\" file attributes.\n"), err, &aFullName);
sl@0
   165
				}
sl@0
   166
			err = fsSession.Delete(aFullName);
sl@0
   167
			if(err != KErrNone)
sl@0
   168
				{
sl@0
   169
				RDebug::Print(_L("Error %d deleting \"%S\" file.\n"), err, &aFullName);
sl@0
   170
				}
sl@0
   171
			}
sl@0
   172
		fsSession.Close();
sl@0
   173
		}
sl@0
   174
	else
sl@0
   175
		{
sl@0
   176
		RDebug::Print(_L("Error %d connecting file session. File: %S.\n"), err, &aFullName);
sl@0
   177
		}
sl@0
   178
	}
sl@0
   179
sl@0
   180
//
sl@0
   181
// Test streaming conversions.
sl@0
   182
//
sl@0
   183
GLDEF_C TInt E32Main()
sl@0
   184
    {
sl@0
   185
	test.Title();
sl@0
   186
	TheTrapCleanup=CTrapCleanup::New();
sl@0
   187
sl@0
   188
	TInt r=TheFs.Connect();
sl@0
   189
	test(r==KErrNone);
sl@0
   190
	r=TheFs.MkDir(KTestDatabase);
sl@0
   191
	test(r==KErrNone || r==KErrAlreadyExists);
sl@0
   192
sl@0
   193
	TRAP(r, doTestL());
sl@0
   194
	test(r == KErrNone);
sl@0
   195
sl@0
   196
	::DeleteDataFile(KTestDatabase);
sl@0
   197
sl@0
   198
	test.End();
sl@0
   199
sl@0
   200
	TheFs.Close();
sl@0
   201
	delete TheTrapCleanup;
sl@0
   202
	test.Close();
sl@0
   203
	return r;
sl@0
   204
    }