os/persistentdata/persistentstorage/centralrepository/test/t_cenrep_meta.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) 2006-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 <e32test.h>
sl@0
    17
#include <f32file.h>
sl@0
    18
#include <centralrepository.h>
sl@0
    19
#include "t_cenrep_helper.h"
sl@0
    20
#include <e32debug.h>
sl@0
    21
sl@0
    22
RTest TheTest(_L("Central Repository Settings Tests"));
sl@0
    23
RFs fs;
sl@0
    24
sl@0
    25
const TUid KUidTestRepository = { 0x00000005 };
sl@0
    26
const TInt KIntOrigValue = 1;
sl@0
    27
const TUint32 KGlobalDefaultMeta = 0;
sl@0
    28
const TUint32 KRange2DefaultMeta = 2;
sl@0
    29
const TUint32 KMetaAtKeyPos24    = 4;
sl@0
    30
sl@0
    31
const TUint32 KDefMeta0SingleMeta0Key = 0x1;
sl@0
    32
const TUint32 KDefMeta0SingleMeta1Key = 0x2;
sl@0
    33
const TUint32 KDefMeta1SingleMeta0Key = 0x10;
sl@0
    34
const TUint32 KDefMeta1SingleMeta1Key = 0x11;
sl@0
    35
const TUint32 KMissingSingleMetaKey   = 0x20;
sl@0
    36
sl@0
    37
const TUint32 KPlatsecFailureKey      = 0x21;
sl@0
    38
sl@0
    39
const TUint32 KRange2KeyWithMeta4     = 0x24;
sl@0
    40
sl@0
    41
_LIT( KSrcTxaPath, "z:\\private\\10202BE9\\00000005.txa" );
sl@0
    42
_LIT( KSrcCacheIniPath, "z:\\private\\10202BE9\\centrepcache.ini9" );
sl@0
    43
sl@0
    44
_LIT( KInstallTxtPath, "C:\\private\\10202BE9\\00000005.txt" );
sl@0
    45
_LIT( KInstallCrePath, "C:\\private\\10202BE9\\00000005.cre" );
sl@0
    46
_LIT( KPersistsCrePath, "C:\\private\\10202BE9\\persists\\00000005.cre" );
sl@0
    47
_LIT( KCacheIniPath, "C:\\private\\10202BE9\\centrep.ini" );
sl@0
    48
sl@0
    49
sl@0
    50
TPtrC metaTestFiles[] =
sl@0
    51
	{
sl@0
    52
	TPtrC(KInstallTxtPath),
sl@0
    53
	TPtrC(KInstallCrePath),
sl@0
    54
	TPtrC(KPersistsCrePath),
sl@0
    55
sl@0
    56
	// This one last because we do not always delete it.
sl@0
    57
	TPtrC(KCacheIniPath)
sl@0
    58
    };
sl@0
    59
sl@0
    60
const TInt KNumMetaTestFiles = sizeof(metaTestFiles) / sizeof(TPtrC);
sl@0
    61
sl@0
    62
_LIT( KCentralRepositoryServerName, "Centralrepositorysrv");
sl@0
    63
sl@0
    64
//===========================================================
sl@0
    65
// Test macroses and functions
sl@0
    66
//===========================================================
sl@0
    67
sl@0
    68
LOCAL_C TInt DeleteFile(const TDesC& aFileName, CFileMan& aFileMan)
sl@0
    69
	{
sl@0
    70
	TInt r = aFileMan.Delete( aFileName );
sl@0
    71
	if ( r != KErrNone && r != KErrNotFound && r != KErrPathNotFound )
sl@0
    72
		{
sl@0
    73
		return r;
sl@0
    74
		}
sl@0
    75
	return KErrNone;
sl@0
    76
	}
sl@0
    77
sl@0
    78
LOCAL_C TInt DeleteFilesL(TPtrC aFileList[], TInt aNumFiles)
sl@0
    79
	{
sl@0
    80
	CFileMan* fm = CFileMan::NewL(fs);
sl@0
    81
	CleanupStack::PushL( fm );
sl@0
    82
sl@0
    83
	TInt ret = KErrNone;
sl@0
    84
	for (TInt i = 0; i < aNumFiles; i++)
sl@0
    85
		{
sl@0
    86
		TInt r = DeleteFile( aFileList[i], *fm );
sl@0
    87
		if (r != KErrNone)
sl@0
    88
			{
sl@0
    89
			ret = r;
sl@0
    90
			}
sl@0
    91
		}
sl@0
    92
	CleanupStack::PopAndDestroy( fm );
sl@0
    93
	return ret;
sl@0
    94
	}
sl@0
    95
sl@0
    96
LOCAL_C void TestCleanupL()
sl@0
    97
    {
sl@0
    98
    DeleteFilesL(metaTestFiles, KNumMetaTestFiles);
sl@0
    99
    KillProcess(KCentralRepositoryServerName);
sl@0
   100
    }
sl@0
   101
sl@0
   102
LOCAL_C void CheckL( TInt aValue, TInt aLine )
sl@0
   103
	{
sl@0
   104
	if ( !aValue )
sl@0
   105
		{
sl@0
   106
		TestCleanupL();
sl@0
   107
		TheTest( EFalse, aLine );
sl@0
   108
		}
sl@0
   109
	}
sl@0
   110
sl@0
   111
