-
-
Notifications
You must be signed in to change notification settings - Fork 100
/
Copy pathclient_test.go
305 lines (247 loc) · 7.68 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
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
package sipgo
import (
"context"
"os"
"sort"
"strings"
"testing"
"github.com/emiago/sipgo/sip"
"github.com/emiago/sipgo/siptest"
"github.com/icholy/digest"
"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(
WithUserAgentHostname("sip.myserver.com"),
)
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)
}
*/
func TestClientViaRouting(t *testing.T) {
ua, _ := NewUA()
client, err := NewClient(ua,
WithClientHostname("myhost.xy"),
WithClientPort(5060),
)
require.NoError(t, err)
client.TxRequester = &siptest.ClientTxRequesterResponder{
OnRequest: func(req *sip.Request, w *siptest.ClientTxResponder) {
res := sip.NewResponseFromRequest(req, 200, "OK", nil)
w.Receive(res)
},
}
options := sip.NewRequest(sip.OPTIONS, sip.Uri{User: "test", Host: "localhost"})
_, err = client.Do(context.TODO(), options)
require.NoError(t, err)
via := options.Via()
assert.Equal(t, "myhost.xy", via.Host)
assert.Equal(t, 5060, via.Port)
}
func TestIntegrationClientViaBindHost(t *testing.T) {
if os.Getenv("TEST_INTEGRATION") == "" {
t.Skip("Use TEST_INTEGRATION env value to run this test")
return
}
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
{
ua, _ := NewUA()
defer ua.Close()
srv, err := NewServer(ua)
require.NoError(t, err)
startTestServer(ctx, srv, "127.0.0.1:5099")
srv.OnOptions(func(req *sip.Request, tx sip.ServerTransaction) {
res := sip.NewResponseFromRequest(req, 200, "OK", nil)
tx.Respond(res)
})
}
ua, _ := NewUA()
defer ua.Close()
client, err := NewClient(ua,
WithClientHostname("127.0.0.1"),
WithClientPort(15090),
WithClientConnectionAddr("127.0.0.1:15099"),
)
require.NoError(t, err)
options := sip.NewRequest(sip.OPTIONS, sip.Uri{User: "test", Host: "localhost"})
tx, err := client.TransactionRequest(context.TODO(), options)
require.NoError(t, err)
clientTx := tx.(*sip.ClientTx)
conn := clientTx.Connection()
laddr := conn.LocalAddr()
assert.Equal(t, "127.0.0.1:15099", laddr.String())
via := options.Via()
assert.Equal(t, "127.0.0.1", via.Host)
assert.Equal(t, 15090, via.Port)
}
func TestDigestAuthLowerCase(t *testing.T) {
challenge := `Digest username="user", realm="asterisk", nonce="662d65a084b88c6d2a745a9de086fa91", uri="sip:[email protected]", algorithm=sha-256, response="3681b63e5d9c3bb80e5350e2783d7b88"`
chal, err := digest.ParseChallenge(challenge)
require.NoError(t, err)
chal.Algorithm = sip.ASCIIToUpper(chal.Algorithm)
_, err = digest.Digest(chal, digest.Options{
Method: "INVITE",
Username: "user",
URI: "sip:[email protected]",
})
require.NoError(t, err)
}
func BenchmarkClientTransactionRequestBuild(t *testing.B) {
ua, err := NewUA()
require.Nil(t, err)
c, err := NewClient(ua,
WithClientHostname("10.0.0.0"),
)
for i := 0; i < t.N; i++ {
req := sip.NewRequest(sip.INVITE, sip.Uri{User: "test", Host: "localhost"})
clientRequestBuildReq(c, req)
}
}