sl@0: // Copyright (c) 1997-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: // TA_ARRAY.CPP sl@0: // sl@0: // sl@0: sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: sl@0: #include sl@0: #include "BASSNDUID.h" sl@0: #include "BASSNDPriorityDecoder.h" sl@0: sl@0: LOCAL_D RTest test(_L("T_SSND")); sl@0: RFs TheFs; sl@0: TBool TestingOOM = EFalse; sl@0: sl@0: const TUid KRing1={100}; sl@0: const TUid KRing2={101}; sl@0: const TUid KAlarm1={201}; sl@0: const TUid KAlarm2={202}; sl@0: const TUid KMessage1={203}; sl@0: sl@0: _LIT(KSndNameWarble,"c:\\system\\data\\warble.wav"); sl@0: _LIT(KSndNameMozart,"c:\\system\\data\\mozart.wav"); sl@0: _LIT(KSndNameBach,"c:\\system\\data\\bach.wav"); sl@0: _LIT(KSndNameVivaldi,"c:\\system\\data\\vivaldi.wav"); sl@0: sl@0: #define TEST2(err, cond) \ sl@0: {\ sl@0: if (TestingOOM && err == KErrNoMemory) \ sl@0: {\ sl@0: User::LeaveNoMemory();\ sl@0: }\ sl@0: test(cond);\ sl@0: } sl@0: sl@0: // Delete all entries in sound table sl@0: LOCAL_C void ClearSoundTableL() sl@0: { sl@0: CRepository *repository = CRepository::NewLC(KSystemSoundRepositoryUID); sl@0: repository->Reset(); sl@0: CleanupStack::PopAndDestroy( repository ); sl@0: } sl@0: sl@0: LOCAL_C void TestSetSounds1L() sl@0: { sl@0: TBaSystemSoundType sndType(KSystemSoundRingUID,KRing1); sl@0: TBaSystemSoundInfo sndInfo(sndType,KSndNameWarble()); sl@0: BaSystemSound::SetSoundL(TheFs,sndInfo); sl@0: } sl@0: sl@0: LOCAL_C void TestSetSounds2L() sl@0: { sl@0: TBaSystemSoundType sndType(KSystemSoundRingUID,KRing2); sl@0: TBaSystemSoundInfo sndInfo(sndType,KSndNameMozart()); sl@0: BaSystemSound::SetSoundL(TheFs,sndInfo); sl@0: } sl@0: sl@0: LOCAL_C void TestSetSounds3L() sl@0: { sl@0: TBaSystemSoundType sndType(KSystemSoundAlarmUID,KAlarm1); sl@0: TBaSystemSoundInfo sndInfo(sndType,KSndNameBach()); sl@0: sndInfo.iVolume=100; sl@0: sndInfo.iPriority=TBaSoundPriorityEncoder(16).Int(); sl@0: BaSystemSound::SetSoundL(TheFs,sndInfo); sl@0: } sl@0: sl@0: LOCAL_C void TestSetSounds4L() sl@0: { sl@0: TBaSystemSoundType sndType(KSystemSoundAlarmUID,KAlarm2); sl@0: TBaSystemSoundInfo sndInfo(sndType,KSndNameVivaldi()); sl@0: sndInfo.iVolume=83; sl@0: TBaSoundPriorityEncoder priority(-100,(TMdaPriorityPreference(0xFF030001))); sl@0: sndInfo.iPriority=priority.Int(); sl@0: BaSystemSound::SetSoundL(TheFs,sndInfo); sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-BAFL-CT-1286 sl@0: @SYMTestCaseDesc Tests for BaSystemSound::SetSoundL() function sl@0: @SYMTestPriority High sl@0: @SYMTestActions Tests for KErrArgument,when TSoundCategory is passed with out being set as a tone sl@0: @SYMTestExpectedResults Test must not fail sl@0: @SYMREQ REQ0000 sl@0: */ sl@0: LOCAL_C void TestSetSounds5L() sl@0: { sl@0: // Testing SetSoundL. sl@0: // Should leave with KErrArgument when TSoundCategory of sndInfo sl@0: // parameter is passed with out being set either as a tone, a file sl@0: // or a sequence. sl@0: test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-1286 ")); sl@0: TBaSystemSoundInfo sndInfo; sl@0: TRAPD(err,BaSystemSound::SetSoundL(TheFs,sndInfo)); sl@0: TEST2(err, err==KErrArgument); sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-BAFL-CT-3395 sl@0: @SYMTestCaseDesc Tests for BaSystemSound::SetSound() function sl@0: @SYMTestPriority High sl@0: @SYMTestActions Set sounds of different types: file, tone and seq sl@0: @SYMTestExpectedResults Test must not fail sl@0: @SYMDEF DEF095280 sl@0: */ sl@0: LOCAL_C void TestSetSoundsL() sl@0: { sl@0: test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-3395 ")); sl@0: // split into stupidly small chunks to avoid _chkstk errors sl@0: sl@0: //set sounds sl@0: TestSetSounds1L(); sl@0: TestSetSounds2L(); sl@0: TestSetSounds3L(); sl@0: TestSetSounds4L(); sl@0: TestSetSounds5L(); sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-BAFL-CT-1287 sl@0: @SYMTestCaseDesc Tests for BaSystemSound::GetSound() function sl@0: @SYMTestPriority High sl@0: @SYMTestActions Attempt for getting back sounds sl@0: @SYMTestExpectedResults Test must not fail sl@0: @SYMDEF DEF095280 sl@0: */ sl@0: LOCAL_C void TestGetSoundsL() sl@0: { sl@0: test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-1287 ")); sl@0: TBaSystemSoundInfo info; sl@0: sl@0: //get sounds sl@0: //should return warble sl@0: TBaSystemSoundType sndType(KSystemSoundRingUID,KRing1); sl@0: TInt e=BaSystemSound::GetSound(TheFs,sndType,info); sl@0: TEST2(e, e==KErrNone); sl@0: test(info.FileName()==KSndNameWarble); sl@0: //should return mozart sl@0: sndType=TBaSystemSoundType(KSystemSoundRingUID,KRing2); sl@0: e=BaSystemSound::GetSound(TheFs,sndType,info); sl@0: TEST2(e, e==KErrNone); sl@0: test(info.FileName()==KSndNameMozart); sl@0: //should return bach sl@0: sndType=TBaSystemSoundType(KSystemSoundAlarmUID,KAlarm1); sl@0: e=BaSystemSound::GetSound(TheFs,sndType,info); sl@0: TEST2(e, e==KErrNone); sl@0: test(info.FileName()==KSndNameBach); sl@0: test(info.iVolume=100); sl@0: TBaSoundPriorityDecoder priorityDecode(info.iPriority); sl@0: test(priorityDecode.Priority()==16); sl@0: test(priorityDecode.PriorityPreference()==EMdaPriorityPreferenceTimeAndQuality); sl@0: //should rturn vivaldi sl@0: sndType=TBaSystemSoundType(KSystemSoundAlarmUID,KAlarm2); sl@0: e=BaSystemSound::GetSound(TheFs,sndType,info); sl@0: TEST2(e, e==KErrNone); sl@0: test(info.FileName()==KSndNameVivaldi); sl@0: test(info.iVolume=83); sl@0: priorityDecode=TBaSoundPriorityDecoder(info.iPriority); sl@0: test(priorityDecode.Priority()==-100); sl@0: test(priorityDecode.PriorityPreference()==(TMdaPriorityPreference(0xFF030001))); sl@0: } sl@0: sl@0: // --------------------------------------------------- sl@0: // OomTest sl@0: // sl@0: // Function to convert a test into an OOM test sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-BAFL-CT-1288 sl@0: @SYMTestCaseDesc Out of memory tests sl@0: @SYMTestPriority High sl@0: @SYMTestActions Turns a basic test function into OOM test. sl@0: @SYMTestExpectedResults Test must not fail sl@0: @SYMDEF DEF095280 sl@0: @SYMREQ REQ0000 sl@0: */ sl@0: LOCAL_C void OomTest( void (*testFuncL)() ) sl@0: { sl@0: test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-1288 ")); sl@0: TInt error; sl@0: TestingOOM = ETrue; sl@0: TInt count = 0; sl@0: sl@0: do sl@0: { sl@0: User::__DbgMarkStart( RHeap::EUser ); sl@0: sl@0: // find out the number of open handles sl@0: TInt startProcessHandleCount; sl@0: TInt startThreadHandleCount; sl@0: RThread().HandleCount(startProcessHandleCount, startThreadHandleCount); sl@0: sl@0: User::__DbgSetAllocFail( RHeap::EUser, RHeap::EFailNext, ++count ); sl@0: sl@0: TRAP( error, (testFuncL)() ); sl@0: sl@0: User::__DbgSetAllocFail( RHeap::EUser, RHeap::ENone, 1 ); sl@0: sl@0: // check that no handles have leaked sl@0: TInt endProcessHandleCount; sl@0: TInt endThreadHandleCount; sl@0: RThread().HandleCount(endProcessHandleCount, endThreadHandleCount); sl@0: sl@0: test(startProcessHandleCount == endProcessHandleCount); sl@0: test(startThreadHandleCount == endThreadHandleCount); sl@0: sl@0: User::__DbgMarkEnd( RHeap::EUser, 0 ); sl@0: } while( error == KErrNoMemory ); sl@0: sl@0: TestingOOM = EFalse; sl@0: sl@0: _LIT( KTestFailed, "Out of memory test failure on iteration %d\n" ); sl@0: __ASSERT_ALWAYS( error == KErrNone, test.Panic( error, KTestFailed, count ) ); sl@0: sl@0: test.Printf( _L( "Out of memory tests succeeded at heap failure rate of %i\n" ), count ); sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-BAFL-CT-3397 sl@0: @SYMTestCaseDesc When a client requests a non-existing sound sl@0: which is in one of the system category, sl@0: BaSystemSound returns the default sound for sl@0: that system category. sl@0: @SYMTestPriority High sl@0: @SYMTestActions With the sound table empty, get sound in the sl@0: alarm, message and ring categories. sl@0: @SYMTestExpectedResults The default sound for the category is returned. sl@0: @SYMDEF DEF095280 sl@0: */ sl@0: LOCAL_C void GetNonExistingSoundL() sl@0: { sl@0: test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-3397 ")); sl@0: TBaSystemSoundInfo info; sl@0: TInt ret(KErrNone); sl@0: sl@0: //get sound empty file sl@0: TBaSystemSoundType sndType(KSystemSoundAlarmUID,KAlarm1); sl@0: ret = BaSystemSound::GetSound(TheFs,sndType,info); sl@0: TEST2(ret, ret==KErrNotFound); sl@0: _LIT(KSystemSoundDefaultAlarm,"z:\\system\\SystemSounds\\alarm.wav"); sl@0: test(info.FileName() == KSystemSoundDefaultAlarm); sl@0: sl@0: sndType.iMajor = KSystemSoundMessageUID; sl@0: sndType.iMinor = KMessage1; sl@0: ret = BaSystemSound::GetSound(TheFs,sndType,info); sl@0: TEST2(ret, ret==KErrNotFound); sl@0: _LIT(KSystemSoundDefaultMessage,"z:\\system\\SystemSounds\\message.wav"); sl@0: test(info.FileName() == KSystemSoundDefaultMessage); sl@0: sl@0: sndType.iMajor = KSystemSoundRingUID; sl@0: sndType.iMinor = KRing1; sl@0: ret = BaSystemSound::GetSound(TheFs,sndType,info); sl@0: TEST2(ret, ret==KErrNotFound); sl@0: _LIT(KSystemSoundDefaultRing,"z:\\system\\SystemSounds\\ring.wav"); sl@0: test(info.FileName() == KSystemSoundDefaultRing); sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-BAFL-CT-3396 sl@0: @SYMTestCaseDesc Test CBaSystemSoundArray APIs. sl@0: @SYMTestPriority High sl@0: @SYMTestActions Use CBaSystemSoundArray to retrieve an entire sl@0: sound category and step through each sound in sl@0: the array. sl@0: @SYMTestExpectedResults Test must not fail sl@0: @SYMDEF DEF095280 sl@0: */ sl@0: LOCAL_C void GetSoundArrayL() sl@0: { sl@0: test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-3396 ")); sl@0: CBaSystemSoundArray* sa= CBaSystemSoundArray::NewLC(); sl@0: sa->RestoreL(TheFs,KSystemSoundRingUID); sl@0: sl@0: TInt count = sa->Count(); sl@0: test(count==2); sl@0: TBaSystemSoundInfo i0 = sa->At(0); sl@0: test(i0.iType.iMinor==KRing1); sl@0: test(i0.FileName()==KSndNameWarble); sl@0: TBaSystemSoundInfo i1 = sa->At(1); sl@0: test(i1.iType.iMinor==KRing2); sl@0: test(i1.FileName()==KSndNameMozart); sl@0: sl@0: CleanupStack::PopAndDestroy(); // sa sl@0: } sl@0: sl@0: /** sl@0: @SYMTestCaseID SYSLIB-BAFL-CT-0441 sl@0: @SYMTestCaseDesc Tests for the functionality of TBaSystemSoundInfo sl@0: @SYMTestPriority High sl@0: @SYMTestActions Calls up BaSystemSound test functions sl@0: @SYMTestExpectedResults Test must not fail sl@0: @SYMREQ REQ0000 sl@0: */ sl@0: void DoTestsL() sl@0: { sl@0: test.Next(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0441 ")); sl@0: //delete all sounds sl@0: ClearSoundTableL(); sl@0: sl@0: test.Next(_L("Get non-existing sound")); sl@0: GetNonExistingSoundL(); sl@0: sl@0: test.Next(_L("Setting sounds")); sl@0: TestSetSoundsL(); sl@0: sl@0: test.Next(_L("Getting back sounds\n")); sl@0: TestGetSoundsL(); sl@0: sl@0: test.Next(_L("CBaSystemSoundArray access")); sl@0: GetSoundArrayL(); sl@0: sl@0: //delete all sounds sl@0: ClearSoundTableL(); sl@0: sl@0: // OOM test sl@0: test.Next(_L("OOM Test get non-existing sound")); sl@0: OomTest(GetNonExistingSoundL); sl@0: sl@0: test.Next(_L("OOM Test Setting sounds")); sl@0: OomTest(TestSetSoundsL); sl@0: sl@0: test.Next(_L("OOM Test Getting back sounds")); sl@0: OomTest(TestGetSoundsL); sl@0: sl@0: test.Next(_L("OOM Test CBaSystemSoundArray access")); sl@0: OomTest(GetSoundArrayL); sl@0: sl@0: // cleanup sl@0: ClearSoundTableL(); sl@0: } sl@0: sl@0: GLDEF_C TInt E32Main() sl@0: { sl@0: __UHEAP_MARK; sl@0: CActiveScheduler::Install(new CActiveScheduler); sl@0: CTrapCleanup* cleanup=CTrapCleanup::New(); sl@0: test.Title(); sl@0: // test.RunManual(); 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: delete CActiveScheduler::Current(); sl@0: __UHEAP_MARKEND; sl@0: return(0); sl@0: }