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>
18 #include <e32capability.h>
22 #include "../cenrepsrv/srvparams.h"
23 #include "../cenrepsrv/srvreqs.h"
24 #include "../common/inc/srvdefs.h"
26 using namespace NCentralRepositoryConstants;
28 RTest TheTest(_L("Central Repository Platform Security Tests"));
32 const TUid KUidPlatsecTestRepository = { 0x00000100 };
33 const TUid KUidTransactionTestRepository = { 0x00000101 };
34 const TUid KUidResetTestRepository = { 0x00000004 };
36 const TInt KMaxNumRepsToReset = 3;
39 // Platsec test repository
42 const TUint32 KNonExisitent = 0;
44 const TInt KNumSettings = 26;
46 const TUint32 KInt1 = 1;
47 const TInt KInt1_InitialValue = 1;
48 const TInt KInt1_UpdatedValue = 73;
49 const TUint32 KNewInt = 1000;
51 const TUint32 KIntAlwaysPass = 0x201;
52 const TInt KIntAlwaysPass_Value = 200;
53 const TUint32 KIntAlwaysPassFail = 0x202;
55 const TUint32 KReal1 = 2;
56 const TReal KReal1_InitialValue = 2.732;
57 const TReal KReal1_UpdatedValue = 72.8;
58 const TUint32 KNewReal = 2000;
60 const TUint32 KString1 = 5;
61 _LIT(KString1_InitialValue, "test\\\"string\"");
62 _LIT(KString1_UpdatedValue, "another one");
63 const TUint32 KNewString8 = 3000;
64 const TUint32 KNewString16 = 4000;
66 RArray<TUid> RepsToReset;
68 ///////////////////////////////////////////////////////////////////////////////////////
69 ///////////////////////////////////////////////////////////////////////////////////////
70 //Test macroses and functions
72 LOCAL_C void CheckL(TInt aValue, TInt aLine)
77 TheTest(EFalse, aLine);
80 LOCAL_C void CheckL(TInt aValue, TInt aExpected, TInt aLine)
82 if(aValue != aExpected)
85 RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
86 TheTest(EFalse, aLine);
90 #define TEST(arg) ::CheckL((arg), __LINE__)
91 #define TEST2(aValue, aExpected) ::CheckL(aValue, aExpected, __LINE__)
92 ///////////////////////////////////////////////////////////////////////////////////////
93 ///////////////////////////////////////////////////////////////////////////////////////
95 // Function to compare two TUid's.
96 LOCAL_C TInt CompareUid(const TUid& aUid1, const TUid& aUid2)
98 return aUid1.iUid - aUid2.iUid;
101 LOCAL_C void AddRepositoryToReset(const TUid& aRepositoryUid)
103 // Use InsertInOrder not because of speed but to eliminate
105 RepsToReset.InsertInOrder(aRepositoryUid, CompareUid);
108 // NB: this test suite needs each test run to start with keyspaces with values from
109 // the initialization files in ROM dir. The best way to archive this is to send the
110 // EGetSetParameters IPC to centrep server to flush cache and then delete
111 // the .cre files. This option requires the CENTREP_SERVER_CACHETEST macro
112 // which is not available in release ONB. The second choice is to wait enough
113 // time for centrep server to flush out cache, then delete the .cre files from
114 // persists dir. This approach does not work well on the emulator because centrep
115 // server's cache timer sometimes is late by as much as a few seconds.
116 // Hence instead of wait and delete the .cre files, this RTest uses the ResetAll
117 // API. This trick works for the use case of this RTest but may not work in other
118 // situations. E.g., in this RTest centrep server always open repositories
119 // from cache. This changes the timing pattern and does not exercise the
120 // cache eviction code path.
121 LOCAL_C void ResetModifiedRepsL()
123 for (TInt i = RepsToReset.Count() - 1; i >= 0; i--)
126 User::LeaveIfNull( rep = CRepository::NewL(RepsToReset[i]) );
130 RepsToReset.Remove(i);
134 LOCAL_C void OpenRepositoryL()
136 CRepository* repositoryA;
140 TRAP(r, CRepository::NewL(TUid::Null()));
141 if(OomTesting && r==KErrNoMemory)
142 User::Leave(KErrNoMemory);
143 TEST2(r, KErrNotFound);
145 repositoryA = CRepository::NewLC(KUidPlatsecTestRepository);
148 r = repositoryA->Get(KInt1, a);
150 TEST(a==KInt1_InitialValue);
152 CleanupStack::PopAndDestroy(repositoryA);
156 LOCAL_C void GetSetL()
158 CRepository* repository;
159 User::LeaveIfNull(repository = CRepository::NewLC(KUidPlatsecTestRepository));
161 // Remember that this repository need to be reset
162 ::AddRepositoryToReset(KUidPlatsecTestRepository);
170 TInt r = repository->Get(KNonExisitent, i);
171 TEST2(r, KErrNotFound);
174 // no capability specified so deafult should do and should succeed
175 r = repository->Get(KReal1, i);
176 TEST2(r, KErrArgument);
179 // no capability specified so deafult should do and should succeed
180 r = repository->Get(KInt1, i);
182 TEST(i==KInt1_InitialValue);
184 r = repository->Set(KNonExisitent, 0);
187 r = repository->Delete(KNonExisitent);
190 r = repository->Set(KReal1, 0);
191 TEST2(r, KErrArgument);
193 r = repository->Set(KInt1, KInt1_UpdatedValue);
196 r = repository->Get(KInt1, i);
198 TEST(i==KInt1_UpdatedValue);
200 r = repository->Get(KIntAlwaysPass, i);
201 // range policy AlwaysPass
203 TEST(i==KIntAlwaysPass_Value);
206 r = repository->Get(KIntAlwaysPassFail, i);
207 // range policy overidden
208 TEST2(r, KErrPermissionDenied);
209 TEST(i!=KIntAlwaysPass_Value);
218 r = repository->Get(KNonExisitent, y);
219 TEST2(r, KErrNotFound);
222 r = repository->Get(KInt1, y);
223 TEST2(r, KErrArgument);
226 r = repository->Get(KReal1, y);
228 TEST(y==KReal1_InitialValue);
230 r = repository->Set(KNonExisitent, 0.0);
233 r = repository->Delete(KNonExisitent);
236 r = repository->Set(KInt1, 0.0);
237 TEST2(r, KErrArgument);
239 r = repository->Set(KReal1, KReal1_UpdatedValue);
242 r = repository->Get(KReal1, y);
244 TEST(y==KReal1_UpdatedValue);
252 r = repository->Get(KNonExisitent, str);
253 TEST2(r, KErrNotFound);
254 TEST(str.Length()==0);
256 r = repository->Get(KInt1, str);
257 TEST2(r, KErrArgument);
258 TEST(str.Length()==0);
260 r = repository->Get(KString1, str);
263 if(!platsec.ConfigSetting(PlatSec::EPlatSecEnforcement))
266 TEST(str==KString1_InitialValue);
269 TEST2(r, KErrPermissionDenied);
273 r = repository->Get(KString1, tooShort);
275 if(!platsec.ConfigSetting(PlatSec::EPlatSecEnforcement))
277 TEST2(r, KErrOverflow);
278 TEST(tooShort.Length()==0);
281 TEST2(r, KErrPermissionDenied);
284 r = repository->Set(KNonExisitent, str);
287 r = repository->Delete(KNonExisitent);
290 r = repository->Set(KInt1, str);
291 TEST2(r, KErrArgument);
293 r = repository->Set(KString1, KString1_UpdatedValue);
294 if(!platsec.ConfigSetting(PlatSec::EPlatSecEnforcement))
299 TEST2(r, KErrPermissionDenied);
301 r = repository->Get(KString1, str);
303 if(!platsec.ConfigSetting(PlatSec::EPlatSecEnforcement))
306 TEST(str==KString1_UpdatedValue);
309 TEST2(r, KErrPermissionDenied);
311 const TInt KStringLengthTooBig = KMaxUnicodeStringLength + 1;
312 TBuf<KStringLengthTooBig> tooBig;
313 tooBig.SetLength(KStringLengthTooBig);
314 r = repository->Set(KString1, tooBig);
315 TEST2(r, KErrArgument);
317 CleanupStack::PopAndDestroy(repository);
320 LOCAL_C void CreateSetIntTransactionL()
322 CRepository* repository;
323 User::LeaveIfNull(repository = CRepository::NewLC(KUidTransactionTestRepository));
325 // Remember that this repository need to be reset
326 ::AddRepositoryToReset(KUidTransactionTestRepository);
333 const TInt imax = 0x0ff;
336 r = repository->StartTransaction(CRepository::EReadWriteTransaction);
337 repository->CleanupRollbackTransactionPushL();
341 TInt KIntStartValue = 100;
342 const TUint32 KNewIntBase = 1;
345 r = repository->Create(KNewIntBase+i, KIntStartValue+i);
346 if(OomTesting && (r==KErrNoMemory))
347 User::Leave(KErrNoMemory);
352 r = repository->CommitTransaction(errorId);
354 if(OomTesting && r!=KErrNone)
356 // in OOM test we may have alredy created settings
357 TEST2(r, KErrAlreadyExists);
363 if(!(OomTesting && r==KErrAlreadyExists))
365 // during OOM tests we have values from Sets rather then Create...
368 r = repository->Get(KNewIntBase+i,integer );
370 TEST(KIntStartValue+i==integer);
373 r = repository->StartTransaction(CRepository::EReadWriteTransaction);
376 repository->CleanupRollbackTransactionPushL();
379 KIntStartValue = 200;
382 r = repository->Set(KNewIntBase+i, KIntStartValue+i);
383 if(OomTesting && (r==KErrNoMemory))
384 User::Leave(KErrNoMemory);
389 r = repository->CommitTransaction(errorId);
394 r = repository->Get(KNewIntBase+i,integer );
396 TEST(KIntStartValue+i==integer);
399 // lets check set where some are going to fail
401 r = repository->StartTransaction(CRepository::EReadWriteTransaction);
402 repository->CleanupRollbackTransactionPushL();
404 KIntStartValue = 400;
405 TInt base = KNewIntBase + 0x7f; // half the range ok other half should fail
408 r = repository->Set(base+i, KIntStartValue+i);
409 if(OomTesting && (r==KErrNoMemory))
410 User::Leave(KErrNoMemory);
413 if (base + i < 0x100)
417 else if (base + i == 0x100)
420 // this causes transaction to fail
421 const TReal KRealValue = 1.234;
422 r = repository->Set(base+i, KRealValue);
423 TEST2(r, KErrArgument);
427 // after transaction has failed, repository returns KErrAbort for every request
433 r = repository->CommitTransaction(errorId);
434 TEST2(r, KErrArgument);
435 TEST2(errorId, 0x100);
437 // should be able to open again
438 r = repository->StartTransaction(CRepository::EReadWriteTransaction);
440 repository->RollbackTransaction();
442 // and after the failed transaction it should be in previous state!!
443 KIntStartValue = 200;
446 r = repository->Get(KNewIntBase+i,integer );
448 TEST(KIntStartValue+i==integer);
451 // lets clear after ourselves
454 r = repository->Delete(KNewIntBase+i);
458 CleanupStack::PopAndDestroy(repository);
462 LOCAL_C void CreateSetDesTransactionL()
465 CRepository* repository;
466 User::LeaveIfNull(repository = CRepository::NewLC(KUidTransactionTestRepository));
468 // Remember that this repository need to be reset
469 ::AddRepositoryToReset(KUidTransactionTestRepository);
472 _LIT(KString1_TestValue, "test string 1");
473 _LIT(KString2_TestValue, "test string 2");
474 _LIT(KString3_TestValue, "test string 3");
475 _LIT(KString4_TestValue, "test string 4");
476 _LIT(KString5_TestValue, "test string 5");
477 _LIT(KString1_UpdatedTestValue, "updated test string 1");
478 _LIT(KString2_UpdatedTestValue, "updated test string 2");
480 // Descriptor get/set
485 r = repository->StartTransaction(CRepository::EReadWriteTransaction);
486 repository->CleanupRollbackTransactionPushL();
490 r = repository->Create(1, KString1_TestValue);
491 if(OomTesting && (r==KErrNoMemory))
492 User::Leave(KErrNoMemory);
495 r = repository->Create(2, KString2_TestValue);
496 if(OomTesting && (r==KErrNoMemory))
497 User::Leave(KErrNoMemory);
500 r = repository->Create(3, KString3_TestValue);
501 if(OomTesting && (r==KErrNoMemory))
502 User::Leave(KErrNoMemory);
505 r = repository->Create(4, KString4_TestValue);
506 if(OomTesting && (r==KErrNoMemory))
507 User::Leave(KErrNoMemory);
510 r = repository->Create(5, KString5_TestValue);
511 if(OomTesting && (r==KErrNoMemory))
512 User::Leave(KErrNoMemory);
516 r = repository->CommitTransaction(errorId);
518 if(OomTesting && r!=KErrNone)
520 // in OOM test we may have alredy created settings
521 TEST2(r, KErrAlreadyExists);
529 r = repository->Get(1,buf);
531 TEST(buf==KString1_TestValue);
532 r = repository->Get(2,buf);
534 TEST(buf==KString2_TestValue);
535 r = repository->Get(3,buf);
537 TEST(buf==KString3_TestValue);
538 r = repository->Get(4,buf);
540 TEST(buf==KString4_TestValue);
541 r = repository->Get(5,buf);
543 TEST(buf==KString5_TestValue);
546 r = repository->StartTransaction(CRepository::EReadWriteTransaction);
547 repository->CleanupRollbackTransactionPushL();
551 r = repository->Set(1, KString1_UpdatedTestValue);
552 if(OomTesting && (r==KErrNoMemory))
553 User::Leave(KErrNoMemory);
556 r = repository->Set(2, KString2_UpdatedTestValue);
557 if(OomTesting && (r==KErrNoMemory))
558 User::Leave(KErrNoMemory);
562 r = repository->CommitTransaction(errorId);
567 r = repository->Get(1,buf1);
569 r = repository->Get(2,buf2);
572 TEST(buf1==KString1_UpdatedTestValue);
573 TEST(buf2==KString2_UpdatedTestValue);
575 CleanupStack::PopAndDestroy(repository);
579 LOCAL_C void CreateSetRealTransactionL()
581 CRepository* repository;
582 User::LeaveIfNull(repository = CRepository::NewLC(KUidTransactionTestRepository));
584 // Remember that this repository need to be reset
585 ::AddRepositoryToReset(KUidTransactionTestRepository);
588 // Real transaction get/set
592 const TInt imax = 0x0ff;
594 r = repository->StartTransaction(CRepository::EReadWriteTransaction);
598 const TReal KRealStartValue = 100.05;
599 const TUint32 KNewRealBase = 1;
602 r = repository->Create(KNewRealBase+i, KRealStartValue+i);
607 r = repository->CommitTransaction(errorId);
611 for(i=0; i<imax; i++)
613 r = repository->Get((KNewRealBase+i), real );
614 real2 = KRealStartValue+i;
616 TEST( real2 == real );
619 CleanupStack::PopAndDestroy(repository);
622 LOCAL_C void ResetTransactionL()
624 #ifdef PENDING_REMOVAL
625 // reset operations are not supported in transactions for now.
626 // ResetAll will not ever be: still to decide on individual setting reset
627 // Both are very slow.
630 CRepository* repository;
631 User::LeaveIfNull(repository = CRepository::NewLC(KUidPlatsecTestRepository));
633 // Remember that this repository need to be reset
634 ::AddRepositoryToReset(KUidPlatsecTestRepository);
636 TInt r = repository->Set(KInt1, KInt1_UpdatedValue);
640 r = repository->Get(KInt1, x);
643 r = repository->StartTransaction(CRepository::EReadWriteTransaction);
646 r = repository->Reset(KInt1);
649 r = repository->CommitTransaction(errorId);
652 r = repository->Get(KInt1, y);
655 // did we get what expected after commit?
656 TEST(x!=KInt1_InitialValue);
657 TEST(y==KInt1_InitialValue);
659 CleanupStack::PopAndDestroy(repository);
662 // lets prepare for reset
663 User::LeaveIfNull(repository = CRepository::NewLC(KUidTransactionTestRepository));
665 // Remember that this repository need to be reset
666 ::AddRepositoryToReset(KUidTransactionTestRepository);
668 const TInt KNewSettingAlwaysPass = 0x101;
670 r = repository->StartTransaction(CRepository::EReadWriteTransaction);
674 for(i=KNewSettingAlwaysPass;i<KNewSettingAlwaysPass+10;i++)
676 r = repository->Create(i, i);
681 TRequestStatus status = -1;
682 r = repository->NotifyRequest(0, 0, status);
685 r = repository->CommitTransaction(errorId);
692 r = repository->Get(KNewSettingAlwaysPass+i, xArray[i]);
696 //and do the reset business now
697 r = repository->StartTransaction(CRepository::EReadWriteTransaction);
700 r = repository->Reset();
703 r = repository->CommitTransaction(errorId);
706 // test reset after commit
707 TEST(status==KNewSettingAlwaysPass);
711 TEST(xArray[i]==(KNewSettingAlwaysPass+i));
714 for(i=KNewSettingAlwaysPass;i<KNewSettingAlwaysPass+10;i++)
716 r = repository->Get(i, xx);
717 TEST2(r, KErrNotFound);
720 CleanupStack::PopAndDestroy(repository);
721 #endif // PENDING_REMOVAL
726 CRepository* repository;
727 User::LeaveIfNull(repository = CRepository::NewLC(KUidPlatsecTestRepository));
729 RArray<TUint32> foundIds;
730 CleanupClosePushL(foundIds);
734 TRAPD(leaveReason, r = repository->FindL(0, 0, foundIds));
735 if(OomTesting && (r==KErrNoMemory || leaveReason==KErrNoMemory))
737 CleanupStack::PopAndDestroy(); //foundIds
738 User::Leave(KErrNoMemory);
740 // Note that we are allowed to find any setting regardless of it's platsec
741 // what we can't do is return the value
743 TEST(foundIds.Count()==KNumSettings);
747 TRAP(leaveReason, r = repository->FindL(23, 0, foundIds)); // 23 - just a random number, value is not important
748 if(OomTesting && (r==KErrNoMemory || leaveReason==KErrNoMemory))
750 CleanupStack::PopAndDestroy(); //foundIds
751 User::Leave(KErrNoMemory);
754 TEST(foundIds.Count()==KNumSettings);
758 TRAP(leaveReason, r = repository->FindL(0, 2, foundIds));
759 if(OomTesting && (r==KErrNoMemory || leaveReason==KErrNoMemory))
761 CleanupStack::PopAndDestroy(); //foundIds
762 User::Leave(KErrNoMemory);
765 TEST(foundIds.Count()==22);
769 TRAP(leaveReason, r = repository->FindL(4, 6, foundIds));
770 if(OomTesting && (r==KErrNoMemory || leaveReason==KErrNoMemory))
772 CleanupStack::PopAndDestroy(); //foundIds
773 User::Leave(KErrNoMemory);
776 TEST(foundIds.Count()==1);
780 TRAP(leaveReason, r = repository->FindL(15, 15, foundIds));
781 if(OomTesting && (r==KErrNoMemory || leaveReason==KErrNoMemory))
783 CleanupStack::PopAndDestroy(); //foundIds
784 User::Leave(KErrNoMemory);
786 TEST2(r, KErrNotFound);
787 TEST(foundIds.Count()==0);
789 CleanupStack::PopAndDestroy(); //foundIds
790 CleanupStack::PopAndDestroy(repository);
793 LOCAL_C void NotifyL()
795 CRepository* repository;
796 User::LeaveIfNull(repository = CRepository::NewLC(KUidPlatsecTestRepository));
797 // Remember that this repository need to be reset
798 ::AddRepositoryToReset(KUidPlatsecTestRepository);
803 // Notification on non-existent setting
805 TRequestStatus intStatus;
806 TInt r = repository->NotifyRequest(KNonExisitent, intStatus);
807 TEST2(r, KErrNotFound);
811 // Basic notification
813 r = repository->NotifyRequest(KInt1, intStatus);
816 TRequestStatus realStatus;
817 r = repository->NotifyRequest(KReal1, realStatus);
820 TRequestStatus stringStatus;
821 r = repository->NotifyRequest(KString1, stringStatus);
822 if(!platsec.ConfigSetting(PlatSec::EPlatSecEnforcement))
828 TEST2(r, KErrPermissionDenied);
832 // Setting to the same value should not cause a notification
834 r = repository->Get(KInt1, intval);
836 r = repository->Set(KInt1, intval);
838 TEST(intStatus==KRequestPending);
839 TEST(realStatus==KRequestPending);
840 if(!platsec.ConfigSetting(PlatSec::EPlatSecEnforcement))
841 TEST(stringStatus==KRequestPending);
843 TEST(thisThread.RequestCount()==0);
845 // First change to setting should cause notification
846 r = repository->Set(KInt1, 0);
848 User::WaitForAnyRequest();
849 TEST(intStatus==KInt1);
850 TEST(realStatus==KRequestPending);
851 if(!platsec.ConfigSetting(PlatSec::EPlatSecEnforcement))
852 TEST(stringStatus==KRequestPending);
854 // Second change to setting should not cause notification
856 r = repository->Set(KInt1, 0);
858 TEST(intStatus==7777);
859 TEST(realStatus==KRequestPending);
860 if(!platsec.ConfigSetting(PlatSec::EPlatSecEnforcement))
861 TEST(stringStatus==KRequestPending);
862 TEST(thisThread.RequestCount()==0);
865 // Setting to the same value should not cause a notification
867 r = repository->Get(KReal1, realval);
869 r = repository->Set(KReal1, realval);
871 TEST(intStatus==7777);
872 TEST(realStatus==KRequestPending);
873 if(!platsec.ConfigSetting(PlatSec::EPlatSecEnforcement))
874 TEST(stringStatus==KRequestPending);
875 TEST(thisThread.RequestCount()==0);
877 r = repository->Set(KReal1, 0.0);
879 User::WaitForAnyRequest();
880 TEST(intStatus==7777);
881 TEST(realStatus==KReal1);
882 if(!platsec.ConfigSetting(PlatSec::EPlatSecEnforcement))
883 TEST(stringStatus==KRequestPending);
886 // Setting to the same value should not cause a notification
889 r = repository->Get(KString1, stringval);
890 if(!platsec.ConfigSetting(PlatSec::EPlatSecEnforcement))
893 TEST2(r, KErrPermissionDenied);
894 r = repository->Set(KString1, stringval);
895 if(!platsec.ConfigSetting(PlatSec::EPlatSecEnforcement))
898 TEST2(r, KErrPermissionDenied);
899 TEST(intStatus==7777);
900 TEST(realStatus==8888);
901 if(!platsec.ConfigSetting(PlatSec::EPlatSecEnforcement))
902 TEST(stringStatus==KRequestPending);
903 TEST(thisThread.RequestCount()==0);
905 _LIT(KStringValue2, "string2");
906 r = repository->Set(KString1, KStringValue2);
907 if(!platsec.ConfigSetting(PlatSec::EPlatSecEnforcement))
910 User::WaitForAnyRequest();
913 TEST2(r, KErrPermissionDenied);
915 TEST(intStatus==7777);
916 TEST(realStatus==8888);
917 if(!platsec.ConfigSetting(PlatSec::EPlatSecEnforcement))
918 TEST(stringStatus==KString1);
922 // Cancelling single notifications
924 r = repository->NotifyRequest(KInt1, intStatus);
926 r = repository->NotifyCancel(KInt1);
928 User::WaitForAnyRequest();
929 TEST(intStatus==KUnspecifiedKey);
932 r = repository->NotifyRequest(KReal1, realStatus);
934 r = repository->Set(KInt1, 1);
936 r = repository->Set(KReal1, 1.1);
938 User::WaitForAnyRequest();
939 TEST(intStatus==7777);
940 TEST(realStatus==KReal1);
941 TEST(thisThread.RequestCount()==0);
945 // Cancelling all notifications
948 r = repository->NotifyRequest(KInt1, intStatus);
950 r = repository->NotifyRequest(KReal1, realStatus);
953 r = repository->NotifyCancelAll();
955 User::WaitForAnyRequest();
956 User::WaitForAnyRequest();
957 TEST(intStatus==KUnspecifiedKey);
958 TEST(realStatus==KUnspecifiedKey);
962 r = repository->Set(KInt1, 2);
964 r = repository->Set(KReal1, 2.2);
966 TEST(intStatus==7777);
967 TEST(realStatus==8888);
968 TEST(thisThread.RequestCount()==0);
971 // Group notifications
973 r = repository->NotifyRequest(0, 0, intStatus);
975 User::WaitForAnyRequest();
976 // we do not have capabilities for all settings
977 TEST(intStatus==KErrPermissionDenied);
979 CleanupStack::PopAndDestroy(repository);
982 LOCAL_C void CreateDeleteL()
984 CRepository* repository;
985 User::LeaveIfNull(repository = CRepository::NewLC(KUidPlatsecTestRepository));
986 // Remember that this repository need to be reset
987 ::AddRepositoryToReset(KUidPlatsecTestRepository);
990 TInt r = repository->Get(KNewInt, x);
991 TEST2(r, KErrNotFound);
993 const TInt KIntValue = 1234;
994 r = repository->Create(KNewInt, KIntValue);
997 r = repository->Get(KNewInt, x);
1001 r = repository->Delete(KNewInt);
1004 r = repository->Get(KNewInt, x);
1005 TEST2(r, KErrNotFound);
1007 r = repository->Create(KNewInt, KIntValue);
1010 r = repository->Get(KNewInt, x);
1014 r = repository->Get(KNewInt, x);
1019 r = repository->Get(KNewReal, y);
1020 TEST2(r, KErrNotFound);
1022 const TReal KRealValue = 5678.0;
1023 r = repository->Create(KNewReal, KRealValue);
1026 r = repository->Get(KNewReal, y);
1028 TEST(y==KRealValue);
1030 r = repository->Delete(KNewReal);
1033 r = repository->Get(KNewReal, y);
1034 TEST2(r, KErrNotFound);
1036 r = repository->Create(KNewReal, KRealValue);
1039 r = repository->Get(KNewReal, y);
1041 TEST(y==KRealValue);
1043 r = repository->Get(KNewReal, y);
1045 TEST(y==KRealValue);
1048 r = repository->Get(KNewString8, z8);
1049 TEST2(r, KErrNotFound);
1051 _LIT8(KString8Value, "ABCDEF");
1052 r = repository->Create(KNewString8, KString8Value);
1055 r = repository->Get(KNewString8, z8);
1057 TEST(z8==KString8Value);
1059 r = repository->Delete(KNewString8);
1062 r = repository->Get(KNewString8, z8);
1063 TEST2(r, KErrNotFound);
1065 r = repository->Create(KNewString8, KString8Value);
1068 r = repository->Get(KNewString8, z8);
1070 TEST(z8==KString8Value);
1072 r = repository->Get(KNewString8, z8);
1074 TEST(z8==KString8Value);
1077 r = repository->Get(KNewString16, z16);
1078 TEST2(r, KErrNotFound);
1080 _LIT(KString16Value, "ghijklmn");
1081 r = repository->Create(KNewString16, KString16Value);
1084 r = repository->Get(KNewString16, z16);
1086 TEST(z16==KString16Value);
1088 r = repository->Delete(KNewString16);
1091 r = repository->Get(KNewString16, z16);
1092 TEST2(r, KErrNotFound);
1094 r = repository->Create(KNewString16, KString16Value);
1097 r = repository->Get(KNewString16, z16);
1099 TEST(z16==KString16Value);
1101 r = repository->Get(KNewString16, z16);
1103 TEST(z16==KString16Value);
1105 CleanupStack::PopAndDestroy(repository);
1108 LOCAL_C void MultiClientL()
1110 CRepository* repository1;
1111 User::LeaveIfNull(repository1 = CRepository::NewLC(KUidPlatsecTestRepository));
1112 CRepository* repository2;
1113 User::LeaveIfNull(repository2 = CRepository::NewLC(KUidPlatsecTestRepository));
1115 // Remember that this repository need to be reset
1116 ::AddRepositoryToReset(KUidPlatsecTestRepository);
1122 TInt r = repository1->Set(KInt1, 0);
1124 r = repository2->Get(KInt1, i);
1128 r = repository2->Set(KInt1, 123);
1130 r = repository1->Get(KInt1, i);
1137 TRequestStatus status;
1138 r = repository1->NotifyRequest(KInt1, status);
1141 r = repository2->Set(KInt1, 0);
1143 User::WaitForAnyRequest();
1144 TEST(status==KInt1);
1146 CleanupStack::PopAndDestroy(2);
1149 LOCAL_C void ResetL()
1151 CRepository* repository;
1152 User::LeaveIfNull(repository = CRepository::NewLC(KUidPlatsecTestRepository));
1155 TInt r = repository->Get(KInt1, x);
1157 TEST(x!=KInt1_InitialValue);
1159 r = repository->Reset(KInt1);
1162 r = repository->Get(KInt1, x);
1164 TEST(x==KInt1_InitialValue);
1166 CleanupStack::PopAndDestroy(repository);
1169 User::LeaveIfNull(repository = CRepository::NewLC(KUidResetTestRepository));
1170 // Remember that this repository need to be reset
1171 ::AddRepositoryToReset(KUidResetTestRepository);
1174 const TInt KNewSetting1 = 5;
1175 const TInt KNewSetting2 = 6;
1176 r = repository->Create(KNewSetting1, 0);
1178 r = repository->Create(KNewSetting2, 0);
1181 r = repository->Create(65, 1);
1184 r = repository->Set(70, 1);
1187 r = repository->Create(80, 1);
1190 r = repository->Create(90, 1);
1193 TRequestStatus status = -1;
1194 r = repository->NotifyRequest(0, 0, status);
1197 r = repository->Reset();
1199 TEST(status==KUnspecifiedKey);
1201 TEST(thisThread.RequestCount()==1);
1203 r = repository->Get(10, x);
1207 r = repository->Get(40, x);
1211 r = repository->Get(50, x);
1215 r = repository->Get(60, x);
1219 r = repository->Get(70, x);
1224 r = repository->Get(20, z);
1226 TEST(z==_L("string"));
1229 r = repository->Get(30, y);
1233 r = repository->Get(5, x);
1234 TEST2(r, KErrNotFound);
1235 r = repository->Get(6, x);
1236 TEST2(r, KErrNotFound);
1237 r = repository->Get(65, x);
1238 TEST2(r, KErrNotFound);
1239 r = repository->Get(80, x);
1240 TEST2(r, KErrNotFound);
1241 r = repository->Get(90, x);
1242 TEST2(r, KErrNotFound);
1244 CleanupStack::PopAndDestroy(repository);
1247 LOCAL_C void FuncBasicTestsL()
1249 TheTest.Start(_L("Open/Close repository"));
1252 TheTest.Next(_L("Get/Set"));
1255 TheTest.Next(_L("Find"));
1258 TheTest.Next(_L("Notify"));
1261 TheTest.Next(_L("Create/Delete"));
1264 TheTest.Next(_L("Multiple clients"));
1267 TheTest.Next(_L("Restore factory settings"));
1273 LOCAL_C void FuncTransactionTestsL()
1275 TheTest.Start(_L("Open/Close repository"));
1278 TheTest.Next(_L("Create/Set Int Transaction"));
1279 CreateSetIntTransactionL();
1281 TheTest.Next(_L("Create/Set Real Transaction"));
1282 CreateSetRealTransactionL();
1284 TheTest.Next(_L("Create/Set Descriptor Transaction"));
1286 // Instead of wait for cache clear, this test uses the ResetAll API to
1287 // restore keyspaces to original ROM settings. See the notes at implementation
1288 // of ResetModifiedRepsL which explains why this is done and possible
1289 // undesirable effects.
1290 ::ResetModifiedRepsL();
1292 CreateSetDesTransactionL();
1294 TheTest.Next(_L("Restore factory settings"));
1295 ResetTransactionL();
1301 // ---------------------------------------------------
1304 // Function to convert a test into an OOM test
1306 LOCAL_C void OomTest(void (*testFuncL)())
1313 User::__DbgSetAllocFail(RHeap::EUser, RHeap::EFailNext, ++count);
1314 User::__DbgMarkStart(RHeap::EUser);
1315 TRAP(error, (testFuncL)());
1316 User::__DbgMarkEnd(RHeap::EUser, 0);
1317 } while(error == KErrNoMemory);
1319 _LIT(KTestFailed, "Out of memory test failure on iteration %d\n");
1320 __ASSERT_ALWAYS(error==KErrNone, TheTest.Panic(error, KTestFailed, count));
1322 User::__DbgSetAllocFail(RHeap::EUser, RHeap::ENone, 1);
1326 @SYMTestCaseID SYSLIB-CENREP-CT-0032
1327 @SYMTestCaseDesc BasicPlatsecTestsL() function calls test for the Secure Cenrep (setting).
1328 Methods of CRepository class are called for various combination of different settings
1329 and the results are asserted.
1330 @SYMTestPriority High
1331 @SYMTestActions BasicPlatsecTestsL() method calls test.
1332 @SYMTestExpectedResults The test must not fail.
1336 LOCAL_C void BasicPlatsecTestsL()
1338 TheTest.Start(_L(" @SYMTestCaseID:SYSLIB-CENREP-CT-0032 Basic functional tests for PlatSec "));
1339 OomTesting = EFalse;
1341 // Instead of wait for cache clear, this test uses the ResetAll API to
1342 // restore keyspaces to original ROM settings. See the notes at implementation
1343 // of ResetModifiedRepsL which explains why this is done and possible
1344 // undesirable effects.
1345 RepsToReset.AppendL(KUidPlatsecTestRepository);
1346 RepsToReset.AppendL(KUidTransactionTestRepository);
1347 RepsToReset.AppendL(KUidResetTestRepository);
1348 ::ResetModifiedRepsL();
1352 TheTest.Next(_L("Basic Out-of-memory tests"));
1354 // Instead of wait for cache clear, this test uses the ResetAll API to
1355 // restore keyspaces to original ROM settings. See the notes at implementation
1356 // of ResetModifiedRepsL which explains why this is done and possible
1357 // undesirable effects.
1358 ::ResetModifiedRepsL();
1361 TheTest.Next(_L("OOM Open/Close repository"));
1362 OomTest(OpenRepositoryL);
1366 TheTest.Next(_L("OOM Find"));
1372 @SYMTestCaseID SYSLIB-CENREP-CT-0033
1373 @SYMTestCaseDesc TransactionPlatsecTestsL() function calls test for the Secure Cenrep (setting).
1374 Methods of CRepository class are called for various combination of different settings
1375 in a 'transaction' mode and the results are asserted.
1376 @SYMTestPriority High
1377 @SYMTestActions TransactionPlatsecTestsL() method calls test.
1378 @SYMTestExpectedResults The test must not fail.
1382 LOCAL_C void TransactionPlatsecTestsL()
1384 TheTest.Start(_L(" @SYMTestCaseID:SYSLIB-CENREP-CT-0033 Transaction functional tests for PlatSec "));
1385 OomTesting = EFalse;
1387 // Instead of wait for cache clear, this test uses the ResetAll API to
1388 // restore keyspaces to original ROM settings. See the notes at implementation
1389 // of ResetModifiedRepsL which explains why this is done and possible
1390 // undesirable effects.
1391 ::ResetModifiedRepsL();
1393 FuncTransactionTestsL();
1395 TheTest.Next(_L("Transaction Out-of-memory tests"));
1397 // Instead of wait for cache clear, this test uses the ResetAll API to
1398 // restore keyspaces to original ROM settings. See the notes at implementation
1399 // of ResetModifiedRepsL which explains why this is done and possible
1400 // undesirable effects.
1401 ::ResetModifiedRepsL();
1404 TheTest.Next(_L("OOM Open/Close repository"));
1405 OomTest(OpenRepositoryL);
1407 TheTest.Next(_L("OOM Transaction Int"));
1408 OomTest(CreateSetIntTransactionL);
1410 // Instead of wait for cache clear, this test uses the ResetAll API to
1411 // restore keyspaces to original ROM settings. See the notes at implementation
1412 // of ResetModifiedRepsL which explains why this is done and possible
1413 // undesirable effects.
1414 ::ResetModifiedRepsL();
1417 TheTest.Next(_L("OOM Transaction Descriptors"));
1418 OomTest(CreateSetDesTransactionL);
1420 // Instead of wait for cache clear, this test uses the ResetAll API to
1421 // restore keyspaces to original ROM settings. See the notes at implementation
1422 // of ResetModifiedRepsL which explains why this is done and possible
1423 // undesirable effects.
1424 ::ResetModifiedRepsL();
1429 LOCAL_C void ServerPersistenceTest()
1431 // Wait for a while after last test and ensure server is still running
1432 User::After(KGeneralDelay);
1434 _LIT( KCentralRepositoryServerName, "Centralrepository*");
1435 TFullName serverName;
1436 TFindProcess serverFind(KCentralRepositoryServerName);
1437 TEST2(serverFind.Next(serverName), KErrNone);
1440 LOCAL_C void MainL()
1442 // allocate slots ahead of time to avoid problems with OOM tests.
1443 RepsToReset.ReserveL(KMaxNumRepsToReset);
1445 TheTest.Start(_L("Tests for basic PlatSec"));
1446 BasicPlatsecTestsL();
1448 TheTest.Next(_L("Tests for Transaction PlatSec"));
1449 TransactionPlatsecTestsL();
1451 TheTest.Next(_L("Server persistence test"));
1452 ServerPersistenceTest();
1457 RepsToReset.Reset();
1463 // For the tests to work we need SID policing enforced plus the specific
1464 // capabilities listed below.
1466 // These are dependent on the capabilities set in the platform security
1467 // repository test initialisation file 87654321.txt. If the content
1468 // of that file changes then the following clauses may need to be
1471 if(!PlatSec::ConfigSetting(PlatSec::EPlatSecEnforcement) ||
1472 !PlatSec::IsCapabilityEnforced(ECapabilityNetworkServices) ||
1473 !PlatSec::IsCapabilityEnforced(ECapabilityDRM) ||
1474 !PlatSec::IsCapabilityEnforced(ECapabilityLocalServices) ||
1475 !PlatSec::IsCapabilityEnforced(ECapabilityCommDD))
1477 TheTest.Start(_L("NOTE: Skipping tests due to incompatible PlatSec enforcement settings"));
1484 CTrapCleanup* cleanup = CTrapCleanup::New();
1486 return KErrNoMemory;
1488 TRAPD(err, MainL());
1489 if (err != KErrNone)
1490 User::Panic(_L("Testing failed: "), err);