sl@0: // Copyright (c) 2007-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 tsi_a3f_devsound.dll sl@0: sl@0: sl@0: //! @SYMTestCaseID MM-A3F-DEVSOUND-PLAY-PCM-I-0028 sl@0: //! @SYMTestCaseDesc Negative: Initialize DevSound in Record mode and play (-ve) sl@0: //! @SYMTestPriority High sl@0: //! @SYMTestType CIT sl@0: //! @SYMREQ sl@0: //! @SYMPREQ 1540 sl@0: //! @SYMTestActions 1. Initialise DevSound in Recording state sl@0: //! 2. Call PlayInitL sl@0: //! 3. Error code should be received sl@0: //! @SYMTestExpectedResults PlayInitL must return with KErrNotReady sl@0: sl@0: RUN_TEST_STEP 600000 TSI_A3F_DEVSOUND MM-A3F-DEVSOUND-PLAY-PCM-I-0028 \tsi_a3f_devsound\tsi_a3f_devsound_play.ini sl@0: TEST_COMPLETE sl@0: sl@0: //! @SYMTestCaseID MM-A3F-DEVSOUND-PLAY-PCM-I-0029 sl@0: //! @SYMTestCaseDesc Negative: Empty buffers during playback (-ve) sl@0: //! @SYMTestPriority High sl@0: //! @SYMTestType CIT sl@0: //! @SYMREQ sl@0: //! @SYMPREQ 1540 sl@0: //! @SYMTestActions 1. Configure DevSound to play PCM16 raw audio data in mono mode with sampling rate of 8 kHz. sl@0: //! 2. Start playing and read recorded data from file. sl@0: //! 3. Call EmptyBuffers after the first BTBF state sl@0: //! @SYMTestExpectedResults EmptyBuffers while playing should return with KErrNone sl@0: sl@0: RUN_TEST_STEP 600000 TSI_A3F_DEVSOUND MM-A3F-DEVSOUND-PLAY-PCM-I-0029 \tsi_a3f_devsound\tsi_a3f_devsound_play.ini sl@0: TEST_COMPLETE sl@0: sl@0: //! @SYMTestCaseID MM-A3F-DEVSOUND-PLAY-PCM-I-0030 sl@0: //! @SYMTestCaseDesc Negative: Call InitializeL while playback is in progress (-ve) sl@0: //! @SYMTestPriority High sl@0: //! @SYMTestType CIT sl@0: //! @SYMREQ 7927 sl@0: //! @SYMPREQ 1540 sl@0: //! @SYMTestActions 1. Configure DevSound to play PCM16 raw audio data in mono mode with sampling rate of 8 kHz. sl@0: //! 2. Start playing and read recorded data from file. sl@0: //! 3. After 10 seconds have passed, and playback is still in progress, initialise DevSound again sl@0: //! 4. Error code should be received sl@0: //! @SYMTestExpectedResults Second call to InitializeL must return with KErrNotReady sl@0: sl@0: RUN_TEST_STEP 600000 TSI_A3F_DEVSOUND MM-A3F-DEVSOUND-PLAY-PCM-I-0030 \tsi_a3f_devsound\tsi_a3f_devsound_play.ini sl@0: TEST_COMPLETE sl@0: sl@0: //! @SYMTestCaseID MM-A3F-DEVSOUND-PLAY-PCM-I-0031 sl@0: //! @SYMTestCaseDesc Negative: Initialize DevSound HwDeviceUID (-ve) sl@0: //! @SYMTestPriority High sl@0: //! @SYMTestType CIT sl@0: //! @SYMREQ sl@0: //! @SYMPREQ 1540 sl@0: //! @SYMTestActions 1. Initialise DevSound using a HwDeviceUID instead of a FourCC code sl@0: //! 2. Error code should be received sl@0: //! @SYMTestExpectedResults InitializeL must return with KErrNotSupported sl@0: sl@0: RUN_TEST_STEP 600000 TSI_A3F_DEVSOUND MM-A3F-DEVSOUND-PLAY-PCM-I-0031 \tsi_a3f_devsound\tsi_a3f_devsound_play.ini sl@0: TEST_COMPLETE sl@0: sl@0: //! @SYMTestCaseID MM-A3F-DEVSOUND-PLAY-PCM-I-0032 sl@0: //! @SYMTestCaseDesc Positive: Set Play balance during playback and get it to confirm balance set correctly (+ve) sl@0: //! @SYMTestPriority High sl@0: //! @SYMTestType CIT sl@0: //! @SYMREQ sl@0: //! @SYMPREQ 1540 sl@0: //! @SYMTestActions 1. Configure DevSound to play PCM16 raw audio data in mono mode with sampling rate of 8 kHz. sl@0: //! 2. Start playing and read recorded data from file. sl@0: //! 3. In the BuffertoBeFilled callback set the playback balance sl@0: //! 4. Get the balance and check that it's the same as the one that was set sl@0: //! @SYMTestExpectedResults SetPlayBalanceL returns with KErrNone sl@0: //! GetPlayBalanceL returns with KErrNone and the left and right balance values match the ones previously set sl@0: sl@0: RUN_TEST_STEP 600000 TSI_A3F_DEVSOUND MM-A3F-DEVSOUND-PLAY-PCM-I-0032 \tsi_a3f_devsound\tsi_a3f_devsound_play.ini sl@0: TEST_COMPLETE sl@0: sl@0: //! @SYMTestCaseID MM-A3F-DEVSOUND-PLAY-PCM-I-0033 sl@0: //! @SYMTestCaseDesc Positive: Get the number of samples played after stopping the playback (+ve) sl@0: //! @SYMTestPriority High sl@0: //! @SYMTestType CIT sl@0: //! @SYMREQ sl@0: //! @SYMPREQ 1540 sl@0: //! @SYMTestActions 1. Configure DevSound to play PCM16 raw audio data in mono mode with sampling rate of 8 kHz. sl@0: //! 2. Start playing and read recorded data from file. sl@0: //! 3. Stop playback after 10 seconds and get the number of samples played sl@0: //! 4. Samples Played should be more than 0 sl@0: //! @SYMTestExpectedResults SamplesPlayed should return a value greater than 0 sl@0: sl@0: RUN_TEST_STEP 600000 TSI_A3F_DEVSOUND MM-A3F-DEVSOUND-PLAY-PCM-I-0033 \tsi_a3f_devsound\tsi_a3f_devsound_play.ini sl@0: TEST_COMPLETE sl@0: sl@0: //! @SYMTestCaseID MM-A3F-DEVSOUND-PLAY-PCM-I-0034 sl@0: //! @SYMTestCaseDesc Negative: Call second InitializeL before the first InitializeL has completed (-ve) sl@0: //! @SYMTestPriority High sl@0: //! @SYMTestType CIT sl@0: //! @SYMREQ 7927 sl@0: //! @SYMPREQ 1540 sl@0: //! @SYMTestActions 1. Initialise DevSound for playback sl@0: //! 2. Initialise DevSound again without waiting for the InitializeComplete callback sl@0: //! @SYMTestExpectedResults The first initialisation should complete correctly, the second one should fail with KErrNotReady sl@0: sl@0: RUN_TEST_STEP 600000 TSI_A3F_DEVSOUND MM-A3F-DEVSOUND-PLAY-PCM-I-0034 \tsi_a3f_devsound\tsi_a3f_devsound_play.ini sl@0: TEST_COMPLETE sl@0: sl@0: //! @SYMTestCaseID MM-A3F-DEVSOUND-PLAY-PCM-I-0035 sl@0: //! @SYMTestCaseDesc Negative: Call second PlayInitL before the first PlayInitL has completed (-ve) sl@0: //! @SYMTestPriority High sl@0: //! @SYMTestType CIT sl@0: //! @SYMREQ 7927 sl@0: //! @SYMPREQ 1540 sl@0: //! @SYMTestActions 1. Configure DevSound to play PCM16 raw audio data in mono mode with sampling rate of 8 kHz. sl@0: //! 2. Call PlayInitL twice. sl@0: //! 3. In the BufferToBeFilled callback check the error codes of both PlayInitL calls sl@0: //! @SYMTestExpectedResults The first PlayInitL should complete correctly, the second one should fail with KErrNotReady sl@0: sl@0: RUN_TEST_STEP 600000 TSI_A3F_DEVSOUND MM-A3F-DEVSOUND-PLAY-PCM-I-0035 \tsi_a3f_devsound\tsi_a3f_devsound_play.ini sl@0: TEST_COMPLETE sl@0: sl@0: //! @SYMTestCaseID MM-A3F-DEVSOUND-PLAY-PCM-I-0036 sl@0: //! @SYMTestCaseDesc Negative: Set the volume beyond the maximum and minimum supported values and get the set volume to check if volume is cropped (-ve) sl@0: //! @SYMTestPriority High sl@0: //! @SYMTestType CIT sl@0: //! @SYMREQ 7927 sl@0: //! @SYMPREQ 1540 sl@0: //! @SYMTestActions 1. Initialise DevSound for playback sl@0: //! 2. Get the Max Volume supported sl@0: //! 3. Set the volume higher than the Max Volume sl@0: //! 4. Verify the volume was cropped to the Max Volume sl@0: //! 5. Set the volume lower than zero sl@0: //! 6. Verify the volume was cropped to zero sl@0: //! @SYMTestExpectedResults Setting the volume to a value beyond the maximum supported volume will crop it to the maximum supported volume. sl@0: //! Setting the volume to a value below the minimum supported volume will crop ot to the minimum supported volume sl@0: sl@0: RUN_TEST_STEP 600000 TSI_A3F_DEVSOUND MM-A3F-DEVSOUND-PLAY-PCM-I-0036 \tsi_a3f_devsound\tsi_a3f_devsound_play.ini sl@0: TEST_COMPLETE sl@0: sl@0: //! @SYMTestCaseID MM-A3F-DEVSOUND-PLAY-PCM-I-0037 sl@0: //! @SYMTestCaseDesc Negative: Initialize the DevSound in TMMFState EMMFStateConverting (-ve) sl@0: //! @SYMTestPriority High sl@0: //! @SYMTestType CIT sl@0: //! @SYMREQ 7927 sl@0: //! @SYMPREQ 1540 sl@0: //! @SYMTestActions 1. Initialise DevSound in converting state sl@0: //! @SYMTestExpectedResults InitializeL must return with KErrNotSupported. DevSound is not initialised sl@0: sl@0: RUN_TEST_STEP 600000 TSI_A3F_DEVSOUND MM-A3F-DEVSOUND-PLAY-PCM-I-0037 \tsi_a3f_devsound\tsi_a3f_devsound_play.ini sl@0: TEST_COMPLETE sl@0: sl@0: //! @SYMTestCaseID MM-A3F-DEVSOUND-PLAY-PCM-I-0038 sl@0: //! @SYMTestCaseDesc Positive: Call CMMFDevSound::CancelInitialize before the InitializeComplete callback. (+ve) sl@0: //! sl@0: //! @SYMTestPriority High sl@0: //! @SYMTestType CIT sl@0: //! @SYMREQ ???? sl@0: //! @SYMPREQ 1540 sl@0: //! @SYMTestActions 1. Configure DevSound to play PCM16 raw audio data. sl@0: //! 2. Initialize DevSound via CMMFDevSound::InitializeL in play mode using TMMFState::EMMFStatePlaying. sl@0: //! 3. Call CMMFDevSound::CancelInitialize before the InitializeComplete callback is received sl@0: //! 4. Wait 10 seconds to ensure the InitializeComplete callback is not received. sl@0: //! 5. Call SetConfig to verify DevSound is not initialized. sl@0: //! sl@0: //! @SYMTestExpectedResults The CMMFDevSound::CancelInitialize call cancels the InitializeComplete callback. DevSound is not Initialized sl@0: sl@0: RUN_TEST_STEP 600000 TSI_A3F_DEVSOUND MM-A3F-DEVSOUND-PLAY-PCM-I-0038 \tsi_a3f_devsound\tsi_a3f_devsound_play.ini sl@0: TEST_COMPLETE sl@0: sl@0: //! @SYMTestCaseID MM-A3F-DEVSOUND-PLAY-PCM-I-0039 sl@0: //! @SYMTestCaseDesc Negative: Call CMMFDevSound::CancelInitialize after the InitializeComplete callback. (-ve) sl@0: //! sl@0: //! @SYMTestPriority High sl@0: //! @SYMTestType CIT sl@0: //! @SYMREQ ???? sl@0: //! @SYMPREQ 1540 sl@0: //! @SYMTestActions 1. Configure DevSound to play PCM16 raw audio data. sl@0: //! 2. Initialize DevSound via CMMFDevSound::InitializeL in record mode using TMMFState::EMMFStateRecording. sl@0: //! 3. Call CMMFDevSound::CancelInitialize after the InitializeComplete callback is received sl@0: //! sl@0: //! @SYMTestExpectedResults The CMMFDevSound::CancelInitialize call returns with KErrNotReady. DevSound is Initialized sl@0: sl@0: RUN_TEST_STEP 600000 TSI_A3F_DEVSOUND MM-A3F-DEVSOUND-PLAY-PCM-I-0039 \tsi_a3f_devsound\tsi_a3f_devsound_play.ini sl@0: TEST_COMPLETE sl@0: sl@0: //! @SYMTestCaseID MM-A3F-DEVSOUND-PLAY-PCM-I-0040 sl@0: //! @SYMTestCaseDesc Negative: Call CMMFDevSound::EmptyBuffers after creating the DevSound object. (-ve) sl@0: //! sl@0: //! @SYMTestPriority High sl@0: //! @SYMTestType CIT sl@0: //! @SYMREQ ???? sl@0: //! @SYMPREQ 1540 sl@0: //! @SYMTestActions 1. Create the DevSound object sl@0: //! 2. Call CMMFDevSound::EmptyBuffers sl@0: //! sl@0: //! @SYMTestExpectedResults The CMMFDevSound::EmptyBuffers call returns with KErrNotReady. sl@0: sl@0: RUN_TEST_STEP 600000 TSI_A3F_DEVSOUND MM-A3F-DEVSOUND-PLAY-PCM-I-0040 sl@0: TEST_COMPLETE sl@0: sl@0: //! @SYMTestCaseID MM-A3F-DEVSOUND-PLAY-PCM-I-0041 sl@0: //! @SYMTestCaseDesc Negative: Call CMMFDevSound::EmptyBuffers after the InitializeComplete callback. (-ve) sl@0: //! sl@0: //! @SYMTestPriority High sl@0: //! @SYMTestType CIT sl@0: //! @SYMREQ ???? sl@0: //! @SYMPREQ 1540 sl@0: //! @SYMTestActions 1. Configure DevSound to play PCM16 raw audio data. sl@0: //! 2. Initialize DevSound via CMMFDevSound::InitializeL in play mode using TMMFState::EMMFStatePlaying. sl@0: //! 3. Call CMMFDevSound::EmptyBuffers after the InitializeComplete callback is received sl@0: //! sl@0: //! @SYMTestExpectedResults The CMMFDevSound::EmptyBuffers call returns with KErrNotReady. sl@0: sl@0: RUN_TEST_STEP 600000 TSI_A3F_DEVSOUND MM-A3F-DEVSOUND-PLAY-PCM-I-0041 \tsi_a3f_devsound\tsi_a3f_devsound_play.ini sl@0: TEST_COMPLETE sl@0: sl@0: //! @SYMTestCaseID MM-A3F-DEVSOUND-PLAY-PCM-I-0042 sl@0: //! @SYMTestCaseDesc Negative: Call CMMFDevSound::EmptyBuffers before the InitializeComplete callback. (-ve) sl@0: //! sl@0: //! @SYMTestPriority High sl@0: //! @SYMTestType CIT sl@0: //! @SYMREQ ???? sl@0: //! @SYMPREQ 1540 sl@0: //! @SYMTestActions 1. Configure DevSound to play PCM16 raw audio data. sl@0: //! 2. Initialize DevSound via CMMFDevSound::InitializeL in play mode using TMMFState::EMMFStatePlaying. sl@0: //! 3. Call CMMFDevSound::EmptyBuffers before the InitializeComplete callback is received sl@0: //! sl@0: //! @SYMTestExpectedResults The CMMFDevSound::EmptyBuffers call returns with KErrNotReady. sl@0: sl@0: RUN_TEST_STEP 600000 TSI_A3F_DEVSOUND MM-A3F-DEVSOUND-PLAY-PCM-I-0042 \tsi_a3f_devsound\tsi_a3f_devsound_play.ini sl@0: TEST_COMPLETE