Update contrib.
1 // Copyright (c) 2004-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 "t_cenrep_helper.h"
17 #include <centralrepository.h>
22 #include "../cenrepsrv/srvreqs.h"
23 #include "../common/inc/srvdefs.h"
24 #include "../cenrepsrv/srvparams.h"
26 using namespace NCentralRepositoryConstants;
28 RTest TheTest(_L("Central Repository PREQ752 Tests"));
32 const TUid KUidPlatsecTestRepository = { 0x00000100 };
33 const TUid KUidCorruptHeaderRepository = { 0xBADBADBA };
34 const TUid KUidCorruptSettingRepository = { 0x00000003 };
40 const TUint32 KNonExistent = 0;
42 const TInt KNumSettings = 26;
43 const TInt KNumUnprotectedSettings = 11;
44 const TUint32 KUnprotectedSettingsMask = 0xFF000000 ;
45 const TUint32 KInt1 = 1;
46 const TInt KInt1_InitialValue = 1;
47 const TUint32 KNewInt = 1000;
48 const TInt KIntValue = 1234;
50 const TUint32 KReal1 = 2;
51 const TReal KReal1_InitialValue = 2.732;
52 const TUint32 KReal2 = 8;
53 const TReal KReal2_InitialValue = 1.5;
54 const TUint32 KReal3 = 17;
56 const TUint32 KString1 = 5;
57 _LIT(KString1_InitialValue, "test\\\"string\"");
59 const TUint32 KLongString = 0x300 ;
61 const TUint32 KMoveSource = 0x02000000 ;
62 const TUint32 KMoveTarget = 0x02000001 ;
63 const TUint32 KMoveSourceDoesntExist = 0x01000000 ;
64 const TUint32 KMoveTargetExists = 0x03000000 ;
65 const TUint32 KMoveForbidden = 0x04000000 ;
66 const TUint32 KMoveMask = 0xFF0000FF ;
68 _LIT(KCreFile, "c:\\private\\10202BE9\\persists\\00000100.cre");
69 _LIT(KZCorruptSettingFile, "z:\\private\\10202BE9\\00000003.txt");
70 _LIT(KZCorruptHeaderFile, "z:\\private\\10202BE9\\00000bad.cre");
73 ///////////////////////////////////////////////////////////////////////////////////////
74 ///////////////////////////////////////////////////////////////////////////////////////
75 //Test macroses and functions
76 LOCAL_C void CheckL(TInt aValue, TInt aLine)
81 TheTest(EFalse, aLine);
84 LOCAL_C void CheckL(TInt aValue, TInt aExpected, TInt aLine)
86 if(aValue != aExpected)
88 RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
90 TheTest(EFalse, aLine);
93 #define TEST(arg) ::CheckL((arg), __LINE__)
94 #define TEST2(aValue, aExpected) ::CheckL(aValue, aExpected, __LINE__)
96 ///////////////////////////////////////////////////////////////////////////////////////
97 ///////////////////////////////////////////////////////////////////////////////////////
99 LOCAL_C void KillCentRepServerL()
101 _LIT(KCentralRepositoryServerName, "Centralrepositorysrv");
102 _LIT(KProcessKillProcess, "t_processkillprocess.exe");
106 User::LeaveIfError(p.Create(KProcessKillProcess, KCentralRepositoryServerName));
108 // Asynchronous logon: completes when process terminates with process
112 User::WaitForRequest(stat);
114 TExitType exitType = p.ExitType();
115 TInt exitReason = p.ExitReason();
117 _LIT(KKillServerFailed, "Killing Central Repository Server Failed");
118 __ASSERT_ALWAYS(exitType == EExitKill, User::Panic(KKillServerFailed, exitReason));
121 User::LeaveIfError(exitReason);
126 @SYMTestCaseID SYSLIB-CENTRALREPOSITORY-CT-0080
127 @SYMTestCaseDesc Tests reach through Find operations during transactions.
128 @SYMTestPriority High
129 @SYMTestActions Start a transaction and attempt Find operations.
130 @SYMTestExpectedResults The test must not fail.
136 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-CT-0080 "));
139 CRepository* repository;
140 User::LeaveIfNull(repository = CRepository::NewLC(KUidPlatsecTestRepository));
144 // Test we can do some FindL's in a transaction
146 r = repository->StartTransaction(CRepository::EReadTransaction);
147 repository->CleanupRollbackTransactionPushL();
150 RArray<TUint32> foundIds;
151 CleanupClosePushL(foundIds);
153 TRAPD(leaveReason, r = repository->FindL(0, KUnprotectedSettingsMask, foundIds));
154 if(OomTesting && (r==KErrNoMemory || leaveReason==KErrNoMemory))
156 CleanupStack::PopAndDestroy(); //foundIds
157 User::Leave(KErrNoMemory);
160 // Note that we are allowed to find any setting regardless of it's platsec
161 // what we can't do is return the value
163 TEST(foundIds.Count()==KNumUnprotectedSettings);
166 TRAP(leaveReason, r = repository->FindL(23, KUnprotectedSettingsMask, foundIds)); // 23 - just a random number, value is not important
167 if(OomTesting && (r==KErrNoMemory || leaveReason==KErrNoMemory))
169 CleanupStack::PopAndDestroy(); //foundIds
170 User::Leave(KErrNoMemory);
173 TEST(foundIds.Count()==KNumUnprotectedSettings);
176 TRAP(leaveReason, r = repository->FindL(0, KUnprotectedSettingsMask | 2, foundIds));
177 if(OomTesting && (r==KErrNoMemory || leaveReason==KErrNoMemory))
179 CleanupStack::PopAndDestroy(); //foundIds
180 User::Leave(KErrNoMemory);
183 TEST(foundIds.Count()==7);
186 TRAP(leaveReason, r = repository->FindL(4, KUnprotectedSettingsMask | 6, foundIds));
187 if(OomTesting && (r==KErrNoMemory || leaveReason==KErrNoMemory))
189 CleanupStack::PopAndDestroy(); //foundIds
190 User::Leave(KErrNoMemory);
193 TEST(foundIds.Count()==1);
196 TRAP(leaveReason, r = repository->FindL(15, 15, foundIds));
197 if(OomTesting && (r==KErrNoMemory || leaveReason==KErrNoMemory))
199 CleanupStack::PopAndDestroy(); //foundIds
200 User::Leave(KErrNoMemory);
202 TEST2(r, KErrNotFound);
203 TEST(foundIds.Count()==0);
206 TRAP(leaveReason, r = repository->FindEqL(0, KUnprotectedSettingsMask, KInt1_InitialValue, foundIds));
207 if(OomTesting && (r==KErrNoMemory || leaveReason==KErrNoMemory))
209 CleanupStack::PopAndDestroy(); //foundIds
210 User::Leave(KErrNoMemory);
212 if(!platsec.ConfigSetting(PlatSec::EPlatSecEnforcement))
215 TEST(foundIds.Count()==1);
216 TEST(foundIds[0]==KInt1);
220 TEST2(r, KErrPermissionDenied);
224 TRAP(leaveReason, r = repository->FindEqL(0, KUnprotectedSettingsMask, 0, foundIds));
225 if(OomTesting && (r==KErrNoMemory || leaveReason==KErrNoMemory))
227 CleanupStack::PopAndDestroy(); //foundIds
228 User::Leave(KErrNoMemory);
230 if(!platsec.ConfigSetting(PlatSec::EPlatSecEnforcement))
232 TEST2(r, KErrNotFound);
233 TEST(foundIds.Count()==0);
237 TEST2(r, KErrPermissionDenied);
240 TRAP(leaveReason, r = repository->FindEqL(0, KUnprotectedSettingsMask, KReal2_InitialValue, foundIds));
241 if(OomTesting && (r==KErrNoMemory || leaveReason==KErrNoMemory))
243 CleanupStack::PopAndDestroy(); //foundIds
244 User::Leave(KErrNoMemory);
246 if(!platsec.ConfigSetting(PlatSec::EPlatSecEnforcement))
249 TEST(foundIds.Count()==2);
250 TEST(foundIds[0]==KReal2);
251 TEST(foundIds[1]==KReal3);
255 TEST2(r, KErrPermissionDenied);
259 TRAP(leaveReason, r = repository->FindEqL(0, KUnprotectedSettingsMask, 7.7, foundIds));
260 if(OomTesting && (r==KErrNoMemory || leaveReason==KErrNoMemory))
262 CleanupStack::PopAndDestroy(); //foundIds
263 User::Leave(KErrNoMemory);
265 if(!platsec.ConfigSetting(PlatSec::EPlatSecEnforcement))
268 TEST(foundIds.Count()==0);
272 TEST2(r, KErrPermissionDenied);
275 TRAP(leaveReason, r = repository->FindEqL(0, KUnprotectedSettingsMask, KString1_InitialValue, foundIds));
276 if(OomTesting && (r==KErrNoMemory || leaveReason==KErrNoMemory))
278 CleanupStack::PopAndDestroy(); //foundIds
279 User::Leave(KErrNoMemory);
281 if(!platsec.ConfigSetting(PlatSec::EPlatSecEnforcement))
284 TEST(foundIds.Count()==1);
285 TEST(foundIds[0]==KString1);
289 TEST2(r, KErrPermissionDenied);
294 TRAP(leaveReason, r = repository->FindEqL(0, KUnprotectedSettingsMask, KFoo, foundIds));
295 if(OomTesting && (r==KErrNoMemory || leaveReason==KErrNoMemory))
297 CleanupStack::PopAndDestroy(); //foundIds
298 User::Leave(KErrNoMemory);
300 if(!platsec.ConfigSetting(PlatSec::EPlatSecEnforcement))
302 TEST2(r, KErrNotFound);
303 TEST(foundIds.Count()==0);
307 TEST2(r, KErrPermissionDenied);
310 TRAP(leaveReason, r = repository->FindNeqL(0, KUnprotectedSettingsMask, KInt1_InitialValue, foundIds));
311 if(OomTesting && (r==KErrNoMemory || leaveReason==KErrNoMemory))
313 CleanupStack::PopAndDestroy(); //foundIds
314 User::Leave(KErrNoMemory);
316 if(!platsec.ConfigSetting(PlatSec::EPlatSecEnforcement))
319 TEST(foundIds.Count()==7);
320 TEST2(foundIds.Find(KInt1), KErrNotFound);
324 TEST2(r, KErrPermissionDenied);
329 TRAP(leaveReason, r = repository->FindNeqL(25, 25, KInt1_InitialValue, foundIds));
330 if(OomTesting && (r==KErrNoMemory || leaveReason==KErrNoMemory))
332 CleanupStack::PopAndDestroy(); //foundIds
333 User::Leave(KErrNoMemory);
335 TEST2(r, KErrNotFound);
336 TEST(foundIds.Count()==0);
340 TRAP(leaveReason, r = repository->FindNeqL(0, KUnprotectedSettingsMask, KReal1_InitialValue, foundIds));
341 if(OomTesting && (r==KErrNoMemory || leaveReason==KErrNoMemory))
343 CleanupStack::PopAndDestroy(); //foundIds
344 User::Leave(KErrNoMemory);
346 if(!platsec.ConfigSetting(PlatSec::EPlatSecEnforcement))
349 TEST(foundIds.Count()==7);
350 TEST2(foundIds.Find(KReal1), KErrNotFound);
354 TEST2(r, KErrPermissionDenied);
358 TRAP(leaveReason, r = repository->FindNeqL(25, 25, KReal1_InitialValue, foundIds));
359 if(OomTesting && (r==KErrNoMemory || leaveReason==KErrNoMemory))
361 CleanupStack::PopAndDestroy(); //foundIds
362 User::Leave(KErrNoMemory);
364 TEST2(r, KErrNotFound);
365 TEST(foundIds.Count()==0);
369 TRAP(leaveReason, r = repository->FindNeqL(0, KUnprotectedSettingsMask, KString1_InitialValue, foundIds));
370 if(OomTesting && (r==KErrNoMemory || leaveReason==KErrNoMemory))
372 CleanupStack::PopAndDestroy(); //foundIds
373 User::Leave(KErrNoMemory);
375 if(!platsec.ConfigSetting(PlatSec::EPlatSecEnforcement))
378 TEST(foundIds.Count()==7);
379 TEST2(foundIds.Find(KString1), KErrNotFound);
383 TEST2(r, KErrPermissionDenied);
388 TRAP(leaveReason, r = repository->FindNeqL(25, 25, KString1_InitialValue, foundIds));
389 if(OomTesting && (r==KErrNoMemory || leaveReason==KErrNoMemory))
391 CleanupStack::PopAndDestroy(); //foundIds
392 User::Leave(KErrNoMemory);
394 TEST2(r, KErrNotFound);
395 TEST(foundIds.Count()==0);
396 CleanupStack::PopAndDestroy(); //foundIds
399 r = repository->CommitTransaction(errorId);
401 CleanupStack::Pop(); // CleanupRollbackTransaction
403 // Restore repository
404 r = repository->Reset();
407 CleanupStack::PopAndDestroy(repository);
411 @SYMTestCaseID SYSLIB-CENTRALREPOSITORY-CT-0081
412 @SYMTestCaseDesc Tests reach through Find operations during transactions which create and delete settings.
413 @SYMTestPriority High
414 @SYMTestActions Start various transactions with creates and deletes of settings and attempt Find operations on those settings.
415 @SYMTestExpectedResults The test must not fail.
419 LOCAL_C void FindWithCreateDeleteL()
421 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-CT-0081 "));
425 CRepository* repository;
426 User::LeaveIfNull(repository = CRepository::NewLC(KUidPlatsecTestRepository));
428 RArray<TUint32> foundIds;
432 // Test that transaction operations that change settings work with find
434 // Do a create in a transaction and check find operation
436 // Begin transaction for create operation
438 r = repository->StartTransaction(CRepository::EReadWriteTransaction);
441 // Creates new setting
442 r = repository->Create(KNewInt, KIntValue);
445 // Try to find KIntValue - should be there now
446 r = repository->FindEqL(0, 0, KIntValue, foundIds);
447 if(!platsec.ConfigSetting(PlatSec::EPlatSecEnforcement))
450 TEST(foundIds.Count()==1);
451 TEST(foundIds[0]==KNewInt);
455 TEST2(r, KErrPermissionDenied);
459 // Check num of settings - should now be KNumSettings+1
460 r = repository->FindL(0, 0, foundIds);
462 TEST(foundIds.Count()==KNumSettings+1);
465 // Commit transaction - this makes KNewInt persistent
466 r = repository->CommitTransaction(errorId);
469 // Check that transaction operation succeeded
471 // Try to find KIntValue - should be there now
472 r = repository->FindEqL(0, 0, KIntValue, foundIds);
473 if(!platsec.ConfigSetting(PlatSec::EPlatSecEnforcement))
476 TEST(foundIds.Count()==1);
477 TEST(foundIds[0]==KNewInt);
481 TEST2(r, KErrPermissionDenied);
485 // Check num of settings - should still be KNumSettings+1
486 r = repository->FindL(0, 0, foundIds);
488 TEST(foundIds.Count()==KNumSettings+1);
491 // Do a delete in a transaction and check find operation
493 // Begin transaction operation to delete KNewInt
494 r = repository->StartTransaction(CRepository::EReadWriteTransaction);
498 r = repository->Delete( KNewInt);
501 // Try to find KIntValue, should not be there
502 r = repository->FindEqL(0, 0, KIntValue, foundIds);
503 if(!platsec.ConfigSetting(PlatSec::EPlatSecEnforcement))
505 TEST2(r, KErrNotFound);
509 TEST2(r, KErrPermissionDenied);
513 // Check num of settings - should be KNumSettings
514 r = repository->FindL(0, 0, foundIds);
516 TEST(foundIds.Count()==KNumSettings);
519 // Commit transaction - make removal of KNewInt persistent
520 r = repository->CommitTransaction(errorId);
523 // Check that transaction operation succeeded
525 // Try to find KIntValue - should be gone now
526 r = repository->FindEqL(0, 0, KIntValue, foundIds);
527 if(!platsec.ConfigSetting(PlatSec::EPlatSecEnforcement))
529 TEST2(r, KErrNotFound);
533 TEST2(r, KErrPermissionDenied);
537 // Check num of settings - should be back to KNumSettings
538 r = repository->FindL(0, 0, foundIds);
540 TEST(foundIds.Count()==KNumSettings);
543 // Restore repository
544 r = repository->Reset();
547 CleanupStack::PopAndDestroy(repository);
551 @SYMTestCaseID SYSLIB-CENTRALREPOSITORY-CT-0082
552 @SYMTestCaseDesc Tests reach through Get operations during transactions.
553 @SYMTestPriority High
554 @SYMTestActions Start a transaction and attempt Get operations.
555 @SYMTestExpectedResults The test must not fail.
561 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-CT-0082 "));
564 CRepository* repository;
565 User::LeaveIfNull(repository = CRepository::NewLC(KUidPlatsecTestRepository));
567 // Test we can do some Get's in a transaction
569 r = repository->StartTransaction(CRepository::EReadTransaction);
573 r = repository->Get(KInt1, y);
575 TEST(y==KInt1_InitialValue);
578 r = repository->Get(KReal1, real1);
580 TEST(real1==KReal1_InitialValue);
583 r = repository->Get(KNonExistent, str);
584 TEST2(r, KErrNotFound);
585 TEST(str.Length()==0);
587 r = repository->Get(KInt1, str);
588 TEST2(r, KErrArgument);
589 TEST(str.Length()==0);
591 r = repository->Get(KString1, str);
593 if(!platsec.ConfigSetting(PlatSec::EPlatSecEnforcement))
596 TEST(str==KString1_InitialValue);
599 TEST2(r, KErrPermissionDenied);
602 r = repository->CommitTransaction(errorId);
605 // Restore repository
606 r = repository->Reset();
609 CleanupStack::PopAndDestroy(repository);
613 @SYMTestCaseID SYSLIB-CENTRALREPOSITORY-CT-0083
614 @SYMTestCaseDesc Tests reach through Get operations during transactions which create and delete settings.
615 @SYMTestPriority High
616 @SYMTestActions Start various transactions with creates and deletes of settings and attempt Get operations on those settings.
617 @SYMTestExpectedResults The test must not fail.
621 LOCAL_C void GetWithCreateDeleteL()
623 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-CT-0083 "));
627 CRepository* repository;
628 User::LeaveIfNull(repository = CRepository::NewLC(KUidPlatsecTestRepository));
630 // Test that transaction operations that change settings work with new get
631 // which works independently of a transaction
633 // Do a create in a transaction and check find operation
635 // Begin transaction for create operation
637 r = repository->StartTransaction(CRepository::EReadWriteTransaction);
640 // Create new setting
641 r = repository->Create(KNewInt, KIntValue);
644 // Try to get KIntValue - should appear to be there
646 r = repository->Get(KNewInt, i);
650 // Commit transaction - KNewInt will be made persistent
651 r = repository->CommitTransaction(errorId);
654 // Check that transaction operation succeeded
656 // Try to get KIntValue - should be there now
657 r = repository->Get(KNewInt, i);
661 // Do a delete in a transaction and check find operation
663 // Begin transaction operation to delete KNewInt
664 r = repository->StartTransaction(CRepository::EReadWriteTransaction);
668 r = repository->Delete( KNewInt);
671 // Try to get KIntValue - should appear to be gone
672 r = repository->Get(KNewInt, i);
673 TEST2(r, KErrNotFound);
675 // Commit transaction - so removal of KIntValue is persistent
676 r = repository->CommitTransaction(errorId);
679 // Check that transaction operation succeeded
681 // Try to get KIntValue - should be gone now
682 r = repository->Get(KNewInt, i);
683 TEST2(r, KErrNotFound);
685 // Restore repository
686 r = repository->Reset();
689 CleanupStack::PopAndDestroy(repository);
693 @SYMTestCaseID SYSLIB-CENTRALREPOSITORY-CT-0084
694 @SYMTestCaseDesc Tests transaction operations.
695 @SYMTestPriority High
696 @SYMTestActions Test empty transaction, failed transactions and rollback of transaction.
697 @SYMTestExpectedResults The test must not fail.
701 LOCAL_C void GeneralTransactionL()
703 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-CT-0084 "));
707 CRepository* repository;
708 User::LeaveIfNull(repository = CRepository::NewLC(KUidPlatsecTestRepository));
710 // Do an empty transaction
714 r = repository->StartTransaction(CRepository::EReadTransaction);
717 // Commit transaction
718 r = repository->CommitTransaction(errorId);
721 // Try 2 successive calls to begin a transaction
722 r = repository->StartTransaction(CRepository::EReadTransaction);
725 // Try to create new setting,
726 r = repository->Create(KNewInt, KIntValue);
729 // Rollback unrequired transaction
730 repository->RollbackTransaction();
732 // Check that new setting was not created
734 r = repository->Get(KNewInt, getValue);
735 TEST2(r, KErrNotFound);
738 // Check that correct Id is returned for failed transaction
740 r = repository->StartTransaction(CRepository::EReadWriteTransaction);
743 // do several creates with an illegal one in the middle
744 TInt KIntStartValue = 100;
745 const TUint32 KNewIntBase = 1000;
747 const TInt imax = 0x0ff;
748 const TInt imiddle = 0x080;
749 for(i=0;i<imiddle;i++)
751 r = repository->Create(KNewIntBase+i, KIntStartValue+i);
755 // Illegal create of existing setting - should fail transaction
756 r = repository->Create(KReal1, KReal1_InitialValue);
757 TEST2(r, KErrAlreadyExists);
759 for(i=imiddle;i<imax;i++)
761 r = repository->Create(KNewIntBase+i, KIntStartValue+i);
762 // after transaction has failed, KErrAbort should be returned by all methods
766 r = repository->CommitTransaction(errorId);
767 TEST2(r, KErrAlreadyExists);
768 TEST2(errorId, KReal1);
770 // Restore repository
771 r = repository->Reset();
774 CleanupStack::PopAndDestroy(repository);
778 @SYMTestCaseID SYSLIB-CENTRALREPOSITORY-CT-0086
779 @SYMTestCaseDesc Tests move operations.
780 @SYMTestPriority High
781 @SYMTestActions Move keys or groups of keys within keyspace. Ensure security policies are correctly enforced and that errors are correctly reported.
782 @SYMTestExpectedResults The test must not fail.
787 // Initial test of move stuff JMG 08/11/2005
789 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-CT-0086 "));
792 CRepository* repository;
794 User::LeaveIfNull(repository = CRepository::NewLC(KUidPlatsecTestRepository));
797 // 1. Simple Move Operation
800 // Confirm that source keys exist
801 RArray<TUint32> foundIds;
802 r = repository->FindL(KMoveSource, KMoveMask, foundIds);
803 if(OomTesting && r==KErrNoMemory)
804 User::Leave(KErrNoMemory);
806 TEST(foundIds.Count()==5);
809 // Confirm that target keys don't exist!
810 r = repository->FindL(KMoveTarget, KMoveMask, foundIds);
811 if(OomTesting && r==KErrNoMemory)
812 User::Leave(KErrNoMemory);
813 TEST2(r, KErrNotFound);
814 TEST(foundIds.Count()==0);
817 // Move a set of keys
818 r = repository->Move(KMoveSource, KMoveTarget, KMoveMask, errId) ;
821 // Confirm that target keys now exist
822 r = repository->FindL(KMoveTarget, KMoveMask, foundIds);
823 if(OomTesting && r==KErrNoMemory)
824 User::Leave(KErrNoMemory);
826 TEST(foundIds.Count()==5);
829 // Confirm that source keys no longer exist!
830 r = repository->FindL(KMoveSource, KMoveMask, foundIds);
831 if(OomTesting && r==KErrNoMemory)
832 User::Leave(KErrNoMemory);
833 TEST2(r, KErrNotFound);
834 TEST(foundIds.Count()==0);
837 // Move keys back again [For our later convenience :-)]
838 r = repository->Move(KMoveTarget, KMoveSource, KMoveMask, errId) ;
840 r = repository->FindL(KMoveSource, KMoveMask, foundIds);
841 if(OomTesting && r==KErrNoMemory)
842 User::Leave(KErrNoMemory);
844 TEST(foundIds.Count()==5);
849 // 2. Move Operation where target already exists
851 r = repository->Move(KMoveSource, KMoveTargetExists, KMoveMask, errId) ;
852 TEST2(r, KErrAlreadyExists);
854 TEST(errId == KMoveTargetExists) ;
858 // 3. Move Operation where source doesn't exist
861 // Confirm that source keys don't exist.
862 r = repository->FindL(KMoveSourceDoesntExist, KMoveMask, foundIds);
863 if(OomTesting && r==KErrNoMemory)
864 User::Leave(KErrNoMemory);
865 TEST2(r, KErrNotFound);
866 TEST(foundIds.Count()==0);
869 // Attempt move and check result
870 r = repository->Move(KMoveSourceDoesntExist, KMoveTarget, KMoveMask, errId) ;
871 TEST2(r, KErrNotFound);
873 TEST2(errId, KMoveSourceDoesntExist) ;
877 // 4. Move Operation where client doesn't have capabilities to write
881 // Attempt move and check result
882 r = repository->Move(KMoveSource, KMoveForbidden, KMoveMask, errId) ;
883 TEST2(r, KErrPermissionDenied);
885 TEST2(errId, KMoveForbidden) ;
888 // 5. Move Operation where client doesn't have capabilities to read
889 // from source range.
892 // Attempt move and check result
893 r = repository->Move(KMoveForbidden, KMoveTarget, KMoveMask, errId) ;
894 TEST2(r, KErrPermissionDenied);
896 TEST2(errId, KMoveForbidden) ;
898 // Restore repository
899 r = repository->Reset();
902 // Close the repository
903 CleanupStack::PopAndDestroy(repository);
907 @SYMTestCaseID SYSLIB-CENTRALREPOSITORY-CT-0087
908 @SYMTestCaseDesc Tests handling of long (>256 character) strings.
909 @SYMTestPriority High
910 @SYMTestActions Attempt to write and then read back a long string
911 @SYMTestExpectedResults The test must not fail.
915 LOCAL_C void LongStringL()
917 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-CT-0087 "));
921 CRepository* repository;
922 User::LeaveIfNull(repository = CRepository::NewLC(KUidPlatsecTestRepository));
924 HBufC* longSetString = HBufC::NewLC(KMaxUnicodeStringLength);
925 TPtr setStr(longSetString->Des()) ;
926 HBufC* longGetString = HBufC::NewLC(KMaxUnicodeStringLength);
927 TPtr getStr(longGetString->Des()) ;
929 for (r = 0; r < KMaxUnicodeStringLength; r++)
931 eric = (TInt16)Math::Random();
932 setStr.Append(eric) ;
935 r = repository->Set(KLongString, setStr);
938 r = repository->Get(KLongString, getStr);
940 TEST(getStr==setStr);
942 // Restore repository
943 r = repository->Reset();
946 CleanupStack::PopAndDestroy(longGetString) ;
947 CleanupStack::PopAndDestroy(longSetString) ;
948 CleanupStack::PopAndDestroy(repository);
952 @SYMTestCaseID SYSLIB-CENTRALREPOSITORY-CT-0098
953 @SYMTestCaseDesc Tests robustness.
954 @SYMTestPriority High
955 @SYMTestActions Handle corrupt files and settings correctly
956 @SYMTestExpectedResults The test must not fail.
959 LOCAL_C void REQ4093L()
961 TheTest.Next(_L(" @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-CT-0098 "));
963 User::LeaveIfError(fs.Connect());
964 CleanupClosePushL(fs);
966 CFileMan* fm = CFileMan::NewL(fs);
967 CleanupStack::PushL(fm);
971 // Open corrupt header ROM file
972 TheTest.Printf(_L("\nOpen corrupt header ROM file\n"));
973 TRAPD(errH, rep=CRepository::NewLC(KUidCorruptHeaderRepository));
974 TEST2(errH, KErrCorrupt);
975 // Open corrupt setting ROM file
976 TheTest.Printf(_L("\nOpen corrupt setting ROM file\n"));
977 TRAPD(errS,rep=CRepository::NewLC(KUidCorruptSettingRepository));
978 TEST2(errS, KErrCorrupt);
980 // Edit repos with new setting
981 TheTest.Printf(_L("\nEdit repos with new setting\n"));
982 User::LeaveIfNull(rep = CRepository::NewLC(KUidPlatsecTestRepository));
983 TInt r = rep->Create(KNewInt, KIntValue);
986 r=rep->Get(KNewInt, newInt);
988 CleanupStack::PopAndDestroy(rep);
990 // Existance of caching functionality invalidates some tests and
991 // makes them fail, so kill the server to force clearing the cache
992 KillCentRepServerL();
994 // Copy corrupt header file in rep dir as C: file
995 // Corrupt file has KNewInt and corrupt header
996 TheTest.Printf(_L("\nCopy corrupt header file into persists dir\n"));
997 User::LeaveIfError(fm->Copy(KZCorruptHeaderFile, KCreFile));
999 // Reset read-only bit
1000 User::LeaveIfError(fm->Attribs(KCreFile,0,KEntryAttReadOnly,TTime(0)));
1001 //need to delete .cre file to preserve test's old behaviour
1002 User::LeaveIfError(fm->Delete(KCreFile));
1003 User::After(KGeneralDelay);
1005 // Open repos, should find corrupt header and use ROM file
1006 User::LeaveIfNull(rep = CRepository::NewLC(KUidPlatsecTestRepository));
1007 // If we can't find KNewInt, this proves that we are using ROM file
1008 r=rep->Get(KNewInt, newInt);
1009 TEST2(r, KErrNotFound);
1010 // Test that file is deleted
1011 TheTest.Printf(_L("\nCheck corrupt header file deleted from persists dir\n"));
1012 TEST2 (BaflUtils::FileExists (fs, KCreFile), EFalse);
1014 CleanupStack::PopAndDestroy(rep);
1016 // Existance of caching functionality invalidates some tests and
1017 // makes them fail, so kill the server to force clearing the cache
1018 KillCentRepServerL();
1020 // Copy file with corrupt setting into C:
1021 TheTest.Printf(_L("\nCopy corrupt setting file into persists dir\n"));
1022 User::LeaveIfError(fm->Copy(KZCorruptSettingFile, KCreFile));
1023 // Reset read-only bit
1024 User::LeaveIfError(fm->Attribs(KCreFile,0,KEntryAttReadOnly,TTime(0)));
1025 User::After(KGeneralDelay);
1026 // Open repos, should find corrupt setting and use ROM file
1027 User::LeaveIfNull(rep = CRepository::NewLC(KUidPlatsecTestRepository));
1028 // Test that file is deleted
1029 TheTest.Printf(_L("\nCheck corrupt setting file deleted from persists dir\n"));
1030 TEST2 (BaflUtils::FileExists (fs, KCreFile), EFalse);
1032 // Restore repository
1037 CleanupStack::PopAndDestroy(3); //rep, fs,fm
1040 LOCAL_C void FuncTestsL()
1042 TheTest.Start(_L("Transaction commands"));
1043 GeneralTransactionL();
1045 TheTest.Next(_L("Find during transaction"));
1048 TheTest.Next(_L("Find during transaction with create/delete"));
1049 FindWithCreateDeleteL();
1051 TheTest.Next(_L("Get during transaction"));
1054 TheTest.Next(_L("Get during transaction with create/delete"));
1055 GetWithCreateDeleteL();
1057 TheTest.Next(_L("Move")) ;
1060 TheTest.Next(_L("Long String")) ;
1063 TheTest.Next(_L("REQ4093 tests"));
1071 // ---------------------------------------------------
1074 // Function to convert a test into an OOM test
1076 LOCAL_C void OomTest(void (*testFuncL)())
1083 User::__DbgSetAllocFail(RHeap::EUser, RHeap::EFailNext, ++count);
1084 User::__DbgMarkStart(RHeap::EUser);
1085 TRAP(error, (testFuncL)());
1086 User::__DbgMarkEnd(RHeap::EUser, 0);
1087 } while(error == KErrNoMemory);
1089 _LIT(KTestFailed, "Out of memory test failure on iteration %d\n");
1090 __ASSERT_ALWAYS(error==KErrNone, TheTest.Panic(error, KTestFailed, count));
1092 User::__DbgSetAllocFail(RHeap::EUser, RHeap::ENone, 1);
1095 LOCAL_C void OomTestsL()
1097 TheTest.Start(_L("Find"));
1105 LOCAL_C void MainL()
1107 TheTest.Start(_L("Functional tests"));
1108 OomTesting = EFalse;
1111 TheTest.Next(_L("Out-of-memory tests"));
1115 TheTest.Next(_L("Clean out C: files"));
1125 // For the tests to work we need SID policing enforced plus the specific
1126 // capabilities listed below.
1128 // These are dependent on the capabilities set in the platform security
1129 // repository test initialisation file 87654321.txt. If the content
1130 // of that file changes then the following clauses may need to be
1133 if(!PlatSec::ConfigSetting(PlatSec::EPlatSecEnforcement) ||
1134 !PlatSec::IsCapabilityEnforced(ECapabilityNetworkServices) ||
1135 !PlatSec::IsCapabilityEnforced(ECapabilityDRM) ||
1136 !PlatSec::IsCapabilityEnforced(ECapabilityLocalServices) ||
1137 !PlatSec::IsCapabilityEnforced(ECapabilityCommDD))
1139 TheTest.Start(_L("NOTE: Skipping tests due to incompatible PlatSec enforcement settings"));
1146 CTrapCleanup* cleanup = CTrapCleanup::New();
1148 return KErrNoMemory;
1150 TRAPD(err, MainL());
1151 if (err != KErrNone)
1152 User::Panic(_L("Testing failed: "), err);