LOCAL_C void CheckL( TInt aValue, TInt aExpected, TInt aLine )
sl@0
   112
	{
sl@0
   113
	if ( aValue != aExpected )
sl@0
   114
		{
sl@0
   115
		TheTest.Printf( _L( "*** Expected value: %d, got: %d\r\n"), aExpected, aValue );
sl@0
   116
		TestCleanupL();
sl@0
   117
		TheTest( EFalse, aLine );
sl@0
   118
		}
sl@0
   119
	}
sl@0
   120
sl@0
   121
#define TEST(arg) ::CheckL((arg), __LINE__)
sl@0
   122
#define TEST2(aValue, aExpected) ::CheckL(aValue, aExpected, __LINE__)
sl@0
   123
sl@0
   124
LOCAL_C void CopyFileL(const TDesC& aSrc,
sl@0
   125
					   const TDesC& aDest,
sl@0
   126
					   TBool aClearROAttrib)
sl@0
   127
	{
sl@0
   128
	CFileMan* fm = CFileMan::NewL( fs );
sl@0
   129
	CleanupStack::PushL( fm );
sl@0
   130
sl@0
   131
	TInt ret = fm->Copy(aSrc, aDest);
sl@0
   132
	if (aClearROAttrib && (ret == KErrNone))
sl@0
   133
		{
sl@0
   134
		ret = fm->Attribs( aDest, KEntryAttArchive, KEntryAttReadOnly, TTime( 0 ), CFileMan::ERecurse );
sl@0
   135
		}
sl@0
   136
sl@0
   137
	User::LeaveIfError(ret);
sl@0
   138
sl@0
   139
	CleanupStack::PopAndDestroy( fm );
sl@0
   140
	}
sl@0
   141
sl@0
   142
//=============================================================
sl@0
   143
// class to encapsulate metadata test
sl@0
   144
class TMetadataTest
sl@0
   145
	{
sl@0
   146
public:
sl@0
   147
	inline TMetadataTest() {}
sl@0
   148
	~TMetadataTest();
sl@0
   149
	void InitialiseL();
sl@0
   150
	void InstallCreFileL();
sl@0
   151
	void RunTestsL();
sl@0
   152
	void RunSetTestL();
sl@0
   153
	void RunDeleteResetTestL();
sl@0
   154
	void RunDeleteCreateTestL();
sl@0
   155
	void RunDeleteCreateTest2L();
sl@0
   156
	void RunMoveTestL();
sl@0
   157
sl@0
   158
	void RunBasicGetMetaTestsL();
sl@0
   159
sl@0
   160
	TBool VerifyMetaDataUnchangedL();
sl@0
   161
	};
sl@0
   162
sl@0
   163
//==========================================
sl@0
   164
TMetadataTest::~TMetadataTest()
sl@0
   165
	{
sl@0
   166
	TRAPD(err, ::TestCleanupL());
sl@0
   167
	if (err != KErrNone)
sl@0
   168
	    {
sl@0
   169
	    RDebug::Printf("err = %d in ~TMetadataTest.", err);
sl@0
   170
	    }
sl@0
   171
	}
sl@0
   172
sl@0
   173
//==========================================
sl@0
   174
void TMetadataTest::InitialiseL()
sl@0
   175
	{
sl@0
   176
	::TestCleanupL();
sl@0
   177
	User::After(1000000); // pause after KillProcess
sl@0
   178
	::CopyFileL(KSrcTxaPath, KInstallTxtPath, ETrue);
sl@0
   179
	::CopyFileL(KSrcCacheIniPath, KCacheIniPath, ETrue);
sl@0
   180
	}
sl@0
   181
sl@0
   182
//==========================================
sl@0
   183
void TMetadataTest::InstallCreFileL()
sl@0
   184
	{
sl@0
   185
	// Ensure start with original 00000005.txa file.
sl@0
   186
	// Be careful. Do not delete centrep.ini
sl@0
   187
	::DeleteFilesL(metaTestFiles, KNumMetaTestFiles - 1);
sl@0
   188
	::CopyFileL(KSrcTxaPath, KInstallTxtPath, ETrue);
sl@0
   189
sl@0
   190
	CRepository* rep = CRepository::NewLC(KUidTestRepository);
sl@0
   191
sl@0
   192
	// Create/Delete to persist the .txt to .cre
sl@0
   193
	TInt r = rep->Create(0xA5A5, 1);
sl@0
   194
	TEST2(r, KErrNone);
sl@0
   195
sl@0
   196
	rep->Delete(0xA5A5);
sl@0
   197
	TEST2(r, KErrNone);
sl@0
   198
sl@0
   199
	CleanupStack::PopAndDestroy(rep);
sl@0
   200
sl@0
   201
	::CopyFileL(KPersistsCrePath, KInstallCrePath, EFalse);
sl@0
   202
sl@0
   203
	TPtrC onefile[1] = { TPtrC(KPersistsCrePath) };
sl@0
   204
	::DeleteFilesL(onefile, 1);
sl@0
   205
	}
sl@0
   206
sl@0
   207
//==========================================
sl@0
   208
void TMetadataTest::RunTestsL()
sl@0
   209
	{
sl@0
   210
	RunSetTestL();
sl@0
   211
	RunDeleteResetTestL();
sl@0
   212
	RunDeleteCreateTestL();
sl@0
   213
	RunDeleteCreateTest2L();
sl@0
   214
	RunMoveTestL();
sl@0
   215
	}
sl@0
   216
sl@0
   217
//============================================
sl@0
   218
