1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/mm/devsound/a3fcharacterisationtest/scripts/mm_a3f_devsound_play_tone.script Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,1142 @@
1.4 +// Copyright (c) 2008-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 +// MM_A3F_DEVSOUND_CHRTZ_TONE.script
1.18 +// Syntax:
1.19 +// RUN_TEST_STEP <timeout>, <test suite>, <test step>, <configuration file.ini>
1.20 +//
1.21 +
1.22 +LOAD_SUITE char_a3f_devsound.dll
1.23 +delay 10
1.24 +
1.25 +//!@SYMTestCaseID: MM-A3F-DEVSOUND-CHRTZ-TONE-0001
1.26 +//!@SYMREQ: 7951
1.27 +//!@SYMPREQ: 1540
1.28 +//!@SYMTestCaseDec: Play tone configuration - Call SetConfigL(..) method to set sampling rate and channel
1.29 +//!@SYMTestPriority: Normal
1.30 +//!@SYMTestType: Normal Usecase
1.31 +//!@SYMTestActions:
1.32 +//1. Create and Initialize DevSound instance to play tones.
1.33 +//2. Call SetConfigL(..) method to set Sampling Rate and iChannel to valid values.
1.34 +//3. Call Config() to verify applied settings.
1.35 +//!@SYMTestExpectedResults:
1.36 +//SetConfigL(..) method shall be executed without error message.
1.37 +PRINT Play tone configuration - Call SetConfigL(..) method to set sampling rate and channel
1.38 +RUN_TEST_STEP 15000, char_a3f_devsound, MM-A3F-DEVSOUND-CHRTZ-TONE-0001, c:\mm_a3f_devsound_play_tone.ini
1.39 +TEST_COMPLETE
1.40 +
1.41 +//!@SYMTestCaseID: MM-A3F-DEVSOUND-CHRTZ-TONE-0002
1.42 +//!@SYMREQ: 7951
1.43 +//!@SYMPREQ: 1540
1.44 +//!@SYMTestCaseDec: Play tone configuration - Call SetPrioritySettings(..) method to set priority
1.45 +//!@SYMTestPriority: Normal
1.46 +//!@SYMTestType: Normal Usecase
1.47 +//!@SYMTestActions:
1.48 +//1. Create and Initialize DevSound instance to play tones.
1.49 +//1.1 Wait for InitializeComplete(KErrNone) callback response.
1.50 +//2. Call SetPrioritySettings(..) method to set iPriority to a valid value.
1.51 +//!@SYMTestExpectedResults:
1.52 +//SetPrioritySettings(..) method shall be executed without error message.
1.53 +PRINT Play tone configuration - Call SetPrioritySettings(..) method to set priority
1.54 +RUN_TEST_STEP 15000, char_a3f_devsound, MM-A3F-DEVSOUND-CHRTZ-TONE-0002, c:\mm_a3f_devsound_play_tone.ini
1.55 +TEST_COMPLETE
1.56 +
1.57 +//!@SYMTestCaseID: MM-A3F-DEVSOUND-CHRTZ-TONE-0003
1.58 +//!@SYMREQ: 7951
1.59 +//!@SYMPREQ: 1540
1.60 +//!@SYMTestCaseDec: Play tone configuration - SetVolume(..) method to set volume
1.61 +//!@SYMTestPriority: Normal
1.62 +//!@SYMTestType: Normal Usecase
1.63 +//!@SYMTestActions:
1.64 +//1. Create and initialise a DevSound instance to play tones.
1.65 +//1.1 Wait for InitializeComplete(KErrNone) callback response.
1.66 +//2. Call SetVolume(..) method.
1.67 +//3. Call Volume() method to verify applied settings.
1.68 +//!@SYMTestExpectedResults:
1.69 +//SetVolume(..) method shall be executed without error message.
1.70 +//Value returned by Volume() method shall be equal to the value set by SetVolume(..).
1.71 +PRINT Play tone configuration - SetVolume(..) method to set volume
1.72 +RUN_TEST_STEP 15000, char_a3f_devsound, MM-A3F-DEVSOUND-CHRTZ-TONE-0003, c:\mm_a3f_devsound_play_tone.ini
1.73 +TEST_COMPLETE
1.74 +
1.75 +//!@SYMTestCaseID: MM-A3F-DEVSOUND-CHRTZ-TONE-0004
1.76 +//!@SYMREQ: 7951
1.77 +//!@SYMPREQ: 1540
1.78 +//!@SYMTestCaseDec: Play tone configuration - Call SetVolumeRamp(..) method to set volume ramp
1.79 +//!@SYMTestPriority: Normal
1.80 +//!@SYMTestType: Normal Usecase
1.81 +//!@SYMTestActions:
1.82 +//1. Create a Devsound instance.
1.83 +//2. Initialise a DevSound instance to play tones.
1.84 +//2.1 Wait for InitializeComplete(KErrNone) callback response.
1.85 +//3. Call PlayToneL().
1.86 +//4. Call SetVolumeRamp(..) method to set volume ramp to valid value.
1.87 +//!@SYMTestExpectedResults:
1.88 +//SetVolumeRamp(..) method shall be executed without error message and the its settings shall be reflected the next time PlayToneL() is called.
1.89 +PRINT Play tone configuration - Call SetVolumeRamp(..) method to set volume ramp
1.90 +RUN_TEST_STEP 15000, char_a3f_devsound, MM-A3F-DEVSOUND-CHRTZ-TONE-0004, c:\mm_a3f_devsound_play_tone.ini
1.91 +TEST_COMPLETE
1.92 +
1.93 +//!@SYMTestCaseID: MM-A3F-DEVSOUND-CHRTZ-TONE-0005
1.94 +//!@SYMREQ: 7951
1.95 +//!@SYMPREQ: 1540
1.96 +//!@SYMTestCaseDec: Play tone configuration - Call SetToneRepeats() to set tone repetitions and silence between them
1.97 +//!@SYMTestPriority: Normal
1.98 +//!@SYMTestType: Normal Usecase
1.99 +//!@SYMTestActions:
1.100 +//1. Create and initialise a DevSound instance to play tones.
1.101 +//1.1 Wait for InitializeComplete(KErrNone) callback response.
1.102 +//2. Call SetToneRepeats(..) method to set repetition and silece values between them.
1.103 +//!@SYMTestExpectedResults:
1.104 +//SetToneRepeats(..) method shall be executed without error message.
1.105 +PRINT Play tone configuration - Call SetToneRepeats() to set tone repetitions and silence between them
1.106 +RUN_TEST_STEP 15000, char_a3f_devsound, MM-A3F-DEVSOUND-CHRTZ-TONE-0005, c:\mm_a3f_devsound_play_tone.ini
1.107 +TEST_COMPLETE
1.108 +
1.109 +//!@SYMTestCaseID: MM-A3F-DEVSOUND-CHRTZ-TONE-0006
1.110 +//!@SYMREQ: 7951
1.111 +//!@SYMPREQ: 1540
1.112 +//!@SYMTestCaseDec: Play tone configuration - Call SetDTMFLengths(..) to set DTMF tone on, tone off and tone pause.
1.113 +//!@SYMTestPriority: Normal
1.114 +//!@SYMTestType: Normal Usecase
1.115 +//!@SYMTestActions:
1.116 +//1. Create and Initialize DevSound instance to play tones.
1.117 +//1.1 Wait for InitializeComplete(KErrNone) callback response.
1.118 +//2. Call SetDTMFLengths(..) method to set length (tone on, tone off, and pause) values.
1.119 +//!@SYMTestExpectedResults:
1.120 +//SetDTMFLengths(..) method shall be executed without error message.
1.121 +PRINT Play tone configuration - Call SetDTMFLengths(..) to set DTMF tone on, tone off and tone pause.
1.122 +RUN_TEST_STEP 15000, char_a3f_devsound, MM-A3F-DEVSOUND-CHRTZ-TONE-0006, c:\mm_a3f_devsound_play_tone.ini
1.123 +TEST_COMPLETE
1.124 +
1.125 +//!@SYMTestCaseID: MM-A3F-DEVSOUND-CHRTZ-TONE-0007
1.126 +//!@SYMREQ: 7951
1.127 +//!@SYMPREQ: 1540
1.128 +//!@SYMTestCaseDec: Play tone configuration - SetVolume(..) while tone play is in progress
1.129 +//!@SYMTestPriority: Normal
1.130 +//!@SYMTestType: Alternative Usecase
1.131 +//!@SYMTestActions:
1.132 +//1. Create a Devsound instance.
1.133 +//2. Create a CPeriodic instance.
1.134 +//3. Initialise a DevSound instance to play tones.
1.135 +//3.1 Wait for InitializeComplete(KErrNone) callback response.
1.136 +//4. Play a tone by calling PlayToneL(). (For testing purposes, the tone should last more than the first timer event)
1.137 +//5. Start CPeriodic to trigger timed events with a period of 2 seconds.
1.138 +//6. On timer event call SetVolume(..) method to set volume to a valid value.
1.139 +//7. Call Volume() method to verify applied settings.
1.140 +//!@SYMTestExpectedResults:
1.141 +//SetVolume(..) is immediately applied.
1.142 +PRINT Play tone configuration - SetVolume(..) while tone play is in progress
1.143 +RUN_TEST_STEP 15000, char_a3f_devsound, MM-A3F-DEVSOUND-CHRTZ-TONE-0007 , c:\mm_a3f_devsound_play_tone.ini
1.144 +TEST_COMPLETE
1.145 +
1.146 +//!@SYMTestCaseID: MM-A3F-DEVSOUND-CHRTZ-TONE-0008
1.147 +//!@SYMREQ: 7951
1.148 +//!@SYMPREQ: 1540
1.149 +//!@SYMTestCaseDec: Play tone configuration - SetPlayBalance() while tone play is in progress
1.150 +//!@SYMTestPriority: Normal
1.151 +//!@SYMTestType: Alternative Usecase
1.152 +//!@SYMTestActions:
1.153 +//1. Create a Devsound instance.
1.154 +//2. Create a CPeriodic instance .
1.155 +//3. Initialise a DevSound instance to play tones.
1.156 +//3.1 Wait for InitializeComplete(KErrNone) callback response.
1.157 +//4. Play a tone by calling PlayToneL(). (For testing purposes, the tone should last more than the first timer event)
1.158 +//5. Start CPeriodic to trigger timed events with a period of 2 seconds.
1.159 +//6. On timer event call SetPlayBalance(..) method to set the speaker balance to valid values.
1.160 +//7. Call GetPlayBalanceL() method to verify applied settings.
1.161 +//!@SYMTestExpectedResults:
1.162 +//SetPlayBalance(..) method while playing shall be executed without error message and its paremeters are immediately applied.
1.163 +//Data retrieved by GetPlayBalance(..) method shall be equal to the value set by SetPlayBalance(..).
1.164 +PRINT Play tone configuration - SetPlayBalance() while tone play is in progress
1.165 +RUN_TEST_STEP 15000, char_a3f_devsound, MM-A3F-DEVSOUND-CHRTZ-TONE-0008, c:\mm_a3f_devsound_play_tone.ini
1.166 +TEST_COMPLETE
1.167 +
1.168 +//!@SYMTestCaseID: MM-A3F-DEVSOUND-CHRTZ-TONE-0010
1.169 +//!@SYMREQ: 7951
1.170 +//!@SYMPREQ: 1540
1.171 +//!@SYMTestCaseDec: Play tone configuration - Call SetVolume(..) method to set volume and reinitialise for playing audio.
1.172 +//!@SYMTestPriority: Normal
1.173 +//!@SYMTestType: Alternative Usecase
1.174 +//!@SYMTestActions:
1.175 +//1. Create a Devsound instance.
1.176 +//2. Initialise a DevSound instance to play tones.
1.177 +//2.1 Wait for InitializeComplete(KErrNone) callback response.
1.178 +//4. Call SetVolume(..)
1.179 +//5. Re-initialise a DevSound instance to play audio.
1.180 +//6. Call Volume() method to verify whether the volume was remembered or not.
1.181 +//!@SYMTestExpectedResults:
1.182 +//SetVolume(..) method shall be executed without error message.
1.183 +//After reinitialisation of Devsound client, the calling of Volume() method shall return the value which was set by using SetVolume() method.
1.184 +//(Volume settings shall not be modified despite DevSound client reinitialisation).
1.185 +PRINT Play tone configuration - Call SetVolume(..) method to set volume and reinitialise for playing audio.
1.186 +RUN_TEST_STEP 15000, char_a3f_devsound, MM-A3F-DEVSOUND-CHRTZ-TONE-0010, c:\mm_a3f_devsound_play_tone.ini
1.187 +TEST_COMPLETE
1.188 +
1.189 +//!@SYMTestCaseID: MM-A3F-DEVSOUND-CHRTZ-TONE-0011
1.190 +//!@SYMREQ: 7951
1.191 +//!@SYMPREQ: 1540
1.192 +//!@SYMTestCaseDec: Play tone configuration - Call SetVolumeRamp(..) method to set volume ramp
1.193 +//!@SYMTestPriority: Normal
1.194 +//!@SYMTestType: Alternative Usecase
1.195 +//!@SYMTestActions:
1.196 +//1. Create a Devsound instance.
1.197 +//2. Create a CPeriodic instance.
1.198 +//3. Initialise a DevSound instance to play tones.
1.199 +//3.1 Wait for InitializeComplete(KErrNone) callback response.
1.200 +//4. Call PlayToneL(..).
1.201 +//5. Start CPeriodic to trigger timed events with a period of 2 seconds.
1.202 +//6. On timer event call SetVolumeRamp(..) method to set volume ramp to valid value
1.203 +//7. Let ToneFinished() occur and play again a tone.
1.204 +//!@SYMTestExpectedResults:
1.205 +//SetVolumeRamp(..) method shall be executed without error message and the its settings shall be reflected the next time PlayToneL() is called.
1.206 +PRINT Play tone configuration - Call SetVolumeRamp(..) method to set volume ramp
1.207 +RUN_TEST_STEP 15000, char_a3f_devsound, MM-A3F-DEVSOUND-CHRTZ-TONE-0011, c:\mm_a3f_devsound_play_tone.ini
1.208 +TEST_COMPLETE
1.209 +
1.210 +
1.211 +//!@SYMTestCaseID: MM-A3F-DEVSOUND-CHRTZ-TONE-0012
1.212 +//!@SYMREQ: 7951
1.213 +//!@SYMPREQ: 1540
1.214 +//!@SYMTestCaseDec: Play tone configuration - Call SetToneRepeats() to set tone repetitions while playing
1.215 +//!@SYMTestPriority: Normal
1.216 +//!@SYMTestType: Alternative Usecase
1.217 +//!@SYMTestActions:
1.218 +//1. Create a Devsound instance.
1.219 +//2. Create a CPeriodic instance.
1.220 +//3. Initialise a DevSound instance to play tones.
1.221 +//3.1 Wait for InitializeComplete(KErrNone) callback response.
1.222 +//4. Call PlayToneL().
1.223 +//5. Start CPeriodic to trigger timed events with a period of 2 seconds.
1.224 +//6. On timer event call SetToneRepeats(..) method using positive values and call Cancel().
1.225 +//7. Let ToneFinished() callback occur, then re - invoke PlayToneL().
1.226 +//8. When ToneFinished callback is reached, confirm elapsed time since first tone reproduction.
1.227 +//!@SYMTestExpectedResults:
1.228 +//SetToneRepeats(..) method shall be executed without error message. Setting audio properties using this method do not cancel
1.229 +//or change current tone play. The new settings are applied until next tone play and total reproduction time since firts tone
1.230 +//reproduction has to be confirmed.
1.231 +PRINT Play tone configuration - Call SetToneRepeats() to set tone repetitions while playing
1.232 +RUN_TEST_STEP 15000, char_a3f_devsound, MM-A3F-DEVSOUND-CHRTZ-TONE-0012, c:\mm_a3f_devsound_play_tone.ini
1.233 +TEST_COMPLETE
1.234 +
1.235 +//!@SYMTestCaseID: MM-A3F-DEVSOUND-CHRTZ-TONE-0013
1.236 +//!@SYMREQ: 7951
1.237 +//!@SYMPREQ: 1540
1.238 +//!@SYMTestCaseDec: Play tone configuration - Call SetDTMFLengths() to set tone repetitions while playing
1.239 +//!@SYMTestPriority: Normal
1.240 +//!@SYMTestType: Alternative Usecase
1.241 +//!@SYMTestActions:
1.242 +//1. Create a Devsound instance.
1.243 +//2. Create a CPeriodic instance.
1.244 +//3. Initialise a DevSound instance to play tones(DTMF).
1.245 +//3.1 Wait for InitializeComplete(KErrNone) callback response.
1.246 +//4. Play a tone by calling PlayDTMFStringL().
1.247 +//5. On timer event call SetDTMFLengths(..) method using positive values and call Cancel() on the timer.
1.248 +//6. Let ToneFinished() callback occur, then re - invoke PlayDTMFStringL().
1.249 +//7. Start CPeriodic to trigger timed events with a period of 2 seconds.
1.250 +//8. When ToneFinished callback is reached, confirm elapsed time since first tone(DTMF) reproduction.
1.251 +//!@SYMTestExpectedResults:
1.252 +//SetDTMFLengths(..) method shall be executed without error message. Setting audio properties using this method do not cancel or
1.253 +//change current tone play. The new settings are applied until next tone play and total reproduction time since firts tone reproduction
1.254 +//has to be confirmed.
1.255 +PRINT Play tone configuration - Call SetDTMFLengths() to set tone repetitions while playing
1.256 +RUN_TEST_STEP 40000, char_a3f_devsound, MM-A3F-DEVSOUND-CHRTZ-TONE-0013, c:\mm_a3f_devsound_play_tone.ini
1.257 +TEST_COMPLETE
1.258 +
1.259 +//!@SYMTestCaseID: MM-A3F-DEVSOUND-CHRTZ-TONE-0014
1.260 +//!@SYMREQ: 7951
1.261 +//!@SYMPREQ: 1540
1.262 +//!@SYMTestCaseDec: Play tone configuration - Call SetToneRepeats() to set tone repetitions in any other state but tone
1.263 +//!@SYMTestPriority: Normal
1.264 +//!@SYMTestType: Alternative Usecase
1.265 +//!@SYMTestActions:
1.266 +//1. Create a Devsound instance.
1.267 +//2. Initialise a DevSound instance to other available states but tone.
1.268 +//2.1 Wait for InitializeComplete(KErrNone) callback response.
1.269 +//3. Call SetToneRepeats(..) method using positive values.
1.270 +//4. Initialise a DevSound instance to other available states but tone.
1.271 +//4.1 Wait for InitializeComplete(KErrNone) callback response.
1.272 +//5. Play a tone by calling PlayToneL().
1.273 +//6. When ToneFinished callback is reached, confirm elapsed time since tone reproduction.
1.274 +//!@SYMTestExpectedResults:
1.275 +//SetToneRepeats(..) method shall be executed without error message.The configuration values are remembered and may be used following a subsequent InitializeL() for tone play. They are not reset by that InitializeL() call.
1.276 +PRINT Play tone configuration - Call SetToneRepeats() to set tone repetitions in any other state but tone
1.277 +RUN_TEST_STEP 15000, char_a3f_devsound, MM-A3F-DEVSOUND-CHRTZ-TONE-0014, c:\mm_a3f_devsound_play_tone.ini
1.278 +TEST_COMPLETE
1.279 +
1.280 +//!@SYMTestCaseID: MM-A3F-DEVSOUND-CHRTZ-TONE-0015
1.281 +//!@SYMREQ: 7951
1.282 +//!@SYMPREQ: 1540
1.283 +//!@SYMTestCaseDec: Play tone configuration - Call SetDTMFLengths() to set tone repetitions in any other state but tone
1.284 +//!@SYMTestPriority: Normal
1.285 +//!@SYMTestType: Alternative Usecase
1.286 +//!@SYMTestActions:
1.287 +//1. Create a Devsound instance.
1.288 +//2. Initialise a DevSound instance to other available states but tone.
1.289 +//2.1 Wait for InitializeComplete(KErrNone) callback response.
1.290 +//3. Call SetDTMFLengths(..) method using positive values.
1.291 +//4. Initialise a DevSound instance to other available states but tone.
1.292 +//4.1 Wait for InitializeComplete(KErrNone) callback response.
1.293 +//5. Play a tone by calling PlayToneL().
1.294 +//6. When ToneFinished callback is reached, confirm elapsed time since tone reproduction.
1.295 +//!@SYMTestExpectedResults:
1.296 +//SetDTMFLengths(..) method shall be executed without error message.The configuration values are remembered and may be used following a subsequent InitializeL() for tone play. They are not reset by that InitializeL() call.
1.297 +PRINT Play tone configuration - Call SetDTMFLengths() to set tone repetitions in any other state but tone
1.298 +RUN_TEST_STEP 15000, char_a3f_devsound, MM-A3F-DEVSOUND-CHRTZ-TONE-0015, c:\mm_a3f_devsound_play_tone.ini
1.299 +TEST_COMPLETE
1.300 +
1.301 +//!@SYMTestCaseID: MM-A3F-DEVSOUND-CHRTZ-TONE-0016
1.302 +//!@SYMREQ: 7951
1.303 +//!@SYMPREQ: 1540
1.304 +//!@SYMTestCaseDec: Play tone configuration - Call SetConfigL() while tone play is in progress
1.305 +//!@SYMTestPriority: Normal
1.306 +//!@SYMTestType: Exception Usecase
1.307 +//!@SYMTestActions:
1.308 +//1. Create a Devsound instance.
1.309 +//2. Create a CPeriodic instance.
1.310 +//3. Initialise a DevSound instance to play tones.
1.311 +//3.1 Wait for InitializeComplete(KErrNone) callback response.
1.312 +//4. Play a tone by calling PlayToneL(). (For testing purposes, the tone should last more than the first timer event)
1.313 +//5. Start CPeriodic to trigger timed events with a period of 2 seconds.
1.314 +//6. On timer event call SetConfigL(..) method to set Sampling Rate to valid value.
1.315 +//!@SYMTestExpectedResults:
1.316 +//SetConfigL(..) method shall leave with KErrNotReady.
1.317 +PRINT Play tone configuration - Call SetConfigL() while tone play is in progress
1.318 +RUN_TEST_STEP 15000, char_a3f_devsound, MM-A3F-DEVSOUND-CHRTZ-TONE-0016, c:\mm_a3f_devsound_play_tone.ini
1.319 +TEST_COMPLETE
1.320 +
1.321 +//!@SYMTestCaseID: MM-A3F-DEVSOUND-CHRTZ-TONE-0017
1.322 +//!@SYMREQ: 7951
1.323 +//!@SYMPREQ: 1540
1.324 +//!@SYMTestCaseDec: Play tone configuration - Call SetPrioritySettings(..) method to set priority while tone play is in progress
1.325 +//!@SYMTestPriority: Normal
1.326 +//!@SYMTestType: Exception Usecase
1.327 +//!@SYMTestActions:
1.328 +//1. Create a DevSound instance.
1.329 +//2. Open the file to be played by the second DevSound instance.
1.330 +//3. Create a CPeriodic instance.
1.331 +//4. Create a second DevSound instance.
1.332 +//5. Initialise the first DevSound instance to play tones.
1.333 +//5.1 Wait for InitializeComplete(KErrNone) callback response.
1.334 +//6. Call PlayToneL() to start playing tones and call SetPrioritySettings() to set the first devsound´s priority to the highest value.
1.335 +//7. Start CPeriodic to trigger timed events with a period of 2 seconds.(Timer events must laste less than tone duration.)
1.336 +//8. On timer event, initialise the second devsound instance, set its priority to the highest value, and play an audio file.
1.337 +//!@SYMTestExpectedResults:
1.338 +//SetPrioritySettings(..) method shall be executed without error message. The first DevSound instance(Tones) must be pre-empted because setting the priority while playing is ignored
1.339 +PRINT Play tone configuration - Call SetPrioritySettings(..) method to set priority while tone play is in progress
1.340 +RUN_TEST_STEP 15000, char_a3f_devsound, MM-A3F-DEVSOUND-CHRTZ-TONE-0017, c:\mm_a3f_devsound_play_tone.ini
1.341 +TEST_COMPLETE
1.342 +
1.343 +//!@SYMTestCaseID: MM-A3F-DEVSOUND-CHRTZ-TONE-0018
1.344 +//!@SYMREQ: 7951
1.345 +//!@SYMPREQ: 1540
1.346 +//!@SYMTestCaseDec: Play tone configuration - Call SetConfigL(..) method to set a sample rate with sequence data properties not supported by the tone generator
1.347 +//!@SYMTestPriority: Normal
1.348 +//!@SYMTestType: Exception Usecase
1.349 +//!@SYMTestActions:
1.350 +//1. Create and Initialize DevSound instance to play tones.
1.351 +//1.1 Wait for InitializeComplete(KErrNone) callback response.
1.352 +//2. Call SetConfigL(..) method to set Sampling Rate to invalid values.
1.353 +//!@SYMTestExpectedResults:
1.354 +//It leaves with KErrArgument or KErrNotSupported.
1.355 +PRINT Play tone configuration - Call SetConfigL(..) method to set a sample rate with sequence data properties not supported by the tone generator
1.356 +RUN_TEST_STEP 15000, char_a3f_devsound, MM-A3F-DEVSOUND-CHRTZ-TONE-0018, c:\mm_a3f_devsound_play_tone.ini
1.357 +TEST_COMPLETE
1.358 +
1.359 +//!@SYMTestCaseID: MM-A3F-DEVSOUND-CHRTZ-TONE-0019
1.360 +//!@SYMREQ: 7951
1.361 +//!@SYMPREQ: 1540
1.362 +//!@SYMTestCaseDec: Play tone configuration - Call SetConfigL(..) method to set a channel encoding to unsupported value
1.363 +//!@SYMTestPriority: Normal
1.364 +//!@SYMTestType: Exception Usecase
1.365 +//!@SYMTestActions:
1.366 +//1. Create and Initialize DevSound instance to play tones.
1.367 +//1.1 Wait for InitializeComplete(KErrNone) callback response.
1.368 +//2. Call SetConfigL(..) method to set iChannel to invalid values.
1.369 +//!@SYMTestExpectedResults:
1.370 +//It leaves with KErrArgument or KErrNotSupported.
1.371 +PRINT Play tone configuration - Call SetConfigL(..) method to set a channel encoding to unsupported value
1.372 +RUN_TEST_STEP 15000, char_a3f_devsound, MM-A3F-DEVSOUND-CHRTZ-TONE-0019, c:\mm_a3f_devsound_play_tone.ini
1.373 +TEST_COMPLETE
1.374 +
1.375 +//!@SYMTestCaseID: MM-A3F-DEVSOUND-CHRTZ-TONE-0020
1.376 +//!@SYMREQ: 7951
1.377 +//!@SYMPREQ: 1540
1.378 +//!@SYMTestCaseDec: Play tone configuration - Call SetDTMFLengths(..) to using negative values
1.379 +//!@SYMTestPriority: Normal
1.380 +//!@SYMTestType: Exception Usecase
1.381 +//!@SYMTestActions:
1.382 +//1. Create and Initialize DevSound instance to record audio.
1.383 +//1.1 Wait for InitializeComplete(KErrNone) callback response.
1.384 +//2. Call SetDTMFLengths(..) to set lengths to negative values (aToneOnLength must be diferent to -1.)
1.385 +//3. Play a DTMF tone.
1.386 +//4. When ToneFinished() callback is reached, confirm elapsed time since first tone reproduction.
1.387 +//!@SYMTestExpectedResults:
1.388 +//After setting the DTMF lengths by calling SetDTMFLengths(..), the reproduction time shall be confirmed to tend to 0
1.389 +PRINT Play tone configuration - Call SetDTMFLengths(..) to using negative values
1.390 +RUN_TEST_STEP 15000, char_a3f_devsound, MM-A3F-DEVSOUND-CHRTZ-TONE-0020, c:\mm_a3f_devsound_play_tone.ini
1.391 +TEST_COMPLETE
1.392 +
1.393 +//!@SYMTestCaseID: MM-A3F-DEVSOUND-CHRTZ-TONE-0021
1.394 +//!@SYMREQ: 7951
1.395 +//!@SYMPREQ: 1540
1.396 +//!@SYMTestCaseDec: Play tone configuration - Call SetDTMFLengths(..) to using negative values
1.397 +//!@SYMTestPriority: Normal
1.398 +//!@SYMTestType: Exception Usecase
1.399 +//!@SYMTestActions:
1.400 +//1. Create a Devsound instance.
1.401 +//2. Create a CPeriodic instance.
1.402 +//3. Initialise a DevSound instance to play tones.
1.403 +//3.1 Wait for InitializeComplete(KErrNone) callback response.
1.404 +//4. Call SetDTMFLengths(..) to set lengths to positive except ToneOnLenght(aToneOnLength must be equal to -1.)
1.405 +//5. Call PlayDTMFStringL().
1.406 +//!@SYMTestExpectedResults:
1.407 +//After setting the DTMF lengths by calling SetDTMFLengths(..), the tone on reproduction time is preserved. If tone finished is reached before timer event, then the test should fail.
1.408 +PRINT Play tone configuration - Call SetDTMFLengths(..) to using negative values
1.409 +RUN_TEST_STEP 15000, char_a3f_devsound, MM-A3F-DEVSOUND-CHRTZ-TONE-0021, c:\mm_a3f_devsound_play_tone.ini
1.410 +TEST_COMPLETE
1.411 +
1.412 +//!@SYMTestCaseID: MM-A3F-DEVSOUND-CHRTZ-TONE-0022
1.413 +//!@SYMREQ: 7951
1.414 +//!@SYMPREQ: 1540
1.415 +//!@SYMTestCaseDec: Play tone configuration - Call SetToneRepeats() using a negative RepeatCount
1.416 +//!@SYMTestPriority: Normal
1.417 +//!@SYMTestType: Normal Usecase
1.418 +//!@SYMTestActions:
1.419 +//1. Create and Initialize DevSound instance to record audio.
1.420 +//1.1 Wait for InitializeComplete(KErrNone) callback response.
1.421 +//2. Call SetToneRepeats(..) to set lengths to negative values (aRepeatCount must be diferent to KMdaRepeatForever.)
1.422 +//3. Play a tone by calling PlayToneL(..).
1.423 +//4. When ToneFinished() callback is reached, confirm elapsed time since first tone reproduction.
1.424 +//!@SYMTestExpectedResults:
1.425 +//SetToneRepeats(..) method shall be executed without error message. After calling SetToneRepeats(..), the total reproduction time should tend to 0.
1.426 +PRINT Play tone configuration - Call SetToneRepeats() using negative argumets
1.427 +RUN_TEST_STEP 15000, char_a3f_devsound, MM-A3F-DEVSOUND-CHRTZ-TONE-0022, c:\mm_a3f_devsound_play_tone.ini
1.428 +TEST_COMPLETE
1.429 +
1.430 +//!@SYMTestCaseID: MM-A3F-DEVSOUND-CHRTZ-TONE-0023
1.431 +//!@SYMREQ: 7951
1.432 +//!@SYMPREQ: 1540
1.433 +//!@SYMTestCaseDec: Play tone configuration - Call SetToneRepeats() using negative RepeatCount
1.434 +//!@SYMTestPriority: Normal
1.435 +//!@SYMTestType: Normal Usecase
1.436 +//!@SYMTestActions:
1.437 +//1. Create a Devsound instance.
1.438 +//2. Create a CPeriodic instance.
1.439 +//3. Initialise a DevSound instance to play tones.
1.440 +//3.1 Wait for InitializeComplete(KErrNone) callback response.
1.441 +//4. Call SetToneRepeats(..) to set RepeatCount to negative (KMdaRepeatForever).
1.442 +//5. Play a tone by calling PlayToneL(..).
1.443 +//6. Start CPeriodic to trigger timed events with a period of 10 seconds.
1.444 +//!@SYMTestExpectedResults:
1.445 +//SetToneRepeats(..) method shall be executed without error message. If ToneFinished() is reached before timer event, then the test should fail.
1.446 +PRINT Play tone configuration - Call SetToneRepeats() using negative RepeatCount
1.447 +RUN_TEST_STEP 15000, char_a3f_devsound, MM-A3F-DEVSOUND-CHRTZ-TONE-0023, c:\mm_a3f_devsound_play_tone.ini
1.448 +TEST_COMPLETE
1.449 +
1.450 +//!@SYMTestCaseID: MM-A3F-DEVSOUND-CHRTZ-TONE-0024
1.451 +//!@SYMREQ: 7951
1.452 +//!@SYMPREQ: 1540
1.453 +//!@SYMTestCaseDec: Play tone query - Call Capabilities() to retrieve all the supported capabilities
1.454 +//!@SYMTestPriority: Normal
1.455 +//!@SYMTestType: Normal Usecase
1.456 +//!@SYMTestActions:
1.457 +//1. Create and Initialize DevSound instance to play tones.
1.458 +//1.1 Wait for InitializeComplete(KErrNone) callback response.
1.459 +//2. Call Capabilities() method to get all supported sample rates and channel encodings.
1.460 +//!@SYMTestExpectedResults:
1.461 +//Capabilities() method shall retrieve a set of supported capabilities.
1.462 +PRINT Play tone query - Call Capabilities() to retrieve all the supported capabilities
1.463 +RUN_TEST_STEP 15000, char_a3f_devsound, MM-A3F-DEVSOUND-CHRTZ-TONE-0024, c:\mm_a3f_devsound_play_tone.ini
1.464 +TEST_COMPLETE
1.465 +
1.466 +//!@SYMTestCaseID: MM-A3F-DEVSOUND-CHRTZ-TONE-0025
1.467 +//!@SYMREQ: 7951
1.468 +//!@SYMPREQ: 1540
1.469 +//!@SYMTestCaseDec: Play tone query - Call Config() to retrieve the default capabilities, sampling rate and channel encoding used
1.470 +//!@SYMTestPriority: Normal
1.471 +//!@SYMTestType: Normal Usecase
1.472 +//!@SYMTestActions:
1.473 +//1.Create and Initialize DevSound instance to play tones.
1.474 +//1.1 Wait for InitializeComplete(KErrNone) callback response.
1.475 +//2.Call Config() method to get Sampling Rate and iChannel encoding.
1.476 +//!@SYMTestExpectedResults:
1.477 +//Config() method shall retrieve current default sample rate and channel encoding.
1.478 +PRINT Play tone query - Call Config() to retrieve the default capabilities, sampling rate and channel encoding used
1.479 +RUN_TEST_STEP 15000, char_a3f_devsound, MM-A3F-DEVSOUND-CHRTZ-TONE-0025, c:\mm_a3f_devsound_play_tone.ini
1.480 +TEST_COMPLETE
1.481 +
1.482 +//!@SYMTestCaseID: MM-A3F-DEVSOUND-CHRTZ-TONE-0026
1.483 +//!@SYMREQ: 7951
1.484 +//!@SYMPREQ: 1540
1.485 +//!@SYMTestCaseDec: Play tone query - Call MaxVolume() to retrieve the max volume suported by the device
1.486 +//!@SYMTestPriority: Normal
1.487 +//!@SYMTestType: Normal Usecase
1.488 +//!@SYMTestActions:
1.489 +//1. Create and Initialize DevSound instance to play tones.
1.490 +//1.1 Wait for InitializeComplete(KErrNone) callback response.
1.491 +//2. Call MaxVolume() method to get maximum volume for current device.
1.492 +//!@SYMTestExpectedResults:
1.493 +//MaxVolume() method shall retrieve the max device´s volume.
1.494 +PRINT Play tone query - Call MaxVolume() to retrieve the max volume suported by the device
1.495 +RUN_TEST_STEP 15000, char_a3f_devsound, MM-A3F-DEVSOUND-CHRTZ-TONE-0026, c:\mm_a3f_devsound_play_tone.ini
1.496 +TEST_COMPLETE
1.497 +
1.498 +//!@SYMTestCaseID: MM-A3F-DEVSOUND-CHRTZ-TONE-0027
1.499 +//!@SYMREQ: 7951
1.500 +//!@SYMPREQ: 1540
1.501 +//!@SYMTestCaseDec: Play tone query - Call Volume() to retrieve default device volume
1.502 +//!@SYMTestPriority: Normal
1.503 +//!@SYMTestType: Normal Usecase
1.504 +//!@SYMTestActions:
1.505 +//1. Create and Initialize DevSound instance to play tones.
1.506 +//1.1 Wait for InitializeComplete(KErrNone) callback response.
1.507 +//2. Call Volume(..) method to get current volume value.
1.508 +//!@SYMTestExpectedResults:
1.509 +//Volume() shall retrieve the current device volume.
1.510 +PRINT Play tone query - Call Volume() to retrieve default device volume
1.511 +RUN_TEST_STEP 15000, char_a3f_devsound, MM-A3F-DEVSOUND-CHRTZ-TONE-0027, c:\mm_a3f_devsound_play_tone.ini
1.512 +TEST_COMPLETE
1.513 +
1.514 +//!@SYMTestCaseID: MM-A3F-DEVSOUND-CHRTZ-TONE-0028
1.515 +//!@SYMREQ: 7951
1.516 +//!@SYMPREQ: 1540
1.517 +//!@SYMTestCaseDec: Play tone query - Call Capabilities() to retrieve all the supported capabilities while playing
1.518 +//!@SYMTestPriority: Normal
1.519 +//!@SYMTestType: Alternative Usecase
1.520 +//!@SYMTestActions:
1.521 +//1. Create a Devsound instance.
1.522 +//2. Create a CPeriodic instance.
1.523 +//3. Initialise a DevSound instance to play tones.
1.524 +//3.1 Wait for InitializeComplete(KErrNone) callback response.
1.525 +//4. Call PlayToneL(). (For testing purposes, the tone should last more than the first timer event)
1.526 +//5. Start CPeriodic to trigger timed events with a period of 2 seconds.
1.527 +//6. On timer event call Capabilities() method to get all supported sample rates and channel encodings while tone play is in progress.
1.528 +//!@SYMTestExpectedResults:
1.529 +//Capabilities() method shall retrieve a set of supported capabilities.
1.530 +PRINT Play tone query - Call Capabilities() to retrieve all the supported capabilities while playing
1.531 +RUN_TEST_STEP 15000, char_a3f_devsound, MM-A3F-DEVSOUND-CHRTZ-TONE-0028, c:\mm_a3f_devsound_play_tone.ini
1.532 +TEST_COMPLETE
1.533 +
1.534 +//!@SYMTestCaseID: MM-A3F-DEVSOUND-CHRTZ-TONE-0029
1.535 +//!@SYMREQ: 7951
1.536 +//!@SYMPREQ: 1540
1.537 +//!@SYMTestCaseDec: Play tone query - Call Config() to retrieve the current capabilities, sampling rate and channel encoding used while playing
1.538 +//!@SYMTestPriority: Normal
1.539 +//!@SYMTestType: Alternative Usecase
1.540 +//!@SYMTestActions:
1.541 +//1. Create a Devsound instance.
1.542 +//2. Create a CPeriodic instance.
1.543 +//3. Initialise a DevSound instance to play tones.
1.544 +//3.1 Wait for InitializeComplete(KErrNone) callback response.
1.545 +//4. Call PlayToneL(). (For testing purposes, the tone should last more than the first timer event)
1.546 +//5. Start CPeriodic to trigger timed events with a period of 2 seconds.
1.547 +//6. On timer event call Config() method to get Sampling Rate and iChannel encoding while tone play is in progress.
1.548 +//!@SYMTestExpectedResults:
1.549 +//Config() method shall retrieve current sample rate and channel encoding.
1.550 +PRINT Play tone query - Call Config() to retrieve the current capabilities, sampling rate and channel encoding used while playing
1.551 +RUN_TEST_STEP 15000, char_a3f_devsound, MM-A3F-DEVSOUND-CHRTZ-TONE-0029, c:\mm_a3f_devsound_play_tone.ini
1.552 +TEST_COMPLETE
1.553 +
1.554 +//!@SYMTestCaseID: MM-A3F-DEVSOUND-CHRTZ-TONE-0030
1.555 +//!@SYMREQ: 7951
1.556 +//!@SYMPREQ: 1540
1.557 +//!@SYMTestCaseDec: Play tone query - Call MaxVolume() to retrieve the max volume suported by the device while playing
1.558 +//!@SYMTestPriority: Normal
1.559 +//!@SYMTestType: Alternative Usecase
1.560 +//!@SYMTestActions:
1.561 +//1. Create a Devsound instance.
1.562 +//2. Create a CPeriodic instance.
1.563 +//3. Initialise a DevSound instance to play tones.
1.564 +//3.1 Wait for InitializeComplete(KErrNone) callback response.
1.565 +//4. Call PlayToneL(). (For testing purposes, the tone should last more than the first timer event)
1.566 +//5. Start CPeriodic to trigger timed events with a period of 2 seconds.
1.567 +//6. On timer event call MaxVolume() method to get maximum volume for current device while tone play is in progress.
1.568 +//!@SYMTestExpectedResults:
1.569 +//MaxVolume() method shall retrieve the max device´s volume.
1.570 +PRINT Play tone query - Call MaxVolume() to retrieve the max volume suported by the device while playing
1.571 +RUN_TEST_STEP 15000, char_a3f_devsound, MM-A3F-DEVSOUND-CHRTZ-TONE-0030, c:\mm_a3f_devsound_play_tone.ini
1.572 +TEST_COMPLETE
1.573 +
1.574 +//!@SYMTestCaseID: MM-A3F-DEVSOUND-CHRTZ-TONE-0031
1.575 +//!@SYMREQ: 7951
1.576 +//!@SYMPREQ: 1540
1.577 +//!@SYMTestCaseDec: Play tone query - Call Volume() to retrieve the default device volume while playing
1.578 +//!@SYMTestPriority: Normal
1.579 +//!@SYMTestType: Alternative Usecase
1.580 +//!@SYMTestActions:
1.581 +//1. Create a Devsound instance.
1.582 +//2. Create a CPeriodic instance.
1.583 +//3. Initialise a DevSound instance to play tones.
1.584 +//3.1 Wait for InitializeComplete(KErrNone) callback response.
1.585 +//4. Call PlayToneL(). (For testing purposes, the tone should last more than the first timer event)
1.586 +//5. Start CPeriodic to trigger timed events with a period of 2 seconds.
1.587 +//6. On timer event call Volume(..) method to get current volume value while tone play is in progress.
1.588 +//!@SYMTestExpectedResults:
1.589 +//Volume() shall retrieve the current device volume.
1.590 +PRINT Play tone query - Call Volume() to retrieve the default device volume while playing
1.591 +RUN_TEST_STEP 15000, char_a3f_devsound, MM-A3F-DEVSOUND-CHRTZ-TONE-0031, c:\mm_a3f_devsound_play_tone.ini
1.592 +TEST_COMPLETE
1.593 +
1.594 +//!@SYMTestCaseID: MM-A3F-DEVSOUND-CHRTZ-TONE-0036
1.595 +//!@SYMREQ: 7951
1.596 +//!@SYMPREQ: 1540
1.597 +//!@SYMTestCaseDec: Play tone - Call PlayToneL() to play a tone
1.598 +//!@SYMTestPriority: Normal
1.599 +//!@SYMTestType: Normal Usecase
1.600 +//!@SYMTestActions:
1.601 +//1. Create and Initialize DevSound instance to play tones.
1.602 +//1.1 Wait for InitializeComplete(KErrNone) callback response.
1.603 +//2. Call PlayToneL() method.
1.604 +//2.1 Wait for ToneFinished() callback.
1.605 +//!@SYMTestExpectedResults:
1.606 +//Tone once shall be played.
1.607 +//ToneFinished(KErrUnderFlow) callback shall be received.
1.608 +PRINT Play tone - Call PlayToneL() to play a tone
1.609 +RUN_TEST_STEP 15000, char_a3f_devsound, MM-A3F-DEVSOUND-CHRTZ-TONE-0036, c:\mm_a3f_devsound_play_tone.ini
1.610 +TEST_COMPLETE
1.611 +
1.612 +//!@SYMTestCaseID: MM-A3F-DEVSOUND-CHRTZ-TONE-0037
1.613 +//!@SYMREQ: 7951
1.614 +//!@SYMPREQ: 1540
1.615 +//!@SYMTestCaseDec: Play tone - Call PlayDualToneL() to play a dual tone
1.616 +//!@SYMTestPriority: Normal
1.617 +//!@SYMTestType: Normal Usecase
1.618 +//!@SYMTestActions:
1.619 +//1. Create and Initialize DevSound instance to play tones.
1.620 +//1.1 Wait for InitializeComplete(KErrNone) callback response.
1.621 +//2. Call PlayDualToneL() method.
1.622 +//2.1 Wait for ToneFinished() callback.
1.623 +//!@SYMTestExpectedResults:
1.624 +//Dual tone shall be played.
1.625 +//ToneFinished(KErrUnderFlow) callback shall be received
1.626 +PRINT Play tone - Call PlayDualToneL() to play a dual tone
1.627 +RUN_TEST_STEP 15000, char_a3f_devsound, MM-A3F-DEVSOUND-CHRTZ-TONE-0037, c:\mm_a3f_devsound_play_tone.ini
1.628 +TEST_COMPLETE
1.629 +
1.630 +//!@SYMTestCaseID: MM-A3F-DEVSOUND-CHRTZ-TONE-0038
1.631 +//!@SYMREQ: 7951
1.632 +//!@SYMPREQ: 1540
1.633 +//!@SYMTestCaseDec: Play tone - Call PlayDTMFStringL() to play a dual tone multi frequency string
1.634 +//!@SYMTestPriority: Normal
1.635 +//!@SYMTestType: Normal Usecase
1.636 +//!@SYMTestActions:
1.637 +//1. Create and Initialize DevSound instance.
1.638 +//1.1 Wait for InitializeComplete(KErrNone) callback response.
1.639 +//2. Call PlayDTMFStringL() method with DTMFString = 01234, 56789, ABCDEF#*
1.640 +//2.1 Wait for ToneFinished() callback.
1.641 +//!@SYMTestExpectedResults:
1.642 +//DTMF string shall be played.
1.643 +//ToneFinished(KErrUnderFlow) callback shall be received
1.644 +PRINT Play tone - Call PlayDTMFStringL() to play a dual tone multi frequency string
1.645 +RUN_TEST_STEP 15000, char_a3f_devsound, MM-A3F-DEVSOUND-CHRTZ-TONE-0038, c:\mm_a3f_devsound_play_tone.ini
1.646 +TEST_COMPLETE
1.647 +
1.648 +//!@SYMTestCaseID: MM-A3F-DEVSOUND-CHRTZ-TONE-0039
1.649 +//!@SYMREQ: 7951
1.650 +//!@SYMPREQ: 1540
1.651 +//!@SYMTestCaseDec: Play tone - Call PlayToneSequenceL() to play a tone sequence.
1.652 +//!@SYMTestPriority: Normal
1.653 +//!@SYMTestType: Normal Usecase
1.654 +//!@SYMTestActions:
1.655 +//1. Create and Initialize DevSound instance to play tones.
1.656 +//1.1 Wait for InitializeComplete(KErrNone) callback response.
1.657 +//2. Call PlayToneSequenceL() method
1.658 +//2.1 Wait for ToneFinished() callback.
1.659 +//!@SYMTestExpectedResults:
1.660 +//Tone sequence shall be played.
1.661 +//ToneFinished(KErrUnderFlow) callback shall be received.
1.662 +PRINT Play tone - Call PlayToneSequenceL() to play a tone sequence.
1.663 +RUN_TEST_STEP 15000, char_a3f_devsound, MM-A3F-DEVSOUND-CHRTZ-TONE-0039, c:\mm_a3f_devsound_play_tone.ini
1.664 +TEST_COMPLETE
1.665 +
1.666 +//!@SYMTestCaseID: MM-A3F-DEVSOUND-CHRTZ-TONE-0040
1.667 +//!@SYMREQ: 7951
1.668 +//!@SYMPREQ: 1540
1.669 +//!@SYMTestCaseDec: Play tone - Once - New tone request. The client wants to play new tone while there is one already playing.
1.670 +//!@SYMTestPriority: Normal
1.671 +//!@SYMTestType: Alternative Usecase
1.672 +//!@SYMTestActions:
1.673 +//1. Create a Devsound instance.
1.674 +//2. Create a CPeriodic instance.
1.675 +//3. Initialise a DevSound instance to play tones.
1.676 +//3.1 Wait for InitializeComplete(KErrNone) callback response.
1.677 +//4. Start the CPeriodic object.
1.678 +//5. Call PlayToneL().
1.679 +//6. After a 2 second periodic timer event, play another tone using the same DevSound instance.
1.680 +//7. Wait for the ToneFinished() callback.
1.681 +//!@SYMTestExpectedResults:
1.682 +//First tone request shall be played. DevSound silently ignores the second tone play request.
1.683 +//New tone play request do not cancels the current tone play.
1.684 +PRINT Play tone - Once - New tone request. The client wants to play new tone while there is one already playing.
1.685 +RUN_TEST_STEP 15000, char_a3f_devsound, MM-A3F-DEVSOUND-CHRTZ-TONE-0040, c:\mm_a3f_devsound_play_tone.ini
1.686 +TEST_COMPLETE
1.687 +
1.688 +//!@SYMTestCaseID: MM-A3F-DEVSOUND-CHRTZ-TONE-0043
1.689 +//!@SYMREQ: 7951
1.690 +//!@SYMPREQ: 1540
1.691 +//!@SYMTestCaseDec: Play tone - Once - Stop. The client wants to play a tone for a while and stop it. DevSound is initialized
1.692 +//to tone play after Stop.
1.693 +//!@SYMTestPriority: Normal
1.694 +//!@SYMTestType: Alternative Usecase
1.695 +//!@SYMTestActions:
1.696 +//1. Create and Initialize DevSound instance to play tones.
1.697 +//1.1 Wait for InitializeComplete(KErrNone) callback response.
1.698 +//2. Create and start a CPeriodic object.
1.699 +//3. Play a tone using PlayToneL().(For testing purposes, the tone should last more than the timer event)
1.700 +//4. On the timer event, after one second, call Stop() to stop the ongoing play tone operation.
1.701 +//5. Again play a tone using PlayToneL().
1.702 +//!@SYMTestExpectedResults:
1.703 +//Tone play is stopped and DevSound goes to “Initialized to Play Tone” state, second tone request is accepted.
1.704 +//Stop() is synchronous and it should not invoke callbacks through MDevSoundObserver.
1.705 +PRINT Play tone - Once - Stop. The client wants to play a tone for a while and stop it. DevSound is initialized to tone play after Stop.
1.706 +RUN_TEST_STEP 15000, char_a3f_devsound, MM-A3F-DEVSOUND-CHRTZ-TONE-0043, c:\mm_a3f_devsound_play_tone.ini
1.707 +TEST_COMPLETE
1.708 +
1.709 +//!@SYMTestCaseID: MM-A3F-DEVSOUND-CHRTZ-TONE-0044
1.710 +//!@SYMREQ: 7951
1.711 +//!@SYMPREQ: 1540
1.712 +//!@SYMTestCaseDec: Play tone - Dual tone - Stop. The client wants to play a dual tone for a while and stop it.
1.713 +//DevSound is initialized to tone play after Stop.
1.714 +//!@SYMTestPriority: Normal
1.715 +//!@SYMTestType: Alternative Usecase
1.716 +//!@SYMTestActions:
1.717 +//1. Create and Initialize DevSound instance to play tones.
1.718 +//1.1 Wait for InitializeComplete(KErrNone) callback response.
1.719 +//2. Create and start a CPeriodic object.
1.720 +//3. Call PlayDualToneL(). (For testing purposes, the tone should last more than the timer event)
1.721 +//4. On the timer event, after one second, call Stop() to stop the ongoing operation.
1.722 +//5. Again play a tone using PlayDualToneL().
1.723 +//!@SYMTestExpectedResults:
1.724 +//Tone play is stopped and DevSound goes to “Initialized to Play Tone” state, second tone request is accepted.
1.725 +//Stop() is synchronous and it should not invoke callbacks through MDevSoundObserver.
1.726 +PRINT Play tone - Dual tone - Stop. The client wants to play a dual tone for a while and stop it.
1.727 +//DevSound is initialized to tone play after Stop.
1.728 +RUN_TEST_STEP 15000, char_a3f_devsound, MM-A3F-DEVSOUND-CHRTZ-TONE-0044, c:\mm_a3f_devsound_play_tone.ini
1.729 +TEST_COMPLETE
1.730 +
1.731 +//!@SYMTestCaseID: MM-A3F-DEVSOUND-CHRTZ-TONE-0045
1.732 +//!@SYMREQ: 7951
1.733 +//!@SYMPREQ: 1540
1.734 +//!@SYMTestCaseDec: Play tone - DTMF - Stop. The client wants to play a DTMF tone for a while a stop it. DevSound is initialized to tone play after Stop.
1.735 +//!@SYMTestPriority: Normal
1.736 +//!@SYMTestType: Alternative Usecase
1.737 +//!@SYMTestActions:
1.738 +//1. Create and Initialize DevSound instance to play tones.
1.739 +//1.1 Wait for InitializeComplete(KErrNone) callback response.
1.740 +//2. Create and start a CPeriodic object.
1.741 +//3. Call PlayDTMFStringL() method with DTMFString = 01234, 56789, ABCDEF#*.
1.742 +//4. On the timer event, after one second, call Stop() to stop the ongoing operation.
1.743 +//5. Again play a tone using PlayDTMFStringL().
1.744 +//!@SYMTestExpectedResults:
1.745 +//Tone play is stopped and DevSound goes to “Initialized to Play Tone” state, second tone request is accepted. Stop() is synchronous and it should not invoke callbacks through MDevSoundObserver.
1.746 +PRINT Play tone - DTMF - Stop. The client wants to play a DTMF tone for a while a stop it. DevSound is initialized to tone play after Stop.
1.747 +RUN_TEST_STEP 15000, char_a3f_devsound, MM-A3F-DEVSOUND-CHRTZ-TONE-0045, c:\mm_a3f_devsound_play_tone.ini
1.748 +TEST_COMPLETE
1.749 +
1.750 +//!@SYMTestCaseID: MM-A3F-DEVSOUND-CHRTZ-TONE-0046
1.751 +//!@SYMREQ: 7951
1.752 +//!@SYMPREQ: 1540
1.753 +//!@SYMTestCaseDec: Play tone - Tone sequence - Stop. The client wants to play a tone sequence for a while and stop it. DevSound is initialized to tone play after Stop.
1.754 +//!@SYMTestPriority: Normal
1.755 +//!@SYMTestType: Alternative Usecase
1.756 +//!@SYMTestActions:
1.757 +//1. Create and Initialize DevSound instance to play tones.
1.758 +//1.1 Wait for InitializeComplete(KErrNone) callback response.
1.759 +//2. Create and start a CPeriodic object.
1.760 +//3. Call PlayToneSequenceL() method. (For testing purposes, the tone should last more than the timer event)
1.761 +//4. On the timer event, after one second, call Stop() to stop the ongoing operation.
1.762 +//5. Again play a tone using PlayToneSequenceL().
1.763 +//!@SYMTestExpectedResults:
1.764 +//Tone play is stopped and DevSound goes to “Initialized to Play Tone” state, second tone request is accepted. Stop() is synchronous and it should not invoke callbacks through MDevSoundObserver.
1.765 +PRINT Play tone - Tone sequence - Stop. The client wants to play a tone sequence for a while and stop it. DevSound is initialized to tone play after Stop.
1.766 +RUN_TEST_STEP 15000, char_a3f_devsound, MM-A3F-DEVSOUND-CHRTZ-TONE-0046, c:\mm_a3f_devsound_play_tone.ini
1.767 +TEST_COMPLETE
1.768 +
1.769 +//!@SYMTestCaseID: MM-A3F-DEVSOUND-CHRTZ-TONE-0051
1.770 +//!@SYMREQ: 7951
1.771 +//!@SYMPREQ: 1540
1.772 +//!@SYMTestCaseDec: Play tone - Once- Call InitializeL() using EMMFStatePlaying
1.773 +//!@SYMTestPriority: Normal
1.774 +//!@SYMTestType: Exception Usecase
1.775 +//!@SYMTestActions:
1.776 +//1. Create and Initialize DevSound instance for playing audio.
1.777 +//1.1 Wait for InitializeComplete(KErrNone) callback response.
1.778 +//2. PlayToneL() is called when InitializeL() was called using EMMFStatePlaying value.
1.779 +//!@SYMTestExpectedResults:
1.780 +//It leaves with KErrNotSupported.
1.781 +PRINT Play tone - Once- Call InitializeL() using EMMFStatePlaying
1.782 +RUN_TEST_STEP 15000, char_a3f_devsound, MM-A3F-DEVSOUND-CHRTZ-TONE-0051, c:\mm_a3f_devsound_play_tone.ini
1.783 +TEST_COMPLETE
1.784 +
1.785 +//!@SYMTestCaseID: MM-A3F-DEVSOUND-CHRTZ-TONE-0052
1.786 +//!@SYMREQ: 7951
1.787 +//!@SYMPREQ: 1540
1.788 +//!@SYMTestCaseDec: Play tone - Dual tone - Call InitializeL() using EMMFStatePlaying
1.789 +//!@SYMTestPriority: Normal
1.790 +//!@SYMTestType: Exception Usecase
1.791 +//!@SYMTestActions:
1.792 +//1. Create and Initialize DevSound instance for playing audio.
1.793 +//1.1 Wait for InitializeComplete(KErrNone) callback response.
1.794 +//2. PlayDualToneL() called when InitializeL() was called using EMMFStatePlaying value.
1.795 +//!@SYMTestExpectedResults:
1.796 +//It leaves with KErrNotSupported.
1.797 +PRINT Play tone - Dual tone - Call InitializeL() using EMMFStatePlaying
1.798 +RUN_TEST_STEP 15000, char_a3f_devsound, MM-A3F-DEVSOUND-CHRTZ-TONE-0052, c:\mm_a3f_devsound_play_tone.ini
1.799 +TEST_COMPLETE
1.800 +
1.801 +//!@SYMTestCaseID: MM-A3F-DEVSOUND-CHRTZ-TONE-0053
1.802 +//!@SYMREQ: 7951
1.803 +//!@SYMPREQ: 1540
1.804 +//!@SYMTestCaseDec: Play tone - DTMF - Call InitializeL() using EMMFStatePlaying
1.805 +//!@SYMTestPriority: Normal
1.806 +//!@SYMTestType: Exception Usecase
1.807 +//!@SYMTestActions:
1.808 +//1. Create and Initialize DevSound instance for playing audio.
1.809 +//1.1 Wait for InitializeComplete(KErrNone) callback response.
1.810 +//2. PlayDTMFStringL() called when InitializeL() was called using EMMFStatePlaying value.
1.811 +//!@SYMTestExpectedResults:
1.812 +//It leaves with KErrNotSupported.
1.813 +PRINT Play tone - DTMF - Call InitializeL() using EMMFStatePlaying
1.814 +RUN_TEST_STEP 15000, char_a3f_devsound, MM-A3F-DEVSOUND-CHRTZ-TONE-0053, c:\mm_a3f_devsound_play_tone.ini
1.815 +TEST_COMPLETE
1.816 +
1.817 +//!@SYMTestCaseID: MM-A3F-DEVSOUND-CHRTZ-TONE-0054
1.818 +//!@SYMREQ: 7951
1.819 +//!@SYMPREQ: 1540
1.820 +//!@SYMTestCaseDec: Play tone - Tone sequence - Call InitializeL() using EMMFStatePlaying
1.821 +//!@SYMTestPriority: Normal
1.822 +//!@SYMTestType: Exception Usecase
1.823 +//!@SYMTestActions:
1.824 +//1. Create and Initialize DevSound instance for playing audio.
1.825 +//1.1 Wait for InitializeComplete(KErrNone) callback response.
1.826 +//2. PlayToneSequenceL() is called when InitializeL() was called using EMMFStatePlaying value.
1.827 +//!@SYMTestExpectedResults:
1.828 +//It leaves with KErrNotSupported.
1.829 +PRINT Play tone - Tone sequence - Call InitializeL() using EMMFStatePlaying
1.830 +RUN_TEST_STEP 15000, char_a3f_devsound, MM-A3F-DEVSOUND-CHRTZ-TONE-0054, c:\mm_a3f_devsound_play_tone.ini
1.831 +TEST_COMPLETE
1.832 +
1.833 +//!@SYMTestCaseID: MM-A3F-DEVSOUND-CHRTZ-TONE-0055
1.834 +//!@SYMREQ: 7951
1.835 +//!@SYMPREQ: 1540
1.836 +//!@SYMTestCaseDec: Play tone - Once - Call InitializeL() using EMMFStateRecording
1.837 +//!@SYMTestPriority: Normal
1.838 +//!@SYMTestType: Exception Usecase
1.839 +//!@SYMTestActions:
1.840 +//1. Create and Initialize DevSound instance for recording audio.
1.841 +//1.1 Wait for InitializeComplete(KErrNone) callback response.
1.842 +//2. PlayToneL() is called when InitializeL() was called using EMMFStateRecording value.
1.843 +//!@SYMTestExpectedResults:
1.844 +//It leaves with KErrNotSupported.
1.845 +PRINT Play tone - Once - Call InitializeL() using EMMFStateRecording
1.846 +RUN_TEST_STEP 15000, char_a3f_devsound, MM-A3F-DEVSOUND-CHRTZ-TONE-0055, c:\mm_a3f_devsound_play_tone.ini
1.847 +TEST_COMPLETE
1.848 +
1.849 +//!@SYMTestCaseID: MM-A3F-DEVSOUND-CHRTZ-TONE-0056
1.850 +//!@SYMREQ: 7951
1.851 +//!@SYMPREQ: 1540
1.852 +//!@SYMTestCaseDec: Play tone - Dual tone - Call InitializeL() using EMMFStateRecording
1.853 +//!@SYMTestPriority: Normal
1.854 +//!@SYMTestType: Exception Usecase
1.855 +//!@SYMTestActions:
1.856 +//1. Create and Initialize DevSound instance for recording audio.
1.857 +//1.1 Wait for InitializeComplete(KErrNone) callback response.
1.858 +//2. PlayDualToneL() called when InitializeL() was called using EMMFStateRecording value.
1.859 +//!@SYMTestExpectedResults:
1.860 +//It leaves with KErrNotSupported.
1.861 +PRINT Play tone - Dual tone - Call InitializeL() using EMMFStateRecording
1.862 +RUN_TEST_STEP 15000, char_a3f_devsound, MM-A3F-DEVSOUND-CHRTZ-TONE-0056, c:\mm_a3f_devsound_play_tone.ini
1.863 +TEST_COMPLETE
1.864 +
1.865 +//!@SYMTestCaseID: MM-A3F-DEVSOUND-CHRTZ-TONE-0057
1.866 +//!@SYMREQ: 7951
1.867 +//!@SYMPREQ: 1540
1.868 +//!@SYMTestCaseDec: Play tone - DTMF - Call InitializeL() using EMMFStateRecording
1.869 +//!@SYMTestPriority: Normal
1.870 +//!@SYMTestType: Exception Usecase
1.871 +//!@SYMTestActions:
1.872 +//1. Create and Initialize DevSound instance for recording audio.
1.873 +//1.1 Wait for InitializeComplete(KErrNone) callback response.
1.874 +//2. PlayDTMFStringL() called when InitializeL() was called using EMMFStateRecording value.
1.875 +//!@SYMTestExpectedResults:
1.876 +//It leaves with KErrNotSupported.
1.877 +PRINT Play tone - DTMF - Call InitializeL() using EMMFStateRecording
1.878 +RUN_TEST_STEP 15000, char_a3f_devsound, MM-A3F-DEVSOUND-CHRTZ-TONE-0057, c:\mm_a3f_devsound_play_tone.ini
1.879 +TEST_COMPLETE
1.880 +
1.881 +//!@SYMTestCaseID: MM-A3F-DEVSOUND-CHRTZ-TONE-0058
1.882 +//!@SYMREQ: 7951
1.883 +//!@SYMPREQ: 1540
1.884 +//!@SYMTestCaseDec: Play tone - Tone sequence - Call InitializeL() using EMMFStateRecording
1.885 +//!@SYMTestPriority: Normal
1.886 +//!@SYMTestType: Exception Usecase
1.887 +//!@SYMTestActions:
1.888 +//1. Create and Initialize DevSound instance for recording audio.
1.889 +//1.1 Wait for InitializeComplete(KErrNone) callback response.
1.890 +//2. PlayToneSequenceL() is called when InitializeL() was called using EMMFStateRecording value.
1.891 +//!@SYMTestExpectedResults:
1.892 +//It leaves with KErrNotSupported.
1.893 +PRINT Play tone - Tone sequence - Call InitializeL() using EMMFStateRecording
1.894 +RUN_TEST_STEP 15000, char_a3f_devsound, MM-A3F-DEVSOUND-CHRTZ-TONE-0058, c:\mm_a3f_devsound_play_tone.ini
1.895 +TEST_COMPLETE
1.896 +
1.897 +//!@SYMTestCaseID: MM-A3F-DEVSOUND-CHRTZ-TONE-0059
1.898 +//!@SYMREQ: 7951
1.899 +//!@SYMPREQ: 1540
1.900 +//!@SYMTestCaseDec: Play tone - Once - Call PlayToneL() without calling initialize
1.901 +//!@SYMTestPriority: Normal
1.902 +//!@SYMTestType: Exception Usecase
1.903 +//!@SYMTestActions:
1.904 +//1. Create a Devsound instance, but do not Initialize it.
1.905 +//2. Call PlayToneL().
1.906 +//!@SYMTestExpectedResults:
1.907 +//It leaves with KErrNotReady.
1.908 +PRINT Play tone - Once - Call PlayToneL() without calling initialize
1.909 +RUN_TEST_STEP 15000, char_a3f_devsound, MM-A3F-DEVSOUND-CHRTZ-TONE-0059, c:\mm_a3f_devsound_play_tone.ini
1.910 +TEST_COMPLETE
1.911 +
1.912 +//!@SYMTestCaseID: MM-A3F-DEVSOUND-CHRTZ-TONE-0060
1.913 +//!@SYMREQ: 7951
1.914 +//!@SYMPREQ: 1540
1.915 +//!@SYMTestCaseDec: Play tone - Dual tone - Call PlayDualToneL() without calling initialize
1.916 +//!@SYMTestPriority: Normal
1.917 +//!@SYMTestType: Exception Usecase
1.918 +//!@SYMTestActions:
1.919 +//1. Create a Devsound instance, but do not Initialize it.
1.920 +//2. Call PlayDualToneL().
1.921 +//!@SYMTestExpectedResults:
1.922 +//It leaves with KErrNotReady.
1.923 +PRINT Play tone - Dual tone - Call PlayDualToneL() without calling initialize
1.924 +RUN_TEST_STEP 15000, char_a3f_devsound, MM-A3F-DEVSOUND-CHRTZ-TONE-0060, c:\mm_a3f_devsound_play_tone.ini
1.925 +TEST_COMPLETE
1.926 +
1.927 +//!@SYMTestCaseID: MM-A3F-DEVSOUND-CHRTZ-TONE-0061
1.928 +//!@SYMREQ: 7951
1.929 +//!@SYMPREQ: 1540
1.930 +//!@SYMTestCaseDec: Play tone - DTMF - Call PlayDTMFStringL()without calling initialize
1.931 +//!@SYMTestPriority: Normal
1.932 +//!@SYMTestType: Exception Usecase
1.933 +//!@SYMTestActions:
1.934 +//1. Create a Devsound instance, but do not Initialize it.
1.935 +//2. Call PlayDTMFStringL().
1.936 +//!@SYMTestExpectedResults:
1.937 +//It leaves with KErrNotReady.
1.938 +PRINT Play tone - DTMF - Call PlayDTMFStringL()without calling initialize
1.939 +RUN_TEST_STEP 15000, char_a3f_devsound, MM-A3F-DEVSOUND-CHRTZ-TONE-0061, c:\mm_a3f_devsound_play_tone.ini
1.940 +TEST_COMPLETE
1.941 +
1.942 +//!@SYMTestCaseID: MM-A3F-DEVSOUND-CHRTZ-TONE-0062
1.943 +//!@SYMREQ: 7951
1.944 +//!@SYMPREQ: 1540
1.945 +//!@SYMTestCaseDec: Play tone - Tone sequence - Call PlayToneSequenceL() without calling initialize
1.946 +//!@SYMTestPriority: Normal
1.947 +//!@SYMTestType: Exception Usecase
1.948 +//!@SYMTestActions:
1.949 +//1. Create a Devsound instance, but do not Initialize it.
1.950 +//2. Call PlayToneSequenceL().
1.951 +//!@SYMTestExpectedResults:
1.952 +//It leaves with KErrNotReady.
1.953 +PRINT Play tone - Tone sequence - Call PlayToneSequenceL() without calling initialize
1.954 +RUN_TEST_STEP 15000, char_a3f_devsound, MM-A3F-DEVSOUND-CHRTZ-TONE-0062, c:\mm_a3f_devsound_play_tone.ini
1.955 +TEST_COMPLETE
1.956 +
1.957 +//!@SYMTestCaseID: MM-A3F-DEVSOUND-CHRTZ-TONE-0063
1.958 +//!@SYMREQ: 7951
1.959 +//!@SYMPREQ: 1540
1.960 +//!@SYMTestCaseDec: Play tone - Tone sequence - Call PlayToneSequenceL() using an invalid tone sequence descriptor
1.961 +//!@SYMTestPriority: Normal
1.962 +//!@SYMTestType: Exception Usecase
1.963 +//!@SYMTestActions:
1.964 +//1. Create and Initialize DevSound instance for playing tones.
1.965 +//1.1 Wait for InitializeComplete(KErrNone) callback response.
1.966 +//2. Call PlayToneSequenceL() method using an invalid tone sequence descriptor.
1.967 +//!@SYMTestExpectedResults:
1.968 +//A ToneFinished(KErrCorrupt) callback is received.
1.969 +PRINT Play tone - Tone sequence - Call PlayToneSequenceL() using an invalid tone sequence descriptor
1.970 +RUN_TEST_STEP 15000, char_a3f_devsound, MM-A3F-DEVSOUND-CHRTZ-TONE-0063, c:\mm_a3f_devsound_play_tone.ini
1.971 +TEST_COMPLETE
1.972 +
1.973 +//!@SYMTestCaseID: MM-A3F-DEVSOUND-CHRTZ-TONE-0009
1.974 +//!@SYMREQ: 7951
1.975 +//!@SYMPREQ: 1540
1.976 +//!@SYMTestCaseDec: Play tone configuration - Call SetVolume(..) method during paused playing tone
1.977 +//!@SYMTestPriority: Normal
1.978 +//!@SYMTestType: Alternative Usecase
1.979 +//!@SYMTestActions:
1.980 +//1. Create a Devsound instance.
1.981 +//2. Create a CPeriodic instance.
1.982 +//3. Initialise a DevSound instance to play tones.
1.983 +//3.1 Wait for InitializeComplete(KErrNone) callback response.
1.984 +//4. Play a tone.(For testing purposes, the tone should last more than the first timer event)
1.985 +//5. Start CPeriodic to trigger timed events every 2 seconds.
1.986 +//6. On timer event pause DevSound client, then call SetVolume(..).
1.987 +//7. Call Volume() method to verify current device volume value during the playback.
1.988 +//!@SYMTestExpectedResults:
1.989 +//SetVolume(..) method shall be executed without error message.
1.990 +//Value returned from Volume() method shall be equal to the value set by SetVolume(..).
1.991 +PRINT Play tone configuration - Call SetVolume(..) method during paused playing tone
1.992 +RUN_TEST_STEP 15000, char_a3f_devsound, MM-A3F-DEVSOUND-CHRTZ-TONE-0009, c:\mm_a3f_devsound_play_tone.ini
1.993 +TEST_COMPLETE
1.994 +
1.995 +//!@SYMTestCaseID: MM-A3F-DEVSOUND-CHRTZ-TONE-0032
1.996 +//!@SYMREQ: 7951
1.997 +//!@SYMPREQ: 1540
1.998 +//!@SYMTestCaseDec: Play tone query - Call Capabilities() to retrieve all the supported capabilities when paused
1.999 +//!@SYMTestPriority: Normal
1.1000 +//!@SYMTestType: Alternative Usecase
1.1001 +//!@SYMTestActions:
1.1002 +//1. Create a Devsound instance.
1.1003 +//2. Create a CPeriodic instance.
1.1004 +//3. Initialise a DevSound instance to play tones.
1.1005 +//3.1 Wait for InitializeComplete(KErrNone) callback response.
1.1006 +//4. Call PlayToneL(). (For testing purposes, the tone should last more than the first timer event)
1.1007 +//5. Start CPeriodic to trigger timed events with a period of 2 seconds.
1.1008 +//6. On timer event, after calling Pause(), invoke Capabilities() method to get all supported sample rates and channel encodings.
1.1009 +//!@SYMTestExpectedResults:
1.1010 +//Capabilities() method shall retrieve a set of supported capabilities.
1.1011 +PRINT Play tone query - Call Capabilities() to retrieve all the supported capabilities when paused
1.1012 +RUN_TEST_STEP 15000, char_a3f_devsound, MM-A3F-DEVSOUND-CHRTZ-TONE-0032, c:\mm_a3f_devsound_play_tone.ini
1.1013 +TEST_COMPLETE
1.1014 +
1.1015 +//!@SYMTestCaseID: MM-A3F-DEVSOUND-CHRTZ-TONE-0033
1.1016 +//!@SYMREQ: 7951
1.1017 +//!@SYMPREQ: 1540
1.1018 +//!@SYMTestCaseDec: Play tone query - Call Config() to retrieve the current capabilities, sampling rate and channel encoding when paused
1.1019 +//!@SYMTestPriority: Normal
1.1020 +//!@SYMTestType: Alternative Usecase
1.1021 +//!@SYMTestActions:
1.1022 +//1. Create a Devsound instance.
1.1023 +//2. Create a CPeriodic instance.
1.1024 +//3. Initialise a DevSound instance to play tones.
1.1025 +//3.1 Wait for InitializeComplete(KErrNone) callback response.
1.1026 +//4. Call PlayToneL(). (For testing purposes, the tone should last more than the first timer event)
1.1027 +//5. Start CPeriodic to trigger timed events with a period of 2 seconds.
1.1028 +//6. On timer event, after calling Pause(), invoke Config() method to get Sampling Rate and iChannel encoding.
1.1029 +//!@SYMTestExpectedResults:
1.1030 +//Config() method shall retrieve current sample rate and channel encoding.
1.1031 +PRINT Play tone query - Call Config() to retrieve the current capabilities, sampling rate and channel encoding when paused
1.1032 +RUN_TEST_STEP 15000, char_a3f_devsound, MM-A3F-DEVSOUND-CHRTZ-TONE-0033, c:\mm_a3f_devsound_play_tone.ini
1.1033 +TEST_COMPLETE
1.1034 +
1.1035 +//!@SYMTestCaseID: MM-A3F-DEVSOUND-CHRTZ-TONE-0034
1.1036 +//!@SYMREQ: 7951
1.1037 +//!@SYMPREQ: 1540
1.1038 +//!@SYMTestCaseDec: Play tone query - Call MaxVolume() to retrieve the max volume suported by the device when paused
1.1039 +//!@SYMTestPriority: Normal
1.1040 +//!@SYMTestType: Alternative Usecase
1.1041 +//!@SYMTestActions:
1.1042 +//1. Create a Devsound instance.
1.1043 +//2. Create a CPeriodic instance.
1.1044 +//3. Initialise a DevSound instance to play tones.
1.1045 +//3.1 Wait for InitializeComplete(KErrNone) callback response.
1.1046 +//4. Call PlayToneL(). (For testing purposes, the tone should last more than the first timer event)
1.1047 +//5. Start CPeriodic to trigger timed events with a period of 2 seconds.
1.1048 +//6. On timer event, after calling Pause(), invoke MaxVolume() method to get the maximum volume for current device.
1.1049 +//!@SYMTestExpectedResults:
1.1050 +//MaxVolume() method shall retrieve the max device´s volume.
1.1051 +PRINT Play tone query - Call MaxVolume() to retrieve the max volume suported by the device when paused
1.1052 +RUN_TEST_STEP 15000, char_a3f_devsound, MM-A3F-DEVSOUND-CHRTZ-TONE-0034, c:\mm_a3f_devsound_play_tone.ini
1.1053 +TEST_COMPLETE
1.1054 +
1.1055 +//!@SYMTestCaseID: MM-A3F-DEVSOUND-CHRTZ-TONE-0035
1.1056 +//!@SYMREQ: 7951
1.1057 +//!@SYMPREQ: 1540
1.1058 +//!@SYMTestCaseDec: Play tone query - Call Volume() to retrieve the default device volume when paused
1.1059 +//!@SYMTestPriority: Normal
1.1060 +//!@SYMTestType: Alternative Usecase
1.1061 +//!@SYMTestActions:
1.1062 +//1. Create a Devsound instance.
1.1063 +//2. Create a CPeriodic instance.
1.1064 +//3. Initialise a DevSound instance to play tones.
1.1065 +//3.1 Wait for InitializeComplete(KErrNone) callback response.
1.1066 +//4. Call PlayToneL(). (For testing purposes, the tone should last more than the first timer event)
1.1067 +//5. Start CPeriodic to trigger timed events with a period of 2 seconds.
1.1068 +//6. On timer event, after calling Pause(), invoke Volume(..) method to get current volume value while tone play is in progress.
1.1069 +//!@SYMTestExpectedResults:
1.1070 +//Volume() shall retrieve the current device volume.
1.1071 +PRINT Play tone query - Call Volume() to retrieve the default device volume when paused
1.1072 +RUN_TEST_STEP 15000, char_a3f_devsound, MM-A3F-DEVSOUND-CHRTZ-TONE-0035, c:\mm_a3f_devsound_play_tone.ini
1.1073 +TEST_COMPLETE
1.1074 +
1.1075 +//!@SYMTestCaseID: MM-A3F-DEVSOUND-CHRTZ-TONE-0047
1.1076 +//!@SYMREQ: 7951
1.1077 +//!@SYMPREQ: 1540
1.1078 +//!@SYMTestCaseDec: Play tone - Once - Pause. The client wants to play a tone for a while and pause it.
1.1079 +//!@SYMTestPriority: Normal
1.1080 +//!@SYMTestType: Alternative Usecase
1.1081 +//!@SYMTestActions:
1.1082 +//1. Create and Initialize DevSound instance to play tones.
1.1083 +//1.1 Wait for InitializeComplete(KErrNone) callback response.
1.1084 +//2. Create and start a CPeriodic object.
1.1085 +//3. Call PlayToneL() method. (For testing purposes, the tone should last more than the timer event)
1.1086 +//4. On the timer event, after two second, call Pause() to pause the ongoing operation.
1.1087 +//!@SYMTestExpectedResults:
1.1088 +//Tone play is paused at current playing tone position. DevSound goes to “Pause Playing Tone” state.
1.1089 +PRINT Play tone - Once - Pause. The client wants to play a tone for a while and pause it.
1.1090 +RUN_TEST_STEP 15000, char_a3f_devsound, MM-A3F-DEVSOUND-CHRTZ-TONE-0047, c:\mm_a3f_devsound_play_tone.ini
1.1091 +TEST_COMPLETE
1.1092 +
1.1093 +//!@SYMTestCaseID: MM-A3F-DEVSOUND-CHRTZ-TONE-0048
1.1094 +//!@SYMREQ: 7951
1.1095 +//!@SYMPREQ: 1540
1.1096 +//!@SYMTestCaseDec: Play tone - Dual tone - Pause. The client wants to play a dual tone for a while and pause it.
1.1097 +//!@SYMTestPriority: Normal
1.1098 +//!@SYMTestType: Alternative Usecase
1.1099 +//!@SYMTestActions:
1.1100 +//1. Create and Initialize DevSound instance to play tones.
1.1101 +//1.1 Wait for InitializeComplete(KErrNone) callback response.
1.1102 +//2. Create and start a CPeriodic object.
1.1103 +//3. Call PlayDualToneL() method. (For testing purposes, the tone should last more than the timer event)
1.1104 +//4. On the timer event, after 2 seconds, call Pause() to pause the ongoing operation.
1.1105 +//!@SYMTestExpectedResults:
1.1106 +//Tone play is paused at current playing tone position. DevSound goes to “Pause Playing Tone” state.
1.1107 +PRINT Play tone - Dual tone - Pause. The client wants to play a dual tone for a while and pause it.
1.1108 +RUN_TEST_STEP 15000, char_a3f_devsound, MM-A3F-DEVSOUND-CHRTZ-TONE-0048, c:\mm_a3f_devsound_play_tone.ini
1.1109 +TEST_COMPLETE
1.1110 +
1.1111 +//!@SYMTestCaseID: MM-A3F-DEVSOUND-CHRTZ-TONE-0049
1.1112 +//!@SYMREQ: 7951
1.1113 +//!@SYMPREQ: 1540
1.1114 +//!@SYMTestCaseDec: Play tone - DTMF - Pause. The client wants to play a DTMF string for a while and pause it.
1.1115 +//!@SYMTestPriority: Normal
1.1116 +//!@SYMTestType: Alternative Usecase
1.1117 +//!@SYMTestActions:
1.1118 +//1. Create and Initialize DevSound instance to play tones.
1.1119 +//1.1 Wait for InitializeComplete(KErrNone) callback response.
1.1120 +//2. Create and start a CPeriodic object.
1.1121 +//3. Call PlayDTMFStringL() method with DTMFString = 01234, 56789, ABCDEF#*.
1.1122 +//4. On the timer event, after two second, call Pause() to pause the ongoing operation.
1.1123 +//!@SYMTestExpectedResults:
1.1124 +//Tone play is paused at current playing tone position. DevSound goes to “Pause Playing Tone” state.
1.1125 +PRINT Play tone - DTMF - Pause. The client wants to play a DTMF string for a while and pause it.
1.1126 +RUN_TEST_STEP 15000, char_a3f_devsound, MM-A3F-DEVSOUND-CHRTZ-TONE-0049, c:\mm_a3f_devsound_play_tone.ini
1.1127 +TEST_COMPLETE
1.1128 +
1.1129 +//!@SYMTestCaseID: MM-A3F-DEVSOUND-CHRTZ-TONE-0050
1.1130 +//!@SYMREQ: 7951
1.1131 +//!@SYMPREQ: 1540
1.1132 +//!@SYMTestCaseDec: Play tone - Tone sequence - Pause. The client wants to play a tone sequence and pause it.
1.1133 +//!@SYMTestPriority: Normal
1.1134 +//!@SYMTestType: Alternative Usecase
1.1135 +//!@SYMTestActions:
1.1136 +//1. Create and Initialize DevSound instance to play tones.
1.1137 +//1.1 Wait for InitializeComplete(KErrNone) callback response.
1.1138 +//2. Create and start a CPeriodic object.
1.1139 +//3. Call PlayToneSequenceL() method. (For testing purposes, the tone should last more than the timer event)
1.1140 +//4. On the timer event, after two second, call Pause() to pause the ongoing operation.
1.1141 +//!@SYMTestExpectedResults:
1.1142 +//Tone play is paused at current playing tone position. DevSound goes to “Pause Playing Tone” state.
1.1143 +PRINT Play tone - Tone sequence - Pause. The client wants to play a tone sequence and pause it.
1.1144 +RUN_TEST_STEP 15000, char_a3f_devsound, MM-A3F-DEVSOUND-CHRTZ-TONE-0050, c:\mm_a3f_devsound_play_tone.ini
1.1145 +TEST_COMPLETE
1.1146 \ No newline at end of file