1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/lowlevellibsandfws/apputils/test/tef/ssnd/scripts/tef_ssnd.script Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,233 @@
1.4 +// Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +//
1.18 +
1.19 +LOAD_SUITE tef_ssnd
1.20 +LOAD_SUITE BURTestServer
1.21 +LOAD_SUITE TEFPlatSec
1.22 +
1.23 +//! make up a .wav file
1.24 +RUN_UTILS MkDir c:\tef_bafl\
1.25 +RUN_UTILS CopyFile z:\tef_bafl\tef_ssnd.ini c:\tef_bafl\tef_ssnd.wav
1.26 +RUN_UTILS MakeReadWrite c:\tef_bafl\tef_ssnd.wav
1.27 +
1.28 +START_TESTCASE SYSLIB-BAFL-CT-3354 //CapabilityTest
1.29 +//!@SYMTestCaseID SYSLIB-BAFL-CT-3354
1.30 +//!@SYMTestCaseDesc Test BaSystemSound::SetSoundL enforces caller has WDD capability
1.31 +//!@SYMTestPriority High
1.32 +//!@SYMTestActions 1. Invoke SetSoundL from the original test server.
1.33 +//! 2. Use setcap to make a test server without WDD.
1.34 +//! 3. Invoke SetSoundL from the setcap test server.
1.35 +//!@SYMTestExpectedResults The original server successfully sets the sound while the
1.36 +//! setcap one fails with -46 KErrPermissionDenied.
1.37 +//! @SYMDEF DEF095280
1.38 + RUN_TEST_STEP 100 tef_ssnd ResetDb
1.39 + RUN_TEST_STEP 100 tef_ssnd SetSound z:\tef_bafl\tef_ssnd.ini Sound1
1.40 + RUN_TEST_STEP 100 TEFPlatSec SetCapabilities z:\tef_bafl\tef_ssnd.ini Missing_WDD
1.41 + DELAY 1000
1.42 + LOAD_SUITE tef_ssnd_nocap
1.43 + RUN_TEST_STEP !Error=-46 100 tef_ssnd_nocap SetSound z:\tef_bafl\tef_ssnd.ini Sound2
1.44 + RUN_TEST_STEP 100 TEFPlatSec Cleanup z:\tef_bafl\tef_ssnd.ini Missing_WDD
1.45 +END_TESTCASE SYSLIB-BAFL-CT-3354 //CapabilityTest
1.46 +
1.47 +START_TESTCASE SYSLIB-BAFL-CT-3355 //CONCURRENT_SET_SameID
1.48 +//!@SYMTestCaseID SYSLIB-BAFL-CT-3355
1.49 +//!@SYMTestCaseDesc Test coping with transaction commit fail
1.50 +//! when two threads set the same sound at the same time.
1.51 +//!@SYMTestPriority High
1.52 +//!@SYMTestActions Run 2 concurrent threads to set two sounds with the same BaSystemSoundType, i.e. same ID.
1.53 +//!@SYMTestExpectedResults 1. Both threads use SetSoundL successfully.
1.54 +//! 2. One of them encounters transaction commit fail and must retry.
1.55 +//! 3. The two sounds are saved in the same key slot in CentRep
1.56 +//! because they have the same ID.
1.57 +//! @SYMDEF DEF095280
1.58 +
1.59 + RUN_TEST_STEP 100 tef_ssnd ResetDb
1.60 + CONCURRENT
1.61 + RUN_TEST_STEP 100 tef_ssnd ConcurrentSetSound z:\tef_bafl\tef_ssnd.ini MasterSameSsndId
1.62 + RUN_TEST_STEP 100 tef_ssnd ConcurrentSetSound z:\tef_bafl\tef_ssnd.ini SameSsndIdWorker1
1.63 + RUN_TEST_STEP 100 tef_ssnd ConcurrentSetSound z:\tef_bafl\tef_ssnd.ini SameSsndIdWorker2
1.64 + CONSECUTIVE
1.65 +END_TESTCASE SYSLIB-BAFL-CT-3355 //CONCURRENT_SET_SameID
1.66 +
1.67 +START_TESTCASE SYSLIB-BAFL-CT-3356 //CONCURRENT_SET_DiffID
1.68 +//!@SYMTestCaseID SYSLIB-BAFL-CT-3356
1.69 +//!@SYMTestCaseDesc Test coping with transaction commit fail when three
1.70 +//! threads set different sounds simultaneously.
1.71 +//!@SYMTestPriority High
1.72 +//!@SYMTestActions Run 3 concurrent threads to set three sounds with different IDs.
1.73 +//!@SYMTestExpectedResults 1. All threads use SetSoundL successfully.
1.74 +//! 2. Two workers encounter transaction commit fail and must retry.
1.75 +//! 3. The three sounds are saved in different key slots in CentRep.
1.76 +//! @SYMDEF DEF095280
1.77 +
1.78 + RUN_TEST_STEP 100 tef_ssnd ResetDb
1.79 +
1.80 + CONCURRENT
1.81 + RUN_TEST_STEP 100 tef_ssnd ConcurrentSetSound z:\tef_bafl\tef_ssnd.ini MasterDifferentSsndId
1.82 + RUN_TEST_STEP 100 tef_ssnd ConcurrentSetSound z:\tef_bafl\tef_ssnd.ini DifferentSsndIdWorker1
1.83 + RUN_TEST_STEP 100 tef_ssnd ConcurrentSetSound z:\tef_bafl\tef_ssnd.ini DifferentSsndIdWorker2
1.84 + RUN_TEST_STEP 100 tef_ssnd ConcurrentSetSound z:\tef_bafl\tef_ssnd.ini DifferentSsndIdWorker3
1.85 + CONSECUTIVE
1.86 +END_TESTCASE SYSLIB-BAFL-CT-3356 //CONCURRENT_SET_DiffID
1.87 +
1.88 +START_TESTCASE SYSLIB-BAFL-CT-3357 //CONCURRENT_SET_EXISTING
1.89 +//!@SYMTestCaseID SYSLIB-BAFL-CT-3357
1.90 +//!@SYMTestCaseDesc When CentRep transaction is used, first one to commit will fail
1.91 +//! all other transactions on the same repository. This test guards
1.92 +//! future maintenance work from re-engineering the set sound algorithm
1.93 +//! on writes that seem to have no dependency on other writes.
1.94 +//!@SYMTestPriority High
1.95 +//!@SYMTestActions Run 3 concurrent threads to set three existing sounds.
1.96 +//!@SYMTestExpectedResults 1. All threads use SetSoundL successfully.
1.97 +//! 2. Two workers encounter transaction commit fail and must retry.
1.98 +//! 3. The three sounds are saved in different key slots in CentRep.
1.99 +//! @SYMDEF DEF095280
1.100 + RUN_TEST_STEP 100 tef_ssnd ResetDb
1.101 + RUN_TEST_STEP 100 tef_ssnd SetSound z:\tef_bafl\tef_ssnd.ini SetupSsndIdWorker1
1.102 + RUN_TEST_STEP 100 tef_ssnd SetSound z:\tef_bafl\tef_ssnd.ini SetupSsndIdWorker2
1.103 + RUN_TEST_STEP 100 tef_ssnd SetSound z:\tef_bafl\tef_ssnd.ini SetupSsndIdWorker3
1.104 +
1.105 + CONCURRENT
1.106 + RUN_TEST_STEP 100 tef_ssnd ConcurrentSetSound z:\tef_bafl\tef_ssnd.ini MasterDifferentSsndId
1.107 + RUN_TEST_STEP 100 tef_ssnd ConcurrentSetSound z:\tef_bafl\tef_ssnd.ini DifferentSsndIdWorker3
1.108 + RUN_TEST_STEP 100 tef_ssnd ConcurrentSetSound z:\tef_bafl\tef_ssnd.ini DifferentSsndIdWorker1
1.109 + RUN_TEST_STEP 100 tef_ssnd ConcurrentSetSound z:\tef_bafl\tef_ssnd.ini DifferentSsndIdWorker2
1.110 + CONSECUTIVE
1.111 +END_TESTCASE SYSLIB-BAFL-CT-3357 //CONCURRENT_SET_EXISTING
1.112 +
1.113 +START_TESTCASE SYSLIB-BAFL-CT-3388 //BackupRestore
1.114 +//!@SYMTestCaseID SYSLIB-BAFL-CT-3388
1.115 +//!@SYMTestCaseDesc Test sound settings are saved and restored by Backup Restore.
1.116 +//!@SYMTestPriority High
1.117 +//!@SYMTestActions Create some sounds, backup, reset repository and
1.118 +//! check the sounds are not there.
1.119 +//! Restore and check the sounds are there.
1.120 +//!@SYMTestExpectedResults After reset, the sound is not in CentRep. Restore brings it back.
1.121 +//! @SYMDEF DEF095280
1.122 +
1.123 +
1.124 + RUN_TEST_STEP 100 tef_ssnd ResetDb
1.125 + RUN_TEST_STEP 100 tef_ssnd SetSound z:\tef_bafl\tef_ssnd.ini Sound1
1.126 + RUN_TEST_STEP 100 tef_ssnd SetSound z:\tef_bafl\tef_ssnd.ini DifferentSsndIdWorker3
1.127 + RUN_TEST_STEP -1 BURTestServer TestBackup z:\tef_bafl\tef_ssnd.ini ForBURServer
1.128 + RUN_TEST_STEP 100 tef_ssnd ResetDb
1.129 + RUN_TEST_STEP !Error=-1 100 tef_ssnd GetSound z:\tef_bafl\tef_ssnd.ini Sound1
1.130 + RUN_TEST_STEP !Error=-1 100 tef_ssnd GetSound z:\tef_bafl\tef_ssnd.ini DifferentSsndIdWorker3
1.131 + RUN_TEST_STEP -1 BURTestServer TestRestore z:\tef_bafl\tef_ssnd.ini ForBURServer
1.132 + RUN_TEST_STEP 100 tef_ssnd GetSound z:\tef_bafl\tef_ssnd.ini Sound1
1.133 + RUN_TEST_STEP 100 tef_ssnd GetSound z:\tef_bafl\tef_ssnd.ini DifferentSsndIdWorker3
1.134 +END_TESTCASE SYSLIB-BAFL-CT-3388 //BackupRestore
1.135 +
1.136 +START_TESTCASE SYSLIB-BAFL-CT-3389 //LockoutByBackup
1.137 +//!@SYMTestCaseID SYSLIB-BAFL-CT-3389
1.138 +//!@SYMTestCaseDesc Test correct error code is returned to clients when CentRep server is
1.139 +//! locked out by Backup.
1.140 +//!@SYMTestPriority High
1.141 +//!@SYMTestActions Run a thread to continuously set a series of sounds and read them back.
1.142 +//! Start secure backup concurrently.
1.143 +//!@SYMTestExpectedResults All reads are successful. Some SetSoundL encounter KErrServerBusy.
1.144 +//! @SYMDEF DEF095280
1.145 +
1.146 + RUN_TEST_STEP 100 tef_ssnd ResetDb
1.147 + RUN_TEST_STEP 100 tef_ssnd SetSound z:\tef_bafl\tef_ssnd.ini LockoutTestSound
1.148 +
1.149 + CONCURRENT
1.150 + RUN_TEST_STEP 240 BURTestServer TestBackup z:\tef_bafl\tef_ssnd.ini ForBURServer
1.151 + RUN_TEST_STEP 240 tef_ssnd LockoutTest
1.152 + CONSECUTIVE
1.153 +
1.154 + RUN_TEST_STEP 100 tef_ssnd ResetDb
1.155 +END_TESTCASE SYSLIB-BAFL-CT-3389 //LockoutByBackup
1.156 +
1.157 +START_TESTCASE SYSLIB-BAFL-CT-3390 //LockoutByRestore
1.158 +//!@SYMTestCaseID SYSLIB-BAFL-CT-3390
1.159 +//!@SYMTestCaseDesc Test correct error code is returned to clients when CentRep server is
1.160 +//! locked out by Restore.
1.161 +//!@SYMTestPriority High
1.162 +//!@SYMTestActions Run a thread to continuously set a series of sounds and read them back.
1.163 +//! Start Restore concurrently.
1.164 +//!@SYMTestExpectedResults Bothe Get and Set encounter KErrServerBusy.
1.165 +//! @SYMDEF DEF095280
1.166 +
1.167 + RUN_TEST_STEP 100 tef_ssnd ResetDb
1.168 + RUN_TEST_STEP 100 tef_ssnd SetSound z:\tef_bafl\tef_ssnd.ini LockoutTestSound
1.169 +
1.170 + CONCURRENT
1.171 + RUN_TEST_STEP 240 BURTestServer TestRestore z:\tef_bafl\tef_ssnd.ini ForBURServer
1.172 + RUN_TEST_STEP 240 tef_ssnd LockoutTest
1.173 + CONSECUTIVE
1.174 +
1.175 + RUN_TEST_STEP 100 tef_ssnd ResetDb
1.176 +END_TESTCASE SYSLIB-BAFL-CT-3390 //LockoutByRestore
1.177 +
1.178 +START_TESTCASE SYSLIB-BAFL-CT-3391 //CorruptedEntry
1.179 +//!@SYMTestCaseID SYSLIB-BAFL-CT-3391
1.180 +//!@SYMTestCaseDesc Test GetSound can detect corrupted or tempered entries in repository.
1.181 +//!@SYMTestPriority High
1.182 +//!@SYMTestActions 1. Add a sound in repository.
1.183 +//! 2. Fetch the setting from CentRep.
1.184 +//! 3. Corrupt the soundtype field and save it in CentRep.
1.185 +//! 4. Call GetSound.
1.186 +//! 5. Repeat steps 3 and 4 on the sound category field.
1.187 +//! 6. Repeat steps 3 and 4 on the path length field.
1.188 +//! 7. Restore the original setting and call GetSound.
1.189 +//!@SYMTestExpectedResults The GetSound at step 7 is successful. All the other
1.190 +//! GetSound calls fail with KErrCorrupt
1.191 +//! @SYMDEF DEF095280
1.192 +
1.193 + RUN_TEST_STEP 100 tef_ssnd ResetDb
1.194 + RUN_TEST_STEP 100 tef_ssnd CorruptSound z:\tef_bafl\tef_ssnd.ini DifferentSsndIdWorker3
1.195 + RUN_TEST_STEP 100 tef_ssnd ResetDb
1.196 +END_TESTCASE SYSLIB-BAFL-CT-3391 //CorruptedEntry
1.197 +
1.198 +START_TESTCASE SYSLIB-BAFL-CT-3392 //SystemSoundFileAPI
1.199 +//!@SYMTestCaseID SYSLIB-BAFL-CT-3392
1.200 +//!@SYMTestCaseDesc Test BaSystemSound::SystemSoundFile still return the old filename.
1.201 +//!@SYMTestPriority High
1.202 +//!@SYMTestActions Call the API.
1.203 +//!@SYMTestExpectedResults C:\system\data\syssnd.dat is returned.
1.204 +//! @SYMDEF DEF095280
1.205 +
1.206 + RUN_TEST_STEP 100 tef_ssnd SystemSoundFileTest
1.207 +END_TESTCASE SYSLIB-BAFL-CT-3392 //SystemSoundFileAPI
1.208 +
1.209 +START_TESTCASE SYSLIB-BAFL-CT-3393 //RepositoryHasGap
1.210 +//!@SYMTestCaseID SYSLIB-BAFL-CT-3393
1.211 +//!@SYMTestCaseDesc Test BaSystemSound can detect rogue applications creating extra entries
1.212 +//! which will interfere with SetSoundL.
1.213 +//!@SYMTestPriority High
1.214 +//!@SYMTestActions Create a entry at key position 7 and then call SetSoundL.
1.215 +//!@SYMTestExpectedResults SetSoundL fails with KErrCorrupt.
1.216 +//! @SYMDEF DEF095280
1.217 +
1.218 + RUN_TEST_STEP 100 tef_ssnd ResetDb
1.219 + RUN_TEST_STEP 100 tef_ssnd GapTest
1.220 + RUN_TEST_STEP 100 tef_ssnd ResetDb
1.221 +END_TESTCASE SYSLIB-BAFL-CT-3393 //RepositoryHasGap
1.222 +
1.223 +START_TESTCASE SYSLIB-BAFL-CT-3394 //SoundFileWithNoPath
1.224 +//!@SYMTestCaseID SYSLIB-BAFL-CT-3394
1.225 +//!@SYMTestCaseDesc Test BaSystemSound::SetSoundL panic if sound filename has no path info.
1.226 +//!@SYMTestPriority High
1.227 +//!@SYMTestActions Setup a file based sound with no path info in the filename.
1.228 +//! Then invoke SetSoundL.
1.229 +//!@SYMTestExpectedResults Panic 14
1.230 +//! @SYMDEF DEF095280
1.231 +
1.232 + RUN_PANIC_STEP 100 tef_ssnd SoundFileNoPathTest
1.233 +END_TESTCASE SYSLIB-BAFL-CT-3394 //SoundFileWithNoPath
1.234 +
1.235 +// cleanup
1.236 +RUN_UTILS DeleteFile c:\tef_bafl\tef_ssnd.wav