TBool TMetadataTest::VerifyMetaDataUnchangedL()
sl@0
   219
	{
sl@0
   220
	CRepository* rep = CRepository::NewLC(KUidTestRepository);
sl@0
   221
sl@0
   222
	TInt ret = ETrue;
sl@0
   223
	TUint32 meta;
sl@0
   224
sl@0
   225
	TInt r = rep->GetMeta(KMissingSingleMetaKey, meta);
sl@0
   226
	TEST2(r, KErrNone);
sl@0
   227
	if ( meta !=  KRange2DefaultMeta)
sl@0
   228
		{
sl@0
   229
		TheTest.Printf(_L("Key: 0x%x, meta is %d"), KMissingSingleMetaKey, meta);
sl@0
   230
		ret = EFalse;
sl@0
   231
		}
sl@0
   232
sl@0
   233
	r = rep->GetMeta(KDefMeta0SingleMeta0Key, meta);
sl@0
   234
	TEST2(r, KErrNone);
sl@0
   235
	if ( meta !=  0)
sl@0
   236
		{
sl@0
   237
		TheTest.Printf(_L("Key: 0x%x, meta is %d"), KDefMeta0SingleMeta0Key, meta);
sl@0
   238
		ret = EFalse;
sl@0
   239
		}
sl@0
   240
sl@0
   241
	r = rep->GetMeta(KDefMeta0SingleMeta1Key, meta);
sl@0
   242
	TEST2(r, KErrNone);
sl@0
   243
	if ( meta !=  1)
sl@0
   244
		{
sl@0
   245
		TheTest.Printf(_L("Key: 0x%x, meta is %d"), KDefMeta0SingleMeta1Key, meta);
sl@0
   246
		ret = EFalse;
sl@0
   247
		}
sl@0
   248
sl@0
   249
	r = rep->GetMeta(KDefMeta1SingleMeta0Key, meta);
sl@0
   250
	TEST2(r, KErrNone);
sl@0
   251
	if ( meta !=  0)
sl@0
   252
		{
sl@0
   253
		TheTest.Printf(_L("Key: 0x%x, meta is %d"), KDefMeta1SingleMeta0Key, meta);
sl@0
   254
		ret = EFalse;
sl@0
   255
		}
sl@0
   256
sl@0
   257
	r = rep->GetMeta(KDefMeta1SingleMeta1Key, meta);
sl@0
   258
	TEST2(r, KErrNone);
sl@0
   259
	if ( meta !=  1)
sl@0
   260
		{
sl@0
   261
		TheTest.Printf(_L("Key: 0x%x, meta is %d"), KDefMeta1SingleMeta1Key, meta);
sl@0
   262
		ret = EFalse;
sl@0
   263
		}
sl@0
   264
sl@0
   265
	CleanupStack::PopAndDestroy(rep);
sl@0
   266
	return ret;
sl@0
   267
	}
sl@0
   268
sl@0
   269
//============================================
sl@0
   270
void TMetadataTest::RunBasicGetMetaTestsL()
sl@0
   271
	{
sl@0
   272
	TheTest.Next(_L("Basic functional tests on the GetMeta API\r\n"));
sl@0
   273
sl@0
   274
	CRepository* rep = CRepository::NewLC(KUidTestRepository);
sl@0
   275
sl@0
   276
	TUint32 meta;
sl@0
   277
sl@0
   278
	// GetMeta on non-existing key.
sl@0
   279
	const TUint32 KNonExistingKey = 0xFACE;
sl@0
   280
	TInt r = rep->GetMeta(KNonExistingKey, meta);
sl@0
   281
	TEST2(r, KErrNotFound);
sl@0
   282
sl@0
   283
	// Missing capability to read meta of following key.
sl@0
   284
	r = rep->GetMeta(KPlatsecFailureKey, meta);
sl@0
   285
	TEST2(r, KErrPermissionDenied);
sl@0
   286
sl@0
   287
	// GetMeta in transaction
sl@0
   288
	r = rep->StartTransaction(CRepository::EConcurrentReadWriteTransaction);
sl@0
   289
	TEST2(r, KErrNone);
sl@0
   290
	rep->CleanupCancelTransactionPushL();
sl@0
   291
sl@0
   292
	r = rep->Set(KMissingSingleMetaKey, KIntOrigValue+1);
sl@0
   293
	TEST2(r, KErrNone);
sl@0
   294
sl@0
   295
	r = rep->GetMeta(KMissingSingleMetaKey, meta);
sl@0
   296
	TEST2(r, KErrNone);
sl@0
   297
	TEST2(meta, KRange2DefaultMeta);
sl@0
   298
sl@0
   299
	CleanupStack::PopAndDestroy(); // cancel transaction
sl@0
   300
sl@0
   301
	CleanupStack::PopAndDestroy(rep);
sl@0
   302
	}
sl@0
   303
sl@0
   304
//============================================
sl@0
   305
