~ubuntu-branches/ubuntu/raring/sflphone/raring

« back to all changes in this revision

Viewing changes to sflphone-common/libs/pjproject/tests/pjsua/inc_const.py

  • Committer: Package Import Robot
  • Author(s): Francois Marier
  • Date: 2011-11-25 13:24:12 UTC
  • mfrom: (4.1.10 sid)
  • Revision ID: package-import@ubuntu.com-20111125132412-dc4qvhyosk74cd42
Tags: 1.0.1-4
Don't assume that arch:all packages will get built (closes: #649726)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# $Id: inc_const.py 2052 2008-06-25 18:18:32Z nanang $
2
 
# Useful constants
3
 
 
4
 
 
5
 
##########################
6
 
# MENU OUTPUT
7
 
#
8
 
 
9
 
 
10
 
##########################
11
 
# EVENTS
12
 
#
13
 
 
14
 
# Text to expect when there is incoming call
15
 
EVENT_INCOMING_CALL = "Press .* answer"
16
 
 
17
 
 
18
 
##########################
19
 
# CALL STATES
20
 
#
21
 
 
22
 
# Call state is CALLING
23
 
STATE_CALLING = "state.*CALLING"
24
 
# Call state is CONFIRMED
25
 
STATE_CONFIRMED = "state.*CONFIRMED"
26
 
# Call state is DISCONNECTED
27
 
STATE_DISCONNECTED = "Call .* DISCONNECTED"
28
 
 
29
 
# Media call is put on-hold
30
 
MEDIA_HOLD = "Media for call [0-9]+ is suspended.*hold"
31
 
# Media call is active
32
 
MEDIA_ACTIVE = "Media for call [0-9]+ is active"
33
 
# RX_DTMF
34
 
RX_DTMF = "Incoming DTMF on call [0-9]+: "
35
 
 
36
 
##########################
37
 
# MEDIA
38
 
#
39
 
 
40
 
# Connecting/disconnecting ports
41
 
MEDIA_CONN_PORT_SUCCESS = "Port \d+ \(.+\) transmitting to port"
42
 
MEDIA_DISCONN_PORT_SUCCESS = "Port \d+ \(.+\) stop transmitting to port"
43
 
 
44
 
# Filename to play / record
45
 
MEDIA_PLAY_FILE = "--play-file\s+(\S+)"
46
 
MEDIA_REC_FILE = "--rec-file\s+(\S+)"
47
 
 
48
 
##########################
49
 
# MISC
50
 
#
51
 
 
52
 
# The command prompt
53
 
PROMPT = ">>>"
54
 
# When pjsua has been destroyed
55
 
DESTROYED = "PJSUA destroyed"
56
 
# Assertion failure
57
 
ASSERT = "Assertion failed"
58
 
# Stdout refresh text
59
 
STDOUT_REFRESH = "XXSTDOUT_REFRESHXX"
60
 
 
61