1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/lowlevellibsandfws/apputils/tsrc/T_SSND.CPP Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,362 @@
1.4 +// Copyright (c) 1997-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 +// TA_ARRAY.CPP
1.18 +//
1.19 +//
1.20 +
1.21 +#include <e32test.h>
1.22 +#include <basched.h>
1.23 +#include <f32file.h>
1.24 +#include <centralrepository.h>
1.25 +
1.26 +#include <bassnd.h>
1.27 +#include "BASSNDUID.h"
1.28 +#include "BASSNDPriorityDecoder.h"
1.29 +
1.30 +LOCAL_D RTest test(_L("T_SSND"));
1.31 +RFs TheFs;
1.32 +TBool TestingOOM = EFalse;
1.33 +
1.34 +const TUid KRing1={100};
1.35 +const TUid KRing2={101};
1.36 +const TUid KAlarm1={201};
1.37 +const TUid KAlarm2={202};
1.38 +const TUid KMessage1={203};
1.39 +
1.40 +_LIT(KSndNameWarble,"c:\\system\\data\\warble.wav");
1.41 +_LIT(KSndNameMozart,"c:\\system\\data\\mozart.wav");
1.42 +_LIT(KSndNameBach,"c:\\system\\data\\bach.wav");
1.43 +_LIT(KSndNameVivaldi,"c:\\system\\data\\vivaldi.wav");
1.44 +
1.45 +#define TEST2(err, cond) \
1.46 + {\
1.47 + if (TestingOOM && err == KErrNoMemory) \
1.48 + {\
1.49 + User::LeaveNoMemory();\
1.50 + }\
1.51 + test(cond);\
1.52 + }
1.53 +
1.54 +// Delete all entries in sound table
1.55 +LOCAL_C void ClearSoundTableL()
1.56 + {
1.57 + CRepository *repository = CRepository::NewLC(KSystemSoundRepositoryUID);
1.58 + repository->Reset();
1.59 + CleanupStack::PopAndDestroy( repository );
1.60 + }
1.61 +
1.62 +LOCAL_C void TestSetSounds1L()
1.63 + {
1.64 + TBaSystemSoundType sndType(KSystemSoundRingUID,KRing1);
1.65 + TBaSystemSoundInfo sndInfo(sndType,KSndNameWarble());
1.66 + BaSystemSound::SetSoundL(TheFs,sndInfo);
1.67 + }
1.68 +
1.69 +LOCAL_C void TestSetSounds2L()
1.70 + {
1.71 + TBaSystemSoundType sndType(KSystemSoundRingUID,KRing2);
1.72 + TBaSystemSoundInfo sndInfo(sndType,KSndNameMozart());
1.73 + BaSystemSound::SetSoundL(TheFs,sndInfo);
1.74 + }
1.75 +
1.76 +LOCAL_C void TestSetSounds3L()
1.77 + {
1.78 + TBaSystemSoundType sndType(KSystemSoundAlarmUID,KAlarm1);
1.79 + TBaSystemSoundInfo sndInfo(sndType,KSndNameBach());
1.80 + sndInfo.iVolume=100;
1.81 + sndInfo.iPriority=TBaSoundPriorityEncoder(16).Int();
1.82 + BaSystemSound::SetSoundL(TheFs,sndInfo);
1.83 + }
1.84 +
1.85 +LOCAL_C void TestSetSounds4L()
1.86 + {
1.87 + TBaSystemSoundType sndType(KSystemSoundAlarmUID,KAlarm2);
1.88 + TBaSystemSoundInfo sndInfo(sndType,KSndNameVivaldi());
1.89 + sndInfo.iVolume=83;
1.90 + TBaSoundPriorityEncoder priority(-100,(TMdaPriorityPreference(0xFF030001)));
1.91 + sndInfo.iPriority=priority.Int();
1.92 + BaSystemSound::SetSoundL(TheFs,sndInfo);
1.93 + }
1.94 +
1.95 +/**
1.96 +@SYMTestCaseID SYSLIB-BAFL-CT-1286
1.97 +@SYMTestCaseDesc Tests for BaSystemSound::SetSoundL() function
1.98 +@SYMTestPriority High
1.99 +@SYMTestActions Tests for KErrArgument,when TSoundCategory is passed with out being set as a tone
1.100 +@SYMTestExpectedResults Test must not fail
1.101 +@SYMREQ REQ0000
1.102 +*/
1.103 +LOCAL_C void TestSetSounds5L()
1.104 + {
1.105 + // Testing SetSoundL.
1.106 + // Should leave with KErrArgument when TSoundCategory of sndInfo
1.107 + // parameter is passed with out being set either as a tone, a file
1.108 + // or a sequence.
1.109 + test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-1286 "));
1.110 + TBaSystemSoundInfo sndInfo;
1.111 + TRAPD(err,BaSystemSound::SetSoundL(TheFs,sndInfo));
1.112 + TEST2(err, err==KErrArgument);
1.113 + }
1.114 +
1.115 +/**
1.116 +@SYMTestCaseID SYSLIB-BAFL-CT-3395
1.117 +@SYMTestCaseDesc Tests for BaSystemSound::SetSound() function
1.118 +@SYMTestPriority High
1.119 +@SYMTestActions Set sounds of different types: file, tone and seq
1.120 +@SYMTestExpectedResults Test must not fail
1.121 +@SYMDEF DEF095280
1.122 +*/
1.123 +LOCAL_C void TestSetSoundsL()
1.124 + {
1.125 + test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-3395 "));
1.126 + // split into stupidly small chunks to avoid _chkstk errors
1.127 +
1.128 + //set sounds
1.129 + TestSetSounds1L();
1.130 + TestSetSounds2L();
1.131 + TestSetSounds3L();
1.132 + TestSetSounds4L();
1.133 + TestSetSounds5L();
1.134 + }
1.135 +
1.136 +/**
1.137 +@SYMTestCaseID SYSLIB-BAFL-CT-1287
1.138 +@SYMTestCaseDesc Tests for BaSystemSound::GetSound() function
1.139 +@SYMTestPriority High
1.140 +@SYMTestActions Attempt for getting back sounds
1.141 +@SYMTestExpectedResults Test must not fail
1.142 +@SYMDEF DEF095280
1.143 +*/
1.144 +LOCAL_C void TestGetSoundsL()
1.145 + {
1.146 + test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-1287 "));
1.147 + TBaSystemSoundInfo info;
1.148 +
1.149 + //get sounds
1.150 + //should return warble
1.151 + TBaSystemSoundType sndType(KSystemSoundRingUID,KRing1);
1.152 + TInt e=BaSystemSound::GetSound(TheFs,sndType,info);
1.153 + TEST2(e, e==KErrNone);
1.154 + test(info.FileName()==KSndNameWarble);
1.155 + //should return mozart
1.156 + sndType=TBaSystemSoundType(KSystemSoundRingUID,KRing2);
1.157 + e=BaSystemSound::GetSound(TheFs,sndType,info);
1.158 + TEST2(e, e==KErrNone);
1.159 + test(info.FileName()==KSndNameMozart);
1.160 + //should return bach
1.161 + sndType=TBaSystemSoundType(KSystemSoundAlarmUID,KAlarm1);
1.162 + e=BaSystemSound::GetSound(TheFs,sndType,info);
1.163 + TEST2(e, e==KErrNone);
1.164 + test(info.FileName()==KSndNameBach);
1.165 + test(info.iVolume=100);
1.166 + TBaSoundPriorityDecoder priorityDecode(info.iPriority);
1.167 + test(priorityDecode.Priority()==16);
1.168 + test(priorityDecode.PriorityPreference()==EMdaPriorityPreferenceTimeAndQuality);
1.169 + //should rturn vivaldi
1.170 + sndType=TBaSystemSoundType(KSystemSoundAlarmUID,KAlarm2);
1.171 + e=BaSystemSound::GetSound(TheFs,sndType,info);
1.172 + TEST2(e, e==KErrNone);
1.173 + test(info.FileName()==KSndNameVivaldi);
1.174 + test(info.iVolume=83);
1.175 + priorityDecode=TBaSoundPriorityDecoder(info.iPriority);
1.176 + test(priorityDecode.Priority()==-100);
1.177 + test(priorityDecode.PriorityPreference()==(TMdaPriorityPreference(0xFF030001)));
1.178 + }
1.179 +
1.180 +// ---------------------------------------------------
1.181 +// OomTest
1.182 +//
1.183 +// Function to convert a test into an OOM test
1.184 +
1.185 +/**
1.186 +@SYMTestCaseID SYSLIB-BAFL-CT-1288
1.187 +@SYMTestCaseDesc Out of memory tests
1.188 +@SYMTestPriority High
1.189 +@SYMTestActions Turns a basic test function into OOM test.
1.190 +@SYMTestExpectedResults Test must not fail
1.191 +@SYMDEF DEF095280
1.192 +@SYMREQ REQ0000
1.193 +*/
1.194 +LOCAL_C void OomTest( void (*testFuncL)() )
1.195 + {
1.196 + test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-1288 "));
1.197 + TInt error;
1.198 + TestingOOM = ETrue;
1.199 + TInt count = 0;
1.200 +
1.201 + do
1.202 + {
1.203 + User::__DbgMarkStart( RHeap::EUser );
1.204 +
1.205 + // find out the number of open handles
1.206 + TInt startProcessHandleCount;
1.207 + TInt startThreadHandleCount;
1.208 + RThread().HandleCount(startProcessHandleCount, startThreadHandleCount);
1.209 +
1.210 + User::__DbgSetAllocFail( RHeap::EUser, RHeap::EFailNext, ++count );
1.211 +
1.212 + TRAP( error, (testFuncL)() );
1.213 +
1.214 + User::__DbgSetAllocFail( RHeap::EUser, RHeap::ENone, 1 );
1.215 +
1.216 + // check that no handles have leaked
1.217 + TInt endProcessHandleCount;
1.218 + TInt endThreadHandleCount;
1.219 + RThread().HandleCount(endProcessHandleCount, endThreadHandleCount);
1.220 +
1.221 + test(startProcessHandleCount == endProcessHandleCount);
1.222 + test(startThreadHandleCount == endThreadHandleCount);
1.223 +
1.224 + User::__DbgMarkEnd( RHeap::EUser, 0 );
1.225 + } while( error == KErrNoMemory );
1.226 +
1.227 + TestingOOM = EFalse;
1.228 +
1.229 + _LIT( KTestFailed, "Out of memory test failure on iteration %d\n" );
1.230 + __ASSERT_ALWAYS( error == KErrNone, test.Panic( error, KTestFailed, count ) );
1.231 +
1.232 + test.Printf( _L( "Out of memory tests succeeded at heap failure rate of %i\n" ), count );
1.233 + }
1.234 +
1.235 +/**
1.236 +@SYMTestCaseID SYSLIB-BAFL-CT-3397
1.237 +@SYMTestCaseDesc When a client requests a non-existing sound
1.238 + which is in one of the system category,
1.239 + BaSystemSound returns the default sound for
1.240 + that system category.
1.241 +@SYMTestPriority High
1.242 +@SYMTestActions With the sound table empty, get sound in the
1.243 + alarm, message and ring categories.
1.244 +@SYMTestExpectedResults The default sound for the category is returned.
1.245 +@SYMDEF DEF095280
1.246 +*/
1.247 +LOCAL_C void GetNonExistingSoundL()
1.248 + {
1.249 + test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-3397 "));
1.250 + TBaSystemSoundInfo info;
1.251 + TInt ret(KErrNone);
1.252 +
1.253 + //get sound empty file
1.254 + TBaSystemSoundType sndType(KSystemSoundAlarmUID,KAlarm1);
1.255 + ret = BaSystemSound::GetSound(TheFs,sndType,info);
1.256 + TEST2(ret, ret==KErrNotFound);
1.257 + _LIT(KSystemSoundDefaultAlarm,"z:\\system\\SystemSounds\\alarm.wav");
1.258 + test(info.FileName() == KSystemSoundDefaultAlarm);
1.259 +
1.260 + sndType.iMajor = KSystemSoundMessageUID;
1.261 + sndType.iMinor = KMessage1;
1.262 + ret = BaSystemSound::GetSound(TheFs,sndType,info);
1.263 + TEST2(ret, ret==KErrNotFound);
1.264 + _LIT(KSystemSoundDefaultMessage,"z:\\system\\SystemSounds\\message.wav");
1.265 + test(info.FileName() == KSystemSoundDefaultMessage);
1.266 +
1.267 + sndType.iMajor = KSystemSoundRingUID;
1.268 + sndType.iMinor = KRing1;
1.269 + ret = BaSystemSound::GetSound(TheFs,sndType,info);
1.270 + TEST2(ret, ret==KErrNotFound);
1.271 + _LIT(KSystemSoundDefaultRing,"z:\\system\\SystemSounds\\ring.wav");
1.272 + test(info.FileName() == KSystemSoundDefaultRing);
1.273 + }
1.274 +
1.275 +/**
1.276 +@SYMTestCaseID SYSLIB-BAFL-CT-3396
1.277 +@SYMTestCaseDesc Test CBaSystemSoundArray APIs.
1.278 +@SYMTestPriority High
1.279 +@SYMTestActions Use CBaSystemSoundArray to retrieve an entire
1.280 + sound category and step through each sound in
1.281 + the array.
1.282 +@SYMTestExpectedResults Test must not fail
1.283 +@SYMDEF DEF095280
1.284 +*/
1.285 +LOCAL_C void GetSoundArrayL()
1.286 + {
1.287 + test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-3396 "));
1.288 + CBaSystemSoundArray* sa= CBaSystemSoundArray::NewLC();
1.289 + sa->RestoreL(TheFs,KSystemSoundRingUID);
1.290 +
1.291 + TInt count = sa->Count();
1.292 + test(count==2);
1.293 + TBaSystemSoundInfo i0 = sa->At(0);
1.294 + test(i0.iType.iMinor==KRing1);
1.295 + test(i0.FileName()==KSndNameWarble);
1.296 + TBaSystemSoundInfo i1 = sa->At(1);
1.297 + test(i1.iType.iMinor==KRing2);
1.298 + test(i1.FileName()==KSndNameMozart);
1.299 +
1.300 + CleanupStack::PopAndDestroy(); // sa
1.301 + }
1.302 +
1.303 +/**
1.304 +@SYMTestCaseID SYSLIB-BAFL-CT-0441
1.305 +@SYMTestCaseDesc Tests for the functionality of TBaSystemSoundInfo
1.306 +@SYMTestPriority High
1.307 +@SYMTestActions Calls up BaSystemSound test functions
1.308 +@SYMTestExpectedResults Test must not fail
1.309 +@SYMREQ REQ0000
1.310 +*/
1.311 +void DoTestsL()
1.312 + {
1.313 + test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0441 "));
1.314 + //delete all sounds
1.315 + ClearSoundTableL();
1.316 +
1.317 + test.Next(_L("Get non-existing sound"));
1.318 + GetNonExistingSoundL();
1.319 +
1.320 + test.Next(_L("Setting sounds"));
1.321 + TestSetSoundsL();
1.322 +
1.323 + test.Next(_L("Getting back sounds\n"));
1.324 + TestGetSoundsL();
1.325 +
1.326 + test.Next(_L("CBaSystemSoundArray access"));
1.327 + GetSoundArrayL();
1.328 +
1.329 + //delete all sounds
1.330 + ClearSoundTableL();
1.331 +
1.332 + // OOM test
1.333 + test.Next(_L("OOM Test get non-existing sound"));
1.334 + OomTest(GetNonExistingSoundL);
1.335 +
1.336 + test.Next(_L("OOM Test Setting sounds"));
1.337 + OomTest(TestSetSoundsL);
1.338 +
1.339 + test.Next(_L("OOM Test Getting back sounds"));
1.340 + OomTest(TestGetSoundsL);
1.341 +
1.342 + test.Next(_L("OOM Test CBaSystemSoundArray access"));
1.343 + OomTest(GetSoundArrayL);
1.344 +
1.345 + // cleanup
1.346 + ClearSoundTableL();
1.347 + }
1.348 +
1.349 +GLDEF_C TInt E32Main()
1.350 + {
1.351 + __UHEAP_MARK;
1.352 + CActiveScheduler::Install(new CActiveScheduler);
1.353 + CTrapCleanup* cleanup=CTrapCleanup::New();
1.354 + test.Title();
1.355 +// test.RunManual();
1.356 + test.Start(_L("Testing system sounds"));
1.357 + TRAPD(err,DoTestsL());
1.358 + test(err==KErrNone);
1.359 + test.End();
1.360 + test.Close();
1.361 + delete cleanup;
1.362 + delete CActiveScheduler::Current();
1.363 + __UHEAP_MARKEND;
1.364 + return(0);
1.365 + }