void TMetadataTest::RunMoveTestL()
sl@0
   306
	{
sl@0
   307
	TheTest.Next(_L("Metadata Move settings test\r\n"));
sl@0
   308
sl@0
   309
	const TUint32 KDefRangeKeyForCreate = 0x3A;
sl@0
   310
	const TUint32 KRange2KeyForCreate   = 0x2A;
sl@0
   311
	const TUint32 KDefRangeKeyForMove   = 0x3B;
sl@0
   312
	const TUint32 KRange2KeyForMove     = 0x2B;
sl@0
   313
sl@0
   314
	CRepository* rep = CRepository::NewLC(KUidTestRepository);
sl@0
   315
sl@0
   316
	TInt r = rep->StartTransaction(CRepository::EConcurrentReadWriteTransaction);
sl@0
   317
	TEST2(r, KErrNone);
sl@0
   318
	rep->CleanupCancelTransactionPushL();
sl@0
   319
sl@0
   320
	r = rep->Create(KDefRangeKeyForCreate, KIntOrigValue);
sl@0
   321
	TEST2(r, KErrNone);
sl@0
   322
sl@0
   323
	r = rep->Create(KRange2KeyForCreate, KIntOrigValue);
sl@0
   324
	TEST2(r, KErrNone);
sl@0
   325
sl@0
   326
	CleanupStack::Pop(); // transaction
sl@0
   327
	TUint32 errKey;
sl@0
   328
	r = rep->CommitTransaction(errKey);
sl@0
   329
	TEST2(r, KErrNone);
sl@0
   330
sl@0
   331
	// Check that the keys are created with correct meta
sl@0
   332
sl@0
   333
	TUint32 meta;
sl@0
   334
	// This key is not covered by any rangemeta. The global
sl@0
   335
	// default meta should be used.
sl@0
   336
	r = rep->GetMeta(KDefRangeKeyForCreate, meta);
sl@0
   337
	TEST2(r, KErrNone);
sl@0
   338
	TEST2(meta, KGlobalDefaultMeta);
sl@0
   339
sl@0
   340
	// This key is covered by a rangemeta.
sl@0
   341
	r = rep->GetMeta(KRange2KeyForCreate, meta);
sl@0
   342
	TEST2(r, KErrNone);
sl@0
   343
	TEST2(meta, KRange2DefaultMeta);
sl@0
   344
sl@0
   345
	// move the created keys to different ranges
sl@0
   346
	r = rep->StartTransaction(CRepository::EConcurrentReadWriteTransaction);
sl@0
   347
	TEST2(r, KErrNone);
sl@0
   348
	rep->CleanupCancelTransactionPushL();
sl@0
   349
sl@0
   350
	const TUint32 KMoveMask = 0x3F;
sl@0
   351
	r = rep->Move(KDefRangeKeyForCreate, KRange2KeyForMove, KMoveMask,
sl@0
   352
			errKey);
sl@0
   353
	TEST2(r, KErrNone);
sl@0
   354
sl@0
   355
	r = rep->Move(KRange2KeyForCreate, KDefRangeKeyForMove, KMoveMask,
sl@0
   356
			errKey);
sl@0
   357
	TEST2(r, KErrNone);
sl@0
   358
sl@0
   359
	CleanupStack::Pop(); // transaction
sl@0
   360
	r = rep->CommitTransaction(errKey);
sl@0
   361
	TEST2(r, KErrNone);
sl@0
   362
sl@0
   363
	// This key is moved from range where rangemeta is 2 to range
sl@0
   364
	// where meta is defined by the global default meta.
sl@0
   365
	r = rep->GetMeta(KDefRangeKeyForMove, meta);
sl@0
   366
	TEST2(r, KErrNone);
sl@0
   367
	TEST2(meta, KGlobalDefaultMeta);
sl@0
   368
sl@0
   369
	// This key is moved from range where meta is defined by the
sl@0
   370
	// global default meta to a range where rangemeta is 2.
sl@0
   371
	r = rep->GetMeta(KRange2KeyForMove, meta);
sl@0
   372
	TEST2(r, KErrNone);
sl@0
   373
	TEST2(meta, KRange2DefaultMeta);
sl@0
   374
sl@0
   375
sl@0
   376
	// Test Move a key to a position which has just been deleted but
sl@0
   377
	// not yet commited.
sl@0
   378
sl@0
   379
	// Create two keys to be moved. To save typing, no transaction.
sl@0
   380
	r = rep->Create(KDefRangeKeyForCreate, KIntOrigValue);
sl@0
   381
	TEST2(r, KErrNone);
sl@0
   382
	r = rep->Create(KRange2KeyForCreate, KIntOrigValue);
sl@0
   383
	TEST2(r, KErrNone);
sl@0
   384
sl@0
   385
	r = rep->StartTransaction(CRepository::EConcurrentReadWriteTransaction);
sl@0
   386
	TEST2(r, KErrNone);
sl@0
   387
	rep->CleanupCancelTransactionPushL();
sl@0
   388
sl@0
   389
	// delete the targeted keys but do not commit
sl@0
   390
	r = rep->Delete(KDefRangeKeyForMove);
sl@0
   391
	TEST2(r, KErrNone);
sl@0
   392
	r = rep->Delete(KRange2KeyForMove);
sl@0
   393
	TEST2(r, KErrNone);
sl@0
   394
sl@0
   395
	// move the created keys to target positions
sl@0
   396
	r = rep->Move(KDefRangeKeyForCreate, KRange2KeyForMove, KMoveMask,
sl@0
   397
			errKey);
sl@0
   398
	TEST2(r, KErrNone);
sl@0
   399
	r = rep->Move(KRange2KeyForCreate, KDefRangeKeyForMove, KMoveMask,
sl@0
   400
			errKey);
sl@0
   401
	TEST2(r, KErrNone);
sl@0
   402
sl@0
   403
	CleanupStack::Pop(); // transaction
sl@0
   404
	r = rep->CommitTransaction(errKey);
sl@0
   405
	TEST2(r, KErrNone);
sl@0
   406
sl@0
   407
sl@0
   408
	// This key is moved from range where rangemeta is 2 to range
sl@0
   409
	// where meta is defined by the global default meta.
sl@0
   410
	r = rep->GetMeta(KDefRangeKeyForMove, meta);
sl@0
   411
	TEST2(r, KErrNone);
sl@0
   412
	TEST2(meta, KGlobalDefaultMeta);
sl@0
   413
sl@0
   414
	// This key is moved from range where meta is defined by the
sl@0
   415
	// global default meta to a range where rangemeta is 2.
sl@0
   416
	r = rep->GetMeta(KRange2KeyForMove, meta);
sl@0
   417
	TEST2(r, KErrNone);
sl@0
   418
	TEST2(meta, KRange2DefaultMeta);
sl@0
   419
sl@0
   420
	// Test Move a key to a position which has a setting defined
sl@0
   421
	// in the INI file. The metadata of this pre-existing key
sl@0
   422
	// is permanently attached to that key position and takes
sl@0
   423
	// precedent over defaultmeta.
sl@0
   424
sl@0
   425
	// Create the setting to be moved.
sl@0
   426
	r = rep->StartTransaction(CRepository::EConcurrentReadWriteTransaction);
sl@0
   427
	TEST2(r, KErrNone);
sl@0
   428
	rep->CleanupCancelTransactionPushL();
sl@0
   429
sl@0
   430
	r = rep->Create(KRange2KeyForCreate, KIntOrigValue);
sl@0
   431
	TEST2(r, KErrNone);
sl@0
   432
sl@0
   433
	// delete the key occuping the destination of the move.
sl@0
   434
	r = rep->Delete(KRange2KeyWithMeta4);
sl@0
   435
	TEST2(r, KErrNone);
sl@0
   436
sl@0
   437
	CleanupStack::Pop(); // transaction
sl@0
   438
	r = rep->CommitTransaction(errKey);
sl@0
   439
	TEST2(r, KErrNone);
sl@0
   440
sl@0
   441
	// Verify target has been deleted.
sl@0
   442
	TInt a;
sl@0
   443
	r = rep->Get(KRange2KeyWithMeta4, a);
sl@0
   444
	TEST2(r, KErrNotFound);
sl@0
   445
sl@0
   446
	// move the created keys to target positions
sl@0
   447
	r = rep->Move(KRange2KeyForCreate, KRange2KeyWithMeta4, KMoveMask,
sl@0
   448
			errKey);
sl@0
   449
	TEST2(r, KErrNone);
sl@0
   450
sl@0
   451
	// This key is moved within range where rangemeta is 2.
sl@0
   452
	// Target position of the Move has a setting defined
sl@0
   453
	// in the INI file. The metadata of this pre-existing key
sl@0
   454
	// is permanently attached to that key position and takes
sl@0
   455
	// precedent over the rangemeta.
sl@0
   456
	r = rep->GetMeta(KRange2KeyWithMeta4, meta);
sl@0
   457
	TEST2(r, KErrNone);
sl@0
   458
	TEST2(meta, KMetaAtKeyPos24);
sl@0
   459
sl@0
   460
	// cleanup
sl@0
   461
	r = rep->Reset();
sl@0
   462
	TEST2(r, KErrNone);
sl@0
   463
sl@0
   464
	CleanupStack::PopAndDestroy(rep);
sl@0
   465
	}
