author | Eckhart Koeppen <eckhart.koppen@nokia.com> |
Wed, 21 Apr 2010 20:15:53 +0300 | |
branch | RCL_3 |
changeset 13 | c0432d11811c |
parent 4 | 3b1da2848fc7 |
permissions | -rw-r--r-- |
0 | 1 |
/**************************************************************************** |
2 |
** |
|
4
3b1da2848fc7
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
3
diff
changeset
|
3 |
** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). |
0 | 4 |
** All rights reserved. |
5 |
** Contact: Nokia Corporation (qt-info@nokia.com) |
|
6 |
** |
|
7 |
** This file is part of the test suite of the Qt Toolkit. |
|
8 |
** |
|
9 |
** $QT_BEGIN_LICENSE:LGPL$ |
|
10 |
** No Commercial Usage |
|
11 |
** This file contains pre-release code and may not be distributed. |
|
12 |
** You may use this file in accordance with the terms and conditions |
|
13 |
** contained in the Technology Preview License Agreement accompanying |
|
14 |
** this package. |
|
15 |
** |
|
16 |
** GNU Lesser General Public License Usage |
|
17 |
** Alternatively, this file may be used under the terms of the GNU Lesser |
|
18 |
** General Public License version 2.1 as published by the Free Software |
|
19 |
** Foundation and appearing in the file LICENSE.LGPL included in the |
|
20 |
** packaging of this file. Please review the following information to |
|
21 |
** ensure the GNU Lesser General Public License version 2.1 requirements |
|
22 |
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. |
|
23 |
** |
|
24 |
** In addition, as a special exception, Nokia gives you certain additional |
|
25 |
** rights. These rights are described in the Nokia Qt LGPL Exception |
|
26 |
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. |
|
27 |
** |
|
28 |
** If you have questions regarding the use of this file, please contact |
|
29 |
** Nokia at qt-info@nokia.com. |
|
30 |
** |
|
31 |
** |
|
32 |
** |
|
33 |
** |
|
34 |
** |
|
35 |
** |
|
36 |
** |
|
37 |
** |
|
38 |
** $QT_END_LICENSE$ |
|
39 |
** |
|
40 |
****************************************************************************/ |
|
41 |
||
42 |
||
43 |
||
44 |
#include <QtTest/QtTest> |
|
45 |
#include <QtCore/qlocale.h> |
|
46 |
#include <qaudiooutput.h> |
|
47 |
#include <qaudiodeviceinfo.h> |
|
48 |
#include <qaudio.h> |
|
49 |
#include <qaudioformat.h> |
|
50 |
||
13
c0432d11811c
eb175c3290cd7ea85da4a590db9461504a4904bc
Eckhart Koeppen <eckhart.koppen@nokia.com>
parents:
4
diff
changeset
|
51 |
#if defined(Q_OS_SYMBIAN) |
c0432d11811c
eb175c3290cd7ea85da4a590db9461504a4904bc
Eckhart Koeppen <eckhart.koppen@nokia.com>
parents:
4
diff
changeset
|
52 |
#define SRCDIR "" |
c0432d11811c
eb175c3290cd7ea85da4a590db9461504a4904bc
Eckhart Koeppen <eckhart.koppen@nokia.com>
parents:
4
diff
changeset
|
53 |
#endif |
0 | 54 |
|
55 |
class tst_QAudioOutput : public QObject |
|
56 |
{ |
|
57 |
Q_OBJECT |
|
58 |
public: |
|
59 |
tst_QAudioOutput(QObject* parent=0) : QObject(parent) {} |
|
60 |
||
61 |
private slots: |
|
62 |
void initTestCase(); |
|
63 |
void settings(); |
|
64 |
void buffers(); |
|
65 |
void notifyInterval(); |
|
66 |
void pullFile(); |
|
67 |
void pushFile(); |
|
68 |
||
69 |
private: |
|
70 |
bool available; |
|
71 |
QAudioFormat format; |
|
72 |
QAudioOutput* audio; |
|
73 |
}; |
|
74 |
||
75 |
void tst_QAudioOutput::initTestCase() |
|
76 |
{ |
|
77 |
format.setFrequency(8000); |
|
78 |
format.setChannels(1); |
|
79 |
format.setSampleSize(8); |
|
80 |
format.setCodec("audio/pcm"); |
|
81 |
format.setByteOrder(QAudioFormat::LittleEndian); |
|
82 |
format.setSampleType(QAudioFormat::UnSignedInt); |
|
83 |
||
84 |
// Only perform tests if audio output device exists! |
|
3
41300fa6a67c
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
85 |
QList<QAudioDeviceInfo> devices = QAudioDeviceInfo::availableDevices(QAudio::AudioOutput); |
0 | 86 |
if(devices.size() > 0) |
87 |
available = true; |
|
88 |
else { |
|
89 |
qWarning()<<"NOTE: no audio output device found, no test will be performed"; |
|
90 |
available = false; |
|
91 |
} |
|
92 |
audio = new QAudioOutput(format, this); |
|
93 |
} |
|
94 |
||
95 |
void tst_QAudioOutput::settings() |
|
96 |
{ |
|
97 |
if(available) { |
|
98 |
// Confirm the setting we added in the init function. |
|
99 |
QAudioFormat f = audio->format(); |
|
100 |
||
101 |
QVERIFY(format.channels() == f.channels()); |
|
102 |
QVERIFY(format.frequency() == f.frequency()); |
|
103 |
QVERIFY(format.sampleSize() == f.sampleSize()); |
|
104 |
QVERIFY(format.codec() == f.codec()); |
|
105 |
QVERIFY(format.byteOrder() == f.byteOrder()); |
|
106 |
QVERIFY(format.sampleType() == f.sampleType()); |
|
107 |
} |
|
108 |
} |
|
109 |
||
110 |
void tst_QAudioOutput::buffers() |
|
111 |
{ |
|
112 |
if(available) { |
|
113 |
// Should always have a buffer size greater than zero. |
|
114 |
int store = audio->bufferSize(); |
|
115 |
audio->setBufferSize(4096); |
|
116 |
QVERIFY(audio->bufferSize() > 0); |
|
117 |
audio->setBufferSize(store); |
|
118 |
QVERIFY(audio->bufferSize() == store); |
|
119 |
} |
|
120 |
} |
|
121 |
||
122 |
void tst_QAudioOutput::notifyInterval() |
|
123 |
{ |
|
124 |
if(available) { |
|
125 |
QVERIFY(audio->notifyInterval() == 1000); // Default |
|
126 |
||
127 |
audio->setNotifyInterval(500); |
|
128 |
QVERIFY(audio->notifyInterval() == 500); // Custom |
|
129 |
||
130 |
audio->setNotifyInterval(1000); // reset |
|
131 |
} |
|
132 |
} |
|
133 |
||
134 |
void tst_QAudioOutput::pullFile() |
|
135 |
{ |
|
136 |
if(available) { |
|
13
c0432d11811c
eb175c3290cd7ea85da4a590db9461504a4904bc
Eckhart Koeppen <eckhart.koppen@nokia.com>
parents:
4
diff
changeset
|
137 |
QFile file(SRCDIR"4.wav"); |
0 | 138 |
QVERIFY(file.exists()); |
139 |
file.open(QIODevice::ReadOnly); |
|
140 |
||
141 |
QSignalSpy readSignal(audio, SIGNAL(notify())); |
|
142 |
QSignalSpy stateSignal(audio, SIGNAL(stateChanged(QAudio::State))); |
|
143 |
audio->setNotifyInterval(100); |
|
144 |
||
145 |
// Always have default states, before start |
|
3
41300fa6a67c
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
146 |
QVERIFY(audio->state() == QAudio::StoppedState); |
0 | 147 |
QVERIFY(audio->error() == QAudio::NoError); |
3
41300fa6a67c
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
148 |
QVERIFY(audio->elapsedUSecs() == 0); |
0 | 149 |
|
150 |
audio->start(&file); |
|
151 |
QTest::qWait(20); // wait 20ms |
|
152 |
// Check state, bytesFree() and periodSize() are valid non-zero values. |
|
153 |
QVERIFY(audio->state() == QAudio::ActiveState); |
|
154 |
QVERIFY(audio->error() == QAudio::NoError); |
|
155 |
QVERIFY(audio->periodSize() > 0); |
|
3
41300fa6a67c
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
156 |
QVERIFY(audio->elapsedUSecs() > 10000 && audio->elapsedUSecs() < 800000); |
0 | 157 |
QVERIFY(stateSignal.count() == 1); // State changed to QAudio::ActiveState |
158 |
||
159 |
// Wait until finished... |
|
160 |
QTestEventLoop::instance().enterLoop(1); |
|
3
41300fa6a67c
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
161 |
QCOMPARE(audio->processedUSecs(), qint64(692250)); |
0 | 162 |
|
163 |
#ifdef Q_OS_WINCE |
|
164 |
// 4.wav is a little less than 700ms, so notify should fire 4 times on Wince! |
|
165 |
QVERIFY(readSignal.count() >= 4); |
|
166 |
#else |
|
167 |
// 4.wav is a little less than 700ms, so notify should fire 6 times! |
|
168 |
QVERIFY(readSignal.count() >= 6); |
|
169 |
#endif |
|
170 |
audio->stop(); |
|
171 |
QTest::qWait(20); // wait 20ms |
|
3
41300fa6a67c
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
172 |
QVERIFY(audio->state() == QAudio::StoppedState); |
41300fa6a67c
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
173 |
QVERIFY(audio->elapsedUSecs() == 0); |
0 | 174 |
// Can only check to make sure we got at least 1 more signal, but can be more. |
175 |
QVERIFY(stateSignal.count() > 1); |
|
176 |
||
177 |
file.close(); |
|
178 |
} |
|
179 |
} |
|
180 |
||
181 |
void tst_QAudioOutput::pushFile() |
|
182 |
{ |
|
183 |
if(available) { |
|
13
c0432d11811c
eb175c3290cd7ea85da4a590db9461504a4904bc
Eckhart Koeppen <eckhart.koppen@nokia.com>
parents:
4
diff
changeset
|
184 |
QFile file(SRCDIR"4.wav"); |
0 | 185 |
QVERIFY(file.exists()); |
186 |
file.open(QIODevice::ReadOnly); |
|
187 |
||
188 |
const qint64 fileSize = file.size(); |
|
189 |
||
3
41300fa6a67c
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
190 |
QIODevice* feed = audio->start(); |
0 | 191 |
|
192 |
char* buffer = new char[fileSize]; |
|
193 |
file.read(buffer, fileSize); |
|
194 |
||
195 |
qint64 counter=0; |
|
196 |
qint64 written=0; |
|
197 |
while(written < fileSize) { |
|
198 |
written+=feed->write(buffer+written,fileSize-written); |
|
199 |
QTest::qWait(20); |
|
200 |
counter++; |
|
201 |
} |
|
202 |
QTestEventLoop::instance().enterLoop(1); |
|
203 |
||
204 |
QVERIFY(written == fileSize); |
|
3
41300fa6a67c
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
205 |
QVERIFY(audio->processedUSecs() == 692250); |
0 | 206 |
|
207 |
audio->stop(); |
|
208 |
file.close(); |
|
209 |
delete [] buffer; |
|
210 |
delete audio; |
|
211 |
} |
|
212 |
} |
|
213 |
||
214 |
QTEST_MAIN(tst_QAudioOutput) |
|
215 |
||
216 |
#include "tst_qaudiooutput.moc" |