~vcs-imports/shtoom/main

« back to all changes in this revision

Viewing changes to shtoom/test/test_doug.py

  • Committer: anthony
  • Date: 2005-03-31 14:37:57 UTC
  • Revision ID: Arch-1:shtoom@bazaar.ubuntu.com%shtoom--trunk--0--patch-981
* ALSA handles stereo-only devices now
* Microphone samples are asynchronously pushed up by the lower layers
rather than being polled by the upper layers. On Mac, the high-precision
realtime thread is used to push microphone samples. This fixes a bug
with short reads and a bug with inaccurate polling. On ALSA, there is a
LoopingCall in the ALSA driver that polls at an appropriate interval.
* The encoder base class has a buffer to store up the appropriate
bytes of microphone data to make up a media frame. This buffer gets
flushed when the audio device closes or reopens.
* The audio device gets closed and reopened during important state
transitions, namely call start and call end. This fixes the "That jerk!"
bug, in which you could say "I have to call that jerk!" immediately
before a call connected and then the jerk in question would hear you say
it when he answered.
* Remove some extremely detailed diags that measured the number of 
packets sent per second and the number of packets received per second.
Those diags have served well and are now retired.
* The Mac audio loopback test is rewritten, and a bug involving
closing the loopback test versus closing a phone call is fixed.
* The discovery/selection of the appropriate audio device is done
before the construction of the Phone object. This makes the other
platforms' initialization process parallel to the Mac initialization
process, and also I prefer this approach. (The other approach is that
you construct the Phone object and then it discovers/selects the audio
device itself.)
* Plays ringing sounds for inbound and outbound ringing sounds
* New audio_device option for selecting a different ALSA or OSS device
* New playout algorithm

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
from shtoom.doug import VoiceApp
12
12
from shtoom.app.doug import DougApplication
13
13
from shtoom.doug.events import *
 
14
from shtoom.i18n import install as i18n_install
 
15
i18n_install()
14
16
 
15
17
class TestDougApplication(DougApplication):
16
18
    _trial_def = None
17
19
    needLogging = False
18
20
    configFileName = None
19
21
 
 
22
    def ringBack(self):
 
23
        # ring ring
 
24
        pass
 
25
 
20
26
    def acceptErrors(self, cookie, error):
21
27
        #print "cookie %s got error %r"%(cookie, error)
22
28
        if self._trial_def is not None:
28
34
        if self._trial_def is not None:
29
35
            d, self._trial_def = self._trial_def, None
30
36
            reactor.callLater(0, d.callback, result)
31
 
        
 
37
 
32
38
class NullApp(VoiceApp):
33
39
    """ This application does nothing but return """
34
40
 
76
82
        return ( ( CallStartedEvent, self.started), )
77
83
 
78
84
    def started(self, evt):
79
 
        self.placeCall(self.callURL, 'sip:test@127.0.0.1')    
 
85
        self.placeCall(self.callURL, 'sip:test@127.0.0.1')
80
86
        return ( (CallAnsweredEvent, self.callAnswered),
81
87
                 (CallRejectedEvent, self.callFailed),
82
88
                 (Event,            self.unknownEvent),
186
192
        self.assertEquals(s2.val, 'completed')
187
193
        lapp.stopSIP()
188
194
        capp.stopSIP()
189