sl@0
   466
sl@0
   467
//============================================
sl@0
   468
void TMetadataTest::RunSetTestL()
sl@0
   469
	{
sl@0
   470
	TheTest.Next(_L("Metadata Set settings test\r\n"));
sl@0
   471
sl@0
   472
	CRepository* rep = CRepository::NewLC(KUidTestRepository);
sl@0
   473
sl@0
   474
	TInt r;
sl@0
   475
	r = rep->StartTransaction(CRepository::EConcurrentReadWriteTransaction);
sl@0
   476
	TEST2(r, KErrNone);
sl@0
   477
	rep->CleanupCancelTransactionPushL();
sl@0
   478
sl@0
   479
	const TInt KNewValue = KIntOrigValue + 1;
sl@0
   480
	r = rep->Set(KMissingSingleMetaKey, KNewValue);
sl@0
   481
	TEST2(r, KErrNone);
sl@0
   482
	r = rep->Set(KDefMeta0SingleMeta0Key, KNewValue);
sl@0
   483
	TEST2(r, KErrNone);
sl@0
   484
	r = rep->Set(KDefMeta0SingleMeta1Key, KNewValue);
sl@0
   485
	TEST2(r, KErrNone);
sl@0
   486
	r = rep->Set(KDefMeta1SingleMeta0Key, KNewValue);
sl@0
   487
	TEST2(r, KErrNone);
sl@0
   488
	r = rep->Set(KDefMeta1SingleMeta1Key, KNewValue);
sl@0
   489
	TEST2(r, KErrNone);
sl@0
   490
sl@0
   491
	CleanupStack::Pop(); // transaction
sl@0
   492
	TUint32 keyInfo;
sl@0
   493
	r = rep->CommitTransaction(keyInfo);
sl@0
   494
	TEST2(r, KErrNone);
sl@0
   495
sl@0
   496
	// check that the Set has changed the settings.
sl@0
   497
	TInt a;
sl@0
   498
	r = rep->Get(KMissingSingleMetaKey, a);
sl@0
   499
	TEST2(r, KErrNone);
sl@0
   500
	TEST2(a, KNewValue);
sl@0
   501
sl@0
   502
	r = rep->Get(KDefMeta0SingleMeta0Key, a);
sl@0
   503
	TEST2(r, KErrNone);
sl@0
   504
	TEST2(a, KNewValue);
sl@0
   505
sl@0
   506
	r = rep->Get(KDefMeta0SingleMeta1Key, a);
sl@0
   507
	TEST2(r, KErrNone);
sl@0
   508
	TEST2(a, KNewValue);
sl@0
   509
sl@0
   510
	r = rep->Get(KDefMeta1SingleMeta0Key, a);
sl@0
   511
	TEST2(r, KErrNone);
sl@0
   512
	TEST2(a, KNewValue);
sl@0
   513
sl@0
   514
	r = rep->Get(KDefMeta1SingleMeta1Key, a);
sl@0
   515
	TEST2(r, KErrNone);
sl@0
   516
	TEST2(a, KNewValue);
sl@0
   517
sl@0
   518
	// Check the Set's have not change the metadata
sl@0
   519
	TEST(VerifyMetaDataUnchangedL());
sl@0
   520
sl@0
   521
	// Take this opportunity to Reset the keys to exercise the
sl@0
   522
	// Set-then-Reset path.
sl@0
   523
sl@0
   524
	// Transaction not available for Reset.
sl@0
   525
	r = rep->Reset(KMissingSingleMetaKey);
sl@0
   526
	TEST2(r, KErrNone);
sl@0
   527
	r = rep->Reset(KDefMeta0SingleMeta0Key);
sl@0
   528
	TEST2(r, KErrNone);
sl@0
   529
	r = rep->Reset(KDefMeta0SingleMeta1Key);
sl@0
   530
	TEST2(r, KErrNone);
sl@0
   531
	r = rep->Reset(KDefMeta1SingleMeta0Key);
sl@0
   532
	TEST2(r, KErrNone);
sl@0
   533
	r = rep->Reset(KDefMeta1SingleMeta1Key);
sl@0
   534
	TEST2(r, KErrNone);
sl@0
   535
sl@0
   536
	CleanupStack::PopAndDestroy(rep);
sl@0
   537
sl@0
   538
	TEST(VerifyMetaDataUnchangedL());
sl@0
   539
	}
