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 <e32test.h> // RTest
19 #include <e32debug.h> // RDebug::Printf
20 #include <f32file.h> // RFs
22 #include "../cenrepsrv/srvparams.h" //KServerUid3
24 //using namespace NCentralRepositoryConstants;
26 _LIT(KSoftReset, "--SoftReset");
28 RTest TheTest(_L("Central Repository RFS Test"));
30 const TUid KUidRfsRepository = { 0xffffffff };
31 const TUid KUidRfsRepositoryInstallOnlyDefaultFile = { 0xfffffffe };
32 const TUid KUidRfsRepositoryDefaultRfsOn = { 0xfffffffa };
40 } TRepositoryFileState;
42 const TUint32 KInt1 = 1;
43 const TInt KInt1_UpdatedValue = 73;
44 const TReal KReal1_InitialValue = 2.732;
45 const TUint32 KNewInt = 1000;
46 const TUint32 KNewInt2 = 0x0FFF; // outside range meta (in default meta)
47 const TUint32 KNewInt3 = 0x1000; // inside range meta
48 const TUint32 KReal1 = 2;
49 const TReal KReal1_InstallValue = 4.53;
50 const TReal KReal1_UpdatedValue = 7.32;
51 const TUint32 KString1 = 5;
52 _LIT(KString1_InitialValue, "test\\\"string\"");
53 _LIT(KString1_UpdatedValue, "another one");
56 LOCAL_C void CheckL(TInt aValue, TInt aLine)
61 TheTest(EFalse, aLine);
64 LOCAL_C void CheckL(TInt aValue, TInt aExpected, TInt aLine)
66 if(aValue != aExpected)
69 RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
70 TheTest(EFalse, aLine);
73 #define TEST(arg) ::CheckL((arg), __LINE__)
74 #define TEST2(aValue, aExpected) ::CheckL(aValue, aExpected, __LINE__)
76 // This function kills the C32exe.exe process. This commsdat process will
77 // interfere with the test if not killed. In a nutshell, some of the test cases
78 // will kill and then wait for 2 seconds and restart the centrep server
79 // with --SoftReset option. During that 2 seconds wait sometimes C32exe.exe
80 // will use centrep API, thus starting the server normally without --SoftReset.
81 LOCAL_C void KillC32Exe()
83 _LIT( KC32ServerName, "c32exe");
84 KillProcess(KC32ServerName); // Don't need to check the return code, it always return KErrNone anyway.
85 User::After(KGeneralDelay);
88 //This function restores the state of the files required for this test
89 //Existing files are deleted and then the required files are copied
90 //back from the Z drive to the c drive
91 LOCAL_C void RestoreRFSTestFilesL(TRepositoryFileState aState)
93 //Delete all files from C:\\private\\10202BE9\\persists\\ dir
94 //and C:\\private\\10202BE9\\ dir
97 User::LeaveIfError(fs.Connect());
98 CleanupClosePushL(fs);
100 CFileMan* fm = CFileMan::NewL(fs);
101 CleanupStack::PushL(fm);
103 _LIT(KPersistTargetPath, "C:\\private\\10202BE9\\persists\\ffffffff.txt");
104 _LIT(KInstallTargetPath, "C:\\private\\10202BE9\\ffffffff.txt");
105 _LIT(KPersistTargetPath1,"C:\\private\\10202BE9\\persists\\fffffffe.txt");
106 _LIT(KPersistTargetPath2,"C:\\private\\10202BE9\\persists\\fffffffd.txt");
107 _LIT(KInstallTargetPath1,"C:\\private\\10202BE9\\fffffffe.txt");
108 _LIT(KRFSTestFileSourcePath, "Z:\\private\\10202BE9\\ffffffff.txc");
113 CopyTestFilesL(*fm,KRFSTestFileSourcePath, KPersistTargetPath);
117 CopyTestFilesL(*fm,KRFSTestFileSourcePath, KPersistTargetPath);
118 CopyTestFilesL(*fm,KRFSTestFileSourcePath, KInstallTargetPath);
122 CopyTestFilesL(*fm,KRFSTestFileSourcePath, KPersistTargetPath1);
123 CopyTestFilesL(*fm,KRFSTestFileSourcePath, KInstallTargetPath1);
126 case ENoRomOrInstall:
127 CopyTestFilesL(*fm,KRFSTestFileSourcePath, KPersistTargetPath2);
134 CleanupStack::PopAndDestroy(2);
139 // Start the server process or thread
141 LOCAL_C TInt ReStartServerInSoftResetMode()
143 const TUidType serverUid(KNullUid, KNullUid, KServerUid3);
146 // EPOC and EKA2 is easy, we just create a new server process. Simultaneous
147 // launching of two such processes should be detected when the second one
148 // attempts to create the server object, failing with KErrAlreadyExists.
151 TInt r=server.Create(KServerImg,
161 server.Rendezvous(stat);
163 if (stat != KRequestPending)
165 server.Kill(0); // abort startup
169 server.Resume(); // logon OK - start the server
172 User::WaitForRequest(stat); // wait for start or death
173 // we can't use the 'exit reason' if the server panicked as this
174 // is the panic 'reason' and may be '0' which cannot be distinguished
176 r = (server.ExitType() == EExitPanic) ? KErrGeneral : stat.Int();
183 LOCAL_C void RestoreFactorySettingsTestL()
185 TheTest.Start(_L("ResetAllRepositoriesTestL"));
190 TheTest.Next(_L("Open repository to ensure server is running"));
191 CRepository* repository = CRepository::NewLC(KUidRfsRepository);
193 TheTest.Next(_L("Add a Setting"));
194 const TInt KIntValue = 1234;
195 r = repository->Create(KNewInt, KIntValue);
198 TheTest.Next(_L("Delete a Setting"));
199 r = repository->Delete(KReal1);
202 TheTest.Next(_L("Modify a Setting"));
203 r = repository->Set(KInt1, KInt1_UpdatedValue);
206 TheTest.Next(_L("Modify a String Setting"));
207 r = repository->Set(KString1, KString1_UpdatedValue);
211 CleanupStack::PopAndDestroy(repository);
213 TheTest.Next(_L("Kill the server process"));
214 _LIT( KCentralRepositoryServerName, "Centralrepositorysrv");
215 r = KillProcess(KCentralRepositoryServerName);
218 User::After(KGeneralDelay);
220 TheTest.Next(_L("Manually start central respository"));
221 ReStartServerInSoftResetMode();
223 TheTest.Next(_L("Re-create the repository to ensure server is running"));
224 repository = CRepository::NewLC(KUidRfsRepository);
226 TheTest.Next(_L("Get 'Added' value"));
227 r = repository->Get(KNewInt, i);
231 TheTest.Next(_L("Get 'Deleted' value"));
232 r = repository->Get(KReal1, real);
234 TEST(real == KReal1_InitialValue);
236 TheTest.Next(_L("Get 'Modified' value"));
237 r = repository->Get(KInt1, i);
239 TEST(i == KInt1_UpdatedValue);
241 r = repository->Get(KString1, str);
243 TEST(str==KString1_InitialValue);
246 CleanupStack::PopAndDestroy(repository);
254 @SYMTestCaseID SYSLIB-CENTRALREPOSITORY-CT-3341
255 @SYMTestCaseDesc Restore factory Settings from Rom file.
256 @SYMTestPriority High
257 @SYMTestActions Ensure that the repository file only exists on the Rom.
258 Open the repository and modify a setting. Force RFS
259 and check that the repository is restored against the ROM file
260 @SYMTestExpectedResults The test repository should be reset against the ROM file
263 LOCAL_C void RFSRomOnlyL()
266 //restore all test files - this ensures we have a repository file
268 RestoreRFSTestFilesL(ERomOnly);
270 TheTest.Start(_L(" @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-CT-3341 ResetAllRepositoriesTestL "));
274 TheTest.Next(_L("Open repository to ensure server is running"));
275 CRepository* repository = CRepository::NewLC(KUidRfsRepository);
277 TheTest.Next(_L("Modify a Setting"));
278 r = repository->Set(KInt1, KInt1_UpdatedValue);
282 r = repository->Get(KInt1, intVal);
284 TEST(intVal == KInt1_UpdatedValue);
286 TheTest.Next(_L("Modify a Setting"));
287 r = repository->Set(KReal1, KReal1_UpdatedValue);
291 r = repository->Get(KReal1, realVal);
293 TEST(realVal == KReal1_UpdatedValue);
296 CleanupStack::PopAndDestroy(repository);
299 TheTest.Next(_L("Kill the server process"));
300 _LIT( KCentralRepositoryServerName, "Centralrepositorysrv");
301 r = KillProcess(KCentralRepositoryServerName);
304 User::After(KGeneralDelay);
306 //Restart the server in soft reset mode to force a
308 TheTest.Next(_L("Manually start central respository"));
309 ReStartServerInSoftResetMode();
311 //Open the repository
312 repository = CRepository::NewLC(KUidRfsRepository);
314 //Verify that the real value is reset against the value in the Rom version of
315 //the repository file
316 TheTest.Next(_L("Get 'Modified' value"));
317 r = repository->Get(KReal1, realVal);
319 TEST(realVal == KReal1_InitialValue);
322 CleanupStack::PopAndDestroy(repository);
330 @SYMTestCaseID SYSLIB-CENTRALREPOSITORY-CT-3342
331 @SYMTestCaseDesc Restore factory Settings from merged repository.
332 @SYMTestPriority High
333 @SYMTestActions Ensure that the repository file exists in both the Rom and install
335 Open the repository and modify a setting. Force RFS
336 and check that the repository is restored against the merged repository
337 @SYMTestExpectedResults The test repository should be reset against the merged repository
340 LOCAL_C void RFSRomAndInstallL()
343 //restore all test files - this ensures we have a c: and z: file
344 //for the test repository which causes a repository merge
345 RestoreRFSTestFilesL(ERomAndInstall);
347 TheTest.Start(_L(" @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-CT-3342 ResetAllRepositoriesTestL "));
352 TheTest.Next(_L("Open repository to ensure server is running"));
353 CRepository* repository = CRepository::NewLC(KUidRfsRepository);
355 TheTest.Next(_L("Modify a Setting"));
356 r = repository->Set(KReal1, KReal1_UpdatedValue);
360 r = repository->Get(KReal1, realVal);
362 TEST(realVal == KReal1_UpdatedValue);
365 CleanupStack::PopAndDestroy(repository);
368 TheTest.Next(_L("Kill the server process"));
369 _LIT( KCentralRepositoryServerName, "Centralrepositorysrv");
370 r = KillProcess(KCentralRepositoryServerName);
373 User::After(KGeneralDelay);
375 //Restart the server in soft reset mode to force a
377 TheTest.Next(_L("Manually start central respository"));
378 ReStartServerInSoftResetMode();
380 //Open the repository
381 repository = CRepository::NewLC(KUidRfsRepository);
383 //Verify that the string value, which is only found in the ROM file is
384 //present in the merged repository
385 r = repository->Get(KString1, strVal);
387 TEST(strVal==KString1_InitialValue);
389 //verify that the Real value has been reset against the value in the install
391 TheTest.Next(_L("Get 'Modified' value"));
392 r = repository->Get(KReal1, realVal);
394 TEST(realVal == KReal1_InstallValue);
397 CleanupStack::PopAndDestroy(repository);
404 @SYMTestCaseID SYSLIB-CENTRALREPOSITORY-CT-3343
405 @SYMTestCaseDesc Restore factory Settings from Install file.
406 @SYMTestPriority High
407 @SYMTestActions Ensure that the repository file only exists in the Install directory.
408 Open the repository and modify a setting. Force RFS
409 and check that the repository is restored against the Install file
410 @SYMTestExpectedResults The test repository should be reset against the Install file
413 LOCAL_C void RFSInstallOnlyL()
416 TheTest.Start(_L(" @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-CT-3343 ResetAllRepositoriesTestL "));
421 //restore all test files - this ensures we have a repository file
423 RestoreRFSTestFilesL(EInstallOnly);
425 TheTest.Next(_L("Open repository to ensure server is running"));
426 CRepository* repository = CRepository::NewLC(KUidRfsRepositoryInstallOnlyDefaultFile);
428 TheTest.Next(_L("Modify a Setting"));
429 r = repository->Set(KReal1, KReal1_UpdatedValue);
433 r = repository->Get(KReal1, realVal);
435 TEST(realVal == KReal1_UpdatedValue);
438 CleanupStack::PopAndDestroy(repository);
441 TheTest.Next(_L("Kill the server process"));
442 _LIT( KCentralRepositoryServerName, "Centralrepositorysrv");
443 r = KillProcess(KCentralRepositoryServerName);
446 User::After(KGeneralDelay);
448 //Restart the server in soft reset mode to force a
450 TheTest.Next(_L("Manually start central respository"));
451 ReStartServerInSoftResetMode();
453 //Open the repository
454 repository = CRepository::NewLC(KUidRfsRepositoryInstallOnlyDefaultFile);
456 //verify that the Real value has been reset against the value in the install
458 TheTest.Next(_L("Get 'Modified' value"));
459 r = repository->Get(KReal1, realVal);
461 TEST(realVal == KReal1_InstallValue);
464 CleanupStack::PopAndDestroy(repository);
470 @SYMTestCaseID SYSLIB-CENTRALREPOSITORY-CT-3435
471 @SYMTestCaseDesc PDEF105203: Start-up Settings: New access point remains after restoring factory setting
472 @SYMTestPriority High
473 @SYMTestActions Create a new setting inside a range with range meta RFS bit set, create another setting
474 outside the range, restart server in RFS mode, check to see the setting created outside
475 the range still exists, check to see the setting created inside the range has been deleted.
476 Repeat same steps with another repository which has default meta having RFS on and range meta
477 having RFS off, check to see the setting created outside the range has been deleted, check to
478 see the setting created inside the range still exists.
479 @SYMTestExpectedResults Test must not fail
482 LOCAL_C void PDEF105203()
484 TheTest.Start(_L(" @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-CT-3435 PDEF105203: Start-up Settings: New access point remains after restoring factory setting "));
488 TheTest.Next(_L("Open repository to ensure server is running"));
489 CRepository* repository = CRepository::NewLC(KUidRfsRepository);
491 TheTest.Next(_L("Create a new setting outside RFSable range meta area"));
492 const TInt KIntValue = 999;
493 r = repository->Create(KNewInt2, KIntValue);
496 TheTest.Next(_L("Create a new setting in RFSable range meta area"));
497 r = repository->Create(KNewInt3, KIntValue);
501 CleanupStack::PopAndDestroy(repository);
503 TheTest.Next(_L("Kill the server process"));
504 _LIT( KCentralRepositoryServerName, "Centralrepositorysrv");
505 r = KillProcess(KCentralRepositoryServerName);
508 User::After(KGeneralDelay);
510 TheTest.Next(_L("Manually start central respository"));
511 ReStartServerInSoftResetMode();
513 TheTest.Next(_L("Re-create the repository to ensure server is running"));
514 repository = CRepository::NewLC(KUidRfsRepository);
516 TheTest.Next(_L("Get 'created' value outside range meta"));
517 r = repository->Get(KNewInt2, i);
518 TEST2(r, KErrNone); // should still exist
519 TEST(i == KIntValue);
521 TheTest.Next(_L("Get 'created' value inside range meta"));
522 r = repository->Get(KNewInt3, i);
523 TEST2(r, KErrNotFound); // should have been deleted
526 CleanupStack::PopAndDestroy(repository);
528 repository = CRepository::NewLC(KUidRfsRepositoryDefaultRfsOn);
530 TheTest.Next(_L("Create a new setting in RFSable default meta area"));
531 const TInt KIntValue2 = 990;
532 r = repository->Create(KNewInt2, KIntValue2);
535 TheTest.Next(_L("Create a new setting in non-RFSable range meta area"));
536 r = repository->Create(KNewInt3, KIntValue2);
540 CleanupStack::PopAndDestroy(repository);
542 TheTest.Next(_L("Kill the server process"));
543 r = KillProcess(KCentralRepositoryServerName);
546 User::After(KGeneralDelay);
548 TheTest.Next(_L("Manually start central respository"));
549 ReStartServerInSoftResetMode();
551 TheTest.Next(_L("Re-create the repository to ensure server is running"));
552 repository = CRepository::NewLC(KUidRfsRepositoryDefaultRfsOn);
554 TheTest.Next(_L("Get 'created' value outside range meta"));
555 r = repository->Get(KNewInt2, i);
556 TEST2(r, KErrNotFound); // should have been deleted
558 TheTest.Next(_L("Get 'created' value inside range meta"));
559 r = repository->Get(KNewInt3, i);
560 TEST2(r, KErrNone); // should still exist
561 TEST(i == KIntValue2);
564 CleanupStack::PopAndDestroy(repository);
570 @SYMTestCaseID PDS-CENTRALREPOSITORY-CT-4082
571 @SYMTestCaseDesc Test for PDEF133672: Cannot remove restored access points
572 @SYMTestPriority High
573 @SYMTestActions Create a repository, delete settings with RFS meta and reset repository,
574 then try to delete the settings again.
575 @SYMTestExpectedResults When deleting settings after reset, KErrAlreadyExists should not return.
578 LOCAL_C void PDEF133672L()
580 TheTest.Start(_L("Test for PDEF133671"));
582 const TUid KReposUid = {0xCCCCCC99};
584 const TInt KTestId1 = {0x00000001};
585 const TInt KTestId2 = {0x0000000A};
587 CRepository* repos=NULL;
589 repos = CRepository::NewLC(KReposUid);
591 User::LeaveIfNull(repos);
595 r = repos->Delete(KTestId1);
597 r = repos->Delete(KTestId2);
600 TheTest.Next(_L("try reset single settings"));
601 r = repos->Reset(KTestId1);
603 r = repos->Reset(KTestId2);
606 r = repos->Delete(KTestId1);
608 r = repos->Delete(KTestId2);
611 TheTest.Next(_L("try reset whole repository"));
614 r = repos->Delete(KTestId1);
616 r = repos->Delete(KTestId2);
619 CleanupStack::PopAndDestroy();
625 @SYMTestCaseID SYSLIB-CENTRALREPOSITORY-CT-0497-0001
626 @SYMTestCaseDesc CentralRepository functionality test
627 @SYMTestPriority High
628 @SYMTestActions Wrapper function calling up test functions
629 @SYMTestExpectedResults Test must not fail
634 TheTest.Start(_L(" @SYMTestCaseID:SYSLIB-CENTRALREPOSITORY-CT-0497-0001 Restore Factory Settings tests "));
636 KillC32Exe(); //Need to kill C32Exe as it is interfering with the test.
637 RestoreFactorySettingsTestL();
652 CTrapCleanup* cleanup = CTrapCleanup::New();
658 User::Panic(_L("Testing failed: "), err);