First public contribution.
1 // Copyright (c) 2006-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.
17 LOAD_SUITE BURTestServer
20 //! make up a .wav file
21 RUN_UTILS MkDir c:\tef_bafl\
22 RUN_UTILS CopyFile z:\tef_bafl\tef_ssnd.ini c:\tef_bafl\tef_ssnd.wav
23 RUN_UTILS MakeReadWrite c:\tef_bafl\tef_ssnd.wav
25 START_TESTCASE SYSLIB-BAFL-CT-3354 //CapabilityTest
26 //!@SYMTestCaseID SYSLIB-BAFL-CT-3354
27 //!@SYMTestCaseDesc Test BaSystemSound::SetSoundL enforces caller has WDD capability
28 //!@SYMTestPriority High
29 //!@SYMTestActions 1. Invoke SetSoundL from the original test server.
30 //! 2. Use setcap to make a test server without WDD.
31 //! 3. Invoke SetSoundL from the setcap test server.
32 //!@SYMTestExpectedResults The original server successfully sets the sound while the
33 //! setcap one fails with -46 KErrPermissionDenied.
35 RUN_TEST_STEP 100 tef_ssnd ResetDb
36 RUN_TEST_STEP 100 tef_ssnd SetSound z:\tef_bafl\tef_ssnd.ini Sound1
37 RUN_TEST_STEP 100 TEFPlatSec SetCapabilities z:\tef_bafl\tef_ssnd.ini Missing_WDD
39 LOAD_SUITE tef_ssnd_nocap
40 RUN_TEST_STEP !Error=-46 100 tef_ssnd_nocap SetSound z:\tef_bafl\tef_ssnd.ini Sound2
41 RUN_TEST_STEP 100 TEFPlatSec Cleanup z:\tef_bafl\tef_ssnd.ini Missing_WDD
42 END_TESTCASE SYSLIB-BAFL-CT-3354 //CapabilityTest
44 START_TESTCASE SYSLIB-BAFL-CT-3355 //CONCURRENT_SET_SameID
45 //!@SYMTestCaseID SYSLIB-BAFL-CT-3355
46 //!@SYMTestCaseDesc Test coping with transaction commit fail
47 //! when two threads set the same sound at the same time.
48 //!@SYMTestPriority High
49 //!@SYMTestActions Run 2 concurrent threads to set two sounds with the same BaSystemSoundType, i.e. same ID.
50 //!@SYMTestExpectedResults 1. Both threads use SetSoundL successfully.
51 //! 2. One of them encounters transaction commit fail and must retry.
52 //! 3. The two sounds are saved in the same key slot in CentRep
53 //! because they have the same ID.
56 RUN_TEST_STEP 100 tef_ssnd ResetDb
58 RUN_TEST_STEP 100 tef_ssnd ConcurrentSetSound z:\tef_bafl\tef_ssnd.ini MasterSameSsndId
59 RUN_TEST_STEP 100 tef_ssnd ConcurrentSetSound z:\tef_bafl\tef_ssnd.ini SameSsndIdWorker1
60 RUN_TEST_STEP 100 tef_ssnd ConcurrentSetSound z:\tef_bafl\tef_ssnd.ini SameSsndIdWorker2
62 END_TESTCASE SYSLIB-BAFL-CT-3355 //CONCURRENT_SET_SameID
64 START_TESTCASE SYSLIB-BAFL-CT-3356 //CONCURRENT_SET_DiffID
65 //!@SYMTestCaseID SYSLIB-BAFL-CT-3356
66 //!@SYMTestCaseDesc Test coping with transaction commit fail when three
67 //! threads set different sounds simultaneously.
68 //!@SYMTestPriority High
69 //!@SYMTestActions Run 3 concurrent threads to set three sounds with different IDs.
70 //!@SYMTestExpectedResults 1. All threads use SetSoundL successfully.
71 //! 2. Two workers encounter transaction commit fail and must retry.
72 //! 3. The three sounds are saved in different key slots in CentRep.
75 RUN_TEST_STEP 100 tef_ssnd ResetDb
78 RUN_TEST_STEP 100 tef_ssnd ConcurrentSetSound z:\tef_bafl\tef_ssnd.ini MasterDifferentSsndId
79 RUN_TEST_STEP 100 tef_ssnd ConcurrentSetSound z:\tef_bafl\tef_ssnd.ini DifferentSsndIdWorker1
80 RUN_TEST_STEP 100 tef_ssnd ConcurrentSetSound z:\tef_bafl\tef_ssnd.ini DifferentSsndIdWorker2
81 RUN_TEST_STEP 100 tef_ssnd ConcurrentSetSound z:\tef_bafl\tef_ssnd.ini DifferentSsndIdWorker3
83 END_TESTCASE SYSLIB-BAFL-CT-3356 //CONCURRENT_SET_DiffID
85 START_TESTCASE SYSLIB-BAFL-CT-3357 //CONCURRENT_SET_EXISTING
86 //!@SYMTestCaseID SYSLIB-BAFL-CT-3357
87 //!@SYMTestCaseDesc When CentRep transaction is used, first one to commit will fail
88 //! all other transactions on the same repository. This test guards
89 //! future maintenance work from re-engineering the set sound algorithm
90 //! on writes that seem to have no dependency on other writes.
91 //!@SYMTestPriority High
92 //!@SYMTestActions Run 3 concurrent threads to set three existing sounds.
93 //!@SYMTestExpectedResults 1. All threads use SetSoundL successfully.
94 //! 2. Two workers encounter transaction commit fail and must retry.
95 //! 3. The three sounds are saved in different key slots in CentRep.
97 RUN_TEST_STEP 100 tef_ssnd ResetDb
98 RUN_TEST_STEP 100 tef_ssnd SetSound z:\tef_bafl\tef_ssnd.ini SetupSsndIdWorker1
99 RUN_TEST_STEP 100 tef_ssnd SetSound z:\tef_bafl\tef_ssnd.ini SetupSsndIdWorker2
100 RUN_TEST_STEP 100 tef_ssnd SetSound z:\tef_bafl\tef_ssnd.ini SetupSsndIdWorker3
103 RUN_TEST_STEP 100 tef_ssnd ConcurrentSetSound z:\tef_bafl\tef_ssnd.ini MasterDifferentSsndId
104 RUN_TEST_STEP 100 tef_ssnd ConcurrentSetSound z:\tef_bafl\tef_ssnd.ini DifferentSsndIdWorker3
105 RUN_TEST_STEP 100 tef_ssnd ConcurrentSetSound z:\tef_bafl\tef_ssnd.ini DifferentSsndIdWorker1
106 RUN_TEST_STEP 100 tef_ssnd ConcurrentSetSound z:\tef_bafl\tef_ssnd.ini DifferentSsndIdWorker2
108 END_TESTCASE SYSLIB-BAFL-CT-3357 //CONCURRENT_SET_EXISTING
110 START_TESTCASE SYSLIB-BAFL-CT-3388 //BackupRestore
111 //!@SYMTestCaseID SYSLIB-BAFL-CT-3388
112 //!@SYMTestCaseDesc Test sound settings are saved and restored by Backup Restore.
113 //!@SYMTestPriority High
114 //!@SYMTestActions Create some sounds, backup, reset repository and
115 //! check the sounds are not there.
116 //! Restore and check the sounds are there.
117 //!@SYMTestExpectedResults After reset, the sound is not in CentRep. Restore brings it back.
118 //! @SYMDEF DEF095280
121 RUN_TEST_STEP 100 tef_ssnd ResetDb
122 RUN_TEST_STEP 100 tef_ssnd SetSound z:\tef_bafl\tef_ssnd.ini Sound1
123 RUN_TEST_STEP 100 tef_ssnd SetSound z:\tef_bafl\tef_ssnd.ini DifferentSsndIdWorker3
124 RUN_TEST_STEP -1 BURTestServer TestBackup z:\tef_bafl\tef_ssnd.ini ForBURServer
125 RUN_TEST_STEP 100 tef_ssnd ResetDb
126 RUN_TEST_STEP !Error=-1 100 tef_ssnd GetSound z:\tef_bafl\tef_ssnd.ini Sound1
127 RUN_TEST_STEP !Error=-1 100 tef_ssnd GetSound z:\tef_bafl\tef_ssnd.ini DifferentSsndIdWorker3
128 RUN_TEST_STEP -1 BURTestServer TestRestore z:\tef_bafl\tef_ssnd.ini ForBURServer
129 RUN_TEST_STEP 100 tef_ssnd GetSound z:\tef_bafl\tef_ssnd.ini Sound1
130 RUN_TEST_STEP 100 tef_ssnd GetSound z:\tef_bafl\tef_ssnd.ini DifferentSsndIdWorker3
131 END_TESTCASE SYSLIB-BAFL-CT-3388 //BackupRestore
133 START_TESTCASE SYSLIB-BAFL-CT-3389 //LockoutByBackup
134 //!@SYMTestCaseID SYSLIB-BAFL-CT-3389
135 //!@SYMTestCaseDesc Test correct error code is returned to clients when CentRep server is
136 //! locked out by Backup.
137 //!@SYMTestPriority High
138 //!@SYMTestActions Run a thread to continuously set a series of sounds and read them back.
139 //! Start secure backup concurrently.
140 //!@SYMTestExpectedResults All reads are successful. Some SetSoundL encounter KErrServerBusy.
141 //! @SYMDEF DEF095280
143 RUN_TEST_STEP 100 tef_ssnd ResetDb
144 RUN_TEST_STEP 100 tef_ssnd SetSound z:\tef_bafl\tef_ssnd.ini LockoutTestSound
147 RUN_TEST_STEP 240 BURTestServer TestBackup z:\tef_bafl\tef_ssnd.ini ForBURServer
148 RUN_TEST_STEP 240 tef_ssnd LockoutTest
151 RUN_TEST_STEP 100 tef_ssnd ResetDb
152 END_TESTCASE SYSLIB-BAFL-CT-3389 //LockoutByBackup
154 START_TESTCASE SYSLIB-BAFL-CT-3390 //LockoutByRestore
155 //!@SYMTestCaseID SYSLIB-BAFL-CT-3390
156 //!@SYMTestCaseDesc Test correct error code is returned to clients when CentRep server is
157 //! locked out by Restore.
158 //!@SYMTestPriority High
159 //!@SYMTestActions Run a thread to continuously set a series of sounds and read them back.
160 //! Start Restore concurrently.
161 //!@SYMTestExpectedResults Bothe Get and Set encounter KErrServerBusy.
162 //! @SYMDEF DEF095280
164 RUN_TEST_STEP 100 tef_ssnd ResetDb
165 RUN_TEST_STEP 100 tef_ssnd SetSound z:\tef_bafl\tef_ssnd.ini LockoutTestSound
168 RUN_TEST_STEP 240 BURTestServer TestRestore z:\tef_bafl\tef_ssnd.ini ForBURServer
169 RUN_TEST_STEP 240 tef_ssnd LockoutTest
172 RUN_TEST_STEP 100 tef_ssnd ResetDb
173 END_TESTCASE SYSLIB-BAFL-CT-3390 //LockoutByRestore
175 START_TESTCASE SYSLIB-BAFL-CT-3391 //CorruptedEntry
176 //!@SYMTestCaseID SYSLIB-BAFL-CT-3391
177 //!@SYMTestCaseDesc Test GetSound can detect corrupted or tempered entries in repository.
178 //!@SYMTestPriority High
179 //!@SYMTestActions 1. Add a sound in repository.
180 //! 2. Fetch the setting from CentRep.
181 //! 3. Corrupt the soundtype field and save it in CentRep.
182 //! 4. Call GetSound.
183 //! 5. Repeat steps 3 and 4 on the sound category field.
184 //! 6. Repeat steps 3 and 4 on the path length field.
185 //! 7. Restore the original setting and call GetSound.
186 //!@SYMTestExpectedResults The GetSound at step 7 is successful. All the other
187 //! GetSound calls fail with KErrCorrupt
188 //! @SYMDEF DEF095280
190 RUN_TEST_STEP 100 tef_ssnd ResetDb
191 RUN_TEST_STEP 100 tef_ssnd CorruptSound z:\tef_bafl\tef_ssnd.ini DifferentSsndIdWorker3
192 RUN_TEST_STEP 100 tef_ssnd ResetDb
193 END_TESTCASE SYSLIB-BAFL-CT-3391 //CorruptedEntry
195 START_TESTCASE SYSLIB-BAFL-CT-3392 //SystemSoundFileAPI
196 //!@SYMTestCaseID SYSLIB-BAFL-CT-3392
197 //!@SYMTestCaseDesc Test BaSystemSound::SystemSoundFile still return the old filename.
198 //!@SYMTestPriority High
199 //!@SYMTestActions Call the API.
200 //!@SYMTestExpectedResults C:\system\data\syssnd.dat is returned.
201 //! @SYMDEF DEF095280
203 RUN_TEST_STEP 100 tef_ssnd SystemSoundFileTest
204 END_TESTCASE SYSLIB-BAFL-CT-3392 //SystemSoundFileAPI
206 START_TESTCASE SYSLIB-BAFL-CT-3393 //RepositoryHasGap
207 //!@SYMTestCaseID SYSLIB-BAFL-CT-3393
208 //!@SYMTestCaseDesc Test BaSystemSound can detect rogue applications creating extra entries
209 //! which will interfere with SetSoundL.
210 //!@SYMTestPriority High
211 //!@SYMTestActions Create a entry at key position 7 and then call SetSoundL.
212 //!@SYMTestExpectedResults SetSoundL fails with KErrCorrupt.
213 //! @SYMDEF DEF095280
215 RUN_TEST_STEP 100 tef_ssnd ResetDb
216 RUN_TEST_STEP 100 tef_ssnd GapTest
217 RUN_TEST_STEP 100 tef_ssnd ResetDb
218 END_TESTCASE SYSLIB-BAFL-CT-3393 //RepositoryHasGap
220 START_TESTCASE SYSLIB-BAFL-CT-3394 //SoundFileWithNoPath
221 //!@SYMTestCaseID SYSLIB-BAFL-CT-3394
222 //!@SYMTestCaseDesc Test BaSystemSound::SetSoundL panic if sound filename has no path info.
223 //!@SYMTestPriority High
224 //!@SYMTestActions Setup a file based sound with no path info in the filename.
225 //! Then invoke SetSoundL.
226 //!@SYMTestExpectedResults Panic 14
227 //! @SYMDEF DEF095280
229 RUN_PANIC_STEP 100 tef_ssnd SoundFileNoPathTest
230 END_TESTCASE SYSLIB-BAFL-CT-3394 //SoundFileWithNoPath
233 RUN_UTILS DeleteFile c:\tef_bafl\tef_ssnd.wav