sl@0
   540
sl@0
   541
void TMetadataTest::RunDeleteCreateTestL()
sl@0
   542
	{
sl@0
   543
	TheTest.Next(_L("Metadata Delete-Create settings test\r\n"));
sl@0
   544
sl@0
   545
	CRepository* rep = CRepository::NewLC(KUidTestRepository);
sl@0
   546
sl@0
   547
	TInt r;
sl@0
   548
	r = rep->StartTransaction(CRepository::EConcurrentReadWriteTransaction);
sl@0
   549
	TEST2(r, KErrNone);
sl@0
   550
	rep->CleanupCancelTransactionPushL();
sl@0
   551
sl@0
   552
	r = rep->Delete(KMissingSingleMetaKey);
sl@0
   553
	TEST2(r, KErrNone);
sl@0
   554
	r = rep->Delete(KDefMeta0SingleMeta0Key);
sl@0
   555
	TEST2(r, KErrNone);
sl@0
   556
	r = rep->Delete(KDefMeta0SingleMeta1Key);
sl@0
   557
	TEST2(r, KErrNone);
sl@0
   558
	r = rep->Delete(KDefMeta1SingleMeta0Key);
sl@0
   559
	TEST2(r, KErrNone);
sl@0
   560
	r = rep->Delete(KDefMeta1SingleMeta1Key);
sl@0
   561
	TEST2(r, KErrNone);
sl@0
   562
sl@0
   563
	CleanupStack::Pop(); // transaction
sl@0
   564
	TUint32 keyInfo;
sl@0
   565
	r = rep->CommitTransaction(keyInfo);
sl@0
   566
	TEST2(r, KErrNone);
sl@0
   567
sl@0
   568
	CleanupStack::PopAndDestroy(rep);
sl@0
   569
sl@0
   570
	// Now open the repository again and create the deleted keys.
sl@0
   571
	rep = CRepository::NewLC(KUidTestRepository);
sl@0
   572
sl@0
   573
	// Before Create, check if the Delete's actually happened.
sl@0
   574
	TInt a;
sl@0
   575
	r = rep->Get(KMissingSingleMetaKey, a);
sl@0
   576
	TEST2(r, KErrNotFound);
sl@0
   577
	r = rep->Get(KDefMeta0SingleMeta0Key, a);
sl@0
   578
	TEST2(r, KErrNotFound);
sl@0
   579
	r = rep->Get(KDefMeta0SingleMeta1Key, a);
sl@0
   580
	TEST2(r, KErrNotFound);
sl@0
   581
	r = rep->Get(KDefMeta1SingleMeta0Key, a);
sl@0
   582
	TEST2(r, KErrNotFound);
sl@0
   583
	r = rep->Get(KDefMeta1SingleMeta1Key, a);
sl@0
   584
	TEST2(r, KErrNotFound);
sl@0
   585
sl@0
   586
	r = rep->StartTransaction(CRepository::EConcurrentReadWriteTransaction);
sl@0
   587
	TEST2(r, KErrNone);
sl@0
   588
	rep->CleanupCancelTransactionPushL();
sl@0
   589
sl@0
   590
	r = rep->Create(KMissingSingleMetaKey, KIntOrigValue);
sl@0
   591
	TEST2(r, KErrNone);
sl@0
   592
	r = rep->Create(KDefMeta0SingleMeta0Key, KIntOrigValue);
sl@0
   593
	TEST2(r, KErrNone);
sl@0
   594
	r = rep->Create(KDefMeta0SingleMeta1Key, KIntOrigValue);
sl@0
   595
	TEST2(r, KErrNone);
sl@0
   596
	r = rep->Create(KDefMeta1SingleMeta0Key, KIntOrigValue);
sl@0
   597
	TEST2(r, KErrNone);
sl@0
   598
	r = rep->Create(KDefMeta1SingleMeta1Key, KIntOrigValue);
sl@0
   599
	TEST2(r, KErrNone);
sl@0
   600
sl@0
   601
	CleanupStack::Pop(); // transaction
sl@0
   602
	r = rep->CommitTransaction(keyInfo);
sl@0
   603
	TEST2(r, KErrNone);
sl@0
   604
sl@0
   605
	CleanupStack::PopAndDestroy(rep);
sl@0
   606
sl@0
   607
	TEST(VerifyMetaDataUnchangedL());
sl@0
   608
	}
