aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside6/tests/QtMultimedia/audio_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'sources/pyside6/tests/QtMultimedia/audio_test.py')
-rw-r--r--sources/pyside6/tests/QtMultimedia/audio_test.py95
1 files changed, 37 insertions, 58 deletions
diff --git a/sources/pyside6/tests/QtMultimedia/audio_test.py b/sources/pyside6/tests/QtMultimedia/audio_test.py
index 6c9e44e57..af359e525 100644
--- a/sources/pyside6/tests/QtMultimedia/audio_test.py
+++ b/sources/pyside6/tests/QtMultimedia/audio_test.py
@@ -1,30 +1,5 @@
-#############################################################################
-##
-## Copyright (C) 2016 The Qt Company Ltd.
-## Contact: https://www.qt.io/licensing/
-##
-## This file is part of the test suite of Qt for Python.
-##
-## $QT_BEGIN_LICENSE:GPL-EXCEPT$
-## Commercial License Usage
-## Licensees holding valid commercial Qt licenses may use this file in
-## accordance with the commercial license agreement provided with the
-## Software or, alternatively, in accordance with the terms contained in
-## a written agreement between you and The Qt Company. For licensing terms
-## and conditions see https://www.qt.io/terms-conditions. For further
-## information use the contact form at https://www.qt.io/contact-us.
-##
-## GNU General Public License Usage
-## Alternatively, this file may be used under the terms of the GNU
-## General Public License version 3 as published by the Free Software
-## Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
-## included in the packaging of this file. Please review the following
-## information to ensure the GNU General Public License requirements will
-## be met: https://www.gnu.org/licenses/gpl-3.0.html.
-##
-## $QT_END_LICENSE$
-##
-#############################################################################
+# Copyright (C) 2022 The Qt Company Ltd.
+# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
'''Test cases for QHttp'''
@@ -37,42 +12,46 @@ sys.path.append(os.fspath(Path(__file__).resolve().parents[1]))
from init_paths import init_test_paths
init_test_paths(False)
-from helper.usesqguiapplication import UsesQGuiApplication
-from PySide6.QtCore import *
-from PySide6.QtMultimedia import *
+from helper.usesqapplication import UsesQApplication
+from PySide6.QtCore import QByteArray
+from PySide6.QtMultimedia import QAudioBuffer, QAudioFormat, QMediaDevices
-class testAudioDevices(UsesQGuiApplication):
- def testListDevices(self):
- valid = False
- devices = QAudioDeviceInfo.availableDevices(QAudio.AudioOutput)
- if not len(devices):
+class testAudioDevices(UsesQApplication):
+
+ def setUp(self):
+ super().setUp()
+ self._devices = []
+ for d in QMediaDevices.audioOutputs():
+ if d:
+ self._devices.append(d)
+
+ def test_list_devices(self):
+ if not self._devices:
+ print("No audio outputs found")
return
- valid = True
- for devInfo in devices:
- if devInfo.deviceName() == 'null':
- # skip the test if the only device found is a invalid device
- if len(devices) == 1:
- return
- else:
- continue
+ for dev_info in self._devices:
+ print("Testing ", dev_info.id())
fmt = QAudioFormat()
- for codec in devInfo.supportedCodecs():
- fmt.setCodec(codec)
- for frequency in devInfo.supportedSampleRates():
- fmt.setSampleRate(frequency)
- for channels in devInfo.supportedChannelCounts():
- fmt.setChannelCount(channels)
- for sampleType in devInfo.supportedSampleTypes():
- fmt.setSampleType(sampleType)
- for sampleSize in devInfo.supportedSampleSizes():
- fmt.setSampleSize(sampleSize)
- for endian in devInfo.supportedByteOrders():
- fmt.setByteOrder(endian)
- if devInfo.isFormatSupported(fmt):
- return
- self.assertTrue(False)
+ for sample_format in dev_info.supportedSampleFormats():
+ fmt.setSampleFormat(sample_format)
+ fmt.setChannelCount(dev_info.maximumChannelCount())
+ fmt.setSampleRate(dev_info.maximumSampleRate())
+ self.assertTrue(dev_info.isFormatSupported(fmt))
+
+ def test_audiobuffer(self):
+ """PYSIDE-1947: Test QAudioBuffer.data()."""
+ if not self._devices:
+ print("No audio outputs found")
+ return
+ size = 256
+ byte_array = QByteArray(size, '7')
+ buffer = QAudioBuffer(byte_array, self._devices[0].preferredFormat())
+ self.assertEqual(buffer.byteCount(), 256)
+ data = buffer.data()
+ actual_byte_array = QByteArray(bytearray(data))
+ self.assertEqual(byte_array, actual_byte_array)
if __name__ == '__main__':