sl@0: // Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // Tests for TBaSystemSoundType and TBaSystemSoundInfo class sl@0: // sl@0: // sl@0: sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: sl@0: RTest test(_L("T_SSND1")); sl@0: RFs TheFs; sl@0: sl@0: const TUid KRing1 = {100}; sl@0: const TUid KRing2 = {101}; sl@0: sl@0: _LIT(KSndNameWarble,"c:\\system\\data\\warble.wav"); sl@0: _LIT(KSndNameMozart,"c:\\system\\data\\mozart.wav"); sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-BAFL-UT-1707 sl@0: @SYMTestCaseDesc Testing the functions of TBaSystemSoundType and TBaSystemSoundInfo class sl@0: Tests for TBaSystemSoundInfo::SetTone(),TBaSystemSoundInfo::SetFixedSequenceNumber(),TBaSystemSoundInfo::TBaSystemSoundInfo(TTone) and TBaSystemSoundType::operator==() function sl@0: @SYMTestPriority Medium sl@0: @SYMTestActions Compare two system sound types, set the tone and fixed sequence number sl@0: @SYMTestExpectedResults Test must not fail sl@0: @SYMREQ REQ0000 sl@0: */ sl@0: sl@0: void TestSoundsL() sl@0: { sl@0: test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-UT-1707 Setting sounds ")); sl@0: sl@0: TBaSystemSoundType sndType1(KSystemSoundRingUID,KRing1); sl@0: TBaSystemSoundInfo sndInfo1(sndType1,KSndNameWarble()); sl@0: BaSystemSound::SetSoundL(TheFs,sndInfo1); sl@0: TBaSystemSoundType sndType2(KSystemSoundRingUID,KRing2); sl@0: TBaSystemSoundInfo sndInfo2(sndType2,KSndNameMozart()); sl@0: BaSystemSound::SetSoundL(TheFs,sndInfo2); sl@0: sl@0: TBaSystemSoundType sndType3(KSystemSoundRingUID,KRing1); sl@0: TBaSystemSoundInfo sndInfo3(sndType3,KSndNameWarble()); sl@0: BaSystemSound::SetSoundL(TheFs,sndInfo3); sl@0: sl@0: // Comparing two system sound types sl@0: sl@0: test(!(sndType1==sndType2)); sl@0: test(sndType1==sndType3); sl@0: sl@0: // Setting with TTone sl@0: sl@0: TBaSystemSoundInfo::TTone tone(120,3400); sl@0: TBaSystemSoundType sndType4; sl@0: TBaSystemSoundInfo sndInfo4(sndType4,tone); sl@0: sl@0: TBaSystemSoundInfo::TTone tone1(140,3200); sl@0: sl@0: sndInfo4.SetFixedSequenceNumber(1); sl@0: TInt seqNo = sndInfo4.FixedSequenceNumber(); sl@0: test(seqNo==1); sl@0: sndInfo4.SetTone(tone1); sl@0: test(!(sndType4==sndType3)); sl@0: } sl@0: sl@0: void DoTestsL() sl@0: { sl@0: TheFs.Connect(); sl@0: CleanupClosePushL(TheFs); sl@0: sl@0: TestSoundsL(); sl@0: sl@0: CleanupStack::PopAndDestroy(); // TheFs sl@0: } sl@0: sl@0: TInt E32Main() sl@0: { sl@0: __UHEAP_MARK; sl@0: sl@0: CTrapCleanup* cleanup=CTrapCleanup::New(); sl@0: if(cleanup == NULL) sl@0: { sl@0: return KErrNoMemory; sl@0: } sl@0: test.Title(); sl@0: test.Start(_L("Testing system sounds")); sl@0: TRAPD(err,DoTestsL()); sl@0: test(err==KErrNone); sl@0: test.End(); sl@0: test.Close(); sl@0: delete cleanup; sl@0: sl@0: __UHEAP_MARKEND; sl@0: sl@0: return(0); sl@0: }