Update contrib.
1 // Copyright (c) 2006-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.
18 #include <centralrepository.h>
19 #include "t_cenrep_helper.h"
22 RTest TheTest(_L("Central Repository Settings Tests"));
25 const TUid KUidTestRepository = { 0x00000005 };
26 const TInt KIntOrigValue = 1;
27 const TUint32 KGlobalDefaultMeta = 0;
28 const TUint32 KRange2DefaultMeta = 2;
29 const TUint32 KMetaAtKeyPos24 = 4;
31 const TUint32 KDefMeta0SingleMeta0Key = 0x1;
32 const TUint32 KDefMeta0SingleMeta1Key = 0x2;
33 const TUint32 KDefMeta1SingleMeta0Key = 0x10;
34 const TUint32 KDefMeta1SingleMeta1Key = 0x11;
35 const TUint32 KMissingSingleMetaKey = 0x20;
37 const TUint32 KPlatsecFailureKey = 0x21;
39 const TUint32 KRange2KeyWithMeta4 = 0x24;
41 _LIT( KSrcTxaPath, "z:\\private\\10202BE9\\00000005.txa" );
42 _LIT( KSrcCacheIniPath, "z:\\private\\10202BE9\\centrepcache.ini9" );
44 _LIT( KInstallTxtPath, "C:\\private\\10202BE9\\00000005.txt" );
45 _LIT( KInstallCrePath, "C:\\private\\10202BE9\\00000005.cre" );
46 _LIT( KPersistsCrePath, "C:\\private\\10202BE9\\persists\\00000005.cre" );
47 _LIT( KCacheIniPath, "C:\\private\\10202BE9\\centrep.ini" );
50 TPtrC metaTestFiles[] =
52 TPtrC(KInstallTxtPath),
53 TPtrC(KInstallCrePath),
54 TPtrC(KPersistsCrePath),
56 // This one last because we do not always delete it.
60 const TInt KNumMetaTestFiles = sizeof(metaTestFiles) / sizeof(TPtrC);
62 _LIT( KCentralRepositoryServerName, "Centralrepositorysrv");
64 //===========================================================
65 // Test macroses and functions
66 //===========================================================
68 LOCAL_C TInt DeleteFile(const TDesC& aFileName, CFileMan& aFileMan)
70 TInt r = aFileMan.Delete( aFileName );
71 if ( r != KErrNone && r != KErrNotFound && r != KErrPathNotFound )
78 LOCAL_C TInt DeleteFilesL(TPtrC aFileList[], TInt aNumFiles)
80 CFileMan* fm = CFileMan::NewL(fs);
81 CleanupStack::PushL( fm );
84 for (TInt i = 0; i < aNumFiles; i++)
86 TInt r = DeleteFile( aFileList[i], *fm );
92 CleanupStack::PopAndDestroy( fm );
96 LOCAL_C void TestCleanupL()
98 DeleteFilesL(metaTestFiles, KNumMetaTestFiles);
99 KillProcess(KCentralRepositoryServerName);
102 LOCAL_C void CheckL( TInt aValue, TInt aLine )
107 TheTest( EFalse, aLine );
111 LOCAL_C void CheckL( TInt aValue, TInt aExpected, TInt aLine )
113 if ( aValue != aExpected )
115 TheTest.Printf( _L( "*** Expected value: %d, got: %d\r\n"), aExpected, aValue );
117 TheTest( EFalse, aLine );
121 #define TEST(arg) ::CheckL((arg), __LINE__)
122 #define TEST2(aValue, aExpected) ::CheckL(aValue, aExpected, __LINE__)
124 LOCAL_C void CopyFileL(const TDesC& aSrc,
126 TBool aClearROAttrib)
128 CFileMan* fm = CFileMan::NewL( fs );
129 CleanupStack::PushL( fm );
131 TInt ret = fm->Copy(aSrc, aDest);
132 if (aClearROAttrib && (ret == KErrNone))
134 ret = fm->Attribs( aDest, KEntryAttArchive, KEntryAttReadOnly, TTime( 0 ), CFileMan::ERecurse );
137 User::LeaveIfError(ret);
139 CleanupStack::PopAndDestroy( fm );
142 //=============================================================
143 // class to encapsulate metadata test
147 inline TMetadataTest() {}
150 void InstallCreFileL();
153 void RunDeleteResetTestL();
154 void RunDeleteCreateTestL();
155 void RunDeleteCreateTest2L();
158 void RunBasicGetMetaTestsL();
160 TBool VerifyMetaDataUnchangedL();
163 //==========================================
164 TMetadataTest::~TMetadataTest()
166 TRAPD(err, ::TestCleanupL());
169 RDebug::Printf("err = %d in ~TMetadataTest.", err);
173 //==========================================
174 void TMetadataTest::InitialiseL()
177 User::After(1000000); // pause after KillProcess
178 ::CopyFileL(KSrcTxaPath, KInstallTxtPath, ETrue);
179 ::CopyFileL(KSrcCacheIniPath, KCacheIniPath, ETrue);
182 //==========================================
183 void TMetadataTest::InstallCreFileL()
185 // Ensure start with original 00000005.txa file.
186 // Be careful. Do not delete centrep.ini
187 ::DeleteFilesL(metaTestFiles, KNumMetaTestFiles - 1);
188 ::CopyFileL(KSrcTxaPath, KInstallTxtPath, ETrue);
190 CRepository* rep = CRepository::NewLC(KUidTestRepository);
192 // Create/Delete to persist the .txt to .cre
193 TInt r = rep->Create(0xA5A5, 1);
199 CleanupStack::PopAndDestroy(rep);
201 ::CopyFileL(KPersistsCrePath, KInstallCrePath, EFalse);
203 TPtrC onefile[1] = { TPtrC(KPersistsCrePath) };
204 ::DeleteFilesL(onefile, 1);
207 //==========================================
208 void TMetadataTest::RunTestsL()
211 RunDeleteResetTestL();
212 RunDeleteCreateTestL();
213 RunDeleteCreateTest2L();
217 //============================================
218 TBool TMetadataTest::VerifyMetaDataUnchangedL()
220 CRepository* rep = CRepository::NewLC(KUidTestRepository);
225 TInt r = rep->GetMeta(KMissingSingleMetaKey, meta);
227 if ( meta != KRange2DefaultMeta)
229 TheTest.Printf(_L("Key: 0x%x, meta is %d"), KMissingSingleMetaKey, meta);
233 r = rep->GetMeta(KDefMeta0SingleMeta0Key, meta);
237 TheTest.Printf(_L("Key: 0x%x, meta is %d"), KDefMeta0SingleMeta0Key, meta);
241 r = rep->GetMeta(KDefMeta0SingleMeta1Key, meta);
245 TheTest.Printf(_L("Key: 0x%x, meta is %d"), KDefMeta0SingleMeta1Key, meta);
249 r = rep->GetMeta(KDefMeta1SingleMeta0Key, meta);
253 TheTest.Printf(_L("Key: 0x%x, meta is %d"), KDefMeta1SingleMeta0Key, meta);
257 r = rep->GetMeta(KDefMeta1SingleMeta1Key, meta);
261 TheTest.Printf(_L("Key: 0x%x, meta is %d"), KDefMeta1SingleMeta1Key, meta);
265 CleanupStack::PopAndDestroy(rep);
269 //============================================
270 void TMetadataTest::RunBasicGetMetaTestsL()
272 TheTest.Next(_L("Basic functional tests on the GetMeta API\r\n"));
274 CRepository* rep = CRepository::NewLC(KUidTestRepository);
278 // GetMeta on non-existing key.
279 const TUint32 KNonExistingKey = 0xFACE;
280 TInt r = rep->GetMeta(KNonExistingKey, meta);
281 TEST2(r, KErrNotFound);
283 // Missing capability to read meta of following key.
284 r = rep->GetMeta(KPlatsecFailureKey, meta);
285 TEST2(r, KErrPermissionDenied);
287 // GetMeta in transaction
288 r = rep->StartTransaction(CRepository::EConcurrentReadWriteTransaction);
290 rep->CleanupCancelTransactionPushL();
292 r = rep->Set(KMissingSingleMetaKey, KIntOrigValue+1);
295 r = rep->GetMeta(KMissingSingleMetaKey, meta);
297 TEST2(meta, KRange2DefaultMeta);
299 CleanupStack::PopAndDestroy(); // cancel transaction
301 CleanupStack::PopAndDestroy(rep);
304 //============================================
305 void TMetadataTest::RunMoveTestL()
307 TheTest.Next(_L("Metadata Move settings test\r\n"));
309 const TUint32 KDefRangeKeyForCreate = 0x3A;
310 const TUint32 KRange2KeyForCreate = 0x2A;
311 const TUint32 KDefRangeKeyForMove = 0x3B;
312 const TUint32 KRange2KeyForMove = 0x2B;
314 CRepository* rep = CRepository::NewLC(KUidTestRepository);
316 TInt r = rep->StartTransaction(CRepository::EConcurrentReadWriteTransaction);
318 rep->CleanupCancelTransactionPushL();
320 r = rep->Create(KDefRangeKeyForCreate, KIntOrigValue);
323 r = rep->Create(KRange2KeyForCreate, KIntOrigValue);
326 CleanupStack::Pop(); // transaction
328 r = rep->CommitTransaction(errKey);
331 // Check that the keys are created with correct meta
334 // This key is not covered by any rangemeta. The global
335 // default meta should be used.
336 r = rep->GetMeta(KDefRangeKeyForCreate, meta);
338 TEST2(meta, KGlobalDefaultMeta);
340 // This key is covered by a rangemeta.
341 r = rep->GetMeta(KRange2KeyForCreate, meta);
343 TEST2(meta, KRange2DefaultMeta);
345 // move the created keys to different ranges
346 r = rep->StartTransaction(CRepository::EConcurrentReadWriteTransaction);
348 rep->CleanupCancelTransactionPushL();
350 const TUint32 KMoveMask = 0x3F;
351 r = rep->Move(KDefRangeKeyForCreate, KRange2KeyForMove, KMoveMask,
355 r = rep->Move(KRange2KeyForCreate, KDefRangeKeyForMove, KMoveMask,
359 CleanupStack::Pop(); // transaction
360 r = rep->CommitTransaction(errKey);
363 // This key is moved from range where rangemeta is 2 to range
364 // where meta is defined by the global default meta.
365 r = rep->GetMeta(KDefRangeKeyForMove, meta);
367 TEST2(meta, KGlobalDefaultMeta);
369 // This key is moved from range where meta is defined by the
370 // global default meta to a range where rangemeta is 2.
371 r = rep->GetMeta(KRange2KeyForMove, meta);
373 TEST2(meta, KRange2DefaultMeta);
376 // Test Move a key to a position which has just been deleted but
379 // Create two keys to be moved. To save typing, no transaction.
380 r = rep->Create(KDefRangeKeyForCreate, KIntOrigValue);
382 r = rep->Create(KRange2KeyForCreate, KIntOrigValue);
385 r = rep->StartTransaction(CRepository::EConcurrentReadWriteTransaction);
387 rep->CleanupCancelTransactionPushL();
389 // delete the targeted keys but do not commit
390 r = rep->Delete(KDefRangeKeyForMove);
392 r = rep->Delete(KRange2KeyForMove);
395 // move the created keys to target positions
396 r = rep->Move(KDefRangeKeyForCreate, KRange2KeyForMove, KMoveMask,
399 r = rep->Move(KRange2KeyForCreate, KDefRangeKeyForMove, KMoveMask,
403 CleanupStack::Pop(); // transaction
404 r = rep->CommitTransaction(errKey);
408 // This key is moved from range where rangemeta is 2 to range
409 // where meta is defined by the global default meta.
410 r = rep->GetMeta(KDefRangeKeyForMove, meta);
412 TEST2(meta, KGlobalDefaultMeta);
414 // This key is moved from range where meta is defined by the
415 // global default meta to a range where rangemeta is 2.
416 r = rep->GetMeta(KRange2KeyForMove, meta);
418 TEST2(meta, KRange2DefaultMeta);
420 // Test Move a key to a position which has a setting defined
421 // in the INI file. The metadata of this pre-existing key
422 // is permanently attached to that key position and takes
423 // precedent over defaultmeta.
425 // Create the setting to be moved.
426 r = rep->StartTransaction(CRepository::EConcurrentReadWriteTransaction);
428 rep->CleanupCancelTransactionPushL();
430 r = rep->Create(KRange2KeyForCreate, KIntOrigValue);
433 // delete the key occuping the destination of the move.
434 r = rep->Delete(KRange2KeyWithMeta4);
437 CleanupStack::Pop(); // transaction
438 r = rep->CommitTransaction(errKey);
441 // Verify target has been deleted.
443 r = rep->Get(KRange2KeyWithMeta4, a);
444 TEST2(r, KErrNotFound);
446 // move the created keys to target positions
447 r = rep->Move(KRange2KeyForCreate, KRange2KeyWithMeta4, KMoveMask,
451 // This key is moved within range where rangemeta is 2.
452 // Target position of the Move has a setting defined
453 // in the INI file. The metadata of this pre-existing key
454 // is permanently attached to that key position and takes
455 // precedent over the rangemeta.
456 r = rep->GetMeta(KRange2KeyWithMeta4, meta);
458 TEST2(meta, KMetaAtKeyPos24);
464 CleanupStack::PopAndDestroy(rep);
467 //============================================
468 void TMetadataTest::RunSetTestL()
470 TheTest.Next(_L("Metadata Set settings test\r\n"));
472 CRepository* rep = CRepository::NewLC(KUidTestRepository);
475 r = rep->StartTransaction(CRepository::EConcurrentReadWriteTransaction);
477 rep->CleanupCancelTransactionPushL();
479 const TInt KNewValue = KIntOrigValue + 1;
480 r = rep->Set(KMissingSingleMetaKey, KNewValue);
482 r = rep->Set(KDefMeta0SingleMeta0Key, KNewValue);
484 r = rep->Set(KDefMeta0SingleMeta1Key, KNewValue);
486 r = rep->Set(KDefMeta1SingleMeta0Key, KNewValue);
488 r = rep->Set(KDefMeta1SingleMeta1Key, KNewValue);
491 CleanupStack::Pop(); // transaction
493 r = rep->CommitTransaction(keyInfo);
496 // check that the Set has changed the settings.
498 r = rep->Get(KMissingSingleMetaKey, a);
502 r = rep->Get(KDefMeta0SingleMeta0Key, a);
506 r = rep->Get(KDefMeta0SingleMeta1Key, a);
510 r = rep->Get(KDefMeta1SingleMeta0Key, a);
514 r = rep->Get(KDefMeta1SingleMeta1Key, a);
518 // Check the Set's have not change the metadata
519 TEST(VerifyMetaDataUnchangedL());
521 // Take this opportunity to Reset the keys to exercise the
522 // Set-then-Reset path.
524 // Transaction not available for Reset.
525 r = rep->Reset(KMissingSingleMetaKey);
527 r = rep->Reset(KDefMeta0SingleMeta0Key);
529 r = rep->Reset(KDefMeta0SingleMeta1Key);
531 r = rep->Reset(KDefMeta1SingleMeta0Key);
533 r = rep->Reset(KDefMeta1SingleMeta1Key);
536 CleanupStack::PopAndDestroy(rep);
538 TEST(VerifyMetaDataUnchangedL());
541 void TMetadataTest::RunDeleteCreateTestL()
543 TheTest.Next(_L("Metadata Delete-Create settings test\r\n"));
545 CRepository* rep = CRepository::NewLC(KUidTestRepository);
548 r = rep->StartTransaction(CRepository::EConcurrentReadWriteTransaction);
550 rep->CleanupCancelTransactionPushL();
552 r = rep->Delete(KMissingSingleMetaKey);
554 r = rep->Delete(KDefMeta0SingleMeta0Key);
556 r = rep->Delete(KDefMeta0SingleMeta1Key);
558 r = rep->Delete(KDefMeta1SingleMeta0Key);
560 r = rep->Delete(KDefMeta1SingleMeta1Key);
563 CleanupStack::Pop(); // transaction
565 r = rep->CommitTransaction(keyInfo);
568 CleanupStack::PopAndDestroy(rep);
570 // Now open the repository again and create the deleted keys.
571 rep = CRepository::NewLC(KUidTestRepository);
573 // Before Create, check if the Delete's actually happened.
575 r = rep->Get(KMissingSingleMetaKey, a);
576 TEST2(r, KErrNotFound);
577 r = rep->Get(KDefMeta0SingleMeta0Key, a);
578 TEST2(r, KErrNotFound);
579 r = rep->Get(KDefMeta0SingleMeta1Key, a);
580 TEST2(r, KErrNotFound);
581 r = rep->Get(KDefMeta1SingleMeta0Key, a);
582 TEST2(r, KErrNotFound);
583 r = rep->Get(KDefMeta1SingleMeta1Key, a);
584 TEST2(r, KErrNotFound);
586 r = rep->StartTransaction(CRepository::EConcurrentReadWriteTransaction);
588 rep->CleanupCancelTransactionPushL();
590 r = rep->Create(KMissingSingleMetaKey, KIntOrigValue);
592 r = rep->Create(KDefMeta0SingleMeta0Key, KIntOrigValue);
594 r = rep->Create(KDefMeta0SingleMeta1Key, KIntOrigValue);
596 r = rep->Create(KDefMeta1SingleMeta0Key, KIntOrigValue);
598 r = rep->Create(KDefMeta1SingleMeta1Key, KIntOrigValue);
601 CleanupStack::Pop(); // transaction
602 r = rep->CommitTransaction(keyInfo);
605 CleanupStack::PopAndDestroy(rep);
607 TEST(VerifyMetaDataUnchangedL());
610 //=================================================
611 void TMetadataTest::RunDeleteCreateTest2L()
613 TheTest.Next(_L("Metadata Delete-Create settings (uncommitted) test\r\n"));
615 CRepository* rep = CRepository::NewLC(KUidTestRepository);
618 r = rep->StartTransaction(CRepository::EConcurrentReadWriteTransaction);
620 rep->CleanupCancelTransactionPushL();
622 r = rep->Delete(KMissingSingleMetaKey);
624 r = rep->Delete(KDefMeta0SingleMeta0Key);
626 r = rep->Delete(KDefMeta0SingleMeta1Key);
628 r = rep->Delete(KDefMeta1SingleMeta0Key);
630 r = rep->Delete(KDefMeta1SingleMeta1Key);
633 // Next Create while Delete still in transaction.
634 r = rep->Create(KMissingSingleMetaKey, KIntOrigValue);
636 r = rep->Create(KDefMeta0SingleMeta0Key, KIntOrigValue);
638 r = rep->Create(KDefMeta0SingleMeta1Key, KIntOrigValue);
640 r = rep->Create(KDefMeta1SingleMeta0Key, KIntOrigValue);
642 r = rep->Create(KDefMeta1SingleMeta1Key, KIntOrigValue);
645 // Make a dummy change in case the Delete/Create cancel each
646 // other, ending up with nothing to commit.
647 r = rep->Create(0xA5A5, KIntOrigValue);
650 CleanupStack::Pop(); // transaction
652 r = rep->CommitTransaction(keyInfo);
654 r = rep->Delete(0xA5A5);
657 CleanupStack::PopAndDestroy(rep);
659 TEST(VerifyMetaDataUnchangedL());
662 //===============================================
663 void TMetadataTest::RunDeleteResetTestL()
665 TheTest.Next(_L("Metadata Delete-Reset settings test\r\n"));
667 CRepository* rep = CRepository::NewLC(KUidTestRepository);
670 r = rep->StartTransaction(CRepository::EConcurrentReadWriteTransaction);
672 rep->CleanupCancelTransactionPushL();
674 r = rep->Delete(KMissingSingleMetaKey);
676 r = rep->Delete(KDefMeta0SingleMeta0Key);
678 r = rep->Delete(KDefMeta0SingleMeta1Key);
680 r = rep->Delete(KDefMeta1SingleMeta0Key);
682 r = rep->Delete(KDefMeta1SingleMeta1Key);
685 CleanupStack::Pop(); // transaction
687 r = rep->CommitTransaction(keyInfo);
690 CleanupStack::PopAndDestroy(rep);
692 // check if the delete's actually happened
693 rep = CRepository::NewLC(KUidTestRepository);
696 r = rep->Get(KMissingSingleMetaKey, a);
697 TEST2(r, KErrNotFound);
698 r = rep->Get(KDefMeta0SingleMeta0Key, a);
699 TEST2(r, KErrNotFound);
700 r = rep->Get(KDefMeta0SingleMeta1Key, a);
701 TEST2(r, KErrNotFound);
702 r = rep->Get(KDefMeta1SingleMeta0Key, a);
703 TEST2(r, KErrNotFound);
704 r = rep->Get(KDefMeta1SingleMeta1Key, a);
705 TEST2(r, KErrNotFound);
707 // Next Reset on each deleted key.
709 // Transaction not available for Reset.
710 r = rep->Reset(KMissingSingleMetaKey);
712 r = rep->Reset(KDefMeta0SingleMeta0Key);
714 r = rep->Reset(KDefMeta0SingleMeta1Key);
716 r = rep->Reset(KDefMeta1SingleMeta0Key);
718 r = rep->Reset(KDefMeta1SingleMeta1Key);
721 CleanupStack::PopAndDestroy(rep);
723 TEST(VerifyMetaDataUnchangedL());
727 @SYMTestCaseID SYSLIB-CENTRALREPOSITORY-CT-1717
728 @SYMTestCaseDesc Test Set, Delete, Create and Reset on a key with meta of 0 while defaultmeta is non-zero.
729 @SYMTestPriority High
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.
731 @SYMTestExpectedResults The test must not fail.
734 LOCAL_C void INC086298L()
736 TheTest.Printf(_L("INC086298 - Setting with no backup meta value is backed up\r\n"));
738 TMetadataTest metaDataTester;
739 metaDataTester.InitialiseL();
741 metaDataTester.RunBasicGetMetaTestsL();
743 TheTest.Printf( _L("Metadata tests on .txt file\r\n") );
744 metaDataTester.RunTestsL();
746 TheTest.Printf( _L("Metadata tests on .cre file\r\n") );
747 metaDataTester.InstallCreFileL();
748 metaDataTester.RunTestsL();
753 TheTest.Start( _L( " @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-CT-1717 CentralRepository metadata test " ) );
754 User::LeaveIfError(fs.Connect());
756 CleanupClosePushL(fs);
760 CleanupStack::PopAndDestroy(&fs);
769 CTrapCleanup* cleanup = CTrapCleanup::New();
773 TRAPD( err, MainL() );