Update contrib.
1 // Copyright (c) 2008-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 #include <centralrepository.h>
22 RTest TheTest(_L("t_cenrep_perf test"));
23 CRepository* TheRepository = NULL;
24 const TUid KTestCenRepUid = {0xCCCCCC03};
25 _LIT(KFileName, "c:\\private\\10202be9\\persists\\cccccc03.cre");
27 ///////////////////////////////////////////////////////////////////////////////////////
31 enum TValType {EIntVal, ERealVal, EBinaryVal, EStringVal, EMetaVal};
32 enum TTestType {ESetTest, ECreateTest, EFindEqTest, EFindNeqTest, EResetTest};
35 const TUint32 KIntKey = 42011136ul;
36 const TUint32 KNewIntKey = 2374040320ul;
37 const TUint32 KNewIntKey2 = 2374040576ul;
38 const TInt KOldIntVal = 10;
39 const TInt KNewIntVal = KOldIntVal + 1;
40 const TUint32 KIntMeta = 0;
43 const TUint32 KRealKey = 2374041088ul;
44 const TUint32 KNewRealKey = 2374041344ul;
45 const TReal KOldRealVal = 0.1;
46 const TReal KNewRealVal = KOldRealVal + 1.0;
49 const TUint32 KBinKey = 42141952ul;
50 const TUint32 KNewBinKey = 2374040832ul;
51 _LIT8(KOldBinVal, "\x44\x00\x69\x00\x61\x00\x6c\x00\x4f\x00\x75\x00\x74\x00\x49\x00\x53\x00\x50\x00");
52 _LIT8(KNewBinVal, "\x44\x00\x69\x00\x61\x00\x6c\x00\x4f\x00\x75\x00\x74\x00\x49\x00\x53\x00\x50\x01");
55 const TUint32 KStrKey = 2374041600ul;
56 const TUint32 KNewStrKey = 2374041856ul;
57 _LIT(KOldStrVal, "hello");
58 _LIT(KNewStrVal, "goodbye");
62 const TUint32 KFindPartialKey = 0x08440000ul;
63 const TUint32 KFindMask = 0x0FFF0000ul;
64 const TInt KFindKeyCount = 15;
67 ///////////////////////////////////////////////////////////////////////////////////////
73 TInt err = fs.Delete(KFileName);
76 // it's fine if the file or path wasn't found as there's nothing to
77 // delete so return KErrNone
78 return (err == KErrNotFound || err == KErrPathNotFound) ? KErrNone : err;
81 ///////////////////////////////////////////////////////////////////////////////////////
87 // delete the CRE file to clear out any changes made during the test
91 ///////////////////////////////////////////////////////////////////////////////////////
93 //Test macros and functions
94 void Check(TInt aValue, TInt aLine)
99 RDebug::Print(_L("*** Test failure. Boolean expression evaluates to false.\r\n"));
100 TheTest(EFalse, aLine);
103 void Check2(TInt aValue, TInt aExpected, TInt aLine)
105 if(aValue != aExpected)
108 RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
109 TheTest(EFalse, aLine);
112 #define TEST(arg) ::Check((arg), __LINE__)
113 #define TEST2(aValue, aExpected) ::Check2(aValue, aExpected, __LINE__)
115 ///////////////////////////////////////////////////////////////////////////////////////
117 // leaves if it can't successfully delete the cre file if it exists
118 void CreateTestEnvL()
120 // delete the CRE file to clear out any changes leftover from previous test runs
121 User::LeaveIfError(DeleteCreFile());
123 TRAPD(err, TheRepository = CRepository::NewL(KTestCenRepUid));
124 TEST2(err, KErrNone);
128 //Prints aTicks parameter (converted to us)
129 void PrintStats(TUint32 aStartTicks, TUint32 aEndTicks)
131 static TInt freq = 0;
134 TEST2(HAL::Get(HAL::EFastCounterFrequency, freq), KErrNone);
136 TInt64 diffTicks = (TInt64)aEndTicks - (TInt64)aStartTicks;
139 diffTicks = KMaxTUint32 + diffTicks + 1;
141 const TInt KMicroSecIn1Sec = 1000000;
142 TInt32 us = (diffTicks * KMicroSecIn1Sec) / freq;
143 TheTest.Printf(_L("####Execution time: %d us\r\n"), us);
146 ///////////////////////////////////////////////////////////////////////////////////////
148 // Utility functions containing code common to multiple test cases
151 * Common code for calling Get() with old values
153 * @param aValType enum indicating which data type to test
154 * (EIntVal, ERealVal, EBinaryVal, EStringVal or EMetaVal-- any other value will return KErrArgument).
155 * @param aResult bool indicating whether the comparison was successful
156 * @return err code from Get()
158 TInt GetOldVal(TValType aValType, TBool& aResult)
171 err = TheRepository->Get(KIntKey, intVal);
172 aResult = (intVal == KOldIntVal);
176 err = TheRepository->Get(KRealKey, realVal);
177 aResult = (realVal == KOldRealVal);
181 err = TheRepository->Get(KBinKey, binVal);
182 aResult = (binVal == KOldBinVal);
186 err = TheRepository->Get(KStrKey, strVal);
187 aResult = (strVal == KOldStrVal);
191 err = TheRepository->GetMeta(KIntKey, metaVal);
192 aResult = (metaVal == KIntMeta);
204 * Common code for calling Get() with new values
206 * @param aValType enum indicating which data type to test
207 * (EIntVal, ERealVal, EBinaryVal or EStringVal -- any other value will return KErrArgument).
208 * @param aTestType enum defining whether Set() or Create() is being tested
209 * (ESetTest or ECreateTest -- anything else will return KErrArgument).
210 * @param aResult bool indicating whether the comparison was successful
211 * @return err code from Get()
213 TInt GetNewVal(TValType aValType, TTestType aTestType, TBool& aResult)
215 // check correct test type
216 if (aTestType != ECreateTest && aTestType != ESetTest)
231 err = TheRepository->Get(
232 (aTestType == ECreateTest ? KNewIntKey : KIntKey), intVal);
233 aResult = (intVal == KNewIntVal);
237 err = TheRepository->Get(
238 (aTestType == ECreateTest ? KNewRealKey : KRealKey), realVal);
239 aResult = (realVal == KNewRealVal);
243 err = TheRepository->Get(
244 (aTestType == ECreateTest ? KNewBinKey : KBinKey), binVal);
245 aResult = (binVal == KNewBinVal);
249 err = TheRepository->Get(
250 (aTestType == ECreateTest ? KNewStrKey : KStrKey), strVal);
251 aResult = (strVal == KNewStrVal);
255 // no meta testing on new setting so fall through
266 * Common code for calling Set()
268 * @param aValType enum indicating which data type to test
269 * (EIntVal, ERealVal, EBinaryVal or EStringVal -- any other value will return KErrArgument).
270 * @return err code from Set()
272 TInt SetNewVal(TValType aValType)
279 err = TheRepository->Set(KIntKey, KNewIntVal);
283 err = TheRepository->Set(KRealKey, KNewRealVal);
287 err = TheRepository->Set(KBinKey, KNewBinVal);
291 err = TheRepository->Set(KStrKey, KNewStrVal);
295 // no meta testing on new setting so fall through
306 * Common code for calling Create()
308 * @param aValType enum indicating which data type to test
309 * (EIntVal, ERealVal, EBinaryVal or EStringVal -- any other value will return KErrArgument).
310 * @return err code from Create()
312 TInt CreateNewSetting(TValType aValType)
319 err = TheRepository->Create(KNewIntKey, KNewIntVal);
323 err = TheRepository->Create(KNewRealKey, KNewRealVal);
327 err = TheRepository->Create(KNewBinKey, KNewBinVal);
331 err = TheRepository->Create(KNewStrKey, KNewStrVal);
335 // no meta testing on new setting so fall through
346 * Common code for calling Reset()
348 * @param aValType enum indicating which data type to test
349 * (EIntVal, ERealVal, EBinaryVal or EStringVal -- any other value will return KErrArgument).
350 * @return err code from Reset()
352 TInt ResetSetting(TValType aValType)
359 err = TheRepository->Reset(KIntKey);
363 err = TheRepository->Reset(KRealKey);
367 err = TheRepository->Reset(KBinKey);
371 err = TheRepository->Reset(KStrKey);
375 // no meta testing on new setting so fall through
386 * Common code for calling FindL()
388 * @param aStart Out parameter for start timer value
389 * @param aEnd Out parameter for end timer value
390 * @param aFound Out parameter for number of settings found
391 * @return err code from FindL()
393 TInt FindRangeL(TInt& aStart, TInt& aEnd, TInt& aFound)
395 RArray<TUint32> keys;
396 CleanupClosePushL(keys);
398 aStart = User::FastCounter();
399 TInt err = TheRepository->FindL(KFindPartialKey, KFindMask, keys);
400 aEnd = User::FastCounter();
402 aFound = keys.Count();
404 CleanupStack::PopAndDestroy(&keys);
411 * Common code for performing all the Get() tests
413 * @param aValType enum indicating which data type to test
414 * (EIntVal, ERealVal, EBinaryVal, EStringVal or EMetaVal -- any other value will fail with KErrArgument).
415 * @param aUseTransaction bool instructing whether to use a read-mode transaction or not
417 void DoGetTest(TValType aValType, TBool aUseTransaction = EFalse)
423 TUint32 start = User::FastCounter();
425 // start transaction, if required
426 err = aUseTransaction ? TheRepository->StartTransaction(CRepository::EReadTransaction) : err;
427 TEST2(err, KErrNone);
429 err = GetOldVal(aValType, result);
430 TEST2(err, KErrNone);
432 // end transaction, if required
433 err = aUseTransaction ? TheRepository->CommitTransaction(keyInfo) : err;
434 TEST2(err, KErrNone);
436 TUint32 end = User::FastCounter();
440 PrintStats(start, end);
445 * Common code for performing the Set() and Reset() tests for all datatypes
447 * @param aValType enum indicating which data type to test
448 * (EIntVal, ERealVal, EBinaryVal or EStringVal -- any other value will fail with KErrArgument).
449 * @param aTestType enum defining whether Set() or Reset() should be timed
451 void DoSetResetTest(TValType aValType, TTestType aTestType)
456 // Check we get the old expected value
457 err = GetOldVal(aValType, result);
458 TEST2(err, KErrNone);
465 start = aTestType == ESetTest ? User::FastCounter() : start;
466 err = SetNewVal(aValType);
467 end = aTestType == ESetTest ? User::FastCounter() : end;
468 TEST2(err, KErrNone);
470 // Test we get the new value to check it's worked
471 err = GetNewVal(aValType, ESetTest, result);
472 TEST2(err, KErrNone);
475 // Restore the old value
476 start = aTestType == EResetTest ? User::FastCounter() : start;
477 err = ResetSetting(aValType);
478 end = aTestType == EResetTest ? User::FastCounter() : end;
479 TEST2(err, KErrNone);
481 // Check reset's worked
482 err = GetOldVal(aValType, result);
483 TEST2(err, KErrNone);
486 PrintStats(start, end);
491 * Common code for performing all the Create() tests
493 * @param aValType enum indicating which data type to test
494 * (EIntVal, ERealVal, EBinaryVal, EStringVal, EMetaVal -- any other value will fail with KErrArgument).
496 void DoCreateTest(TValType aValType)
504 // Create the new setting
505 start = User::FastCounter();
506 err = CreateNewSetting(aValType);
507 end = User::FastCounter();
508 TEST2(err, KErrNone);
510 // Test we get the right value from the new setting to check it's worked
511 err = GetNewVal(aValType, ECreateTest, result);
512 TEST2(err, KErrNone);
515 PrintStats(start, end);
520 * Common code for performing all the FindEqL() and FindNeqL() tests
522 * @param aValType enum indicating which data type to test
523 * (EIntVal, ERealVal, EBinaryVal, EStringVal, EMetaVal -- any other value will fail with KErrArgument).
524 * @param aTestType enum defining whether FindEqL() or FindNeqL() should be timed
525 * (EFindEqTest or EFindNeqTest -- anything else will leave with KErrArgument).
527 void DoFindEqNeqTestL(TValType aValType, TTestType aTestType)
529 const TUint32 KPartialKey(0x8D800000);
530 const TUint32 KMask(0xFFF00000);
531 const TInt KFindNum(1);
532 const TInt KNotFindNum(15);
534 const TInt KIntFindVal(9999);
535 const TReal KRealFindVal(999.9);
536 _LIT8(KBinFindVal, "\xab\xcd\x99\x99");
537 _LIT(KStrFindVal, "abcd9999");
539 RArray<TUint32> results;
540 CleanupClosePushL(results);
542 TInt expectedCount(0);
546 expectedCount = KFindNum;
550 expectedCount = KNotFindNum;
554 // wrong test type passed in
555 User::Leave(KErrArgument);
560 TUint32 start = User::FastCounter();
564 err = (aTestType == EFindEqTest) ?
565 TheRepository->FindEqL(KPartialKey, KMask, KIntFindVal, results) :
566 TheRepository->FindNeqL(KPartialKey, KMask, KIntFindVal, results);
570 err = (aTestType == EFindEqTest) ?
571 TheRepository->FindEqL(KPartialKey, KMask, KRealFindVal, results) :
572 TheRepository->FindNeqL(KPartialKey, KMask, KRealFindVal, results);
576 err = (aTestType == EFindEqTest) ?
577 TheRepository->FindEqL(KPartialKey, KMask, KBinFindVal, results) :
578 TheRepository->FindNeqL(KPartialKey, KMask, KBinFindVal, results);
582 err = (aTestType == EFindEqTest) ?
583 TheRepository->FindEqL(KPartialKey, KMask, KStrFindVal, results) :
584 TheRepository->FindNeqL(KPartialKey, KMask, KStrFindVal, results);
588 // no meta testing on new setting so fall through
594 TUint32 end = User::FastCounter();
596 // Test there was no error and that we found the expected number
597 TEST2(err, KErrNone);
598 TEST(results.Count() == expectedCount);
600 CleanupStack::PopAndDestroy(&results);
602 PrintStats(start, end);
605 ///////////////////////////////////////////////////////////////////////////////////////
606 ///////////////////////////////////////////////////////////////////////////////////////
611 @SYMTestCaseID PDS-CENTRALREPOSITORY-UT-4047
612 @SYMTestCaseDesc CRepository::Get(TUint32 aKey, TInt& aValue) - performance test
613 The test measures the time needed for retrieving of a single integer setting.
614 @SYMTestPriority High
615 @SYMTestActions CRepository::Get(TUint32 aKey, TInt& aValue) - performance test
616 @SYMTestExpectedResults Test must not fail
626 @SYMTestCaseID PDS-CENTRALREPOSITORY-CT-4087
627 @SYMTestCaseDesc CRepository::Get(TUint32 aKey, TReal& aValue) - performance test
628 The test measures the time needed for retrieving of a single real setting,
629 witht the Get() wrapped in a read-mode transaction.
630 @SYMTestPriority High
631 @SYMTestActions CRepository::Get(TUint32 aKey, TReal& aValue)
632 @SYMTestExpectedResults Test must not fail
638 DoGetTest(ERealVal, ETrue);
643 @SYMTestCaseID PDS-CENTRALREPOSITORY-UT-4048
644 @SYMTestCaseDesc CRepository::Get(TUint32 aKey, TDes8& aValue) - performance test
645 The test measures the time needed for retrieving of a single 8-bit string setting.
646 @SYMTestPriority High
647 @SYMTestActions CRepository::Get(TUint32 aKey, TDes8& aValue) - performance test
648 @SYMTestExpectedResults Test must not fail
653 DoGetTest(EBinaryVal);
658 @SYMTestCaseID PDS-CENTRALREPOSITORY-CT-4088
659 @SYMTestCaseDesc CRepository::Get(TUint32 aKey, TDes8& aValue) - performance test
660 The test measures the time needed for retrieving of a single 8-bit string setting,
661 with the Get() wrapped in a read-mode transaction.
662 @SYMTestPriority High
663 @SYMTestActions CRepository::Get(TUint32 aKey, TDes8& aValue)
664 CRepository::StartTransaction(TTransactionMode aMode)
665 CRepository::CommitTransaction(TUint32 &aKeyInfo)
666 @SYMTestExpectedResults Test must not fail
670 void GetBinaryInTransactionTest()
672 DoGetTest(EBinaryVal, ETrue);
677 @SYMTestCaseID PDS-CENTRALREPOSITORY-CT-4089
678 @SYMTestCaseDesc CRepository::Get(TUint32 aKey, TDesC16& aValue) - performance test
679 The test measures the time needed for retrieving of a single 16-bit string setting.
680 @SYMTestPriority High
681 @SYMTestActions CRepository::Get(TUint32 aKey, TDesC16& aValue)
682 @SYMTestExpectedResults Test must not fail
688 DoGetTest(EStringVal, ETrue);
693 @SYMTestCaseID PDS-CENTRALREPOSITORY-CT-4090
694 @SYMTestCaseDesc CRepository::GetMeta(TUint32 aKey, TUint32& aMeta) - performance test
695 The test measures the time needed for retrieving metadata for a single setting.
696 @SYMTestPriority High
697 @SYMTestActions CRepository::GetMeta(TUint32 aKey, TUint32& aMeta)
698 @SYMTestExpectedResults Test must not fail
704 DoGetTest(EMetaVal, ETrue);
709 @SYMTestCaseID PDS-CENTRALREPOSITORY-CT-4091
710 @SYMTestCaseDesc CRepository::Set(TUint32 aKey, TInt aValue) - performance test
711 The test measures the time needed for setting a single integer setting.
712 @SYMTestPriority High
713 @SYMTestActions CRepository::Set(TUint32 aKey, TInt aValue)
714 @SYMTestExpectedResults Test must not fail
720 DoSetResetTest(EIntVal, ESetTest);
725 @SYMTestCaseID PDS-CENTRALREPOSITORY-CT-4092
726 @SYMTestCaseDesc CRepository::Set(TUint32 aKey, TReal aValue) - performance test
727 The test measures the time needed for setting a single real setting.
728 @SYMTestPriority High
729 @SYMTestActions CRepository::Set(TUint32 aKey, TReal aValue)
730 @SYMTestExpectedResults Test must not fail
736 DoSetResetTest(ERealVal, ESetTest);
741 @SYMTestCaseID PDS-CENTRALREPOSITORY-CT-4093
742 @SYMTestCaseDesc CRepository::Set(TUint32 aKey, TDes8& aValue) - performance test
743 The test measures the time needed for setting a single 8-bit string setting.
744 @SYMTestPriority High
745 @SYMTestActions CRepository::Set(TUint32 aKey, TDes8& aValue)
746 @SYMTestExpectedResults Test must not fail
752 DoSetResetTest(EBinaryVal, ESetTest);
757 @SYMTestCaseID PDS-CENTRALREPOSITORY-CT-4094
758 @SYMTestCaseDesc CRepository::Set(TUint32 aKey, TDesC16& aValue) - performance test
759 The test measures the time needed for setting a single 16-bit string setting.
760 @SYMTestPriority High
761 @SYMTestActions CRepository::Set(TUint32 aKey, TDesC16& aValue)
762 @SYMTestExpectedResults Test must not fail
768 DoSetResetTest(EStringVal, ESetTest);
773 @SYMTestCaseID PDS-CENTRALREPOSITORY-CT-4095
774 @SYMTestCaseDesc CRepository::Create(TUint32 aKey, TInt aValue) - performance test
775 The test measures the time needed for creating a new single integer setting.
776 @SYMTestPriority High
777 @SYMTestActions CRepository::Create(TUint32 aKey, TInt aValue)
778 @SYMTestExpectedResults Test must not fail
784 DoCreateTest(EIntVal);
789 @SYMTestCaseID PDS-CENTRALREPOSITORY-CT-4096
790 @SYMTestCaseDesc CRepository::Create(TUint32 aKey, TReal aValue) - performance test
791 The test measures the time needed for creating a new single real setting.
792 @SYMTestPriority High
793 @SYMTestActions CRepository::Create(TUint32 aKey, TReal aValue)
794 @SYMTestExpectedResults Test must not fail
798 void CreateRealTest()
800 DoCreateTest(ERealVal);
805 @SYMTestCaseID PDS-CENTRALREPOSITORY-CT-4097
806 @SYMTestCaseDesc CRepository::Create(TUint32 aKey, TDesC8& aValue) - performance test
807 The test measures the time needed for creating a new single 8-bit string setting.
808 @SYMTestPriority High
809 @SYMTestActions CRepository::Create(TUint32 aKey, TDesC8& aValue)
810 @SYMTestExpectedResults Test must not fail
814 void CreateBinaryTest()
816 DoCreateTest(EBinaryVal);
821 @SYMTestCaseID PDS-CENTRALREPOSITORY-CT-4098
822 @SYMTestCaseDesc CRepository::Create(TUint32 aKey, TDesC16& aValue) - performance test
823 The test measures the time needed for creating a new single 16-bit string setting.
824 @SYMTestPriority High
825 @SYMTestActions CRepository::Create(TUint32 aKey, TDesC16& aValue)
826 @SYMTestExpectedResults Test must not fail
830 void CreateStringTest()
832 DoCreateTest(EStringVal);
837 @SYMTestCaseID PDS-CENTRALREPOSITORY-UT-4049
838 @SYMTestCaseDesc CRepository::FindL(TUint32 aPartialKey, TUint32 aMask, RArray<TUint32>& aFoundKeys) - performance test
839 The test measures the time needed for retrieving of an array of keys matching the function arguments.
840 @SYMTestPriority High
841 @SYMTestActions CRepository::FindL(TUint32 aPartialKey, TUint32 aMask, RArray<TUint32>& aFoundKeys)
842 @SYMTestExpectedResults Test must not fail
851 TInt err = FindRangeL(start, end, found);
853 TEST2(err, KErrNone);
854 TEST2(found, KFindKeyCount);
856 PrintStats(start, end);
861 @SYMTestCaseID PDS-CENTRALREPOSITORY-CT-4099
862 @SYMTestCaseDesc CRepository::FindEqL(TUint32 aPartialKey, TUint32 aMask, TInt aValue, RArray< TUint32 > &aFoundKeys) - performance test
863 The test measures the time to find an int setting in an "equals" search on a range.
864 @SYMTestPriority High
865 @SYMTestActions CRepository::FindEqL(TUint32 aPartialKey, TUint32 aMask, TInt aValue, RArray< TUint32 > &aFoundKeys)
866 @SYMTestExpectedResults Test must not fail
870 void FindEqIntTestL()
872 DoFindEqNeqTestL(EIntVal, EFindEqTest);
877 @SYMTestCaseID PDS-CENTRALREPOSITORY-CT-4100
878 @SYMTestCaseDesc CRepository::FindEqL(TUint32 aPartialKey, TUint32 aMask, TReal aValue, RArray< TUint32 > &aFoundKeys) - performance test
879 The test measures the time to find a real setting in an "equals" search on a range.
880 @SYMTestPriority High
881 @SYMTestActions CRepository::FindEqL(TUint32 aPartialKey, TUint32 aMask, TReal aValue, RArray< TUint32 > &aFoundKeys)
882 @SYMTestExpectedResults Test must not fail
886 void FindEqRealTestL()
888 DoFindEqNeqTestL(ERealVal, EFindEqTest);
893 @SYMTestCaseID PDS-CENTRALREPOSITORY-CT-4101
894 @SYMTestCaseDesc CRepository::FindEqL(TUint32 aPartialKey, TUint32 aMask, TDesC8& aValue, RArray< TUint32 > &aFoundKeys) - performance test
895 The test measures the time to find an 8-bit string setting in an "equals" search on a range.
896 @SYMTestPriority High
897 @SYMTestActions CRepository::FindEqL(TUint32 aPartialKey, TUint32 aMask, TDesC8& aValue, RArray< TUint32 > &aFoundKeys)
898 @SYMTestExpectedResults Test must not fail
902 void FindEqBinaryTestL()
904 DoFindEqNeqTestL(EBinaryVal, EFindEqTest);
909 @SYMTestCaseID PDS-CENTRALREPOSITORY-CT-4102
910 @SYMTestCaseDesc CRepository::FindEqL(TUint32 aPartialKey, TUint32 aMask, TDesC16& aValue, RArray< TUint32 > &aFoundKeys) - performance test
911 The test measures the time to find an 16-bit string setting in an "equals" search on a range.
912 @SYMTestPriority High
913 @SYMTestActions CRepository::FindEqL(TUint32 aPartialKey, TUint32 aMask, TDesC16& aValue, RArray< TUint32 > &aFoundKeys)
914 @SYMTestExpectedResults Test must not fail
918 void FindEqStringTestL()
920 DoFindEqNeqTestL(EStringVal, EFindEqTest);
925 @SYMTestCaseID PDS-CENTRALREPOSITORY-CT-4103
926 @SYMTestCaseDesc CRepository::FindNeqL(TUint32 aPartialKey, TUint32 aMask, TInt aValue, RArray< TUint32 > &aFoundKeys) - performance test
927 The test measures the time to find an int setting in an "not equals" search on a range.
928 @SYMTestPriority High
929 @SYMTestActions CRepository::FindNeqL(TUint32 aPartialKey, TUint32 aMask, TInt aValue, RArray< TUint32 > &aFoundKeys)
930 @SYMTestExpectedResults Test must not fail
934 void FindNeqIntTestL()
936 DoFindEqNeqTestL(EIntVal, EFindNeqTest);
941 @SYMTestCaseID PDS-CENTRALREPOSITORY-CT-4104
942 @SYMTestCaseDesc CRepository::FindNeqL(TUint32 aPartialKey, TUint32 aMask, TReal aValue, RArray< TUint32 > &aFoundKeys) - performance test
943 The test measures the time to find a real setting in an "not equals" search on a range.
944 @SYMTestPriority High
945 @SYMTestActions CRepository::FindNeqL(TUint32 aPartialKey, TUint32 aMask, TReal aValue, RArray< TUint32 > &aFoundKeys)
946 @SYMTestExpectedResults Test must not fail
950 void FindNeqRealTestL()
952 DoFindEqNeqTestL(ERealVal, EFindNeqTest);
957 @SYMTestCaseID PDS-CENTRALREPOSITORY-CT-4105
958 @SYMTestCaseDesc CRepository::FindNeqL(TUint32 aPartialKey, TUint32 aMask, TDesC8& aValue, RArray< TUint32 > &aFoundKeys) - performance test
959 The test measures the time to find an 8-bit string setting in an "not equals" search on a range.
960 @SYMTestPriority High
961 @SYMTestActions CRepository::FindNeqL(TUint32 aPartialKey, TUint32 aMask, TDesC8& aValue, RArray< TUint32 > &aFoundKeys)
962 @SYMTestExpectedResults Test must not fail
966 void FindNeqBinaryTestL()
968 DoFindEqNeqTestL(EBinaryVal, EFindNeqTest);
973 @SYMTestCaseID PDS-CENTRALREPOSITORY-CT-4106
974 @SYMTestCaseDesc CRepository::FindNeqL(TUint32 aPartialKey, TUint32 aMask, TDesC16& aValue, RArray< TUint32 > &aFoundKeys) - performance test
975 The test measures the time to find an 16-bit string setting in an "not equals" search on a range.
976 @SYMTestPriority High
977 @SYMTestActions CRepository::FindNeqL(TUint32 aPartialKey, TUint32 aMask, TDesC16& aValue, RArray< TUint32 > &aFoundKeys)
978 @SYMTestExpectedResults Test must not fail
982 void FindNeqStringTestL()
984 DoFindEqNeqTestL(EStringVal, EFindNeqTest);
989 @SYMTestCaseID PDS-CENTRALREPOSITORY-CT-4107
990 @SYMTestCaseDesc Performance test that measures the time taken to retrieve data to rebuild a table of ints with 22 rows
991 and 8 columns, using successive calls of Find() with subsequent calls to Get for each key retrieved.
992 @SYMTestPriority High
993 @SYMTestActions CRepository::FindL(TUint32 aPartialKey, TUint32 aMask, RArray<TUint32>& aFoundKeys)
994 CRepository::Get(TUint32 aPartialKey, TUint32 aMask, RArray<TUint32>& aFoundKeys)
995 @SYMTestExpectedResults Test must not fail
999 void RetrieveTableTestL()
1001 TUint32 partialKeyData[] = {
1002 0x03950000, 0x03980000, 0x039A0000, 0x039E0000, 0x03A80000, 0x03A90000,
1003 0x03AA0000, 0x03AB0000, 0x03B50000, 0x03B60000, 0x03B70000, 0x03B80000,
1004 0x03B90000, 0x03BA0000, 0x03BB0000, 0x03BC0000, 0x03BD0000, 0x03BE0000,
1005 0x03BF0000, 0x03C00000, 0x03C10000, 0x03C20000
1007 const TInt KNumRows(22); // same as number of partialKeys in array above
1008 const TInt KNumCols(8); // expected number of columns per row
1009 const TUint32 KMask(0xFFFF0000); // match top 2 bytes
1011 RArray<TUint32> rowKeys(KNumCols); // set granularity to num cols
1012 CleanupClosePushL(rowKeys);
1014 TUint32 start = User::FastCounter();
1016 for (TInt i(0); i < KNumRows; ++i)
1018 // fetch all keys representing columns/cells in the row
1019 // matching the key range defined by the partial key
1020 TInt findErr = TheRepository->FindL(partialKeyData[i], KMask, rowKeys);
1021 TEST2(findErr, KErrNone);
1023 const TInt KColCount = rowKeys.Count();
1024 TEST(KColCount == KNumCols);
1026 // retrieve data for each column/cell represented
1027 // by a key from the row key range
1028 TInt value(KErrNotFound);
1029 for (TInt j(0); j < KColCount; ++j)
1031 TInt getErr = TheRepository->Get(rowKeys[j], value);
1032 TEST2(getErr, KErrNone);
1034 // data for these cells are 0 or 1
1035 TEST(value == 0 || value == 1);
1038 // clear our keys array for next row
1042 TUint32 end = User::FastCounter();
1043 PrintStats(start, end);
1045 CleanupStack::PopAndDestroy(&rowKeys);
1050 @SYMTestCaseID PDS-CENTRALREPOSITORY-CT-4108
1051 @SYMTestCaseDesc CRepository::Move(TUint32 aSourcePartialKey, TUint32 aTargetPartialKey, TUint32 aMask, TUint32 &aErrorKey) - performance test
1052 The test measures the time needed for moving a single integer setting.
1053 @SYMTestPriority High
1054 @SYMTestActions CRepository::Move(TUint32 aSourcePartialKey, TUint32 aTargetPartialKey, TUint32 aMask, TUint32 &aErrorKey)
1055 @SYMTestExpectedResults Test must not fail
1061 TUint32 errorKey(0);
1063 // Move a setting to a new key
1064 TUint32 start = User::FastCounter();
1065 TInt err = TheRepository->Move(KNewIntKey, KNewIntKey2, 0xFFFFFFFF, errorKey);
1066 TUint32 end = User::FastCounter();
1067 TEST2(err, KErrNone);
1069 // Test we get the right value from the new location
1071 err = TheRepository->Get(KNewIntKey2, val);
1072 TEST2(err, KErrNone);
1073 TEST2(val, KNewIntVal);
1075 // Test we get the KErrNotFound from the old location
1076 err = TheRepository->Get(KNewIntKey, val);
1077 TEST2(err, KErrNotFound);
1079 PrintStats(start, end);
1084 @SYMTestCaseID PDS-CENTRALREPOSITORY-CT-4109
1085 @SYMTestCaseDesc CRepository::Delete(TUint32 aKey) - performance test
1086 The test measures the time needed for deleting a single setting.
1087 @SYMTestPriority High
1088 @SYMTestActions CRepository::Delete(TUint32 aKey)
1089 @SYMTestExpectedResults Test must not fail
1095 // Test the setting is there and we get the right value
1097 TInt err = TheRepository->Get(KNewIntKey2, val);
1098 TEST2(err, KErrNone);
1099 TEST2(val, KNewIntVal);
1101 // Delete the setting
1102 TUint32 start = User::FastCounter();
1103 err = TheRepository->Delete(KNewIntKey2);
1104 TUint32 end = User::FastCounter();
1105 TEST2(err, KErrNone);
1107 // Test we get the KErrNotFound from the key now
1108 err = TheRepository->Get(KNewIntKey2, val);
1109 TEST2(err, KErrNotFound);
1111 PrintStats(start, end);
1115 @SYMTestCaseID PDS-CENTRALREPOSITORY-CT-4110
1116 @SYMTestCaseDesc CRepository::Delete(TUint32 aKey) - performance test
1117 The test measures the time needed for deleting a single setting.
1118 @SYMTestPriority High
1119 @SYMTestActions CRepository::Delete(TUint32 aKey)
1120 @SYMTestExpectedResults Test must not fail
1124 void DeleteRangeTestL()
1130 // Check we can find the settings in the range
1131 // (ignore timing data here as we're not timing find)
1132 TInt err = FindRangeL(start, end, found);
1133 TEST2(err, KErrNone);
1134 TEST2(found, KFindKeyCount);
1136 // Delete the setting
1137 TUint32 errorKey(0);
1138 start = User::FastCounter();
1139 err = TheRepository->Delete(KFindPartialKey, KFindMask, errorKey);
1140 end = User::FastCounter();
1141 TEST2(err, KErrNone);
1143 // Check we *can't* find the settings in the range now they've been deleted
1144 err = FindRangeL(start, end, found);
1145 TEST2(err, KErrNotFound);
1147 PrintStats(start, end);
1152 @SYMTestCaseID PDS-CENTRALREPOSITORY-CT-4111
1153 @SYMTestCaseDesc CRepository::Reset(TUint32 aKey) - performance test
1154 The test measures the time needed for resetting a single integer setting.
1155 @SYMTestPriority High
1156 @SYMTestActions CRepository::Reset(TUint32 aKey)
1157 @SYMTestExpectedResults Test must not fail
1163 DoSetResetTest(EIntVal, EResetTest);
1168 @SYMTestCaseID PDS-CENTRALREPOSITORY-CT-4112
1169 @SYMTestCaseDesc CRepository::Reset() - performance test
1170 The test measures the time needed for resetting the whole keyspace.
1171 @SYMTestPriority High
1172 @SYMTestActions CRepository::Reset()
1173 @SYMTestExpectedResults Test must not fail
1179 // Check we can get the value of the newly created binary setting
1181 TInt err = GetNewVal(EBinaryVal, ECreateTest, result);
1182 TEST2(err, KErrNone);
1185 // Reset the whole keyspace
1186 TInt start = User::FastCounter();
1187 TheRepository->Reset();
1188 TInt end = User::FastCounter();
1189 TEST2(err, KErrNone);
1191 // Check we *can't* get the value of the newly created binary setting
1192 // since it shouldn't exist anymore after the Reset()
1193 err = GetNewVal(EBinaryVal, ECreateTest, result);
1194 TEST2(err, KErrNotFound);
1195 PrintStats(start, end);
1198 ///////////////////////////////////////////////////////////////////////////////////////
1204 TheTest.Start(_L("@SYMTestCaseID:PDS-CENTRALREPOSITORY-UT-4047 Get Int test"));
1207 TheTest.Next(_L("@SYMTestCaseID:PDS-CENTRALREPOSITORY-CT-4087 Get Real test"));
1210 TheTest.Next(_L("@SYMTestCaseID:PDS-CENTRALREPOSITORY-UT-4048 Get Binary test"));
1213 TheTest.Next(_L("@SYMTestCaseID:PDS-CENTRALREPOSITORY-CT-4088 Get Binary in Transaction test"));
1214 GetBinaryInTransactionTest();
1216 TheTest.Next(_L("@SYMTestCaseID:PDS-CENTRALREPOSITORY-CT-4089 Get String test"));
1219 TheTest.Next(_L("@SYMTestCaseID:PDS-CENTRALREPOSITORY-CT-4090 GetMeta test"));
1222 TheTest.Next(_L("@SYMTestCaseID:PDS-CENTRALREPOSITORY-CT-4091 Set Int test"));
1225 TheTest.Next(_L("@SYMTestCaseID:PDS-CENTRALREPOSITORY-CT-4092 Set Real test"));
1228 TheTest.Next(_L("@SYMTestCaseID:PDS-CENTRALREPOSITORY-CT-4093 Set Binary test"));
1231 TheTest.Next(_L("@SYMTestCaseID:PDS-CENTRALREPOSITORY-CT-4094 Set String test"));
1234 TheTest.Next(_L("@SYMTestCaseID:PDS-CENTRALREPOSITORY-CT-4095 Create Int setting test"));
1237 TheTest.Next(_L("@SYMTestCaseID:PDS-CENTRALREPOSITORY-CT-4096 Create Real setting test"));
1240 TheTest.Next(_L("@SYMTestCaseID:PDS-CENTRALREPOSITORY-CT-4097 Create Binary setting test"));
1243 TheTest.Next(_L("@SYMTestCaseID:PDS-CENTRALREPOSITORY-CT-4098 Create String setting test"));
1246 TheTest.Next(_L("@SYMTestCaseID:PDS-CENTRALREPOSITORY-UT-4049 Find test"));
1249 TheTest.Next(_L("@SYMTestCaseID:PDS-CENTRALREPOSITORY-CT-4099 FindEq Int test"));
1252 TheTest.Next(_L("@SYMTestCaseID:PDS-CENTRALREPOSITORY-CT-4100 FindEq Real test"));
1255 TheTest.Next(_L("@SYMTestCaseID:PDS-CENTRALREPOSITORY-CT-4101 FindEq Binary test"));
1256 FindEqBinaryTestL();
1258 TheTest.Next(_L("@SYMTestCaseID:PDS-CENTRALREPOSITORY-CT-4102 FindEq String test"));
1259 FindEqStringTestL();
1261 TheTest.Next(_L("@SYMTestCaseID:PDS-CENTRALREPOSITORY-CT-4103 FindNeq Int test"));
1264 TheTest.Next(_L("@SYMTestCaseID:PDS-CENTRALREPOSITORY-CT-4104 FindNeq Real test"));
1267 TheTest.Next(_L("@SYMTestCaseID:PDS-CENTRALREPOSITORY-CT-4105 FindNeq Binary test"));
1268 FindNeqBinaryTestL();
1270 TheTest.Next(_L("@SYMTestCaseID:PDS-CENTRALREPOSITORY-CT-4106 FindNeq String test"));
1271 FindNeqStringTestL();
1273 TheTest.Next(_L("@SYMTestCaseID:PDS-CENTRALREPOSITORY-CT-4107 Retrieve structured data table test"));
1274 RetrieveTableTestL();
1276 TheTest.Next(_L("@SYMTestCaseID:PDS-CENTRALREPOSITORY-CT-4108 Move test"));
1279 TheTest.Next(_L("@SYMTestCaseID:PDS-CENTRALREPOSITORY-CT-4109 Delete test"));
1282 TheTest.Next(_L("@SYMTestCaseID:PDS-CENTRALREPOSITORY-CT-4110 Delete test"));
1285 TheTest.Next(_L("@SYMTestCaseID:PDS-CENTRALREPOSITORY-CT-4111 Reset Single test"));
1288 TheTest.Next(_L("@SYMTestCaseID:PDS-CENTRALREPOSITORY-CT-4112 Reset All test"));
1297 CTrapCleanup* tc = CTrapCleanup::New();
1298 TheTest(tc != NULL);
1302 TRAPD(err, CreateTestEnvL());
1303 TEST2(err, KErrNone);
1305 TRAP(err, DoTestsL());
1307 TEST2(err, KErrNone);
1316 User::Heap().Check();