1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/lowlevellibsandfws/apputils/tsrc/T_SSND1.CPP Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,108 @@
1.4 +// Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +// Tests for TBaSystemSoundType and TBaSystemSoundInfo class
1.18 +//
1.19 +//
1.20 +
1.21 +#include <e32test.h>
1.22 +#include <basched.h>
1.23 +#include <f32file.h>
1.24 +#include <s32file.h>
1.25 +#include <bassnd.h>
1.26 +
1.27 +RTest test(_L("T_SSND1"));
1.28 +RFs TheFs;
1.29 +
1.30 +const TUid KRing1 = {100};
1.31 +const TUid KRing2 = {101};
1.32 +
1.33 +_LIT(KSndNameWarble,"c:\\system\\data\\warble.wav");
1.34 +_LIT(KSndNameMozart,"c:\\system\\data\\mozart.wav");
1.35 +
1.36 +/**
1.37 +@SYMTestCaseID SYSLIB-BAFL-UT-1707
1.38 +@SYMTestCaseDesc Testing the functions of TBaSystemSoundType and TBaSystemSoundInfo class
1.39 + Tests for TBaSystemSoundInfo::SetTone(),TBaSystemSoundInfo::SetFixedSequenceNumber(),TBaSystemSoundInfo::TBaSystemSoundInfo(TTone) and TBaSystemSoundType::operator==() function
1.40 +@SYMTestPriority Medium
1.41 +@SYMTestActions Compare two system sound types, set the tone and fixed sequence number
1.42 +@SYMTestExpectedResults Test must not fail
1.43 +@SYMREQ REQ0000
1.44 +*/
1.45 +
1.46 +void TestSoundsL()
1.47 + {
1.48 + test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-UT-1707 Setting sounds "));
1.49 +
1.50 + TBaSystemSoundType sndType1(KSystemSoundRingUID,KRing1);
1.51 + TBaSystemSoundInfo sndInfo1(sndType1,KSndNameWarble());
1.52 + BaSystemSound::SetSoundL(TheFs,sndInfo1);
1.53 + TBaSystemSoundType sndType2(KSystemSoundRingUID,KRing2);
1.54 + TBaSystemSoundInfo sndInfo2(sndType2,KSndNameMozart());
1.55 + BaSystemSound::SetSoundL(TheFs,sndInfo2);
1.56 +
1.57 + TBaSystemSoundType sndType3(KSystemSoundRingUID,KRing1);
1.58 + TBaSystemSoundInfo sndInfo3(sndType3,KSndNameWarble());
1.59 + BaSystemSound::SetSoundL(TheFs,sndInfo3);
1.60 +
1.61 + // Comparing two system sound types
1.62 +
1.63 + test(!(sndType1==sndType2));
1.64 + test(sndType1==sndType3);
1.65 +
1.66 + // Setting with TTone
1.67 +
1.68 + TBaSystemSoundInfo::TTone tone(120,3400);
1.69 + TBaSystemSoundType sndType4;
1.70 + TBaSystemSoundInfo sndInfo4(sndType4,tone);
1.71 +
1.72 + TBaSystemSoundInfo::TTone tone1(140,3200);
1.73 +
1.74 + sndInfo4.SetFixedSequenceNumber(1);
1.75 + TInt seqNo = sndInfo4.FixedSequenceNumber();
1.76 + test(seqNo==1);
1.77 + sndInfo4.SetTone(tone1);
1.78 + test(!(sndType4==sndType3));
1.79 + }
1.80 +
1.81 +void DoTestsL()
1.82 + {
1.83 + TheFs.Connect();
1.84 + CleanupClosePushL(TheFs);
1.85 +
1.86 + TestSoundsL();
1.87 +
1.88 + CleanupStack::PopAndDestroy(); // TheFs
1.89 + }
1.90 +
1.91 +TInt E32Main()
1.92 + {
1.93 + __UHEAP_MARK;
1.94 +
1.95 + CTrapCleanup* cleanup=CTrapCleanup::New();
1.96 + if(cleanup == NULL)
1.97 + {
1.98 + return KErrNoMemory;
1.99 + }
1.100 + test.Title();
1.101 + test.Start(_L("Testing system sounds"));
1.102 + TRAPD(err,DoTestsL());
1.103 + test(err==KErrNone);
1.104 + test.End();
1.105 + test.Close();
1.106 + delete cleanup;
1.107 +
1.108 + __UHEAP_MARKEND;
1.109 +
1.110 + return(0);
1.111 + }