sl@0
|
1 |
// Copyright (c) 2004-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 |
// The tests are for opening the audio file with TMMFileSource/TMMFileHandleSource
|
sl@0
|
15 |
// and playing.
|
sl@0
|
16 |
// Header file: Basic tests.
|
sl@0
|
17 |
//
|
sl@0
|
18 |
//
|
sl@0
|
19 |
|
sl@0
|
20 |
/**
|
sl@0
|
21 |
@file TestPlayerFileSource.h
|
sl@0
|
22 |
*/
|
sl@0
|
23 |
|
sl@0
|
24 |
#ifndef __TESTPLAYERFILESOURCE_H__
|
sl@0
|
25 |
#define __TESTPLAYERFILESOURCE_H__
|
sl@0
|
26 |
|
sl@0
|
27 |
|
sl@0
|
28 |
#include "TSI_MMFACLNT.h"
|
sl@0
|
29 |
|
sl@0
|
30 |
//
|
sl@0
|
31 |
// CTestMmfAclntFileSource
|
sl@0
|
32 |
//
|
sl@0
|
33 |
|
sl@0
|
34 |
/**
|
sl@0
|
35 |
* Load and initialise an audio file.
|
sl@0
|
36 |
*
|
sl@0
|
37 |
* @class CTestMmfAclntFileSource
|
sl@0
|
38 |
*
|
sl@0
|
39 |
*/
|
sl@0
|
40 |
class CTestMmfAclntFileSource : public CTestMmfAclntStep, public MMdaAudioPlayerCallback
|
sl@0
|
41 |
{
|
sl@0
|
42 |
public:
|
sl@0
|
43 |
static CTestMmfAclntFileSource* NewL(const TDesC& aTestName, const TDesC& aSectName,
|
sl@0
|
44 |
const TDesC& aKeyName, const TBool aPlay,const TInt aExpectedError);
|
sl@0
|
45 |
|
sl@0
|
46 |
static CTestMmfAclntFileSource* NewLC(const TDesC& aTestName, const TDesC& aSectName,
|
sl@0
|
47 |
const TDesC& aKeyName, const TBool aPlay, const TInt aExpectedError);
|
sl@0
|
48 |
|
sl@0
|
49 |
virtual TVerdict DoTestStepL();
|
sl@0
|
50 |
|
sl@0
|
51 |
// from MMdaAudioPlayerCallback
|
sl@0
|
52 |
virtual void MapcInitComplete(TInt aError, const TTimeIntervalMicroSeconds& aDuration);
|
sl@0
|
53 |
virtual void MapcPlayComplete(TInt aError);
|
sl@0
|
54 |
|
sl@0
|
55 |
private:
|
sl@0
|
56 |
CTestMmfAclntFileSource(const TDesC& aTestName, const TDesC& aSectName,
|
sl@0
|
57 |
const TDesC& aKeyName,const TBool aPlay, const TInt aExpectedError);
|
sl@0
|
58 |
|
sl@0
|
59 |
private:
|
sl@0
|
60 |
TInt iError;
|
sl@0
|
61 |
TBuf<KNameBufSize> iSectName; // Section name for retrieving filename
|
sl@0
|
62 |
TBuf<KNameBufSize> iKeyName; // Key name for retrieving filename
|
sl@0
|
63 |
TTimeIntervalMicroSeconds iDuration;// Stores duration of audio
|
sl@0
|
64 |
const TBool iPlay; // Does this test require playing the audio
|
sl@0
|
65 |
const TInt iExpectedError; // Is this a negative test
|
sl@0
|
66 |
};
|
sl@0
|
67 |
|
sl@0
|
68 |
//
|
sl@0
|
69 |
// CTestMmfAclntFileHandleSource
|
sl@0
|
70 |
//
|
sl@0
|
71 |
|
sl@0
|
72 |
/**
|
sl@0
|
73 |
* Load and initialise an audio file.
|
sl@0
|
74 |
*
|
sl@0
|
75 |
* @class CTestMmfAclntFileHandleSource
|
sl@0
|
76 |
*
|
sl@0
|
77 |
*/
|
sl@0
|
78 |
class CTestMmfAclntFileHandleSource : public CTestMmfAclntStep, public MMdaAudioPlayerCallback
|
sl@0
|
79 |
{
|
sl@0
|
80 |
public:
|
sl@0
|
81 |
static CTestMmfAclntFileHandleSource* NewL(const TDesC& aTestName, const TDesC& aSectName,
|
sl@0
|
82 |
const TDesC& aKeyName, const TBool aPlay, const TInt aExpectedError);
|
sl@0
|
83 |
|
sl@0
|
84 |
static CTestMmfAclntFileHandleSource* NewLC(const TDesC& aTestName, const TDesC& aSectName,
|
sl@0
|
85 |
const TDesC& aKeyName,const TBool aPlay, const TInt aExpectedError);
|
sl@0
|
86 |
|
sl@0
|
87 |
virtual TVerdict DoTestStepL();
|
sl@0
|
88 |
|
sl@0
|
89 |
// from MMdaAudioPlayerCallback
|
sl@0
|
90 |
virtual void MapcInitComplete(TInt aError, const TTimeIntervalMicroSeconds& aDuration);
|
sl@0
|
91 |
virtual void MapcPlayComplete(TInt aError);
|
sl@0
|
92 |
|
sl@0
|
93 |
private:
|
sl@0
|
94 |
CTestMmfAclntFileHandleSource(const TDesC& aTestName, const TDesC& aSectName,
|
sl@0
|
95 |
const TDesC& aKeyName, const TBool aPlay, const TInt aExpectedError);
|
sl@0
|
96 |
|
sl@0
|
97 |
private:
|
sl@0
|
98 |
TInt iError;
|
sl@0
|
99 |
TBuf<KNameBufSize> iSectName; // Section name for retrieving filename
|
sl@0
|
100 |
TBuf<KNameBufSize> iKeyName; // Key name for retrieving filename
|
sl@0
|
101 |
TTimeIntervalMicroSeconds iDuration;// Stores duration of audio
|
sl@0
|
102 |
const TBool iPlay; // Does this test require playing the audio
|
sl@0
|
103 |
const TInt iExpectedError; // Is this a negative test
|
sl@0
|
104 |
};
|
sl@0
|
105 |
|
sl@0
|
106 |
#endif
|