sl@0
|
1 |
// Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
// Tests for TBaSystemSoundType and TBaSystemSoundInfo class
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#include <e32test.h>
|
sl@0
|
19 |
#include <basched.h>
|
sl@0
|
20 |
#include <f32file.h>
|
sl@0
|
21 |
#include <s32file.h>
|
sl@0
|
22 |
#include <bassnd.h>
|
sl@0
|
23 |
|
sl@0
|
24 |
RTest test(_L("T_SSND1"));
|
sl@0
|
25 |
RFs TheFs;
|
sl@0
|
26 |
|
sl@0
|
27 |
const TUid KRing1 = {100};
|
sl@0
|
28 |
const TUid KRing2 = {101};
|
sl@0
|
29 |
|
sl@0
|
30 |
_LIT(KSndNameWarble,"c:\\system\\data\\warble.wav");
|
sl@0
|
31 |
_LIT(KSndNameMozart,"c:\\system\\data\\mozart.wav");
|
sl@0
|
32 |
|
sl@0
|
33 |
/**
|
sl@0
|
34 |
@SYMTestCaseID SYSLIB-BAFL-UT-1707
|
sl@0
|
35 |
@SYMTestCaseDesc Testing the functions of TBaSystemSoundType and TBaSystemSoundInfo class
|
sl@0
|
36 |
Tests for TBaSystemSoundInfo::SetTone(),TBaSystemSoundInfo::SetFixedSequenceNumber(),TBaSystemSoundInfo::TBaSystemSoundInfo(TTone) and TBaSystemSoundType::operator==() function
|
sl@0
|
37 |
@SYMTestPriority Medium
|
sl@0
|
38 |
@SYMTestActions Compare two system sound types, set the tone and fixed sequence number
|
sl@0
|
39 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
40 |
@SYMREQ REQ0000
|
sl@0
|
41 |
*/
|
sl@0
|
42 |
|
sl@0
|
43 |
void TestSoundsL()
|
sl@0
|
44 |
{
|
sl@0
|
45 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-UT-1707 Setting sounds "));
|
sl@0
|
46 |
|
sl@0
|
47 |
TBaSystemSoundType sndType1(KSystemSoundRingUID,KRing1);
|
sl@0
|
48 |
TBaSystemSoundInfo sndInfo1(sndType1,KSndNameWarble());
|
sl@0
|
49 |
BaSystemSound::SetSoundL(TheFs,sndInfo1);
|
sl@0
|
50 |
TBaSystemSoundType sndType2(KSystemSoundRingUID,KRing2);
|
sl@0
|
51 |
TBaSystemSoundInfo sndInfo2(sndType2,KSndNameMozart());
|
sl@0
|
52 |
BaSystemSound::SetSoundL(TheFs,sndInfo2);
|
sl@0
|
53 |
|
sl@0
|
54 |
TBaSystemSoundType sndType3(KSystemSoundRingUID,KRing1);
|
sl@0
|
55 |
TBaSystemSoundInfo sndInfo3(sndType3,KSndNameWarble());
|
sl@0
|
56 |
BaSystemSound::SetSoundL(TheFs,sndInfo3);
|
sl@0
|
57 |
|
sl@0
|
58 |
// Comparing two system sound types
|
sl@0
|
59 |
|
sl@0
|
60 |
test(!(sndType1==sndType2));
|
sl@0
|
61 |
test(sndType1==sndType3);
|
sl@0
|
62 |
|
sl@0
|
63 |
// Setting with TTone
|
sl@0
|
64 |
|
sl@0
|
65 |
TBaSystemSoundInfo::TTone tone(120,3400);
|
sl@0
|
66 |
TBaSystemSoundType sndType4;
|
sl@0
|
67 |
TBaSystemSoundInfo sndInfo4(sndType4,tone);
|
sl@0
|
68 |
|
sl@0
|
69 |
TBaSystemSoundInfo::TTone tone1(140,3200);
|
sl@0
|
70 |
|
sl@0
|
71 |
sndInfo4.SetFixedSequenceNumber(1);
|
sl@0
|
72 |
TInt seqNo = sndInfo4.FixedSequenceNumber();
|
sl@0
|
73 |
test(seqNo==1);
|
sl@0
|
74 |
sndInfo4.SetTone(tone1);
|
sl@0
|
75 |
test(!(sndType4==sndType3));
|
sl@0
|
76 |
}
|
sl@0
|
77 |
|
sl@0
|
78 |
void DoTestsL()
|
sl@0
|
79 |
{
|
sl@0
|
80 |
TheFs.Connect();
|
sl@0
|
81 |
CleanupClosePushL(TheFs);
|
sl@0
|
82 |
|
sl@0
|
83 |
TestSoundsL();
|
sl@0
|
84 |
|
sl@0
|
85 |
CleanupStack::PopAndDestroy(); // TheFs
|
sl@0
|
86 |
}
|
sl@0
|
87 |
|
sl@0
|
88 |
TInt E32Main()
|
sl@0
|
89 |
{
|
sl@0
|
90 |
__UHEAP_MARK;
|
sl@0
|
91 |
|
sl@0
|
92 |
CTrapCleanup* cleanup=CTrapCleanup::New();
|
sl@0
|
93 |
if(cleanup == NULL)
|
sl@0
|
94 |
{
|
sl@0
|
95 |
return KErrNoMemory;
|
sl@0
|
96 |
}
|
sl@0
|
97 |
test.Title();
|
sl@0
|
98 |
test.Start(_L("Testing system sounds"));
|
sl@0
|
99 |
TRAPD(err,DoTestsL());
|
sl@0
|
100 |
test(err==KErrNone);
|
sl@0
|
101 |
test.End();
|
sl@0
|
102 |
test.Close();
|
sl@0
|
103 |
delete cleanup;
|
sl@0
|
104 |
|
sl@0
|
105 |
__UHEAP_MARKEND;
|
sl@0
|
106 |
|
sl@0
|
107 |
return(0);
|
sl@0
|
108 |
}
|