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 |
#include <QtTest/QtTest> |
|
43 |
#include <QtCore/qlocale.h> |
|
44 |
#include <qaudioinput.h> |
|
45 |
#include <qaudiodeviceinfo.h> |
|
46 |
#include <qaudio.h> |
|
47 |
#include <qaudioformat.h> |
|
48 |
||
13
c0432d11811c
eb175c3290cd7ea85da4a590db9461504a4904bc
Eckhart Koeppen <eckhart.koppen@nokia.com>
parents:
4
diff
changeset
|
49 |
#if defined(Q_OS_SYMBIAN) |
c0432d11811c
eb175c3290cd7ea85da4a590db9461504a4904bc
Eckhart Koeppen <eckhart.koppen@nokia.com>
parents:
4
diff
changeset
|
50 |
#define SRCDIR "" |
c0432d11811c
eb175c3290cd7ea85da4a590db9461504a4904bc
Eckhart Koeppen <eckhart.koppen@nokia.com>
parents:
4
diff
changeset
|
51 |
#endif |
0 | 52 |
|
53 |
class tst_QAudioInput : public QObject |
|
54 |
{ |
|
55 |
Q_OBJECT |
|
56 |
public: |
|
57 |
tst_QAudioInput(QObject* parent=0) : QObject(parent) {} |
|
58 |
||
59 |
private slots: |
|
60 |
void initTestCase(); |
|
61 |
void settings(); |
|
62 |
void buffers(); |
|
63 |
void notifyInterval(); |
|
64 |
void pullFile(); |
|
65 |
||
66 |
private: |
|
67 |
bool available; |
|
68 |
QAudioFormat format; |
|
69 |
QAudioInput* audio; |
|
70 |
}; |
|
71 |
||
72 |
void tst_QAudioInput::initTestCase() |
|
73 |
{ |
|
74 |
format.setFrequency(8000); |
|
75 |
format.setChannels(1); |
|
76 |
format.setSampleSize(8); |
|
77 |
format.setCodec("audio/pcm"); |
|
78 |
format.setByteOrder(QAudioFormat::LittleEndian); |
|
79 |
format.setSampleType(QAudioFormat::UnSignedInt); |
|
80 |
||
81 |
// Only perform tests if audio input device exists! |
|
3
41300fa6a67c
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
82 |
QList<QAudioDeviceInfo> devices = QAudioDeviceInfo::availableDevices(QAudio::AudioInput); |
0 | 83 |
if(devices.size() > 0) |
84 |
available = true; |
|
85 |
else { |
|
86 |
qWarning()<<"NOTE: no audio input device found, no test will be performed"; |
|
87 |
available = false; |
|
88 |
} |
|
89 |
||
90 |
if(available) |
|
91 |
audio = new QAudioInput(format, this); |
|
92 |
} |
|
93 |
||
94 |
void tst_QAudioInput::settings() |
|
95 |
{ |
|
96 |
if(available) { |
|
97 |
// Confirm the setting we added in the init function. |
|
98 |
QAudioFormat f = audio->format(); |
|
99 |
||
100 |
QVERIFY(format.channels() == f.channels()); |
|
101 |
QVERIFY(format.frequency() == f.frequency()); |
|
102 |
QVERIFY(format.sampleSize() == f.sampleSize()); |
|
103 |
QVERIFY(format.codec() == f.codec()); |
|
104 |
QVERIFY(format.byteOrder() == f.byteOrder()); |
|
105 |
QVERIFY(format.sampleType() == f.sampleType()); |
|
106 |
} |
|
107 |
} |
|
108 |
||
109 |
void tst_QAudioInput::buffers() |
|
110 |
{ |
|
111 |
if(available) { |
|
112 |
// Should always have a buffer size greater than zero. |
|
113 |
int store = audio->bufferSize(); |
|
114 |
audio->setBufferSize(4096); |
|
115 |
QVERIFY(audio->bufferSize() > 0); |
|
116 |
audio->setBufferSize(store); |
|
117 |
QVERIFY(audio->bufferSize() == store); |
|
118 |
} |
|
119 |
} |
|
120 |
||
121 |
void tst_QAudioInput::notifyInterval() |
|
122 |
{ |
|
123 |
if(available) { |
|
124 |
QVERIFY(audio->notifyInterval() == 1000); // Default |
|
125 |
||
126 |
audio->setNotifyInterval(500); |
|
127 |
QVERIFY(audio->notifyInterval() == 500); // Custom |
|
128 |
||
129 |
audio->setNotifyInterval(1000); // reset |
|
130 |
} |
|
131 |
} |
|
132 |
||
133 |
void tst_QAudioInput::pullFile() |
|
134 |
{ |
|
135 |
if(available) { |
|
13
c0432d11811c
eb175c3290cd7ea85da4a590db9461504a4904bc
Eckhart Koeppen <eckhart.koppen@nokia.com>
parents:
4
diff
changeset
|
136 |
QFile filename(SRCDIR"test.raw"); |
0 | 137 |
filename.open( QIODevice::WriteOnly | QIODevice::Truncate ); |
138 |
||
139 |
QSignalSpy readSignal(audio, SIGNAL(notify())); |
|
140 |
QSignalSpy stateSignal(audio, SIGNAL(stateChanged(QAudio::State))); |
|
141 |
||
142 |
// Always have default states, before start |
|
3
41300fa6a67c
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
143 |
QVERIFY(audio->state() == QAudio::StoppedState); |
0 | 144 |
QVERIFY(audio->error() == QAudio::NoError); |
3
41300fa6a67c
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
145 |
QVERIFY(audio->elapsedUSecs() == 0); |
0 | 146 |
|
147 |
audio->start(&filename); |
|
148 |
QTest::qWait(20); |
|
149 |
// Check state and periodSize() are valid non-zero values. |
|
150 |
QVERIFY(audio->state() == QAudio::ActiveState); |
|
151 |
QVERIFY(audio->error() == QAudio::NoError); |
|
3
41300fa6a67c
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
152 |
QVERIFY(audio->elapsedUSecs() > 10000 && audio->elapsedUSecs() < 800000); |
0 | 153 |
QVERIFY(audio->periodSize() > 0); |
154 |
QVERIFY(stateSignal.count() == 1); // State changed to QAudio::ActiveState |
|
155 |
||
156 |
// Wait until finished... |
|
157 |
QTest::qWait(5000); |
|
158 |
||
159 |
QVERIFY(readSignal.count() > 0); |
|
3
41300fa6a67c
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
160 |
QVERIFY(audio->processedUSecs() > 0); |
0 | 161 |
|
162 |
audio->stop(); |
|
163 |
QTest::qWait(20); |
|
3
41300fa6a67c
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
164 |
QVERIFY(audio->state() == QAudio::StoppedState); |
41300fa6a67c
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
165 |
QVERIFY(audio->elapsedUSecs() == 0); |
0 | 166 |
// Can only check to make sure we got at least 1 more signal, but can be more. |
167 |
QVERIFY(stateSignal.count() > 1); |
|
168 |
||
169 |
filename.close(); |
|
170 |
} |
|
171 |
} |
|
172 |
||
173 |
QTEST_MAIN(tst_QAudioInput) |
|
174 |
||
175 |
#include "tst_qaudioinput.moc" |