sl@0
|
1 |
// Copyright (c) 1997-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 |
// TA_ARRAY.CPP
|
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 <centralrepository.h>
|
sl@0
|
22 |
|
sl@0
|
23 |
#include <bassnd.h>
|
sl@0
|
24 |
#include "BASSNDUID.h"
|
sl@0
|
25 |
#include "BASSNDPriorityDecoder.h"
|
sl@0
|
26 |
|
sl@0
|
27 |
LOCAL_D RTest test(_L("T_SSND"));
|
sl@0
|
28 |
RFs TheFs;
|
sl@0
|
29 |
TBool TestingOOM = EFalse;
|
sl@0
|
30 |
|
sl@0
|
31 |
const TUid KRing1={100};
|
sl@0
|
32 |
const TUid KRing2={101};
|
sl@0
|
33 |
const TUid KAlarm1={201};
|
sl@0
|
34 |
const TUid KAlarm2={202};
|
sl@0
|
35 |
const TUid KMessage1={203};
|
sl@0
|
36 |
|
sl@0
|
37 |
_LIT(KSndNameWarble,"c:\\system\\data\\warble.wav");
|
sl@0
|
38 |
_LIT(KSndNameMozart,"c:\\system\\data\\mozart.wav");
|
sl@0
|
39 |
_LIT(KSndNameBach,"c:\\system\\data\\bach.wav");
|
sl@0
|
40 |
_LIT(KSndNameVivaldi,"c:\\system\\data\\vivaldi.wav");
|
sl@0
|
41 |
|
sl@0
|
42 |
#define TEST2(err, cond) \
|
sl@0
|
43 |
{\
|
sl@0
|
44 |
if (TestingOOM && err == KErrNoMemory) \
|
sl@0
|
45 |
{\
|
sl@0
|
46 |
User::LeaveNoMemory();\
|
sl@0
|
47 |
}\
|
sl@0
|
48 |
test(cond);\
|
sl@0
|
49 |
}
|
sl@0
|
50 |
|
sl@0
|
51 |
// Delete all entries in sound table
|
sl@0
|
52 |
LOCAL_C void ClearSoundTableL()
|
sl@0
|
53 |
{
|
sl@0
|
54 |
CRepository *repository = CRepository::NewLC(KSystemSoundRepositoryUID);
|
sl@0
|
55 |
repository->Reset();
|
sl@0
|
56 |
CleanupStack::PopAndDestroy( repository );
|
sl@0
|
57 |
}
|
sl@0
|
58 |
|
sl@0
|
59 |
LOCAL_C void TestSetSounds1L()
|
sl@0
|
60 |
{
|
sl@0
|
61 |
TBaSystemSoundType sndType(KSystemSoundRingUID,KRing1);
|
sl@0
|
62 |
TBaSystemSoundInfo sndInfo(sndType,KSndNameWarble());
|
sl@0
|
63 |
BaSystemSound::SetSoundL(TheFs,sndInfo);
|
sl@0
|
64 |
}
|
sl@0
|
65 |
|
sl@0
|
66 |
LOCAL_C void TestSetSounds2L()
|
sl@0
|
67 |
{
|
sl@0
|
68 |
TBaSystemSoundType sndType(KSystemSoundRingUID,KRing2);
|
sl@0
|
69 |
TBaSystemSoundInfo sndInfo(sndType,KSndNameMozart());
|
sl@0
|
70 |
BaSystemSound::SetSoundL(TheFs,sndInfo);
|
sl@0
|
71 |
}
|
sl@0
|
72 |
|
sl@0
|
73 |
LOCAL_C void TestSetSounds3L()
|
sl@0
|
74 |
{
|
sl@0
|
75 |
TBaSystemSoundType sndType(KSystemSoundAlarmUID,KAlarm1);
|
sl@0
|
76 |
TBaSystemSoundInfo sndInfo(sndType,KSndNameBach());
|
sl@0
|
77 |
sndInfo.iVolume=100;
|
sl@0
|
78 |
sndInfo.iPriority=TBaSoundPriorityEncoder(16).Int();
|
sl@0
|
79 |
BaSystemSound::SetSoundL(TheFs,sndInfo);
|
sl@0
|
80 |
}
|
sl@0
|
81 |
|
sl@0
|
82 |
LOCAL_C void TestSetSounds4L()
|
sl@0
|
83 |
{
|
sl@0
|
84 |
TBaSystemSoundType sndType(KSystemSoundAlarmUID,KAlarm2);
|
sl@0
|
85 |
TBaSystemSoundInfo sndInfo(sndType,KSndNameVivaldi());
|
sl@0
|
86 |
sndInfo.iVolume=83;
|
sl@0
|
87 |
TBaSoundPriorityEncoder priority(-100,(TMdaPriorityPreference(0xFF030001)));
|
sl@0
|
88 |
sndInfo.iPriority=priority.Int();
|
sl@0
|
89 |
BaSystemSound::SetSoundL(TheFs,sndInfo);
|
sl@0
|
90 |
}
|
sl@0
|
91 |
|
sl@0
|
92 |
/**
|
sl@0
|
93 |
@SYMTestCaseID SYSLIB-BAFL-CT-1286
|
sl@0
|
94 |
@SYMTestCaseDesc Tests for BaSystemSound::SetSoundL() function
|
sl@0
|
95 |
@SYMTestPriority High
|
sl@0
|
96 |
@SYMTestActions Tests for KErrArgument,when TSoundCategory is passed with out being set as a tone
|
sl@0
|
97 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
98 |
@SYMREQ REQ0000
|
sl@0
|
99 |
*/
|
sl@0
|
100 |
LOCAL_C void TestSetSounds5L()
|
sl@0
|
101 |
{
|
sl@0
|
102 |
// Testing SetSoundL.
|
sl@0
|
103 |
// Should leave with KErrArgument when TSoundCategory of sndInfo
|
sl@0
|
104 |
// parameter is passed with out being set either as a tone, a file
|
sl@0
|
105 |
// or a sequence.
|
sl@0
|
106 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-1286 "));
|
sl@0
|
107 |
TBaSystemSoundInfo sndInfo;
|
sl@0
|
108 |
TRAPD(err,BaSystemSound::SetSoundL(TheFs,sndInfo));
|
sl@0
|
109 |
TEST2(err, err==KErrArgument);
|
sl@0
|
110 |
}
|
sl@0
|
111 |
|
sl@0
|
112 |
/**
|
sl@0
|
113 |
@SYMTestCaseID SYSLIB-BAFL-CT-3395
|
sl@0
|
114 |
@SYMTestCaseDesc Tests for BaSystemSound::SetSound() function
|
sl@0
|
115 |
@SYMTestPriority High
|
sl@0
|
116 |
@SYMTestActions Set sounds of different types: file, tone and seq
|
sl@0
|
117 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
118 |
@SYMDEF DEF095280
|
sl@0
|
119 |
*/
|
sl@0
|
120 |
LOCAL_C void TestSetSoundsL()
|
sl@0
|
121 |
{
|
sl@0
|
122 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-3395 "));
|
sl@0
|
123 |
// split into stupidly small chunks to avoid _chkstk errors
|
sl@0
|
124 |
|
sl@0
|
125 |
//set sounds
|
sl@0
|
126 |
TestSetSounds1L();
|
sl@0
|
127 |
TestSetSounds2L();
|
sl@0
|
128 |
TestSetSounds3L();
|
sl@0
|
129 |
TestSetSounds4L();
|
sl@0
|
130 |
TestSetSounds5L();
|
sl@0
|
131 |
}
|
sl@0
|
132 |
|
sl@0
|
133 |
/**
|
sl@0
|
134 |
@SYMTestCaseID SYSLIB-BAFL-CT-1287
|
sl@0
|
135 |
@SYMTestCaseDesc Tests for BaSystemSound::GetSound() function
|
sl@0
|
136 |
@SYMTestPriority High
|
sl@0
|
137 |
@SYMTestActions Attempt for getting back sounds
|
sl@0
|
138 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
139 |
@SYMDEF DEF095280
|
sl@0
|
140 |
*/
|
sl@0
|
141 |
LOCAL_C void TestGetSoundsL()
|
sl@0
|
142 |
{
|
sl@0
|
143 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-1287 "));
|
sl@0
|
144 |
TBaSystemSoundInfo info;
|
sl@0
|
145 |
|
sl@0
|
146 |
//get sounds
|
sl@0
|
147 |
//should return warble
|
sl@0
|
148 |
TBaSystemSoundType sndType(KSystemSoundRingUID,KRing1);
|
sl@0
|
149 |
TInt e=BaSystemSound::GetSound(TheFs,sndType,info);
|
sl@0
|
150 |
TEST2(e, e==KErrNone);
|
sl@0
|
151 |
test(info.FileName()==KSndNameWarble);
|
sl@0
|
152 |
//should return mozart
|
sl@0
|
153 |
sndType=TBaSystemSoundType(KSystemSoundRingUID,KRing2);
|
sl@0
|
154 |
e=BaSystemSound::GetSound(TheFs,sndType,info);
|
sl@0
|
155 |
TEST2(e, e==KErrNone);
|
sl@0
|
156 |
test(info.FileName()==KSndNameMozart);
|
sl@0
|
157 |
//should return bach
|
sl@0
|
158 |
sndType=TBaSystemSoundType(KSystemSoundAlarmUID,KAlarm1);
|
sl@0
|
159 |
e=BaSystemSound::GetSound(TheFs,sndType,info);
|
sl@0
|
160 |
TEST2(e, e==KErrNone);
|
sl@0
|
161 |
test(info.FileName()==KSndNameBach);
|
sl@0
|
162 |
test(info.iVolume=100);
|
sl@0
|
163 |
TBaSoundPriorityDecoder priorityDecode(info.iPriority);
|
sl@0
|
164 |
test(priorityDecode.Priority()==16);
|
sl@0
|
165 |
test(priorityDecode.PriorityPreference()==EMdaPriorityPreferenceTimeAndQuality);
|
sl@0
|
166 |
//should rturn vivaldi
|
sl@0
|
167 |
sndType=TBaSystemSoundType(KSystemSoundAlarmUID,KAlarm2);
|
sl@0
|
168 |
e=BaSystemSound::GetSound(TheFs,sndType,info);
|
sl@0
|
169 |
TEST2(e, e==KErrNone);
|
sl@0
|
170 |
test(info.FileName()==KSndNameVivaldi);
|
sl@0
|
171 |
test(info.iVolume=83);
|
sl@0
|
172 |
priorityDecode=TBaSoundPriorityDecoder(info.iPriority);
|
sl@0
|
173 |
test(priorityDecode.Priority()==-100);
|
sl@0
|
174 |
test(priorityDecode.PriorityPreference()==(TMdaPriorityPreference(0xFF030001)));
|
sl@0
|
175 |
}
|
sl@0
|
176 |
|
sl@0
|
177 |
// ---------------------------------------------------
|
sl@0
|
178 |
// OomTest
|
sl@0
|
179 |
//
|
sl@0
|
180 |
// Function to convert a test into an OOM test
|
sl@0
|
181 |
|
sl@0
|
182 |
/**
|
sl@0
|
183 |
@SYMTestCaseID SYSLIB-BAFL-CT-1288
|
sl@0
|
184 |
@SYMTestCaseDesc Out of memory tests
|
sl@0
|
185 |
@SYMTestPriority High
|
sl@0
|
186 |
@SYMTestActions Turns a basic test function into OOM test.
|
sl@0
|
187 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
188 |
@SYMDEF DEF095280
|
sl@0
|
189 |
@SYMREQ REQ0000
|
sl@0
|
190 |
*/
|
sl@0
|
191 |
LOCAL_C void OomTest( void (*testFuncL)() )
|
sl@0
|
192 |
{
|
sl@0
|
193 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-1288 "));
|
sl@0
|
194 |
TInt error;
|
sl@0
|
195 |
TestingOOM = ETrue;
|
sl@0
|
196 |
TInt count = 0;
|
sl@0
|
197 |
|
sl@0
|
198 |
do
|
sl@0
|
199 |
{
|
sl@0
|
200 |
User::__DbgMarkStart( RHeap::EUser );
|
sl@0
|
201 |
|
sl@0
|
202 |
// find out the number of open handles
|
sl@0
|
203 |
TInt startProcessHandleCount;
|
sl@0
|
204 |
TInt startThreadHandleCount;
|
sl@0
|
205 |
RThread().HandleCount(startProcessHandleCount, startThreadHandleCount);
|
sl@0
|
206 |
|
sl@0
|
207 |
User::__DbgSetAllocFail( RHeap::EUser, RHeap::EFailNext, ++count );
|
sl@0
|
208 |
|
sl@0
|
209 |
TRAP( error, (testFuncL)() );
|
sl@0
|
210 |
|
sl@0
|
211 |
User::__DbgSetAllocFail( RHeap::EUser, RHeap::ENone, 1 );
|
sl@0
|
212 |
|
sl@0
|
213 |
// check that no handles have leaked
|
sl@0
|
214 |
TInt endProcessHandleCount;
|
sl@0
|
215 |
TInt endThreadHandleCount;
|
sl@0
|
216 |
RThread().HandleCount(endProcessHandleCount, endThreadHandleCount);
|
sl@0
|
217 |
|
sl@0
|
218 |
test(startProcessHandleCount == endProcessHandleCount);
|
sl@0
|
219 |
test(startThreadHandleCount == endThreadHandleCount);
|
sl@0
|
220 |
|
sl@0
|
221 |
User::__DbgMarkEnd( RHeap::EUser, 0 );
|
sl@0
|
222 |
} while( error == KErrNoMemory );
|
sl@0
|
223 |
|
sl@0
|
224 |
TestingOOM = EFalse;
|
sl@0
|
225 |
|
sl@0
|
226 |
_LIT( KTestFailed, "Out of memory test failure on iteration %d\n" );
|
sl@0
|
227 |
__ASSERT_ALWAYS( error == KErrNone, test.Panic( error, KTestFailed, count ) );
|
sl@0
|
228 |
|
sl@0
|
229 |
test.Printf( _L( "Out of memory tests succeeded at heap failure rate of %i\n" ), count );
|
sl@0
|
230 |
}
|
sl@0
|
231 |
|
sl@0
|
232 |
/**
|
sl@0
|
233 |
@SYMTestCaseID SYSLIB-BAFL-CT-3397
|
sl@0
|
234 |
@SYMTestCaseDesc When a client requests a non-existing sound
|
sl@0
|
235 |
which is in one of the system category,
|
sl@0
|
236 |
BaSystemSound returns the default sound for
|
sl@0
|
237 |
that system category.
|
sl@0
|
238 |
@SYMTestPriority High
|
sl@0
|
239 |
@SYMTestActions With the sound table empty, get sound in the
|
sl@0
|
240 |
alarm, message and ring categories.
|
sl@0
|
241 |
@SYMTestExpectedResults The default sound for the category is returned.
|
sl@0
|
242 |
@SYMDEF DEF095280
|
sl@0
|
243 |
*/
|
sl@0
|
244 |
LOCAL_C void GetNonExistingSoundL()
|
sl@0
|
245 |
{
|
sl@0
|
246 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-3397 "));
|
sl@0
|
247 |
TBaSystemSoundInfo info;
|
sl@0
|
248 |
TInt ret(KErrNone);
|
sl@0
|
249 |
|
sl@0
|
250 |
//get sound empty file
|
sl@0
|
251 |
TBaSystemSoundType sndType(KSystemSoundAlarmUID,KAlarm1);
|
sl@0
|
252 |
ret = BaSystemSound::GetSound(TheFs,sndType,info);
|
sl@0
|
253 |
TEST2(ret, ret==KErrNotFound);
|
sl@0
|
254 |
_LIT(KSystemSoundDefaultAlarm,"z:\\system\\SystemSounds\\alarm.wav");
|
sl@0
|
255 |
test(info.FileName() == KSystemSoundDefaultAlarm);
|
sl@0
|
256 |
|
sl@0
|
257 |
sndType.iMajor = KSystemSoundMessageUID;
|
sl@0
|
258 |
sndType.iMinor = KMessage1;
|
sl@0
|
259 |
ret = BaSystemSound::GetSound(TheFs,sndType,info);
|
sl@0
|
260 |
TEST2(ret, ret==KErrNotFound);
|
sl@0
|
261 |
_LIT(KSystemSoundDefaultMessage,"z:\\system\\SystemSounds\\message.wav");
|
sl@0
|
262 |
test(info.FileName() == KSystemSoundDefaultMessage);
|
sl@0
|
263 |
|
sl@0
|
264 |
sndType.iMajor = KSystemSoundRingUID;
|
sl@0
|
265 |
sndType.iMinor = KRing1;
|
sl@0
|
266 |
ret = BaSystemSound::GetSound(TheFs,sndType,info);
|
sl@0
|
267 |
TEST2(ret, ret==KErrNotFound);
|
sl@0
|
268 |
_LIT(KSystemSoundDefaultRing,"z:\\system\\SystemSounds\\ring.wav");
|
sl@0
|
269 |
test(info.FileName() == KSystemSoundDefaultRing);
|
sl@0
|
270 |
}
|
sl@0
|
271 |
|
sl@0
|
272 |
/**
|
sl@0
|
273 |
@SYMTestCaseID SYSLIB-BAFL-CT-3396
|
sl@0
|
274 |
@SYMTestCaseDesc Test CBaSystemSoundArray APIs.
|
sl@0
|
275 |
@SYMTestPriority High
|
sl@0
|
276 |
@SYMTestActions Use CBaSystemSoundArray to retrieve an entire
|
sl@0
|
277 |
sound category and step through each sound in
|
sl@0
|
278 |
the array.
|
sl@0
|
279 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
280 |
@SYMDEF DEF095280
|
sl@0
|
281 |
*/
|
sl@0
|
282 |
LOCAL_C void GetSoundArrayL()
|
sl@0
|
283 |
{
|
sl@0
|
284 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-3396 "));
|
sl@0
|
285 |
CBaSystemSoundArray* sa= CBaSystemSoundArray::NewLC();
|
sl@0
|
286 |
sa->RestoreL(TheFs,KSystemSoundRingUID);
|
sl@0
|
287 |
|
sl@0
|
288 |
TInt count = sa->Count();
|
sl@0
|
289 |
test(count==2);
|
sl@0
|
290 |
TBaSystemSoundInfo i0 = sa->At(0);
|
sl@0
|
291 |
test(i0.iType.iMinor==KRing1);
|
sl@0
|
292 |
test(i0.FileName()==KSndNameWarble);
|
sl@0
|
293 |
TBaSystemSoundInfo i1 = sa->At(1);
|
sl@0
|
294 |
test(i1.iType.iMinor==KRing2);
|
sl@0
|
295 |
test(i1.FileName()==KSndNameMozart);
|
sl@0
|
296 |
|
sl@0
|
297 |
CleanupStack::PopAndDestroy(); // sa
|
sl@0
|
298 |
}
|
sl@0
|
299 |
|
sl@0
|
300 |
/**
|
sl@0
|
301 |
@SYMTestCaseID SYSLIB-BAFL-CT-0441
|
sl@0
|
302 |
@SYMTestCaseDesc Tests for the functionality of TBaSystemSoundInfo
|
sl@0
|
303 |
@SYMTestPriority High
|
sl@0
|
304 |
@SYMTestActions Calls up BaSystemSound test functions
|
sl@0
|
305 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
306 |
@SYMREQ REQ0000
|
sl@0
|
307 |
*/
|
sl@0
|
308 |
void DoTestsL()
|
sl@0
|
309 |
{
|
sl@0
|
310 |
test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0441 "));
|
sl@0
|
311 |
//delete all sounds
|
sl@0
|
312 |
ClearSoundTableL();
|
sl@0
|
313 |
|
sl@0
|
314 |
test.Next(_L("Get non-existing sound"));
|
sl@0
|
315 |
GetNonExistingSoundL();
|
sl@0
|
316 |
|
sl@0
|
317 |
test.Next(_L("Setting sounds"));
|
sl@0
|
318 |
TestSetSoundsL();
|
sl@0
|
319 |
|
sl@0
|
320 |
test.Next(_L("Getting back sounds\n"));
|
sl@0
|
321 |
TestGetSoundsL();
|
sl@0
|
322 |
|
sl@0
|
323 |
test.Next(_L("CBaSystemSoundArray access"));
|
sl@0
|
324 |
GetSoundArrayL();
|
sl@0
|
325 |
|
sl@0
|
326 |
//delete all sounds
|
sl@0
|
327 |
ClearSoundTableL();
|
sl@0
|
328 |
|
sl@0
|
329 |
// OOM test
|
sl@0
|
330 |
test.Next(_L("OOM Test get non-existing sound"));
|
sl@0
|
331 |
OomTest(GetNonExistingSoundL);
|
sl@0
|
332 |
|
sl@0
|
333 |
test.Next(_L("OOM Test Setting sounds"));
|
sl@0
|
334 |
OomTest(TestSetSoundsL);
|
sl@0
|
335 |
|
sl@0
|
336 |
test.Next(_L("OOM Test Getting back sounds"));
|
sl@0
|
337 |
OomTest(TestGetSoundsL);
|
sl@0
|
338 |
|
sl@0
|
339 |
test.Next(_L("OOM Test CBaSystemSoundArray access"));
|
sl@0
|
340 |
OomTest(GetSoundArrayL);
|
sl@0
|
341 |
|
sl@0
|
342 |
// cleanup
|
sl@0
|
343 |
ClearSoundTableL();
|
sl@0
|
344 |
}
|
sl@0
|
345 |
|
sl@0
|
346 |
GLDEF_C TInt E32Main()
|
sl@0
|
347 |
{
|
sl@0
|
348 |
__UHEAP_MARK;
|
sl@0
|
349 |
CActiveScheduler::Install(new CActiveScheduler);
|
sl@0
|
350 |
CTrapCleanup* cleanup=CTrapCleanup::New();
|
sl@0
|
351 |
test.Title();
|
sl@0
|
352 |
// test.RunManual();
|
sl@0
|
353 |
test.Start(_L("Testing system sounds"));
|
sl@0
|
354 |
TRAPD(err,DoTestsL());
|
sl@0
|
355 |
test(err==KErrNone);
|
sl@0
|
356 |
test.End();
|
sl@0
|
357 |
test.Close();
|
sl@0
|
358 |
delete cleanup;
|
sl@0
|
359 |
delete CActiveScheduler::Current();
|
sl@0
|
360 |
__UHEAP_MARKEND;
|
sl@0
|
361 |
return(0);
|
sl@0
|
362 |
}
|