forked from emiago/sipgo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
client_test.go
202 lines (161 loc) · 4.99 KB
/
client_test.go
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
package sipgo
import (
"sort"
"strings"
"testing"
"github.com/emiago/sipgo/sip"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func TestClientRequestBuild(t *testing.T) {
// ua, err := NewUA(WithUserAgentIP(net.ParseIP("10.0.0.0")))
ua, err := NewUA(
WithUserAgentHostname("mydomain.com"),
)
require.Nil(t, err)
c, err := NewClient(ua,
WithClientHostname("10.0.0.0"),
)
require.Nil(t, err)
recipment := sip.Uri{
User: "bob",
Host: "10.2.2.2",
Port: 5060,
Headers: sip.HeaderParams{"transport": "udp"},
UriParams: sip.HeaderParams{"foo": "bar"},
}
req := sip.NewRequest(sip.OPTIONS, recipment)
clientRequestBuildReq(c, req)
via := req.Via()
assert.Equal(t, "SIP/2.0/UDP 10.0.0.0;branch="+via.Params["branch"], via.Value())
from := req.From()
// No ports should exists, headers, uriparams should exists, except tag
assert.Equal(t, "\"sipgo\" <sip:[email protected]>;tag="+from.Params["tag"], from.Value())
to := req.To()
// No ports should exists, headers, uriparams should exists
assert.Equal(t, "<sip:[email protected]>", to.Value())
callid := req.CallID()
assert.NotEmpty(t, callid.Value())
cseq := req.CSeq()
assert.Equal(t, "1 OPTIONS", cseq.Value())
maxfwd := req.MaxForwards()
assert.Equal(t, "70", maxfwd.Value())
clen := req.ContentLength()
assert.Equal(t, "0", clen.Value())
}
func TestClientRequestBuildWithNAT(t *testing.T) {
// ua, err := NewUA(WithUserAgentIP(net.ParseIP("10.0.0.0")))
ua, err := NewUA()
require.Nil(t, err)
c, err := NewClient(ua,
WithClientHostname("10.0.0.0"),
WithClientNAT(),
)
require.Nil(t, err)
recipment := sip.Uri{
User: "bob",
Host: "10.2.2.2",
Port: 5060,
Headers: sip.NewParams(),
UriParams: sip.NewParams(),
}
req := sip.NewRequest(sip.OPTIONS, recipment)
clientRequestBuildReq(c, req)
via := req.Via()
val := via.Value()
params := strings.Split(val, ";")
sort.Slice(params, func(i, j int) bool { return params[i] < params[j] })
assert.Equal(t, "SIP/2.0/UDP 10.0.0.0;branch="+via.Params["branch"]+";rport", strings.Join(params, ";"))
}
func TestClientRequestBuildWithHostAndPort(t *testing.T) {
// ua, err := NewUA(WithUserAgentIP(net.ParseIP("10.0.0.0")))
ua, err := NewUA()
require.Nil(t, err)
c, err := NewClient(ua,
WithClientHostname("sip.myserver.com"),
WithClientPort(5066),
)
require.Nil(t, err)
recipment := sip.Uri{
User: "bob",
Host: "10.2.2.2",
Port: 5060,
}
req := sip.NewRequest(sip.OPTIONS, recipment)
clientRequestBuildReq(c, req)
via := req.Via()
assert.Equal(t, "SIP/2.0/UDP sip.myserver.com:5066;branch="+via.Params["branch"], via.Value())
from := req.From()
// No ports should exists
assert.Equal(t, "\"sipgo\" <sip:[email protected]>;tag="+from.Params["tag"], from.Value())
to := req.To()
// No port should exists or special values
assert.Equal(t, "<sip:[email protected]>", to.Value())
}
func TestClientRequestOptions(t *testing.T) {
ua, err := NewUA()
require.Nil(t, err)
c, err := NewClient(ua,
WithClientHostname("10.0.0.0"),
)
require.Nil(t, err)
sender := sip.Uri{
User: "alice",
Host: "10.1.1.1",
Port: 5060,
}
recipment := sip.Uri{
User: "bob",
Host: "10.2.2.2",
Port: 5060,
}
// Proxy receives this request
req := createSimpleRequest(sip.INVITE, sender, recipment, "UDP")
oldvia := req.Via()
assert.Equal(t, "Via: SIP/2.0/UDP 10.1.1.1:5060;branch="+oldvia.Params["branch"], oldvia.String())
// Proxy will add via header with client host
err = ClientRequestAddVia(c, req)
require.Nil(t, err)
via := req.Via()
tmpvia := *via // Save this for later usage
assert.Equal(t, "Via: SIP/2.0/UDP 10.0.0.0;branch="+via.Params["branch"], via.String())
assert.NotEqual(t, via.Params["branch"], oldvia.Params["branch"])
// Add Record Route
err = ClientRequestAddRecordRoute(c, req)
require.Nil(t, err)
rr := req.RecordRoute()
if strings.Contains(";lr;transport=udp", rr.String()) {
assert.Equal(t, "Record-Route: <sip:10.0.0.0;lr;transport=udp>", rr.String())
}
if strings.Contains(";transport=udp;lr", rr.String()) {
assert.Equal(t, "Record-Route: <sip:10.0.0.0;transport=udp;lr>", rr.String())
}
// When proxy gets response, he will remove via
res := sip.NewResponseFromRequest(req, 400, "", nil)
res.RemoveHeader("Via")
viaprev := res.Via()
assert.Equal(t, oldvia, viaprev)
// Lets make via multivalue
req = createSimpleRequest(sip.INVITE, sender, recipment, "UDP")
via = req.Via()
req.AppendHeader(&tmpvia)
res = sip.NewResponseFromRequest(req, 400, "", nil)
res.RemoveHeader("Via")
viaprev = res.Via()
assert.Equal(t, tmpvia.Host, viaprev.Host)
assert.Len(t, res.GetHeaders("Via"), 1)
}
/* func TestClientVia(t *testing.T) {
ua, err := NewUA()
require.Nil(t, err)
c, err := NewClient(ua,
WithClientHostname("10.0.0.0"),
)
require.Nil(t, err)
tp := ua.tp
req := sip.NewRequest(sip.OPTIONS, &sip.Uri{User: "test", Host: "example.com", Port: 5060})
err = clientRequestBuildReq(c, req)
require.NoError(t, err)
conn, err := tp.ClientRequestConnection(context.TODO(), req)
}
*/