aboutsummaryrefslogtreecommitdiffstats
path: root/tests/phonon/basic_playing_test.py
blob: 49df7d51e5b0d22cb7925eabd0f3111a84002ba9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68

import os
import unittest
from PySide.phonon import Phonon
from helper import UsesQCoreApplication

sample_file = os.path.join(os.path.dirname(__file__), 'tone.wav')

def checkBackendCapabilities(func):
    def function(self, *args, **kw):
        if Phonon.BackendCapabilities.isMimeTypeAvailable('audio/x-wav'):
            func(self, *args, **kw)
        else:
            print 'Wav format not supported! Playback test skipped!'
    return function


class TestSimplePlaying(UsesQCoreApplication):
    def setUp(self):
        super(TestSimplePlaying, self).setUp()
        self.app.setApplicationName('Dummy')
        self.source = Phonon.MediaSource(sample_file)
        self.media = Phonon.MediaObject()
        self.media.setCurrentSource(self.source)

        self.media.finished.connect(self.app.quit)
        self.called = False

        # prevent locking with:
        # request to play a stream, but no valid audio ...
        self.output = Phonon.AudioOutput()
        self.path = Phonon.createPath(self.media, self.output)

    def tearDown(self):
        super(TestSimplePlaying, self).tearDown()
        del self.path
        del self.output
        del self.media
        del self.source

    @checkBackendCapabilities
    def testFinishedSignal(self):
        # Should pass if finished() is called
        self.media.play()
        self.app.exec_()

    def testMediaSource(self):
        self.assertEqual(self.media.currentSource(), self.source)

    def testPathCreation(self):
        # FIXME Both functions below are not exported by PyQt4
        self.assertEqual(self.path.sink(), self.output)
        self.assertEqual(self.path.source(), self.media)

    def state_cb(self, newState, OldState):
        self.called = True

    @checkBackendCapabilities
    def testStateChanged(self):
        self.media.stateChanged['Phonon::State', 'Phonon::State'].connect(self.state_cb)
        self.media.play()
        self.app.exec_()
        self.assert_(self.called)


if __name__ == '__main__':
    unittest.main()