sl@0
   609
sl@0
   610
//=================================================
sl@0
   611
void TMetadataTest::RunDeleteCreateTest2L()
sl@0
   612
	{
sl@0
   613
	TheTest.Next(_L("Metadata Delete-Create settings (uncommitted) test\r\n"));
sl@0
   614
sl@0
   615
	CRepository* rep = CRepository::NewLC(KUidTestRepository);
sl@0
   616
sl@0
   617
	TInt r;
sl@0
   618
	r = rep->StartTransaction(CRepository::EConcurrentReadWriteTransaction);
sl@0
   619
	TEST2(r, KErrNone);
sl@0
   620
	rep->CleanupCancelTransactionPushL();
sl@0
   621
sl@0
   622
	r = rep->Delete(KMissingSingleMetaKey);
sl@0
   623
	TEST2(r, KErrNone);
sl@0
   624
	r = rep->Delete(KDefMeta0SingleMeta0Key);
sl@0
   625
	TEST2(r, KErrNone);
sl@0
   626
	r = rep->Delete(KDefMeta0SingleMeta1Key);
sl@0
   627
	TEST2(r, KErrNone);
sl@0
   628
	r = rep->Delete(KDefMeta1SingleMeta0Key);
sl@0
   629
	TEST2(r, KErrNone);
sl@0
   630
	r = rep->Delete(KDefMeta1SingleMeta1Key);
sl@0
   631
	TEST2(r, KErrNone);
sl@0
   632
sl@0
   633
	// Next Create while Delete still in transaction.
sl@0
   634
	r = rep->Create(KMissingSingleMetaKey, KIntOrigValue);
sl@0
   635
	TEST2(r, KErrNone);
sl@0
   636
	r = rep->Create(KDefMeta0SingleMeta0Key, KIntOrigValue);
sl@0
   637
	TEST2(r, KErrNone);
sl@0
   638
	r = rep->Create(KDefMeta0SingleMeta1Key, KIntOrigValue);
sl@0
   639
	TEST2(r, KErrNone);
sl@0
   640
	r = rep->Create(KDefMeta1SingleMeta0Key, KIntOrigValue);
sl@0
   641
	TEST2(r, KErrNone);
sl@0
   642
	r = rep->Create(KDefMeta1SingleMeta1Key, KIntOrigValue);
sl@0
   643
	TEST2(r, KErrNone);
sl@0
   644
sl@0
   645
	// Make a dummy change in case the Delete/Create cancel each
sl@0
   646
	// other, ending up with nothing to commit.
sl@0
   647
	r = rep->Create(0xA5A5, KIntOrigValue);
sl@0
   648
	TEST2(r, KErrNone);
sl@0
   649
sl@0
   650
	CleanupStack::Pop(); // transaction
sl@0
   651
	TUint32 keyInfo;
sl@0
   652
	r = rep->CommitTransaction(keyInfo);
sl@0
   653
	TEST2(r, KErrNone);
sl@0
   654
	r = rep->Delete(0xA5A5);
sl@0
   655
	TEST2(r, KErrNone);
sl@0
   656
sl@0
   657
	CleanupStack::PopAndDestroy(rep);
sl@0
   658
sl@0
   659
	TEST(VerifyMetaDataUnchangedL());
sl@0
   660
	}
sl@0
   661
sl@0
   662
//===============================================
sl@0
   663
