qtmobility/tests/auto/symbian/qmediarecorder_xa/tst_qmediarecorder_xa.h
changeset 14 6fbed849b4f4
child 15 1f895d8a5b2b
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/qtmobility/tests/auto/symbian/qmediarecorder_xa/tst_qmediarecorder_xa.h	Wed Jun 23 19:08:38 2010 +0300
@@ -0,0 +1,141 @@
+/****************************************************************************
+**
+** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
+** All rights reserved.
+** Contact: Nokia Corporation (qt-info@nokia.com)
+**
+** This file is part of the Qt Mobility Components.
+**
+** $QT_BEGIN_LICENSE:LGPL$
+** No Commercial Usage
+** This file contains pre-release code and may not be distributed.
+** You may use this file in accordance with the terms and conditions
+** contained in the Technology Preview License Agreement accompanying
+** this package.
+**
+** GNU Lesser General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU Lesser
+** General Public License version 2.1 as published by the Free Software
+** Foundation and appearing in the file LICENSE.LGPL included in the
+** packaging of this file.  Please review the following information to
+** ensure the GNU Lesser General Public License version 2.1 requirements
+** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** In addition, as a special exception, Nokia gives you certain additional
+** rights.  These rights are described in the Nokia Qt LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+** If you have questions regarding the use of this file, please contact
+** Nokia at qt-info@nokia.com.
+**
+**
+**
+**
+**
+**
+**
+**
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
+#ifndef TST_QMEDIARECORDER_XA_H
+#define TST_QMEDIARECORDER_XA_H
+
+#include <QtTest/QtTest>
+#include <QDebug>
+#include <qmediaobject.h>
+#include <qmediacontrol.h>
+#include <qmediaservice.h>
+#include <qmediarecordercontrol.h>
+#include <qmediarecorder.h>
+#include <qaudioendpointselector.h>
+#include <qaudioencodercontrol.h>
+#include <qmediacontainercontrol.h>
+#include <QtMultimedia/qaudioformat.h>
+#include <qaudiocapturesource.h>
+
+QT_USE_NAMESPACE
+class tst_QMediaRecorder: public QObject
+{
+    Q_OBJECT
+
+public slots:
+    void initTestCase();
+    void cleanupTestCase();
+
+private slots:
+
+    // Positive test cases
+    void testMediaRecorderObject();
+    void testAudioSink();
+    void testAudioEndPointSelector();
+    void testDefaultAudioEncodingSettings();
+    void testAudioWav();
+    void testAudioWavSr8kHz();
+    void testAudioWavSr16kHz();
+    void testAudioWavSr32kHz();
+    void testAudioWavSr96kHz();
+    void testAudioWavSr8kHzStereo();
+    void testAudioWavSr16kHzStereo();
+    void testAudioWavSr32kHzStereo();
+    void testAudioWavSr96kHzStereo();
+    void testAudioWavQualityVeryLow();
+    void testAudioWavQualityLow();
+    void testAudioWavQualityNormal();
+    void testAudioWavQualityHigh();
+    void testAudioWavQualityVeryHigh();
+    // Negetive test cases
+    void testAudioWavSr4kHz();
+    void testAudioWavSr8kHz5Channel();
+
+    // Positive test cases
+    void testAudioAmr();
+    void testAudioAmrBr4750bps();
+    void testAudioAmrBr5150bps();
+    void testAudioAmrBr5900bps();
+    void testAudioAmrBr6700bps();
+    void testAudioAmrBr7400bps();
+    void testAudioAmrBr7950bps();
+    void testAudioAmrBr10200bps();
+    void testAudioAmrBr12200bps();
+    void testAudioAmrQualityVeryLow();
+    void testAudioAmrQualityLow();
+    void testAudioAmrQualityNormal();
+    void testAudioAmrQualityHigh();
+    void testAudioAmrQualityVeryHigh();
+    // Negetive test cases
+    void testAudioAmrSr8kHzMono();
+    void testAudioAmrStereo();
+    void testAudioAmrSr16kHz();
+
+    // Positive test cases
+    void testAudioMpegBr32kSr8kHz();
+    void testAudioMpegBr32kbpsSr8kHzStereo();
+    void testAudioMpegBr128kbpsSr16kHz();
+    void testAudioMpegBr128kbpsSr16kHzStereo();
+    void testAudioMpegBr192kbpsSr32kHz();
+    void testAudioMpegBr192kbpsSr32kHzStereo();
+    void testAudioMpegBr256kbpsSr48kHz();
+    void testAudioMpegBr256kbpsSr48kHzStereo();
+    void testAudioMpegQualityVeryLow();
+    void testAudioMpegQualityVeryHigh();
+    // Negetive test cases
+    void testAudioMpegBr16kSr8kHz();
+
+private:
+
+    void testAudioMpeg();
+    void testAudioMpegQualityLow();
+    void testAudioMpegQualityNormal();
+    void testAudioMpegQualityHigh();
+
+    QUrl nextFileName(QDir outputDir, QString appendName, QString ext);
+
+    QAudioEncoderControl *audioEncoder;
+    QAudioEndpointSelector *audioEndpoint;
+    QMediaRecorder  *audiocapture;
+    QAudioCaptureSource *captureSource;
+};
+
+#endif /* TST_QMEDIARECORDER_XA_H */