Update contrib.
1 // Copyright (c) 2004-2010 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 "t_cenrep_helper.h"
17 #include <centralrepository.h>
20 #include "../cenrepsrv/srvreqs.h"
21 #include "../common/inc/srvdefs.h"
22 #include "../cenrepsrv/srvparams.h"
24 using namespace NCentralRepositoryConstants;
26 RTest TheTest(_L("Central Repository Tests"));
30 const TUid KUidTestRepository1 = { 0x00000001 };
31 const TUid KUidCreTestRepository1 = { 0x22222221 };
32 const TUid KUidTestRepository2 = { 0x00000002 };
34 const TUid KUidCorruptRepository = { 0x00000003 };
35 const TUid KUidResetTestRepository = { 0x00000004 };
37 const TUid KUidDriveCRepository = { 0x00000010 };
39 const TUid KUidDriveCOnlyRepository = { 0x00000013 };
41 const TUid KUidTestRepository3 = { 0x00000103 };
47 const TUint32 KNonExisitentSetting = 0;
49 const TInt KNumSettings = 9;
51 const TUint32 KInt1 = 1;
52 const TInt KInt1_InitialValue = 1;
53 const TInt KInt1_UpdatedValue = 73;
54 const TUint32 KInt3 = 257;
55 const TUint32 KNewInt = 1000;
57 const TUint32 KReal1 = 2;
58 const TReal KReal1_InitialValue = 2.732;
59 const TReal KReal1_UpdatedValue = 72.8;
60 const TUint32 KReal2 = 8;
61 const TReal KReal2_InitialValue = 1.5;
62 const TUint32 KReal3 = 17;
63 const TUint32 KNewReal = 2000;
65 const TUint32 KString1 = 5;
66 _LIT(KString1_InitialValue, "test\\\"string\"");
67 _LIT(KString1_UpdatedValue, "another one");
68 const TUint32 KString2 = 12;
69 _LIT8(KString2_8BitValue, "string");
71 const TUint32 KString12 = 12;
72 const TUint32 KNewString8 = 3000;
73 const TUint32 KNewString16 = 4000;
75 const TUint32 KNewSetting1 = 0x2001;
76 const TUint32 KNewSetting2 = 0x2002;
77 const TUint32 KNewSetting3 = 0x2003;
78 const TUint32 KNewSetting4 = 0x2004;
79 const TUint32 KNewSetting5 = 0x2005;
80 const TUint32 KNewSetting6 = 0x2006;
81 const TUint32 KNewSetting7 = 0x2007;
82 const TUint32 KNewSetting8 = 0x2008;
84 const TInt32 KNewSetting1Value = 4567;
85 const TReal KNewSetting2Value = 45.67;
86 _LIT(KNewSetting3Value, "a unicode str");
87 _LIT8(KNewSetting4Value, "an ascii str");
88 const TInt32 KNewSetting5Value = 2389;
89 const TReal KNewSetting6Value = 23.89;
90 _LIT(KNewSetting7Value, "another unicode str");
91 _LIT8(KNewSetting8Value, "another ascii str");
98 const TInt KIntB1 = 807;
99 const TInt KIntB1_InitialValue = 100;
103 ///////////////////////////////////////////////////////////////////////////////////////
104 ///////////////////////////////////////////////////////////////////////////////////////
105 //Test macroses and functions
107 LOCAL_C void CheckL(TInt aValue, TInt aLine)
112 TheTest(EFalse, aLine);
115 LOCAL_C void CheckL(TInt aValue, TInt aExpected, TInt aLine)
117 if(aValue != aExpected)
120 RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
121 TheTest(EFalse, aLine);
124 #define TEST(arg) ::CheckL((arg), __LINE__)
125 #define TEST2(aValue, aExpected) ::CheckL(aValue, aExpected, __LINE__)
127 ///////////////////////////////////////////////////////////////////////////////////////
128 ///////////////////////////////////////////////////////////////////////////////////////
130 LOCAL_C void KillCentRepServerL()
132 _LIT(KCentralRepositoryServerName, "Centralrepositorysrv");
133 _LIT(KProcessKillProcess, "t_processkillprocess.exe");
137 User::LeaveIfError(p.Create(KProcessKillProcess, KCentralRepositoryServerName));
139 // Asynchronous logon: completes when process terminates with process
143 User::WaitForRequest(stat);
145 TExitType exitType = p.ExitType();
146 TInt exitReason = p.ExitReason();
148 _LIT(KKillServerFailed, "Killing Central Repository Server Failed");
149 __ASSERT_ALWAYS(exitType == EExitKill, User::Panic(KKillServerFailed, exitReason));
152 User::LeaveIfError(exitReason);
155 //This function resets the KUidTestRepository1 repository
156 //to its intial state to remove any changes made to the repository during
158 LOCAL_C void ResetTestRepositoryL()
160 CRepository* repository;
162 User::LeaveIfNull(repository = CRepository::NewLC(KUidTestRepository1));
163 TInt r = repository->Reset();
165 CleanupStack::PopAndDestroy(repository);
168 //This function restores the state of the files required for this test
169 //Existing files are deleted and then the required files are copied
170 //back from the Z drive to the c drive
171 LOCAL_C void RestoreTestFilesL()
173 //Delete all files from C:\\private\\10202BE9\\persists\\ dir
174 //and C:\\private\\10202BE9\\ dir
178 User::LeaveIfError(fs.Connect());
179 CleanupClosePushL(fs);
181 CFileMan* fm = CFileMan::NewL(fs);
182 CleanupStack::PushL(fm);
184 // _LIT(KPersistTargetPath, "c:\\private\\10202BE9\\persists\\*.txt");
185 _LIT(KPersistTargetPath, "z:\\private\\10202BE9\\*.txt");
186 _LIT(KPersistSourcePath, "Z:\\private\\10202BE9\\*.txc");
187 _LIT(KInstallTargetPath, "C:\\private\\10202BE9\\*.txt");
188 _LIT(KInstallSourcePath, "Z:\\private\\10202BE9\\*.txi");
190 //copy test files from Z: to C:
191 CopyTestFilesL(*fm,KPersistSourcePath, KPersistTargetPath);
192 CopyTestFilesL(*fm,KInstallSourcePath, KInstallTargetPath);
194 CleanupStack::PopAndDestroy(2);
200 @SYMTestCaseID SYSLIB-CENTRALREPOSITORY-CT-1297
201 @SYMTestCaseDesc Tests for creation and opening a central repository
202 @SYMTestPriority High
203 @SYMTestActions Tests for CRepository::NewLC(),CRepository::Get() functions
204 @SYMTestExpectedResults Test must not fail
207 LOCAL_C void OpenRepositoryL()
209 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-CT-1297 "));
210 CRepository* repositoryA;
211 CRepository* repositoryB;
215 // When an attempt is made to open a central repository in this test the result will
216 // be that a new session (+ subsession) will be created with the server. For subsequent
217 // central repository openings subsessions are then created under the same server.
218 // Note that by placing the CRepository creation calls in the following order we
219 // are exercising among other things the following scenarios:
220 // 1. Session is opened and first subsession is created. Error occurs, whole session
222 // 2. Session is opened and first subsession is successfully created. 2nd subsession
223 // is opened. Error occurs with 2nd subsession. 2nd subsession is pulled down. Session
224 // and first sub-sesssion remain up. (DEF105089)
226 TRAP(r, CRepository::NewL(TUid::Null()));
227 if(OomTesting && r==KErrNoMemory)
228 User::Leave(KErrNoMemory);
229 TEST2(r, KErrNotFound);
231 repositoryB = CRepository::NewLC(KUidTestRepository2);
233 TRAP(r, CRepository::NewL(KUidCorruptRepository));
234 if(OomTesting && r==KErrNoMemory)
235 User::Leave(KErrNoMemory);
236 TEST2(r, KErrCorrupt);
238 repositoryA = CRepository::NewLC(KUidTestRepository1);
241 r = repositoryA->Get(KInt1, a);
243 TEST(a==KInt1_InitialValue);
245 r = repositoryB->Get(KIntB1, a);
247 TEST(a==KIntB1_InitialValue);
249 CleanupStack::PopAndDestroy(repositoryA);
251 r = repositoryB->Get(KIntB1, a);
253 TEST(a==KIntB1_InitialValue);
255 CleanupStack::PopAndDestroy(repositoryB);
259 @SYMTestCaseID SYSLIB-CENTRALREPOSITORY-CT-1298
260 @SYMTestCaseDesc Tests for CRepository's Integer,Real,String's Get and Set functions
261 @SYMTestPriority High
262 @SYMTestActions Tests for CRepository::Get(),CRepository::Set() functions
263 @SYMTestExpectedResults Test must not fail
266 LOCAL_C void GetSetL(const TUid& aUid)
268 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-CT-1298 "));
269 CRepository* repository;
270 User::LeaveIfNull(repository = CRepository::NewLC(aUid));
272 _LIT8(KString12_InitialValue, "string");
273 TPtrC8 p8(KString12_InitialValue);
275 _LIT(KString11_InitialValue, "string");
276 TPtrC p16(KString11_InitialValue);
286 TInt r = repository->Get(KNonExisitentSetting, i);
287 TEST2(r, KErrNotFound);
290 r = repository->Get(KReal1, i);
291 TEST2(r, KErrArgument);
294 r = repository->Get(KInt1, i);
296 TEST(i==KInt1_InitialValue);
298 r = repository->Get(KNonExisitentSetting, i);
299 TEST2(r, KErrNotFound);
301 r = repository->Set(KNonExisitentSetting, 10);
304 //close and reopen rep to check set is persisted
305 CleanupStack::PopAndDestroy(repository);
306 User::LeaveIfNull(repository = CRepository::NewLC(aUid));
308 r = repository->Get(KNonExisitentSetting, i);
312 r = repository->Delete(KNonExisitentSetting);
315 r = repository->Set(KReal1, 0);
316 TEST2(r, KErrArgument);
318 r = repository->Set(KInt1, KInt1_UpdatedValue);
321 //close and reopen rep to check set is persisted
322 CleanupStack::PopAndDestroy(repository);
323 User::LeaveIfNull(repository = CRepository::NewLC(aUid));
325 r = repository->Get(KInt1, i);
327 TEST(i==KInt1_UpdatedValue);
329 r = repository->Get(KInt1,str8);
330 TEST2(r, KErrArgument);
331 //checks if KInt was modified
332 r = repository->Get(KInt1, i);
334 TEST(i==KInt1_UpdatedValue);
336 r = repository->Set(KInt1, KString12_InitialValue);
337 TEST2(r, KErrArgument);
338 r = repository->Get(KInt1, i);
340 TEST(i==KInt1_UpdatedValue);
342 r = repository->Get(KInt1,str);
343 TEST2(r, KErrArgument);
344 //checks if KInt was modified
345 r = repository->Get(KInt1, i);
347 TEST(i==KInt1_UpdatedValue);
349 r = repository->Set(KInt1, KString11_InitialValue);
350 TEST2(r, KErrArgument);
351 r = repository->Get(KInt1, i);
353 TEST(i==KInt1_UpdatedValue);
360 r = repository->Get(KNonExisitentSetting, y);
361 TEST2(r, KErrNotFound);
364 r = repository->Get(KInt1, y);
365 TEST2(r, KErrArgument);
368 r = repository->Get(KReal1, y);
370 TEST(y==KReal1_InitialValue);
372 r = repository->Get(KNonExisitentSetting, y);
373 TEST2(r, KErrNotFound);
375 r = repository->Set(KNonExisitentSetting, 0.0);
378 //close and reopen rep to check set is persisted
379 CleanupStack::PopAndDestroy(repository);
380 User::LeaveIfNull(repository = CRepository::NewLC(aUid));
382 r = repository->Get(KNonExisitentSetting, y);
386 r = repository->Delete(KNonExisitentSetting);
389 r = repository->Set(KInt1, 0.0);
390 TEST2(r, KErrArgument);
392 r = repository->Set(KReal1, KReal1_UpdatedValue);
395 //close and reopen rep to check set is persisted
396 CleanupStack::PopAndDestroy(repository);
397 User::LeaveIfNull(repository = CRepository::NewLC(aUid));
399 r = repository->Get(KReal1, y);
401 TEST(y==KReal1_UpdatedValue);
403 r = repository->Get(KReal1,str8);
404 TEST2(r, KErrArgument);
405 //checks if KInt was modified
406 r = repository->Get(KReal1, y);
408 TEST(y==KReal1_UpdatedValue);
410 r = repository->Get(KReal1,str);
411 TEST2(r, KErrArgument);
412 //checks if KInt was modified
413 r = repository->Get(KReal1, y);
415 TEST(y==KReal1_UpdatedValue);
417 r = repository->Set(KReal1, KString12_InitialValue);
418 TEST2(r, KErrArgument);
419 r = repository->Get(KReal1, y);
421 TEST(y==KReal1_UpdatedValue);
423 r = repository->Set(KReal1, KString11_InitialValue);
424 TEST2(r, KErrArgument);
425 r = repository->Get(KReal1, y);
427 TEST(y==KReal1_UpdatedValue);
432 r = repository->Get(KNonExisitentSetting, str);
433 TEST2(r, KErrNotFound);
434 TEST(str.Length()==0);
436 r = repository->Get(KInt1, str);
437 TEST2(r, KErrArgument);
438 TEST(str.Length()==0);
440 r = repository->Get(KString1, str);
442 TEST(str==KString1_InitialValue);
445 r = repository->Get(KString1, tooShort);
446 TEST2(r, KErrOverflow);
447 TEST(tooShort.Length()==10);
449 r = repository->Get(KNonExisitentSetting, str);
450 TEST2(r, KErrNotFound);
452 r = repository->Set(KNonExisitentSetting, KString1_UpdatedValue);
455 //close and reopen rep to check set is persisted
456 CleanupStack::PopAndDestroy(repository);
457 User::LeaveIfNull(repository = CRepository::NewLC(aUid));
459 r = repository->Get(KNonExisitentSetting, str);
461 TEST(str==KString1_UpdatedValue);
463 r = repository->Delete(KNonExisitentSetting);
466 r = repository->Set(KInt1, str);
467 TEST2(r, KErrArgument);
469 r = repository->Set(KString1, KString1_UpdatedValue);
472 //close and reopen rep to check set is persisted
473 CleanupStack::PopAndDestroy(repository);
474 User::LeaveIfNull(repository = CRepository::NewLC(aUid));
476 r = repository->Get(KString1, str);
478 TEST(str==KString1_UpdatedValue);
480 //testing the new feature: creating an 8 bit string from ini file.
481 r = repository->Get(KString12, str8);
483 TEST(str8==KString12_InitialValue);
485 //get 8-bit string with int
486 r = repository->Get(KString12, i);
487 TEST2(r, KErrArgument);
488 r = repository->Get(KString12, str8);
490 TEST(str8==KString12_InitialValue);
492 //get 8-bit string with real
493 r = repository->Get(KString12, y);
494 TEST2(r, KErrArgument);
495 r = repository->Get(KString12, str8);
497 TEST(str8==KString12_InitialValue);
499 //set 8-bit string with int
500 r = repository->Set(KString12, i);
501 TEST2(r, KErrArgument);
502 r = repository->Get(KString12, str8);
504 TEST(str8==KString12_InitialValue);
506 //set 8-bit string with real
507 r = repository->Set(KString12, y);
508 TEST2(r, KErrArgument);
509 r = repository->Get(KString12, str8);
511 TEST(str8==KString12_InitialValue);
514 //get 16-bit string with int
515 r = repository->Get(KString1,i);
516 TEST2(r, KErrArgument);
517 //checks if a string was modified
518 r = repository->Get(KString1, str);
520 TEST(str==KString1_UpdatedValue);
522 //get 16-bit string with real
523 r = repository->Get(KString1,y);
524 TEST2(r, KErrArgument);
525 //checks if a string was modified
526 r = repository->Get(KString1, str);
528 TEST(str==KString1_UpdatedValue);
530 //set 16-bit string with int
531 r = repository->Set(KString1,i);
532 TEST2(r, KErrArgument);
533 //checks if a string was modified
534 r = repository->Get(KString1, str);
536 TEST(str==KString1_UpdatedValue);
538 //set 16-bit string with real
539 r = repository->Set(KString1,y);
540 TEST2(r, KErrArgument);
541 //checks if a string was modified
542 r = repository->Get(KString1, str);
544 TEST(str==KString1_UpdatedValue);
546 const TInt KStringLengthTooBig = KMaxUnicodeStringLength + 1;
547 TBuf<KStringLengthTooBig> tooBig;
548 tooBig.SetLength(KStringLengthTooBig);
549 r = repository->Set(KString1, tooBig);
550 TEST2(r, KErrArgument);
552 //- Test null descriptors
553 r = repository->Set(KString1, KNullDesC);
556 CleanupStack::PopAndDestroy(repository);
557 User::LeaveIfNull(repository = CRepository::NewLC(aUid));
559 r = repository->Get(KString1, str);
561 TEST(str==KNullDesC);
563 r = repository->Set(KString1, KString1_UpdatedValue);
566 //close and reopen rep to check set is persisted
567 CleanupStack::PopAndDestroy(repository);
568 User::LeaveIfNull(repository = CRepository::NewLC(aUid));
570 r = repository->Get(KString1, str);
572 TEST(str==KString1_UpdatedValue);
575 // Check that the SetGetParameters interface returns KErrNotSupported in the default macro configuration
576 #if !defined(__CENTREP_SERVER_PERFTEST__) && !defined(__CENTREP_SERVER_MEMTEST__) && !defined(__CENTREP_SERVER_CACHETEST__)
578 r = SetGetParameters(args);
579 TEST2(r, KErrNotSupported);
582 CleanupStack::PopAndDestroy(repository);
586 @SYMTestCaseID SYSLIB-CENTRALREPOSITORY-CT-1299
587 @SYMTestCaseDesc Tests for CRepository class's find operations
588 @SYMTestPriority High
589 @SYMTestActions Tests for CRepository::FindL(),CRepository::FindEqL(),CRepository::FindNeqL() functions
590 @SYMTestExpectedResults Test must not fail
595 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-CT-1299 "));
596 CRepository* repository;
597 User::LeaveIfNull(repository = CRepository::NewLC(KUidTestRepository1));
599 RArray<TUint32> foundIds;
602 TInt leaveCode = KErrNone;
603 TRAP(leaveCode, r = repository->FindL(0, 0, foundIds));
604 if (leaveCode != KErrNone)
607 if(OomTesting && r==KErrNoMemory)
610 User::Leave(KErrNoMemory);
614 TEST(foundIds.Count()==KNumSettings);
617 /***************************************************************************************/
619 /***************************************************************************************/
620 TRAP(leaveCode, r = repository->FindL(23, 0, foundIds)); // 23 - just a random number, value is not important
621 if (leaveCode != KErrNone)
623 if(OomTesting && r==KErrNoMemory)
626 User::Leave(KErrNoMemory);
629 TEST(foundIds.Count()==KNumSettings);
633 TRAP(leaveCode, r=repository->FindL(0, 2, foundIds));
634 if (leaveCode != KErrNone)
636 if(OomTesting && r==KErrNoMemory)
639 User::Leave(KErrNoMemory);
642 TEST(foundIds.Count()==6);
646 TRAP(leaveCode, r=repository->FindL(4, 6, foundIds));
647 if (leaveCode != KErrNone)
649 if(OomTesting && r==KErrNoMemory)
652 User::Leave(KErrNoMemory);
655 TEST(foundIds.Count()==2);
660 TRAP(leaveCode, r= repository->FindL(15, 15, foundIds));
661 if (leaveCode != KErrNone)
663 if(OomTesting && r==KErrNoMemory)
666 User::Leave(KErrNoMemory);
668 TEST2(r, KErrNotFound);
669 TEST(foundIds.Count()==0);
672 /***************************************************************************************/
673 //Tests for FindEqL for Int
674 /***************************************************************************************/
675 TRAP(leaveCode, r= repository->FindEqL(0, 0, KInt1_UpdatedValue, foundIds));
676 if (leaveCode != KErrNone)
678 if(OomTesting && r==KErrNoMemory)
681 User::Leave(KErrNoMemory);
684 TEST(foundIds.Count()==1);
685 TEST(foundIds[0]==KInt1);
689 TRAP(leaveCode, r= repository->FindEqL(0, 0, 0, foundIds));
690 if (leaveCode != KErrNone)
692 if(OomTesting && r==KErrNoMemory)
695 User::Leave(KErrNoMemory);
697 TEST2(r, KErrNotFound);
698 TEST(foundIds.Count()==0);
701 /***************************************************************************************/
702 //Tests for FindEqL for Real
703 /***************************************************************************************/
704 TRAP(leaveCode, r= repository->FindEqL(0, 0, KReal2_InitialValue, foundIds));
705 if (leaveCode != KErrNone)
707 if(OomTesting && r==KErrNoMemory)
710 User::Leave(KErrNoMemory);
713 TEST(foundIds.Count()==2);
714 TEST(foundIds[0]==KReal2);
715 TEST(foundIds[1]==KReal3);
719 TRAP(leaveCode, r= repository->FindEqL(0, 0, 7.7, foundIds));
720 if (leaveCode != KErrNone)
722 if(OomTesting && r==KErrNoMemory)
725 User::Leave(KErrNoMemory);
727 TEST2(r, KErrNotFound);
728 TEST(foundIds.Count()==0);
731 /***************************************************************************************/
732 //Tests for FindEqL for String
733 /***************************************************************************************/
734 TRAP(leaveCode, r= repository->FindEqL(0, 0, KString1_UpdatedValue, foundIds));
735 if (leaveCode != KErrNone)
737 if(OomTesting && r==KErrNoMemory)
740 User::Leave(KErrNoMemory);
743 TEST(foundIds.Count()==1);
744 TEST(foundIds[0]==KString1);
749 TRAP(leaveCode, r= repository->FindEqL(0, 0, KFoo, foundIds));
750 if (leaveCode != KErrNone)
752 if(OomTesting && r==KErrNoMemory)
755 User::Leave(KErrNoMemory);
757 TEST2(r, KErrNotFound);
758 TEST(foundIds.Count()==0);
760 /***************************************************************************************/
761 //Tests for FindEqL for String8
762 /***************************************************************************************/
763 TRAP(leaveCode, r= repository->FindEqL(0, 0, KString2_8BitValue, foundIds));
764 if (leaveCode != KErrNone)
766 if(OomTesting && r==KErrNoMemory)
769 User::Leave(KErrNoMemory);
772 TEST(foundIds.Count()==1);
773 TEST(foundIds[0]==KString2);
778 TRAP(leaveCode, r= repository->FindEqL(0, 0, KFoo8, foundIds));
779 if (leaveCode != KErrNone)
781 if(OomTesting && r==KErrNoMemory)
784 User::Leave(KErrNoMemory);
786 TEST2(r, KErrNotFound);
787 TEST(foundIds.Count()==0);
789 /***************************************************************************************/
790 //Tests for FindNeqL for Int
791 /***************************************************************************************/
792 TRAP(leaveCode, r= repository->FindNeqL(0, 0, KInt1_UpdatedValue, foundIds));
793 if (leaveCode != KErrNone)
795 if(OomTesting && r==KErrNoMemory)
798 User::Leave(KErrNoMemory);
801 TEST(foundIds.Count()==8);
802 TEST2(foundIds.Find(KInt1), KErrNotFound);
806 TRAP(leaveCode, r= repository->FindNeqL(25, 25, KInt1_UpdatedValue, foundIds));
807 if (leaveCode != KErrNone)
809 if(OomTesting && r==KErrNoMemory)
812 User::Leave(KErrNoMemory);
814 TEST2(r, KErrNotFound);
815 TEST(foundIds.Count()==0);
818 /***************************************************************************************/
819 //Tests for FindNeqL for Real
820 /***************************************************************************************/
821 TRAP(leaveCode, r= repository->FindNeqL(0, 0, KReal1_UpdatedValue, foundIds));
822 if (leaveCode != KErrNone)
824 if(OomTesting && r==KErrNoMemory)
827 User::Leave(KErrNoMemory);
830 TEST(foundIds.Count()==8);
831 TEST2(foundIds.Find(KReal1), KErrNotFound);
835 TRAP(leaveCode,r= repository->FindNeqL(25, 25, KReal1_UpdatedValue, foundIds));
836 if (leaveCode != KErrNone)
838 if(OomTesting && r==KErrNoMemory)
841 User::Leave(KErrNoMemory);
843 TEST2(r, KErrNotFound);
844 TEST(foundIds.Count()==0);
847 /***************************************************************************************/
848 //Tests for FindNeqL for String
849 /***************************************************************************************/
850 TRAP(leaveCode, r= repository->FindNeqL(0, 0, KString1_UpdatedValue, foundIds));
851 if (leaveCode != KErrNone)
853 if(OomTesting && r==KErrNoMemory)
856 User::Leave(KErrNoMemory);
859 TEST(foundIds.Count()==8);
860 TEST2(foundIds.Find(KString1), KErrNotFound);
864 TRAP(leaveCode, r= repository->FindNeqL(25, 25, KString1_UpdatedValue, foundIds));
865 if (leaveCode != KErrNone)
867 if(OomTesting && r==KErrNoMemory)
870 User::Leave(KErrNoMemory);
872 TEST2(r, KErrNotFound);
873 TEST(foundIds.Count()==0);
875 /***************************************************************************************/
876 //Tests for FindNeqL for String8
877 /***************************************************************************************/
878 TRAP(leaveCode, r= repository->FindNeqL(0, 0, KString2_8BitValue, foundIds));
879 if (leaveCode != KErrNone)
881 if(OomTesting && r==KErrNoMemory)
884 User::Leave(KErrNoMemory);
887 TEST(foundIds.Count()==8);
888 TEST2(foundIds.Find(KString2), KErrNotFound);
892 TRAP(leaveCode, r= repository->FindNeqL(25, 25, KString2_8BitValue, foundIds));
893 if (leaveCode != KErrNone)
895 if(OomTesting && r==KErrNoMemory)
898 User::Leave(KErrNoMemory);
900 TEST2(r, KErrNotFound);
901 TEST(foundIds.Count()==0);
903 CleanupStack::PopAndDestroy(repository);
907 @SYMTestCaseID SYSLIB-CENTRALREPOSITORY-CT-1300
908 @SYMTestCaseDesc CRepository class functionality test
909 @SYMTestPriority High
910 @SYMTestActions Test for CRepository::NotifyRequest() functions
911 @SYMTestExpectedResults Test must not fail
914 LOCAL_C void NotifyL()
916 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-CT-1300 "));
917 CRepository* repository;
918 User::LeaveIfNull(repository = CRepository::NewLC(KUidTestRepository1));
922 TRequestStatus intStatus;
923 TRequestStatus realStatus;
924 TRequestStatus stringStatus;
928 // Notification on non-existent setting
930 r = repository->NotifyRequest(KNonExisitentSetting, intStatus);
931 TEST2(r, KErrNotFound);
934 // Basic notification
936 r = repository->NotifyRequest(KInt1, intStatus);
939 r = repository->NotifyRequest(KReal1, realStatus);
942 r = repository->NotifyRequest(KString1, stringStatus);
946 // Setting to the same value should not cause a notification
947 r = repository->Get(KInt1, intval);
949 r = repository->Set(KInt1, intval);
951 TEST(intStatus==KRequestPending);
952 TEST(realStatus==KRequestPending);
953 TEST(stringStatus==KRequestPending);
954 TEST(thisThread.RequestCount()==0);
956 // First change to setting should cause notification
957 r = repository->Set(KInt1, 0);
959 User::WaitForAnyRequest();
960 TEST(intStatus==KInt1);
961 TEST(realStatus==KRequestPending);
962 TEST(stringStatus==KRequestPending);
964 // Second change to setting should not cause notification
966 r = repository->Set(KInt1, 0);
968 TEST(intStatus==7777);
969 TEST(realStatus==KRequestPending);
970 TEST(stringStatus==KRequestPending);
971 TEST(thisThread.RequestCount()==0);
974 // Setting to the same value should not cause a notification
976 r = repository->Get(KReal1, realval);
978 r = repository->Set(KReal1, realval);
980 TEST(intStatus==7777);
981 TEST(realStatus==KRequestPending);
982 TEST(stringStatus==KRequestPending);
983 TEST(thisThread.RequestCount()==0);
985 r = repository->Set(KReal1, 0.0);
987 User::WaitForAnyRequest();
988 TEST(intStatus==7777);
989 TEST(realStatus==KReal1);
990 TEST(stringStatus==KRequestPending);
993 // Setting to the same value should not cause a notification
996 r = repository->Get(KString1, stringval);
998 r = repository->Set(KString1, stringval);
1000 TEST(intStatus==7777);
1001 TEST(realStatus==8888);
1002 TEST(stringStatus==KRequestPending);
1003 TEST(thisThread.RequestCount()==0);
1005 _LIT(KStringValue2, "string2");
1006 r = repository->Set(KString1, KStringValue2);
1008 User::WaitForAnyRequest();
1009 TEST(intStatus==7777);
1010 TEST(realStatus==8888);
1011 TEST(stringStatus==KString1);
1015 // Cancelling single notifications
1017 r = repository->NotifyRequest(KInt1, intStatus);
1019 r = repository->NotifyCancel(KInt1);
1021 User::WaitForAnyRequest();
1022 TEST(intStatus==KUnspecifiedKey);
1025 r = repository->NotifyRequest(KReal1, realStatus);
1027 r = repository->Set(KInt1, 1);
1029 r = repository->Set(KReal1, 1.1);
1031 User::WaitForAnyRequest();
1032 TEST(intStatus==7777);
1033 TEST(realStatus==KReal1);
1034 TEST(thisThread.RequestCount()==0);
1038 // Cancelling all notifications
1041 r = repository->NotifyRequest(KInt1, intStatus);
1043 r = repository->NotifyRequest(KReal1, realStatus);
1046 r = repository->NotifyCancelAll();
1048 User::WaitForAnyRequest();
1049 User::WaitForAnyRequest();
1050 TEST(intStatus==KUnspecifiedKey);
1051 TEST(realStatus==KUnspecifiedKey);
1055 r = repository->Set(KInt1, 2);
1057 r = repository->Set(KReal1, 2.2);
1059 TEST(intStatus==7777);
1060 TEST(realStatus==8888);
1061 TEST(thisThread.RequestCount()==0);
1065 // Group notifications
1067 r = repository->NotifyRequest(0, ~(KInt1+KReal1), intStatus);
1070 r = repository->Set(KInt3, 3);
1072 TEST(intStatus==KRequestPending);
1073 TEST(thisThread.RequestCount()==0);
1075 r = repository->Set(KInt1, 3);
1077 User::WaitForAnyRequest();
1078 TEST(intStatus==KInt1);
1080 r = repository->NotifyRequest(0, ~(KInt1+KReal1), intStatus);
1083 r = repository->Set(KReal1, 3.3);
1085 User::WaitForAnyRequest();
1086 TEST(intStatus==KReal1);
1090 // Cancelling group notifications
1092 r = repository->NotifyRequest(0, ~(KInt1+KReal1), intStatus);
1094 r = repository->NotifyCancel(0, ~(KInt1+KReal1));
1096 User::WaitForAnyRequest();
1097 TEST(intStatus==KUnspecifiedKey);
1099 r = repository->Set(KInt1, 3);
1101 TEST(intStatus==KUnspecifiedKey);
1102 TEST(thisThread.RequestCount()==0);
1104 r = repository->NotifyRequest(KInt1, intStatus);
1106 r = repository->NotifyRequest(0, ~(KInt1+KReal1), realStatus);
1108 r = repository->NotifyCancelAll();
1110 User::WaitForAnyRequest();
1111 User::WaitForAnyRequest();
1112 TEST(intStatus==KUnspecifiedKey);
1113 TEST(realStatus==KUnspecifiedKey);
1115 r = repository->Set(KInt1, 4);
1117 TEST(intStatus==KUnspecifiedKey);
1118 TEST(realStatus==KUnspecifiedKey);
1119 TEST(thisThread.RequestCount()==0);
1121 CleanupStack::PopAndDestroy(repository);
1125 @SYMTestCaseID SYSLIB-CENTRALREPOSITORY-CT-3400
1126 @SYMTestCaseDesc CRepository class functionality test
1127 @SYMTestPriority High
1128 @SYMTestActions Negative tests exercising CRepository::NotifyCancel() functions
1129 Tests check that central repository notifier works properly when
1130 client cancels multiple, non-existent notifications, and also
1131 multiple and non-existent group notificatins in a variety of combinations.
1132 @SYMTestExpectedResults There are 2 main points that we need to check in this test:
1133 1) when we are cancelling multiple notifications server-side function should
1134 always return KErrNone or KErrNotFound preventing client requests from waitng
1136 2) IPC handling function should convert any error returned from the server
1137 to KErrNone so that the client-side function NotifyCancel always returns KErrNone
1138 (for more nformation on this requirement see DEF061504)
1141 LOCAL_C void CancelNotificationsL()
1143 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-CT-3400 "));
1144 CRepository* repository;
1145 User::LeaveIfNull(repository = CRepository::NewLC(KUidTestRepository1));
1148 TRequestStatus intStatus;
1149 TRequestStatus realStatus1;
1150 TRequestStatus realStatus2;
1151 TRequestStatus realStatus3;
1155 // Cancelling non-existent notifications
1157 r = repository->NotifyCancel(KInt1);
1161 // Cancelling multiple notifications
1162 // This test step checks that NotifyCancel function returns correct
1163 // value KErrNone regardless of the number of registered notifiers
1165 r = repository->NotifyRequest(KReal1, realStatus1);
1167 r = repository->NotifyRequest(KReal2, realStatus2);
1169 r = repository->NotifyRequest(KReal3, realStatus3);
1172 r = repository->NotifyCancel(KReal3);
1174 r = repository->NotifyCancel(KReal2);
1176 r = repository->NotifyCancel(KReal1);
1178 TEST2(thisThread.RequestCount(),3);
1179 User::WaitForAnyRequest();
1180 TEST(realStatus3==KUnspecifiedKey);
1181 User::WaitForAnyRequest();
1182 TEST(realStatus2==KUnspecifiedKey);
1183 User::WaitForAnyRequest();
1184 TEST(realStatus1==KUnspecifiedKey);
1185 TEST2(thisThread.RequestCount(),0);
1187 // check that all notificatioins were actually cancelled and we will not
1188 // get a notification when we change the settings
1192 r = repository->NotifyRequest(KInt1, intStatus);
1194 r = repository->Set(KReal1, 1.0);
1196 r = repository->Set(KReal2, 2.0);
1198 r = repository->Set(KReal3, 3.0);
1200 r = repository->Set(KInt1, 2);
1202 User::WaitForAnyRequest();
1203 TEST(realStatus1==7777);
1204 TEST(realStatus2==8888);
1205 TEST(realStatus3==9999);
1206 TEST(intStatus==KInt1);
1207 TEST2(thisThread.RequestCount(),0);
1210 // Cancelling all notifications when no notifications exist
1212 r = repository->NotifyCancelAll();
1216 // Cancelling group notifications where some of the notifications have not been set up
1218 //first make sure that all the settings exist
1219 r = repository->Set(KReal1, 2.0);
1220 r = repository->Set(KReal2, 3.0);
1221 r = repository->Set(KReal3, 4.0);
1222 //This mask notify request sets up notifies for a number of keys including KReal1 and KReal2
1223 r = repository->NotifyRequest(0, ~(KReal1+KReal2), realStatus1);
1225 //This mask notify request cancels notifies for a number of keys including KReal1 and KReal3
1226 r = repository->NotifyCancel(0, ~(KReal1+KReal3));
1228 //check that notification request for the setting KReal1 has not been cancelled
1229 r = repository->Set(KReal1, 1.0);
1230 User::WaitForAnyRequest();
1232 TEST(realStatus1==KReal1);
1235 // Cancelling multiple group notifications
1237 //set up notification requests for 2 different groups of settings and then cancel them
1238 // one by one in the reverse order checking that we get an expected return value
1239 //This mask notify request sets up notifies for a number of keys including KInt1 and KReal3
1240 r = repository->NotifyRequest(0, ~(KInt1+KReal3), realStatus1);
1242 //This mask notify request sets up notifies for a number of keys including KReal1 and KReal2
1243 r = repository->NotifyRequest(0, ~(KReal1+KReal2), realStatus2);
1246 //This mask notify request cancels notifies for a number of keys including KReal1 and KReal2
1247 r = repository->NotifyCancel(0, ~(KReal1+KReal2));
1249 //This mask notify request cancels notifies for a number of keys including KInt1 and KReal3
1250 r = repository->NotifyCancel(0, ~(KInt1+KReal3));
1252 User::WaitForAnyRequest();
1253 User::WaitForAnyRequest();
1254 TEST(realStatus1==KUnspecifiedKey);
1255 TEST(realStatus2==KUnspecifiedKey);
1258 // Cancelling non-existent group notifications
1260 r = repository->NotifyCancel(0, ~(KInt1+KReal3));
1263 //restore the repository value for the later tests to use
1264 r = repository->Set(KInt1, 1);
1267 CleanupStack::PopAndDestroy(repository);
1271 @SYMTestCaseID SYSLIB-CENTRALREPOSITORY-CT-1301
1272 @SYMTestCaseDesc Tests for creation and deletion of new settings for CRepository class
1273 @SYMTestPriority High
1274 @SYMTestActions Test for CRepository::Create(),CRepository::Delete() functions
1275 @SYMTestExpectedResults Test must not fail
1278 LOCAL_C void CreateDeleteL(const TUid& aUid)
1280 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-CT-1301 "));
1281 CRepository* repository;
1282 User::LeaveIfNull(repository = CRepository::NewLC(aUid));
1289 /***************************************************************************************/
1291 /***************************************************************************************/
1292 TInt r = repository->Get(KNewInt, x);
1293 TEST2(r, KErrNotFound);
1295 const TInt KIntValue = 1234;
1296 r = repository->Create(KNewInt, KIntValue);
1299 //close and reopen rep to check create is persisted
1300 CleanupStack::PopAndDestroy(repository);
1301 User::LeaveIfNull(repository = CRepository::NewLC(aUid));
1303 r = repository->Get(KNewInt, x);
1307 r = repository->Delete(KNewInt);
1310 r = repository->Get(KNewInt, x);
1311 TEST2(r, KErrNotFound);
1313 // close and reopen rep to check delete is persisted
1314 CleanupStack::PopAndDestroy(repository);
1315 User::LeaveIfNull(repository = CRepository::NewLC(aUid));
1316 r = repository->Get(KNewInt, x);
1317 TEST2(r, KErrNotFound);
1320 // test int create - second run
1321 r = repository->Create(KNewInt, KIntValue);
1324 //close and reopen rep to check create is persisted
1325 CleanupStack::PopAndDestroy(repository);
1326 User::LeaveIfNull(repository = CRepository::NewLC(aUid));
1328 r = repository->Get(KNewInt, x);
1332 r = repository->Delete(KNewInt);
1335 // close and reopen rep to check delete is persisted
1336 CleanupStack::PopAndDestroy(repository);
1337 User::LeaveIfNull(repository = CRepository::NewLC(aUid));
1339 r = repository->Get(KNewInt, x);
1340 TEST2(r, KErrNotFound);
1343 /***************************************************************************************/
1345 /***************************************************************************************/
1347 r = repository->Get(KNewReal, y);
1348 TEST2(r, KErrNotFound);
1350 const TReal KRealValue = 5678.0;
1351 r = repository->Create(KNewReal, KRealValue);
1354 //close and reopen rep to check create is persisted
1355 CleanupStack::PopAndDestroy(repository);
1356 User::LeaveIfNull(repository = CRepository::NewLC(aUid));
1358 r = repository->Get(KNewReal, y);
1360 TEST(y==KRealValue);
1362 r = repository->Delete(KNewReal);
1365 // close and reopen rep to check delete is persisted
1366 CleanupStack::PopAndDestroy(repository);
1367 User::LeaveIfNull(repository = CRepository::NewLC(aUid));
1369 r = repository->Get(KNewReal, y);
1370 TEST2(r, KErrNotFound);
1372 //create real - second run
1373 r = repository->Create(KNewReal, KRealValue);
1376 //close and reopen rep to check create is persisted
1377 CleanupStack::PopAndDestroy(repository);
1378 User::LeaveIfNull(repository = CRepository::NewLC(aUid));
1380 r = repository->Get(KNewReal, y);
1382 TEST(y==KRealValue);
1384 r = repository->Delete(KNewReal);
1387 // close and reopen rep to check delete is persisted
1388 CleanupStack::PopAndDestroy(repository);
1389 User::LeaveIfNull(repository = CRepository::NewLC(aUid));
1391 r = repository->Get(KNewReal, x);
1392 TEST2(r, KErrNotFound);
1394 /***************************************************************************************/
1395 //test string8 create
1396 /***************************************************************************************/
1398 r = repository->Get(KNewString8, z8);
1399 TEST2(r, KErrNotFound);
1401 _LIT8(KString8Value, "ABCDEF");
1402 r = repository->Create(KNewString8, KString8Value);
1405 //close and reopen rep to check create is persisted
1406 CleanupStack::PopAndDestroy(repository);
1407 User::LeaveIfNull(repository = CRepository::NewLC(aUid));
1409 r = repository->Get(KNewString8, z8);
1411 TEST(z8==KString8Value);
1413 r = repository->Delete(KNewString8);
1416 // close and reopen rep to check delete is persisted
1417 CleanupStack::PopAndDestroy(repository);
1418 User::LeaveIfNull(repository = CRepository::NewLC(aUid));
1420 r = repository->Get(KNewString8, z8);
1421 TEST2(r, KErrNotFound);
1423 r = repository->Create(KNewString8, KString8Value);
1426 //close and reopen rep to check create is persisted
1427 CleanupStack::PopAndDestroy(repository);
1428 User::LeaveIfNull(repository = CRepository::NewLC(aUid));
1430 r = repository->Get(KNewString8, z8);
1432 TEST(z8==KString8Value);
1434 r = repository->Delete(KNewString8);
1437 // close and reopen rep to check delete is persisted
1438 CleanupStack::PopAndDestroy(repository);
1439 User::LeaveIfNull(repository = CRepository::NewLC(aUid));
1442 r = repository->Get(KNewString8, x);
1443 TEST2(r, KErrNotFound);
1445 /***************************************************************************************/
1446 //test string16 create
1447 /***************************************************************************************/
1449 r = repository->Get(KNewString16, z16);
1450 TEST2(r, KErrNotFound);
1452 _LIT(KString16Value, "ghijklmn");
1453 r = repository->Create(KNewString16, KString16Value);
1456 //close and reopen rep to check create is persisted
1457 CleanupStack::PopAndDestroy(repository);
1458 User::LeaveIfNull(repository = CRepository::NewLC(aUid));
1460 r = repository->Get(KNewString16, z16);
1462 TEST(z16==KString16Value);
1464 r = repository->Delete(KNewString16);
1467 // close and reopen rep to check delete is persisted
1468 CleanupStack::PopAndDestroy(repository);
1469 User::LeaveIfNull(repository = CRepository::NewLC(aUid));
1471 r = repository->Get(KNewString16, z16);
1472 TEST2(r, KErrNotFound);
1474 r = repository->Create(KNewString16, KString16Value);
1477 //close and reopen rep to check create is persisted
1478 CleanupStack::PopAndDestroy(repository);
1479 User::LeaveIfNull(repository = CRepository::NewLC(aUid));
1481 r = repository->Get(KNewString16, z16);
1483 TEST(z16==KString16Value);
1485 r = repository->Delete(KNewString16);
1488 CleanupStack::PopAndDestroy(repository);
1489 User::LeaveIfNull(repository = CRepository::NewLC(aUid));
1491 r = repository->Get(KNewString16, x);
1492 TEST2(r, KErrNotFound);
1494 CleanupStack::PopAndDestroy(repository);
1496 /***************************************************************************************/
1497 //test create all kinds and delete with mask
1498 /***************************************************************************************/
1500 User::LeaveIfNull(repository = CRepository::NewLC(aUid));
1502 //first check that none of the settings exist in the repository
1503 r = repository->Get(KNewSetting1, x);
1504 TEST2(r, KErrNotFound);
1506 r = repository->Get(KNewSetting2, y);
1507 TEST2(r, KErrNotFound);
1509 r = repository->Get(KNewSetting3, z8);
1510 TEST2(r, KErrNotFound);
1512 r = repository->Get(KNewSetting4, z16);
1513 TEST2(r, KErrNotFound);
1515 r = repository->Get(KNewSetting5, x);
1516 TEST2(r, KErrNotFound);
1518 r = repository->Get(KNewSetting6, y);
1519 TEST2(r, KErrNotFound);
1521 r = repository->Get(KNewSetting7, z8);
1522 TEST2(r, KErrNotFound);
1524 r = repository->Get(KNewSetting8, z16);
1525 TEST2(r, KErrNotFound);
1527 //now create all of the new settings
1528 x = KNewSetting1Value;
1529 r = repository->Create(KNewSetting1, x);
1532 r = repository->Create(KNewSetting2, KNewSetting2Value);
1535 r = repository->Create(KNewSetting3, KNewSetting3Value);
1538 r = repository->Create(KNewSetting4, KNewSetting4Value);
1541 x = KNewSetting5Value;
1542 r = repository->Create(KNewSetting5, x);
1545 r = repository->Create(KNewSetting6, KNewSetting6Value);
1548 r = repository->Create(KNewSetting7, KNewSetting7Value);
1551 r = repository->Create(KNewSetting8, KNewSetting8Value);
1554 //close and reopen rep to check create is persisted
1555 CleanupStack::PopAndDestroy(repository);
1556 User::LeaveIfNull(repository = CRepository::NewLC(aUid));
1558 //check that the new settings exist in the repository
1559 r = repository->Get(KNewSetting1, x);
1560 TEST(x == KNewSetting1Value);
1563 r = repository->Get(KNewSetting2, y);
1564 TEST(y == KNewSetting2Value);
1567 r = repository->Get(KNewSetting3, z16);
1568 TEST(z16 == KNewSetting3Value);
1571 r = repository->Get(KNewSetting4, z8);
1572 TEST(z8 == KNewSetting4Value);
1575 r = repository->Get(KNewSetting5, x);
1576 TEST(x == KNewSetting5Value);
1579 r = repository->Get(KNewSetting6, y);
1580 TEST(y == KNewSetting6Value);
1583 r = repository->Get(KNewSetting7, z16);
1584 TEST(z16 == KNewSetting7Value);
1587 r = repository->Get(KNewSetting8, z8);
1588 TEST(z8 == KNewSetting8Value);
1591 // delete the settings
1592 TUint32 errorKey = 0;
1593 r = repository->Delete(0x00002000, 0xFFFFFF00, errorKey);
1594 TEST2(errorKey, KUnspecifiedKey);
1597 // close and reopen rep to check delete is persisted
1598 CleanupStack::PopAndDestroy(repository);
1599 User::LeaveIfNull(repository = CRepository::NewLC(aUid));
1601 //check that none of the settings exist in the repository
1602 r = repository->Get(KNewSetting1, x);
1603 TEST2(r, KErrNotFound);
1605 r = repository->Get(KNewSetting2, y);
1606 TEST2(r, KErrNotFound);
1608 r = repository->Get(KNewSetting3, z16);
1609 TEST2(r, KErrNotFound);
1611 r = repository->Get(KNewSetting4, z8);
1612 TEST2(r, KErrNotFound);
1614 r = repository->Get(KNewSetting5, x);
1615 TEST2(r, KErrNotFound);
1617 r = repository->Get(KNewSetting6, y);
1618 TEST2(r, KErrNotFound);
1620 r = repository->Get(KNewSetting7, z16);
1621 TEST2(r, KErrNotFound);
1623 r = repository->Get(KNewSetting8, z8);
1624 TEST2(r, KErrNotFound);
1626 CleanupStack::PopAndDestroy(repository);
1630 @SYMTestCaseID SYSLIB-CENTRALREPOSITORY-CT-1302
1631 @SYMTestCaseDesc Multi client test
1632 @SYMTestPriority High
1633 @SYMTestActions Tests for CRepository::Get(),CRepository::Set() functions
1634 @SYMTestExpectedResults Test must not fail
1637 LOCAL_C void MultiClientL()
1639 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-CT-1302 "));
1640 CRepository* repository1;
1641 User::LeaveIfNull(repository1 = CRepository::NewLC(KUidTestRepository1));
1642 CRepository* repository2;
1643 User::LeaveIfNull(repository2 = CRepository::NewLC(KUidTestRepository1));
1649 TInt r = repository1->Set(KInt1, 0);
1651 r = repository2->Get(KInt1, i);
1655 r = repository2->Set(KInt1, 123);
1657 r = repository1->Get(KInt1, i);
1664 TRequestStatus status;
1665 r = repository1->NotifyRequest(KInt1, status);
1668 r = repository2->Set(KInt1, 0);
1670 User::WaitForAnyRequest();
1671 TEST(status==KInt1);
1673 CleanupStack::PopAndDestroy(2);
1677 @SYMTestCaseID SYSLIB-CENTRALREPOSITORY-CT-1303
1678 @SYMTestCaseDesc Tests for resetting the new changes on CRepository
1679 @SYMTestPriority High
1680 @SYMTestActions Tests for CRepository::Reset() function
1681 Tests for reset on a single setting that exists in the original ROM-based settings.
1682 Tests for reset for a single setting that does not exist in the original ROM-based settings.
1683 Tests for repository-wide reset for a repository that exists on ROM.
1684 Tests for repository-wide reset for a repository that does not exist on ROM.
1685 @SYMTestExpectedResults Test must not fail
1688 LOCAL_C void ResetL()
1690 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-CT-1303 "));
1691 CRepository* repositoryA;
1692 User::LeaveIfNull(repositoryA = CRepository::NewLC(KUidTestRepository1));
1695 // Test reset on a single setting that exists in the
1696 // original ROM-based settings (we'll use KInt1)
1699 // Ensure KInt1 is set to a different value to its initial value
1700 TInt r = repositoryA->Set(KInt1, KInt1_InitialValue+10);
1703 // We're testing we get a notification on a reset as well
1705 r = repositoryA->NotifyRequest(KInt1, s);
1708 r = repositoryA->Reset(KInt1);
1711 // Check we got a notifiation
1714 TEST2(thisThread.RequestCount(), 1);
1715 User::WaitForAnyRequest();
1718 // Check KInt1 now has the right value
1720 r = repositoryA->Get(KInt1, x);
1722 TEST(x==KInt1_InitialValue);
1724 // A second reset should not generate notification
1725 // as value has not changed
1726 r = repositoryA->NotifyRequest(KInt1, s);
1728 r = repositoryA->Reset(KInt1);
1732 // Test reset for a single setting that does not exist
1733 // in the original ROM-based settings.
1735 const TInt KIntValue = 1234;
1736 r = repositoryA->Create(KNewInt, KIntValue);
1739 // We're testing we get a notification on a reset as well
1740 r = repositoryA->NotifyRequest(KNewInt, s);
1743 r = repositoryA->Reset(KNewInt);
1746 // Check we got a notifiation
1747 TEST2(thisThread.RequestCount(), 1);
1748 User::WaitForAnyRequest();
1751 // Check KNewInt has been deleted
1752 r = repositoryA->Get(KNewInt, x);
1753 TEST2(r, KErrNotFound);
1755 CleanupStack::PopAndDestroy(repositoryA);
1756 User::WaitForAnyRequest(); //cancellation of request
1757 TEST2(thisThread.RequestCount(), 0);
1760 // Test reset for a single setting in a repository that
1761 // does not exist on ROM.
1763 const TInt KSettingKey = KNonExisitentSetting;
1764 const TInt KInitialValue = 10;
1766 CRepository* repositoryB;
1767 User::LeaveIfNull(repositoryB = CRepository::NewLC(KUidDriveCOnlyRepository));
1769 r = repositoryB->Create(KSettingKey, KInitialValue);
1772 // We're testing we get a notification on a reset as well
1773 r = repositoryB->NotifyRequest(KSettingKey, s);
1776 r = repositoryB->Reset(KSettingKey);
1779 // Check we got a notifiation
1780 TEST2(thisThread.RequestCount(), 1);
1781 User::WaitForAnyRequest();
1782 TEST(s==KSettingKey);
1784 // Check KSettingKey has been deleted
1785 r = repositoryB->Get(KSettingKey, x);
1786 TEST2(r, KErrNotFound);
1788 CleanupStack::PopAndDestroy(repositoryB);
1790 // Test repository-wide reset for a repository
1791 // that exists on ROM.
1793 CRepository* repositoryC;
1794 User::LeaveIfNull(repositoryC = CRepository::NewLC(KUidResetTestRepository));
1796 const TInt KNewSetting1 = 5;
1797 const TInt KNewSetting2 = 6;
1798 r = repositoryC->Create(KNewSetting1, 0);
1800 r = repositoryC->Create(KNewSetting2, 0);
1803 r = repositoryC->Create(65, 1);
1806 r = repositoryC->Set(70, 1);
1809 r = repositoryC->Create(80, 1);
1812 r = repositoryC->Create(90, 1);
1815 r = repositoryC->NotifyRequest(0, 0, s);
1818 r = repositoryC->Reset();
1820 TEST(thisThread.RequestCount()==1);
1821 User::WaitForAnyRequest();
1822 TEST(s==KUnspecifiedKey);
1824 r = repositoryC->Get(10, x);
1828 r = repositoryC->Get(40, x);
1832 r = repositoryC->Get(50, x);
1836 r = repositoryC->Get(60, x);
1840 r = repositoryC->Get(70, x);
1845 r = repositoryC->Get(20, z);
1847 TEST(z==_L("string"));
1850 r = repositoryC->Get(30, y);
1854 r = repositoryC->Get(5, x);
1855 TEST2(r, KErrNotFound);
1856 r = repositoryC->Get(6, x);
1857 TEST2(r, KErrNotFound);
1858 r = repositoryC->Get(65, x);
1859 TEST2(r, KErrNotFound);
1860 r = repositoryC->Get(80, x);
1861 TEST2(r, KErrNotFound);
1862 r = repositoryC->Get(90, x);
1863 TEST2(r, KErrNotFound);
1865 CleanupStack::PopAndDestroy(repositoryC);
1868 // Test repository-wide reset for a repository
1869 // that does not exist on ROM.
1871 CRepository* repositoryD;
1872 User::LeaveIfNull(repositoryD = CRepository::NewLC(KUidDriveCOnlyRepository));
1874 r = repositoryD->Create(KSettingKey, KInitialValue);
1877 // We're testing we get a notification on a reset as well
1878 r = repositoryD->NotifyRequest(KSettingKey, s);
1881 r = repositoryD->Reset();
1884 // Check we got a notifiation
1885 TEST(thisThread.RequestCount()==1);
1886 User::WaitForAnyRequest();
1887 TEST(s==KUnspecifiedKey);
1889 // Check KSettingKey has been deleted
1890 r = repositoryD->Get(KSettingKey, x);
1891 TEST2(r, KErrNotFound);
1893 // Recreate KSettingKey
1894 r = repositoryD->Create(KSettingKey, 10);
1897 // Reset KSettingKey only
1898 r = repositoryD->Reset(KSettingKey);
1901 // Check KSettingKey has been deleted
1902 r = repositoryD->Get(KSettingKey, x);
1903 TEST2(r, KErrNotFound);
1905 CleanupStack::PopAndDestroy(repositoryD);
1908 LOCAL_C void ResetCreL()
1910 CRepository* repositoryA;
1916 User::LeaveIfNull(repositoryA = CRepository::NewLC(KUidCreTestRepository1));
1918 // test for .cre file
1919 // Test reset on a single setting that exists in the
1920 // original ROM-based settings (we'll use KInt1)
1923 // Ensure KInt1 is set to a different value to its initial value
1924 r = repositoryA->Set(KInt1, KInt1_InitialValue+10);
1927 CleanupStack::PopAndDestroy(repositoryA);
1928 User::LeaveIfNull(repositoryA = CRepository::NewLC(KUidCreTestRepository1));
1930 // We're testing we get a notification on a reset as well
1931 r = repositoryA->NotifyRequest(KInt1, s);
1934 r = repositoryA->Reset(KInt1);
1937 // Check we got a notifiation
1938 TEST2(thisThread.RequestCount(), 1);
1939 User::WaitForAnyRequest();
1942 CleanupStack::PopAndDestroy(repositoryA);
1943 User::LeaveIfNull(repositoryA = CRepository::NewLC(KUidCreTestRepository1));
1945 // Check KInt1 now has the right value
1946 r = repositoryA->Get(KInt1, x);
1948 TEST2(x, KInt1_InitialValue);
1950 // A second reset should not generate notification
1951 // as value has not changed
1952 r = repositoryA->NotifyRequest(KInt1, s);
1955 r = repositoryA->Reset(KInt1);
1957 TEST2(thisThread.RequestCount(), 0);
1959 CleanupStack::PopAndDestroy(repositoryA);
1960 User::LeaveIfNull(repositoryA = CRepository::NewLC(KUidCreTestRepository1));
1962 // Test reset for a single setting that does not exist
1963 // in the original ROM-based settings.
1965 const TInt KIntValue = 1234;
1966 r = repositoryA->Create(KNewInt, KIntValue);
1969 CleanupStack::PopAndDestroy(repositoryA);
1970 User::WaitForAnyRequest();//this is the cancellation of last notify request
1971 TEST2(thisThread.RequestCount(), 0);
1973 User::LeaveIfNull(repositoryA = CRepository::NewLC(KUidCreTestRepository1));
1975 // We're testing we get a notification on a reset as well
1976 r = repositoryA->NotifyRequest(KNewInt, s);
1979 r = repositoryA->Reset(KNewInt);
1982 // Check we got a notifiation
1983 TEST2(thisThread.RequestCount(), 1);
1984 User::WaitForAnyRequest();
1987 CleanupStack::PopAndDestroy(repositoryA);
1988 User::LeaveIfNull(repositoryA = CRepository::NewLC(KUidCreTestRepository1));
1990 // Check KNewInt has been deleted
1991 r = repositoryA->Get(KNewInt, x);
1992 TEST2(r, KErrNotFound);
1994 CleanupStack::PopAndDestroy(repositoryA);
1995 User::LeaveIfNull(repositoryA = CRepository::NewLC(KUidCreTestRepository1));
1997 // Reset entire repository
1998 r = repositoryA->Reset();
2001 CleanupStack::PopAndDestroy(repositoryA);
2005 @SYMTestCaseID SYSLIB-CENTRALREPOSITORY-CT-1304
2006 @SYMTestCaseDesc Tests for initialising file searching
2007 @SYMTestPriority High
2008 @SYMTestActions Tests for CRepository::Get() function
2009 @SYMTestExpectedResults Test must not fail
2012 LOCAL_C void IniFileSearching()
2014 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-CT-1304 "));
2015 const TInt KSettingKey = 1;
2017 _LIT(KDriveZ, "drive z");
2019 const TInt KBufLen = 7; // = Max of 3 above string lengths
2022 // File on drive C should take precedence
2024 CRepository* repository = CRepository::NewL(KUidDriveCRepository);
2027 TInt r = repository->Get(KSettingKey, str);
2035 @SYMTestCaseID SYSLIB-CENTRALREPOSITORY-CT-1305
2036 @SYMTestCaseDesc Tests for creating new repository on drive C:
2037 @SYMTestPriority High
2038 @SYMTestActions Tests for CRepository::NewL() function
2039 @SYMTestExpectedResults Test must not fail
2042 LOCAL_C void RepositoryOnDriveC()
2044 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-CT-1305 "));
2045 const TInt KSettingKey = KNonExisitentSetting;
2046 const TInt KInitialValue = 10;
2048 CRepository* repository = CRepository::NewL(KUidDriveCOnlyRepository);
2049 CleanupStack::PushL(repository);
2052 TInt r = repository->Get(KSettingKey, val);
2053 TEST2(r, KErrNotFound);
2055 r = repository->Create(KSettingKey, KInitialValue);
2058 r = repository->Get(KSettingKey, val);
2060 TEST(val==KInitialValue);
2062 CleanupStack::PopAndDestroy(repository);
2063 repository = CRepository::NewL(KUidDriveCOnlyRepository);
2064 CleanupStack::PushL(repository);
2066 r = repository->Get(KSettingKey, val);
2068 TEST(val==KInitialValue);
2070 r = repository->Set(KSettingKey, KInitialValue+1);
2073 r = repository->Get(KSettingKey, val);
2075 TEST(val==KInitialValue+1);
2077 r = repository->Delete(KSettingKey);
2080 CleanupStack::PopAndDestroy(repository);
2081 repository = CRepository::NewL(KUidDriveCOnlyRepository);
2082 CleanupStack::PushL(repository);
2084 r = repository->Get(KSettingKey, val);
2085 TEST2(r, KErrNotFound);
2087 CleanupStack::PopAndDestroy(repository);
2091 @SYMTestCaseID SYSLIB-CENTRALREPOSITORY-CT-1656
2092 @SYMTestCaseDesc Notify-only client optimization test
2093 @SYMTestPriority High
2094 @SYMTestActions Tests for on-demand loading in API calls after in-session
2095 unloading of repositories. Also tests for notification functionality.
2096 @SYMTestExpectedResults Test must not fail
2099 LOCAL_C void NotifyOnlyL()
2101 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-CT-1656 "));
2102 CRepository* repository1;
2103 User::LeaveIfNull(repository1 = CRepository::NewLC(KUidTestRepository1));
2105 // check that functions work
2107 TInt r = repository1->Get(KInt1, i);
2111 CleanupStack::PopAndDestroy();
2112 // Kill the server to force clearing the cache
2113 KillCentRepServerL();
2114 User::LeaveIfNull(repository1 = CRepository::NewLC(KUidTestRepository1));
2116 r = repository1->Set(KInt1, i);
2119 CleanupStack::PopAndDestroy();
2120 // Kill the server to force clearing the cache
2121 KillCentRepServerL();
2122 User::LeaveIfNull(repository1 = CRepository::NewLC(KUidTestRepository1));
2124 const TInt KIntValue = 1234;
2125 r = repository1->Create(KNewInt, KIntValue);
2128 CleanupStack::PopAndDestroy();
2129 // Kill the server to force clearing the cache
2130 KillCentRepServerL();
2131 User::LeaveIfNull(repository1 = CRepository::NewLC(KUidTestRepository1));
2133 RArray<TUint32> foundIds;
2134 TInt leaveCode = KErrNone;
2135 TRAP(leaveCode, r= repository1->FindEqL(0, 0, KIntValue, foundIds));
2136 if (leaveCode != KErrNone)
2138 if(OomTesting && r==KErrNoMemory)
2141 User::Leave(KErrNoMemory);
2144 TEST(foundIds.Count()==1);
2145 TEST(foundIds[0]==KNewInt);
2148 CleanupStack::PopAndDestroy();
2149 // Kill the server to force clearing the cache
2150 KillCentRepServerL();
2151 User::LeaveIfNull(repository1 = CRepository::NewLC(KUidTestRepository1));
2153 r = repository1->Delete(KNewInt);
2156 CleanupStack::PopAndDestroy();
2158 // check that multiple clients work
2159 User::LeaveIfNull(repository1 = CRepository::NewLC(KUidTestRepository1));
2161 r = repository1->Get(KInt1, i);
2165 CleanupStack::PopAndDestroy();
2166 // Kill the server to force clearing the cache
2167 KillCentRepServerL();
2168 User::LeaveIfNull(repository1 = CRepository::NewLC(KUidTestRepository1));
2170 CRepository* repository2;
2171 User::LeaveIfNull(repository2 = CRepository::NewLC(KUidTestRepository1));
2173 r = repository2->Get(KInt1, i);
2177 r = repository1->Get(KInt1, i);
2181 CleanupStack::PopAndDestroy(2);
2183 // check that notifications work
2184 User::LeaveIfNull(repository1 = CRepository::NewLC(KUidTestRepository1));
2185 TRequestStatus status1;
2186 r = repository1->NotifyRequest(KInt1, status1);
2189 User::LeaveIfNull(repository2 = CRepository::NewLC(KUidTestRepository1));
2190 r = repository2->Set(KInt1, 0);
2192 User::WaitForAnyRequest();
2193 TEST(status1==KInt1);
2195 r = repository1->NotifyRequest(KInt1, status1);
2198 CleanupRepositoryCache();
2200 r = repository2->Set(KInt1, 2);
2202 User::WaitForAnyRequest();
2203 TEST(status1==KInt1);
2205 r = repository1->NotifyRequest(KInt1, status1);
2208 CRepository* repository3;
2209 User::LeaveIfNull(repository3 = CRepository::NewLC(KUidTestRepository1));
2210 TRequestStatus status3;
2211 r = repository3->NotifyRequest(KInt1, status3);
2214 r = repository2->Set(KInt1, 0);
2216 User::WaitForAnyRequest();
2217 TEST(status1==KInt1);
2218 TEST(status3==KInt1);
2220 r = repository1->NotifyRequest(KInt1, status1);
2222 r = repository3->NotifyRequest(KInt1, status3);
2225 CleanupRepositoryCache();
2227 r = repository2->Set(KInt1, 1);
2229 User::WaitForAnyRequest();
2230 TEST(status1==KInt1);
2231 TEST(status3==KInt1);
2233 CleanupStack::PopAndDestroy(3);
2234 // Kill the server to force clearing the cache
2235 KillCentRepServerL();
2236 User::LeaveIfNull(repository3 = CRepository::NewLC(KUidTestRepository1));
2238 r = repository3->Get(KInt1, i);
2242 CleanupStack::PopAndDestroy();
2246 @SYMTestCaseID PDS-CENTRALREPOSITORY-CT-4113
2247 @SYMTestCaseDesc Validates meta data is not lost before a transaction is committed
2248 when deleting a range of settings.
2249 @SYMTestPriority High
2250 @SYMTestActions 1) Start a transaction.
2251 2) Delete a setting using the delete range function.
2252 3) Create a new setting (using the deleted key)
2253 4) Commit the transaction.
2254 5) Check the metadata of the setting.
2255 @SYMTestExpectedResults When deleting a range of settings in a keyspace, and then
2256 creating a new setting (with a key of a previously deleted setting)
2257 the meta data should not be reset to 0, it should take on the default
2258 metadata, if it exists.
2261 LOCAL_C void RangeDeleteMetaL()
2263 TheTest.Next(_L(" @SYMTestCaseID:PDS-CENTRALREPOSITORY-CT-4113 "));
2265 TUint32 partialKey = 0x0000004;
2266 TUint32 mask = 0xFFFFFFF;
2268 TUint32 expectedMeta = 0x10; // 16
2269 TUint32 keyCount = 0;
2270 TUint32 expectedKeyCount = 1;
2273 CRepository* repository;
2274 User::LeaveIfNull(repository = CRepository::NewL(KUidTestRepository3)); // 00000103.txt
2276 repository->StartTransaction(CRepository::EReadWriteTransaction);
2278 // Only want to delete 1 specific key, using the range delete function.
2279 TInt ret = repository->Delete(partialKey, mask, error);
2280 // We don't care about 'error' if 'ret==KErrNone'.
2281 TEST2(ret, KErrNone);
2283 // Create a new setting that is the same key and type as the deleted one.
2284 ret = repository->Create(partialKey, 200);
2285 TEST2(ret, KErrNone);
2287 ret = repository->CommitTransaction(keyCount);
2288 TEST2(ret, KErrNone);
2289 // Confirm only 1 setting was updated.
2290 TEST2(keyCount, expectedKeyCount);
2292 // Check the meta data of the newly created setting. It should be the
2293 // the same as the defaultmeta value in the keyspace.
2294 ret = repository->GetMeta(partialKey, meta);
2295 TEST2(ret, KErrNone);
2296 TEST2(meta, expectedMeta);
2303 @SYMTestCaseID SYSLIB-CENTRALREPOSITORY-CT-0494
2304 @SYMTestCaseDesc Tests the various functions on CentralRepository
2305 @SYMTestPriority High
2306 @SYMTestActions Tests the get/set,find,notify,create/delete,
2307 file searching in repository,the repository on drive c only
2308 Tests for multiple clients,for restoring factory settings.
2309 @SYMTestExpectedResults Test must not fail
2312 LOCAL_C void FuncTestsL()
2314 TheTest.Start(_L(" @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-CT-0494 Open/Close repository "));
2317 TheTest.Next(_L("Get/Set .ini"));
2318 GetSetL(KUidTestRepository1);
2320 TheTest.Next(_L("Get/Set .cre"));
2321 GetSetL(KUidCreTestRepository1);
2323 TheTest.Next(_L("Find"));
2326 TheTest.Next(_L("Notify"));
2329 TheTest.Next(_L("Create/Delete .ini"));
2330 CreateDeleteL(KUidTestRepository1);
2332 TheTest.Next(_L("Create/Delete .cre"));
2333 CreateDeleteL(KUidCreTestRepository1);
2335 TheTest.Next(_L("Initialisation file searching"));
2338 TheTest.Next(_L("Repository on Drive C only"));
2339 RepositoryOnDriveC();
2341 TheTest.Next(_L("Multiple clients"));
2344 TheTest.Next(_L("Restore factory settings"));
2347 TheTest.Next(_L("Restore factory settings from binary based rep"));
2350 TheTest.Next(_L("Negative testing for the notification cancelling"));
2351 CancelNotificationsL();
2353 TheTest.Next(_L("Notify-only client optimizations"));
2356 TheTest.Next(_L("Meta data after a Range Delete in transaction"));
2364 Function to convert a test into an OOM test
2366 @SYMTestCaseID SYSLIB-CENTRALREPOSITORY-CT-0495
2367 @SYMTestCaseDesc Out of memory test
2368 @SYMTestPriority High
2369 @SYMTestActions Tests for running out of memory
2370 @SYMTestExpectedResults Test must not fail
2373 LOCAL_C void OomTest(void (*testFuncL)())
2375 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-CT-0495 "));
2381 User::__DbgSetAllocFail(RHeap::EUser, RHeap::EFailNext, ++count);
2382 User::__DbgMarkStart(RHeap::EUser);
2384 // find out the number of open handles
2385 TInt startProcessHandleCount;
2386 TInt startThreadHandleCount;
2387 RThread().HandleCount(startProcessHandleCount, startThreadHandleCount);
2389 TRAP(error, (testFuncL)());
2391 // check that no handles have leaked
2392 TInt endProcessHandleCount;
2393 TInt endThreadHandleCount;
2394 RThread().HandleCount(endProcessHandleCount, endThreadHandleCount);
2396 TEST2(endProcessHandleCount, startProcessHandleCount);
2397 TEST2(endThreadHandleCount, startThreadHandleCount);
2399 User::__DbgMarkEnd(RHeap::EUser, 0);
2400 } while(error == KErrNoMemory);
2402 _LIT(KTestFailed, "Out of memory test failure on iteration %d\n");
2403 __ASSERT_ALWAYS(error==KErrNone, TheTest.Panic(error, KTestFailed, count));
2405 User::__DbgSetAllocFail(RHeap::EUser, RHeap::ENone, 1);
2408 LOCAL_C void OomTestsL()
2410 TheTest.Start(_L("Open/Close repository"));
2411 OomTest(OpenRepositoryL);
2413 TheTest.Next(_L("GetSet for KUidTestRepository1"));
2414 GetSetL(KUidTestRepository1);
2415 TheTest.Next(_L("GetSet for KUidCreTestRepository1"));
2416 GetSetL(KUidCreTestRepository1);
2418 TheTest.Next(_L("Find"));
2424 //This function tests the replacement of RFile with RFileBuf in CIniFileOut class (inifile.h)
2425 //It shows that there is approx. 20% (LUBBOCK) performance boost when using simple "Set"
2426 //operations. It may be even better when using "Commit" functionality.
2427 static void PerformanceTestL()
2429 CRepository* repository = CRepository::NewL(KUidDriveCOnlyRepository);
2430 CleanupStack::PushL(repository);
2432 const TUint KIntId = 101;
2433 const TUint KRealId = 102;
2434 const TUint KDes16Id = 103;
2435 const TUint KDes8Id = 104;
2436 //Create test settings
2437 TInt err = repository->Create(KIntId, 1);
2438 TEST2(err, KErrNone);
2439 err = repository->Create(KRealId, 1.1);
2440 TEST2(err, KErrNone);
2441 err = repository->Create(KDes16Id, _L16("DES16"));
2442 TEST2(err, KErrNone);
2443 err = repository->Create(KDes8Id, _L8("DES8"));
2444 TEST2(err, KErrNone);
2448 TUint timeStart = User::TickCount();
2449 for(TInt i=0;i<500;++i)
2456 TInt err = repository->Set(KIntId, i);
2457 TEST2(err, KErrNone);
2458 err = repository->Set(KRealId, (TReal)i);
2459 TEST2(err, KErrNone);
2460 err = repository->Set(KDes16Id, buf16);
2461 TEST2(err, KErrNone);
2462 err = repository->Set(KDes8Id, buf8);
2463 TEST2(err, KErrNone);
2465 TUint timeEnd = User::TickCount();
2466 CleanupStack::PopAndDestroy(repository);
2467 TheTest.Printf(_L("\nPerformanceTestL - %d ticks\n"), timeEnd-timeStart);
2471 @SYMTestCaseID SYSLIB-CENTRALREPOSITORY-CT-0497
2472 @SYMTestCaseDesc CentralRepository functionality test
2473 @SYMTestPriority High
2474 @SYMTestActions Wrapper function calling up test functions
2475 @SYMTestExpectedResults Test must not fail
2478 LOCAL_C void MainL()
2480 TheTest.Start(_L(" @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-CT-0497 Functional tests "));
2481 OomTesting = EFalse;
2482 // Existance of caching functionality invalidates some tests and
2483 // makes them fail. So cleanup cace.
2484 RestoreTestFilesL();
2487 TheTest.Next(_L("Out-of-memory tests"));
2489 //Reset the KUidTestRepository1 which was modified by the previous test
2490 //and is used in the next test.
2491 ResetTestRepositoryL();
2494 TheTest.Next(_L("Performance test"));
2497 TheTest.Next(_L("Clean out C: files"));
2507 CTrapCleanup* cleanup = CTrapCleanup::New();
2509 return KErrNoMemory;
2511 TRAPD(err, MainL());
2512 if (err != KErrNone)
2513 User::Panic(_L("Testing failed: "), err);