void TMetadataTest::RunDeleteResetTestL()
sl@0
   664
	{
sl@0
   665
	TheTest.Next(_L("Metadata Delete-Reset settings test\r\n"));
sl@0
   666
sl@0
   667
	CRepository* rep = CRepository::NewLC(KUidTestRepository);
sl@0
   668
sl@0
   669
	TInt r;
sl@0
   670
	r = rep->StartTransaction(CRepository::EConcurrentReadWriteTransaction);
sl@0
   671
	TEST2(r, KErrNone);
sl@0
   672
	rep->CleanupCancelTransactionPushL();
sl@0
   673
sl@0
   674
	r = rep->Delete(KMissingSingleMetaKey);
sl@0
   675
	TEST2(r, KErrNone);
sl@0
   676
	r = rep->Delete(KDefMeta0SingleMeta0Key);
sl@0
   677
	TEST2(r, KErrNone);
sl@0
   678
	r = rep->Delete(KDefMeta0SingleMeta1Key);
sl@0
   679
	TEST2(r, KErrNone);
sl@0
   680
	r = rep->Delete(KDefMeta1SingleMeta0Key);
sl@0
   681
	TEST2(r, KErrNone);
sl@0
   682
	r = rep->Delete(KDefMeta1SingleMeta1Key);
sl@0
   683
	TEST2(r, KErrNone);
sl@0
   684
sl@0
   685
	CleanupStack::Pop(); // transaction
sl@0
   686
	TUint32 keyInfo;
sl@0
   687
	r = rep->CommitTransaction(keyInfo);
sl@0
   688
	TEST2(r, KErrNone);
sl@0
   689
sl@0
   690
	CleanupStack::PopAndDestroy(rep);
sl@0
   691
sl@0
   692
	// check if the delete's actually happened
sl@0
   693
	rep = CRepository::NewLC(KUidTestRepository);
sl@0
   694
sl@0
   695
	TInt a;
sl@0
   696
	r = rep->Get(KMissingSingleMetaKey, a);
sl@0
   697
	TEST2(r, KErrNotFound);
sl@0
   698
	r = rep->Get(KDefMeta0SingleMeta0Key, a);
sl@0
   699
	TEST2(r, KErrNotFound);
sl@0
   700
	r = rep->Get(KDefMeta0SingleMeta1Key, a);
sl@0
   701
	TEST2(r, KErrNotFound);
sl@0
   702
	r = rep->Get(KDefMeta1SingleMeta0Key, a);
sl@0
   703
	TEST2(r, KErrNotFound);
sl@0
   704
	r = rep->Get(KDefMeta1SingleMeta1Key, a);
sl@0
   705
	TEST2(r, KErrNotFound);
sl@0
   706
sl@0
   707
	// Next Reset on each deleted key.
sl@0
   708
sl@0
   709
	// Transaction not available for Reset.
sl@0
   710
	r = rep->Reset(KMissingSingleMetaKey);
sl@0
   711
	TEST2(r, KErrNone);
sl@0
   712
	r = rep->Reset(KDefMeta0SingleMeta0Key);
sl@0
   713
	TEST2(r, KErrNone);
sl@0
   714
	r = rep->Reset(KDefMeta0SingleMeta1Key);
sl@0
   715
	TEST2(r, KErrNone);
sl@0
   716
	r = rep->Reset(KDefMeta1SingleMeta0Key);
sl@0
   717
	TEST2(r, KErrNone);
sl@0
   718
	r = rep->Reset(KDefMeta1SingleMeta1Key);
sl@0
   719
	TEST2(r, KErrNone);
sl@0
   720
sl@0
   721
	CleanupStack::PopAndDestroy(rep);
sl@0
   722
sl@0
   723
	TEST(VerifyMetaDataUnchangedL());
sl@0
   724
	}
sl@0
   725
sl@0
   726
/**
sl@0
   727
@SYMTestCaseID SYSLIB-CENTRALREPOSITORY-CT-1717
sl@0
   728
@SYMTestCaseDesc Test Set, Delete, Create and Reset on a key with meta of 0 while defaultmeta is non-zero.
sl@0
   729
@SYMTestPriority High
sl@0
   730
@SYMTestActions 1. Do a Set. Verify meta does not change. 2. Delete and Create the key. Verify the non-zero defaultmeta is used. 3. Delete and Reset the key. Verify meta is zero.
sl@0
   731
@SYMTestExpectedResults The test must not fail.
sl@0
   732
@SYMDEF INC086298
sl@0
   733
*/
sl@0
   734
LOCAL_C void INC086298L()
sl@0
   735
	{
sl@0
   736
	TheTest.Printf(_L("INC086298 - Setting with no backup meta value is backed up\r\n"));
sl@0
   737
sl@0
   738
	TMetadataTest metaDataTester;
sl@0
   739
	metaDataTester.InitialiseL();
sl@0
   740
sl@0
   741
	metaDataTester.RunBasicGetMetaTestsL();
sl@0
   742
sl@0
   743
	TheTest.Printf( _L("Metadata tests on .txt file\r\n") );
sl@0
   744
	metaDataTester.RunTestsL();
sl@0
   745
sl@0
   746
	TheTest.Printf( _L("Metadata tests on .cre file\r\n") );
sl@0
   747
	metaDataTester.InstallCreFileL();
sl@0
   748
	metaDataTester.RunTestsL();
sl@0
   749
	}
sl@0
   750
sl@0
   751
LOCAL_C void MainL()
sl@0
   752
	{
sl@0
   753
	TheTest.Start( _L( " @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-CT-1717 CentralRepository metadata test " ) );
sl@0
   754
	User::LeaveIfError(fs.Connect());
sl@0
   755
sl@0
   756
	CleanupClosePushL(fs);
sl@0
   757
sl@0
   758
    INC086298L();
sl@0
   759
sl@0
   760
	CleanupStack::PopAndDestroy(&fs);
sl@0
   761
sl@0
   762
	TheTest.End();
sl@0
   763
	TheTest.Close();
sl@0
   764
	}
sl@0
   765
sl@0
   766
TInt E32Main()
sl@0
   767
	{
sl@0
   768
	__UHEAP_MARK;
sl@0
   769
	CTrapCleanup* cleanup = CTrapCleanup::New();
sl@0
   770
	if ( !cleanup )
sl@0
   771
		return KErrNoMemory;
sl@0
   772
sl@0
   773
	TRAPD( err, MainL()  );
sl@0
   774
sl@0
   775
	delete cleanup;
sl@0
   776
	__UHEAP_MARKEND;
sl@0
   777
sl@0
   778
	return err;
sl@0
   779
	}