-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathbob_main.py
More file actions
87 lines (76 loc) · 3.03 KB
/
bob_main.py
File metadata and controls
87 lines (76 loc) · 3.03 KB
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
#!/usr/bin/env python3
#
# Copyright (c) 2015 Sippy Software, Inc. All rights reserved.
#
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without modification,
# are permitted provided that the following conditions are met:
#
# 1. Redistributions of source code must retain the above copyright notice, this
# list of conditions and the following disclaimer.
#
# 2. Redistributions in binary form must reproduce the above copyright notice,
# this list of conditions and the following disclaimer in the documentation and/or
# other materials provided with the distribution.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
# ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
import sys, getopt
from sippy.MsgBody import MsgBody
from sippy.SipLogger import SipLogger
from sippy.Core.EventDispatcher import ED2
from .lib.test_config import test_config
body_audio = 'v=0\r\n' + \
'o=987654382 4650 4650 IN IP4 192.168.0.90\r\n' + \
's=BobPentiumIV Call\r\n' + \
'c=IN IP4 192.168.0.5\r\n' + \
't=0 0\r\n' + \
'm=audio 20000 RTP/AVP 0 4 8 101\r\n' + \
'a=rtpmap:0 PCMU/8000/1\r\n' + \
'a=rtpmap:4 G723/8000/1\r\n' + \
'a=rtpmap:8 PCMA/8000/1\r\n' + \
'a=rtpmap:101 telephone-event/8000\r\n' + \
'a=fmtp:101 0-15\r\n' + \
'\r\n'
body_fax = 'v=0\r\n' + \
'o=BOBSDP 187392 187393 IN IP4 192.168.174.156\r\n' + \
's=BOBSDP Session\r\n' + \
'c=IN IP4 192.168.174.156\r\n' + \
't=0 0\r\n' + \
'm=image 53278 udptl t38\r\n' + \
'a=T38FaxVersion:0\r\n' + \
'a=T38MaxBitRate:14400\r\n' + \
'a=T38FaxRateManagement:transferredTCF\r\n' + \
'a=T38FaxMaxBuffer:262\r\n' + \
'a=T38FaxMaxDatagram:176\r\n' + \
'a=T38FaxUdpEC:t38UDPRedundancy\r\n' + \
'\r\n'
BODIES_ALL = (body_audio, body_fax)
def main_func():
global_config = {}
try:
opts, args = getopt.getopt(sys.argv[1:], test_config.getopts)
except getopt.GetoptError:
usage(global_config)
tcfg = test_config(global_config, opts)
assert len(opts) == 0
tcfg.tests_mightfail = tuple('bob_' + x for x in tcfg.tests_mightfail)
bodys = [MsgBody(x) for x in BODIES_ALL]
for body in bodys:
body.parse()
tcfg.bodys = tuple(bodys)
sl = SipLogger('bob_ua')
global_config['_sip_logger'] = sl
from .lib.bob_testcore import b_test
bcore = b_test(tcfg)
ED2.loop()
sys.exit(bcore.rval)