sl@0: // Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: LOAD_SUITE tef_ssnd sl@0: LOAD_SUITE BURTestServer sl@0: LOAD_SUITE TEFPlatSec sl@0: sl@0: //! make up a .wav file sl@0: RUN_UTILS MkDir c:\tef_bafl\ sl@0: RUN_UTILS CopyFile z:\tef_bafl\tef_ssnd.ini c:\tef_bafl\tef_ssnd.wav sl@0: RUN_UTILS MakeReadWrite c:\tef_bafl\tef_ssnd.wav sl@0: sl@0: START_TESTCASE SYSLIB-BAFL-CT-3354 //CapabilityTest sl@0: //!@SYMTestCaseID SYSLIB-BAFL-CT-3354 sl@0: //!@SYMTestCaseDesc Test BaSystemSound::SetSoundL enforces caller has WDD capability sl@0: //!@SYMTestPriority High sl@0: //!@SYMTestActions 1. Invoke SetSoundL from the original test server. sl@0: //! 2. Use setcap to make a test server without WDD. sl@0: //! 3. Invoke SetSoundL from the setcap test server. sl@0: //!@SYMTestExpectedResults The original server successfully sets the sound while the sl@0: //! setcap one fails with -46 KErrPermissionDenied. sl@0: //! @SYMDEF DEF095280 sl@0: RUN_TEST_STEP 100 tef_ssnd ResetDb sl@0: RUN_TEST_STEP 100 tef_ssnd SetSound z:\tef_bafl\tef_ssnd.ini Sound1 sl@0: RUN_TEST_STEP 100 TEFPlatSec SetCapabilities z:\tef_bafl\tef_ssnd.ini Missing_WDD sl@0: DELAY 1000 sl@0: LOAD_SUITE tef_ssnd_nocap sl@0: RUN_TEST_STEP !Error=-46 100 tef_ssnd_nocap SetSound z:\tef_bafl\tef_ssnd.ini Sound2 sl@0: RUN_TEST_STEP 100 TEFPlatSec Cleanup z:\tef_bafl\tef_ssnd.ini Missing_WDD sl@0: END_TESTCASE SYSLIB-BAFL-CT-3354 //CapabilityTest sl@0: sl@0: START_TESTCASE SYSLIB-BAFL-CT-3355 //CONCURRENT_SET_SameID sl@0: //!@SYMTestCaseID SYSLIB-BAFL-CT-3355 sl@0: //!@SYMTestCaseDesc Test coping with transaction commit fail sl@0: //! when two threads set the same sound at the same time. sl@0: //!@SYMTestPriority High sl@0: //!@SYMTestActions Run 2 concurrent threads to set two sounds with the same BaSystemSoundType, i.e. same ID. sl@0: //!@SYMTestExpectedResults 1. Both threads use SetSoundL successfully. sl@0: //! 2. One of them encounters transaction commit fail and must retry. sl@0: //! 3. The two sounds are saved in the same key slot in CentRep sl@0: //! because they have the same ID. sl@0: //! @SYMDEF DEF095280 sl@0: sl@0: RUN_TEST_STEP 100 tef_ssnd ResetDb sl@0: CONCURRENT sl@0: RUN_TEST_STEP 100 tef_ssnd ConcurrentSetSound z:\tef_bafl\tef_ssnd.ini MasterSameSsndId sl@0: RUN_TEST_STEP 100 tef_ssnd ConcurrentSetSound z:\tef_bafl\tef_ssnd.ini SameSsndIdWorker1 sl@0: RUN_TEST_STEP 100 tef_ssnd ConcurrentSetSound z:\tef_bafl\tef_ssnd.ini SameSsndIdWorker2 sl@0: CONSECUTIVE sl@0: END_TESTCASE SYSLIB-BAFL-CT-3355 //CONCURRENT_SET_SameID sl@0: sl@0: START_TESTCASE SYSLIB-BAFL-CT-3356 //CONCURRENT_SET_DiffID sl@0: //!@SYMTestCaseID SYSLIB-BAFL-CT-3356 sl@0: //!@SYMTestCaseDesc Test coping with transaction commit fail when three sl@0: //! threads set different sounds simultaneously. sl@0: //!@SYMTestPriority High sl@0: //!@SYMTestActions Run 3 concurrent threads to set three sounds with different IDs. sl@0: //!@SYMTestExpectedResults 1. All threads use SetSoundL successfully. sl@0: //! 2. Two workers encounter transaction commit fail and must retry. sl@0: //! 3. The three sounds are saved in different key slots in CentRep. sl@0: //! @SYMDEF DEF095280 sl@0: sl@0: RUN_TEST_STEP 100 tef_ssnd ResetDb sl@0: sl@0: CONCURRENT sl@0: RUN_TEST_STEP 100 tef_ssnd ConcurrentSetSound z:\tef_bafl\tef_ssnd.ini MasterDifferentSsndId sl@0: RUN_TEST_STEP 100 tef_ssnd ConcurrentSetSound z:\tef_bafl\tef_ssnd.ini DifferentSsndIdWorker1 sl@0: RUN_TEST_STEP 100 tef_ssnd ConcurrentSetSound z:\tef_bafl\tef_ssnd.ini DifferentSsndIdWorker2 sl@0: RUN_TEST_STEP 100 tef_ssnd ConcurrentSetSound z:\tef_bafl\tef_ssnd.ini DifferentSsndIdWorker3 sl@0: CONSECUTIVE sl@0: END_TESTCASE SYSLIB-BAFL-CT-3356 //CONCURRENT_SET_DiffID sl@0: sl@0: START_TESTCASE SYSLIB-BAFL-CT-3357 //CONCURRENT_SET_EXISTING sl@0: //!@SYMTestCaseID SYSLIB-BAFL-CT-3357 sl@0: //!@SYMTestCaseDesc When CentRep transaction is used, first one to commit will fail sl@0: //! all other transactions on the same repository. This test guards sl@0: //! future maintenance work from re-engineering the set sound algorithm sl@0: //! on writes that seem to have no dependency on other writes. sl@0: //!@SYMTestPriority High sl@0: //!@SYMTestActions Run 3 concurrent threads to set three existing sounds. sl@0: //!@SYMTestExpectedResults 1. All threads use SetSoundL successfully. sl@0: //! 2. Two workers encounter transaction commit fail and must retry. sl@0: //! 3. The three sounds are saved in different key slots in CentRep. sl@0: //! @SYMDEF DEF095280 sl@0: RUN_TEST_STEP 100 tef_ssnd ResetDb sl@0: RUN_TEST_STEP 100 tef_ssnd SetSound z:\tef_bafl\tef_ssnd.ini SetupSsndIdWorker1 sl@0: RUN_TEST_STEP 100 tef_ssnd SetSound z:\tef_bafl\tef_ssnd.ini SetupSsndIdWorker2 sl@0: RUN_TEST_STEP 100 tef_ssnd SetSound z:\tef_bafl\tef_ssnd.ini SetupSsndIdWorker3 sl@0: sl@0: CONCURRENT sl@0: RUN_TEST_STEP 100 tef_ssnd ConcurrentSetSound z:\tef_bafl\tef_ssnd.ini MasterDifferentSsndId sl@0: RUN_TEST_STEP 100 tef_ssnd ConcurrentSetSound z:\tef_bafl\tef_ssnd.ini DifferentSsndIdWorker3 sl@0: RUN_TEST_STEP 100 tef_ssnd ConcurrentSetSound z:\tef_bafl\tef_ssnd.ini DifferentSsndIdWorker1 sl@0: RUN_TEST_STEP 100 tef_ssnd ConcurrentSetSound z:\tef_bafl\tef_ssnd.ini DifferentSsndIdWorker2 sl@0: CONSECUTIVE sl@0: END_TESTCASE SYSLIB-BAFL-CT-3357 //CONCURRENT_SET_EXISTING sl@0: sl@0: START_TESTCASE SYSLIB-BAFL-CT-3388 //BackupRestore sl@0: //!@SYMTestCaseID SYSLIB-BAFL-CT-3388 sl@0: //!@SYMTestCaseDesc Test sound settings are saved and restored by Backup Restore. sl@0: //!@SYMTestPriority High sl@0: //!@SYMTestActions Create some sounds, backup, reset repository and sl@0: //! check the sounds are not there. sl@0: //! Restore and check the sounds are there. sl@0: //!@SYMTestExpectedResults After reset, the sound is not in CentRep. Restore brings it back. sl@0: //! @SYMDEF DEF095280 sl@0: sl@0: sl@0: RUN_TEST_STEP 100 tef_ssnd ResetDb sl@0: RUN_TEST_STEP 100 tef_ssnd SetSound z:\tef_bafl\tef_ssnd.ini Sound1 sl@0: RUN_TEST_STEP 100 tef_ssnd SetSound z:\tef_bafl\tef_ssnd.ini DifferentSsndIdWorker3 sl@0: RUN_TEST_STEP -1 BURTestServer TestBackup z:\tef_bafl\tef_ssnd.ini ForBURServer sl@0: RUN_TEST_STEP 100 tef_ssnd ResetDb sl@0: RUN_TEST_STEP !Error=-1 100 tef_ssnd GetSound z:\tef_bafl\tef_ssnd.ini Sound1 sl@0: RUN_TEST_STEP !Error=-1 100 tef_ssnd GetSound z:\tef_bafl\tef_ssnd.ini DifferentSsndIdWorker3 sl@0: RUN_TEST_STEP -1 BURTestServer TestRestore z:\tef_bafl\tef_ssnd.ini ForBURServer sl@0: RUN_TEST_STEP 100 tef_ssnd GetSound z:\tef_bafl\tef_ssnd.ini Sound1 sl@0: RUN_TEST_STEP 100 tef_ssnd GetSound z:\tef_bafl\tef_ssnd.ini DifferentSsndIdWorker3 sl@0: END_TESTCASE SYSLIB-BAFL-CT-3388 //BackupRestore sl@0: sl@0: START_TESTCASE SYSLIB-BAFL-CT-3389 //LockoutByBackup sl@0: //!@SYMTestCaseID SYSLIB-BAFL-CT-3389 sl@0: //!@SYMTestCaseDesc Test correct error code is returned to clients when CentRep server is sl@0: //! locked out by Backup. sl@0: //!@SYMTestPriority High sl@0: //!@SYMTestActions Run a thread to continuously set a series of sounds and read them back. sl@0: //! Start secure backup concurrently. sl@0: //!@SYMTestExpectedResults All reads are successful. Some SetSoundL encounter KErrServerBusy. sl@0: //! @SYMDEF DEF095280 sl@0: sl@0: RUN_TEST_STEP 100 tef_ssnd ResetDb sl@0: RUN_TEST_STEP 100 tef_ssnd SetSound z:\tef_bafl\tef_ssnd.ini LockoutTestSound sl@0: sl@0: CONCURRENT sl@0: RUN_TEST_STEP 240 BURTestServer TestBackup z:\tef_bafl\tef_ssnd.ini ForBURServer sl@0: RUN_TEST_STEP 240 tef_ssnd LockoutTest sl@0: CONSECUTIVE sl@0: sl@0: RUN_TEST_STEP 100 tef_ssnd ResetDb sl@0: END_TESTCASE SYSLIB-BAFL-CT-3389 //LockoutByBackup sl@0: sl@0: START_TESTCASE SYSLIB-BAFL-CT-3390 //LockoutByRestore sl@0: //!@SYMTestCaseID SYSLIB-BAFL-CT-3390 sl@0: //!@SYMTestCaseDesc Test correct error code is returned to clients when CentRep server is sl@0: //! locked out by Restore. sl@0: //!@SYMTestPriority High sl@0: //!@SYMTestActions Run a thread to continuously set a series of sounds and read them back. sl@0: //! Start Restore concurrently. sl@0: //!@SYMTestExpectedResults Bothe Get and Set encounter KErrServerBusy. sl@0: //! @SYMDEF DEF095280 sl@0: sl@0: RUN_TEST_STEP 100 tef_ssnd ResetDb sl@0: RUN_TEST_STEP 100 tef_ssnd SetSound z:\tef_bafl\tef_ssnd.ini LockoutTestSound sl@0: sl@0: CONCURRENT sl@0: RUN_TEST_STEP 240 BURTestServer TestRestore z:\tef_bafl\tef_ssnd.ini ForBURServer sl@0: RUN_TEST_STEP 240 tef_ssnd LockoutTest sl@0: CONSECUTIVE sl@0: sl@0: RUN_TEST_STEP 100 tef_ssnd ResetDb sl@0: END_TESTCASE SYSLIB-BAFL-CT-3390 //LockoutByRestore sl@0: sl@0: START_TESTCASE SYSLIB-BAFL-CT-3391 //CorruptedEntry sl@0: //!@SYMTestCaseID SYSLIB-BAFL-CT-3391 sl@0: //!@SYMTestCaseDesc Test GetSound can detect corrupted or tempered entries in repository. sl@0: //!@SYMTestPriority High sl@0: //!@SYMTestActions 1. Add a sound in repository. sl@0: //! 2. Fetch the setting from CentRep. sl@0: //! 3. Corrupt the soundtype field and save it in CentRep. sl@0: //! 4. Call GetSound. sl@0: //! 5. Repeat steps 3 and 4 on the sound category field. sl@0: //! 6. Repeat steps 3 and 4 on the path length field. sl@0: //! 7. Restore the original setting and call GetSound. sl@0: //!@SYMTestExpectedResults The GetSound at step 7 is successful. All the other sl@0: //! GetSound calls fail with KErrCorrupt sl@0: //! @SYMDEF DEF095280 sl@0: sl@0: RUN_TEST_STEP 100 tef_ssnd ResetDb sl@0: RUN_TEST_STEP 100 tef_ssnd CorruptSound z:\tef_bafl\tef_ssnd.ini DifferentSsndIdWorker3 sl@0: RUN_TEST_STEP 100 tef_ssnd ResetDb sl@0: END_TESTCASE SYSLIB-BAFL-CT-3391 //CorruptedEntry sl@0: sl@0: START_TESTCASE SYSLIB-BAFL-CT-3392 //SystemSoundFileAPI sl@0: //!@SYMTestCaseID SYSLIB-BAFL-CT-3392 sl@0: //!@SYMTestCaseDesc Test BaSystemSound::SystemSoundFile still return the old filename. sl@0: //!@SYMTestPriority High sl@0: //!@SYMTestActions Call the API. sl@0: //!@SYMTestExpectedResults C:\system\data\syssnd.dat is returned. sl@0: //! @SYMDEF DEF095280 sl@0: sl@0: RUN_TEST_STEP 100 tef_ssnd SystemSoundFileTest sl@0: END_TESTCASE SYSLIB-BAFL-CT-3392 //SystemSoundFileAPI sl@0: sl@0: START_TESTCASE SYSLIB-BAFL-CT-3393 //RepositoryHasGap sl@0: //!@SYMTestCaseID SYSLIB-BAFL-CT-3393 sl@0: //!@SYMTestCaseDesc Test BaSystemSound can detect rogue applications creating extra entries sl@0: //! which will interfere with SetSoundL. sl@0: //!@SYMTestPriority High sl@0: //!@SYMTestActions Create a entry at key position 7 and then call SetSoundL. sl@0: //!@SYMTestExpectedResults SetSoundL fails with KErrCorrupt. sl@0: //! @SYMDEF DEF095280 sl@0: sl@0: RUN_TEST_STEP 100 tef_ssnd ResetDb sl@0: RUN_TEST_STEP 100 tef_ssnd GapTest sl@0: RUN_TEST_STEP 100 tef_ssnd ResetDb sl@0: END_TESTCASE SYSLIB-BAFL-CT-3393 //RepositoryHasGap sl@0: sl@0: START_TESTCASE SYSLIB-BAFL-CT-3394 //SoundFileWithNoPath sl@0: //!@SYMTestCaseID SYSLIB-BAFL-CT-3394 sl@0: //!@SYMTestCaseDesc Test BaSystemSound::SetSoundL panic if sound filename has no path info. sl@0: //!@SYMTestPriority High sl@0: //!@SYMTestActions Setup a file based sound with no path info in the filename. sl@0: //! Then invoke SetSoundL. sl@0: //!@SYMTestExpectedResults Panic 14 sl@0: //! @SYMDEF DEF095280 sl@0: sl@0: RUN_PANIC_STEP 100 tef_ssnd SoundFileNoPathTest sl@0: END_TESTCASE SYSLIB-BAFL-CT-3394 //SoundFileWithNoPath sl@0: sl@0: // cleanup sl@0: RUN_UTILS DeleteFile c:\tef_bafl\tef_ssnd.wav