aboutsummaryrefslogtreecommitdiffstats
path: root/callagent/Tests.st
blob: a0f42a4db5d3ef9749c2e3f410722c0ae342cf6b (plain)
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
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
"
 (C) 2010-2012 by Holger Hans Peter Freyther
 All Rights Reserved

 This program is free software: you can redistribute it and/or modify
 it under the terms of the GNU Affero General Public License as
 published by the Free Software Foundation, either version 3 of the
 License, or (at your option) any later version.

 This program is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 GNU Affero General Public License for more details.

 You should have received a copy of the GNU Affero General Public License
 along with this program.  If not, see <http://www.gnu.org/licenses/>.
"

TestCase subclass: MGCPCommandTest [
    | trunk callagent |
    <category: 'OsmoMGCP-Callagent-Tests'>

    callagent [
        ^ callagent ifNil: [
                callagent := MGCPCallAgent startOn: '127.0.0.1' port: 0.
                callagent addTrunk: self trunk; yourself].
    ]

    trunk [
        ^ trunk ifNil: [
                trunk := MGCPVirtualTrunk createWithDest: '127.0.0.1' numberPorts: 31]
    ]

    endpoint [
        ^ self trunk endpointAt: 20.
    ]

    exampleSDP [
        <category: 'private'>
        ^ (WriteStream on: String new)
            nextPutAll: 'v=0'; cr; nl;
            nextPutAll: 'o=- 258696477 0 IN IP4 172.16.1.107'; cr; nl;
            nextPutAll: 'c=IN IP4 172.16.1.107'; cr; nl;
            nextPutAll: 't=0 0'; cr; nl;
            nextPutAll: 'm=audio 6666 RTP/AVP 127'; cr; nl;
            nextPutAll: 'a=rtpmap:127 GSM-EFR/8000/1'; cr; nl;
            nextPutAll: 'a=ptime:20'; cr; nl;
            nextPutAll: 'a=recvonly'; cr; nl;
            nextPutAll: 'm=image 4402 udptl t38'; cr; nl;
            nextPutAll: 'a=T38FaxVersion:0'; cr; nl;
            nextPutAll: 'a=T38MaxBitRate:14400'; cr; nl;
            contents
    ]

    exampleMDCX [
        ^ (WriteStream on: String new)
            nextPutAll: 'MDCX 808080 14@mgw MGCP 1.0'; cr; nl;
            nextPutAll: 'C: 4a84ad5d25f'; cr; nl;
            nextPutAll: 'L: p:20, a:GSM-EFR, nt:IN'; cr; nl;
            nextPutAll: 'M: recvonly'; cr; nl;
            cr; nl;
            nextPutAll: self exampleSDP;
            contents
    ]

    exampleCRCX [
        ^ (WriteStream on: String new)
            nextPutAll: 'CRCX 808080 14@mgw MGCP 1.0'; cr; nl;
            nextPutAll: 'C: 4a84ad5d25f'; cr; nl;
            nextPutAll: 'L: p:20, a:GSM-EFR, nt:IN'; cr; nl;
            nextPutAll: 'M: recvonly'; cr; nl;
            contents
    ]

    testCRCXCreation [
        | crcx trans |

        trans := MGCPTransaction on: self endpoint of: self callagent.
        trans transactionId: '808080'.
        crcx := (MGCPCRCXCommand createCRCX: self endpoint callId: '4a84ad5d25f')
                    addParameter: 'L' with: 'p:20, a:GSM-EFR, nt:IN';
                    addParameter: 'M' with: 'recvonly';
                    yourself.
        trans command: crcx.

        self assert: crcx asDatagram = self exampleCRCX.
    ]

    exampleRSIP [
        ^ (WriteStream on: String new)
            nextPutAll: 'RSIP 808080 14@mgw MGCP 1.0'; cr; nl;
            contents
    ]

    testRSIPCreation [
        | trans |

        trans := (MGCPTransaction on: self endpoint of: self callagent)
                transactionId: '808080';
                command: (MGCPOsmoRSIPCommand createRSIP);
                yourself.
        self assert: trans command asDatagram = self exampleRSIP.
    ]

    testEndPointName [
        | trunk |
        trunk := MGCPDSTrunk createWithDest: '0.0.0.0' trunkNr: 1.

        "I test the endpoint name on hex part.."
        self assert: (MGCPVirtualTrunk new endpointName: 16rA) = 'a@mgw'.
        self assert: (trunk endpointName: 16rA) = 'ds/e1-1/10@mgw'.
    ]

    testMultiplexTimeslot [
        | trunk |
        trunk := MGCPDSTrunk createWithDest: '0.0.0.0' trunkNr: 3.

        self assert: (self trunk endpointAt: 1) endpointNumber equals: 1.
        self assert: (self trunk endpointAt: 1) multiplex = 0.
        self assert: (self trunk endpointAt: 1) timeslot = 1.
        self assert: (self trunk endpointAt: 31) endpointNumber equals: 31.
        self assert: (self trunk endpointAt: 31) multiplex = 0.
        self assert: (self trunk endpointAt: 31) timeslot = 31.

        self assert: (trunk endpointAt: 1) multiplex = 3.
        self assert: (trunk endpointAt: 31) timeslot = 31.
    ]

    testMDCXWithSDP [
        | mdcx trans |

        trans := MGCPTransaction on: self endpoint of: self callagent.
        trans transactionId: '808080'.
        mdcx := (MGCPMDCXCommand createMDCX: self endpoint callId: '4a84ad5d25f')
                    addParameter: 'L' with: 'p:20, a:GSM-EFR, nt:IN';
                    addParameter: 'M' with: 'recvonly';
                    sdp: self exampleSDP;
                    yourself.
        trans command: mdcx.

        mdcx asDatagram printNl.
        self assert: mdcx asDatagram = self exampleMDCX.
    ]

    tearDown [
       self callagent stop.
    ]
]

MGCPCallAgent subclass: MGCPMockNoTransmitAgent [
    | send |
    <category: 'OsmoMGCP-Callagent-Tests'>

    MGCPMockNoTransmitAgent class >> new [
        ^self basicNew initialize
    ]

    initialize [
        send := Semaphore new.
    ]

    queueData: aDatagram [
        send signal
    ]

    sends [
        [^send signals]
            ensure: [send := Semaphore new]
    ]
]

MGCPMockNoTransmitAgent subclass: MGCPTransmitSecond [
    | drop |
    <category: 'OsmoMGCP-Callagent-Tests'>

    initialize [
        drop := true.
        ^ super initialize.
    ]

    queueData: aData [
        super queueData: aData.

        drop
            ifTrue:  [drop := false]
            ifFalse: [drop := true. transactions first response: 3.].
    ]
]

MGCPTransaction subclass: MGCPShortTransaction [
    <category: 'OsmoMGCP-Callagent-Tests'>

    MGCPShortTransaction class >> retransmitTime [ ^ 1 ]
    MGCPShortTransaction class >> expireTime [ ^ 6 ]
]

TestCase subclass: MGCPTransactionTest [
    | trunk callagent dropAgent |
    <category: 'OsmoMGCP-Callagent-Tests'>

    timeoutCallagent [
        ^ callagent ifNil: [
                callagent := MGCPMockNoTransmitAgent startOn: '127.0.0.1' port: 0.
                callagent addTrunk: self trunk; yourself].
    ]

    dropAgent [
        ^ dropAgent ifNil: [
                dropAgent := MGCPTransmitSecond startOn: '127.0.0.1' port: 0.
                dropAgent addTrunk: self trunk; yourself].
    ]

    trunk [
        ^ trunk ifNil: [
                trunk := MGCPVirtualTrunk createWithDest: '127.0.0.1' numberPorts: 32]
    ]

    endpoint [
        ^ self trunk endpointAt: 20.
    ]

    testTimeout [
        | crcx trans result timeout |

        trans := MGCPShortTransaction on: self endpoint of: self timeoutCallagent.
        crcx := (MGCPCRCXCommand createCRCX: self endpoint callId: '4a84ad5d25f')
                    addParameter: 'L' with: 'p:20, a:GSM-EFR, nt:IN';
                    addParameter: 'M' with: 'recvonly';
                    yourself.
        trans command: crcx.

        result := Semaphore new.
        timeout := Semaphore new.
        trans
            onResult: [:a :b | result signal];
            onTimeout: [:each | timeout signal];
            start.

        timeout wait.

        self assert: result signals = 0.
        self assert: timeout signals = 0.
        self assert: self timeoutCallagent sends > 6.
    ]

    testSuccess [
        | crcx trans result timeout |

        trans := MGCPShortTransaction on: self endpoint of: self dropAgent.
        crcx := (MGCPCRCXCommand createCRCX: self endpoint callId: '4a84ad5d25f')
                    addParameter: 'L' with: 'p:20, a:GSM-EFR, nt:IN';
                    addParameter: 'M' with: 'recvonly';
                    yourself.
        trans command: crcx.

        result := Semaphore new.
        timeout := Semaphore new.
        trans
            onResult: [:a :b | result signal];
            onTimeout: [:each | timeout signal];
            start.

        result wait.
        self assert: result signals = 0.
        self assert: timeout signals = 0.
        self assert: self dropAgent sends >= 2.

    ]

    tearDown [
        self timeoutCallagent stop.
        self dropAgent stop.
    ]
]

TestCase subclass: MGCPEndpointAllocTest [
    <category: 'OsmoMGCP-Callagent-Tests'>

    testStateTransition [
        | trunk endp |

        trunk := MGCPVirtualTrunk createWithDest: '127.0.0.1' numberPorts: 32.
        endp := trunk endpointAt: 1.

        "Initial..."
        self assert: endp isUnused.
        self assert: endp endpointNumber equals: 1.

        "Reserve..."
        endp reserve.
        self assert: endp isReserved.
        self should: [endp reserve] raise: Error.
        self should: [endp free] raise: Error.
        self should: [endp unblock] raise: Error.
        self deny: endp tryBlock.

        "Move to used..."
        endp used.
        self assert: endp isUsed.
        self should: [endp reserve] raise: Error.
        self should: [endp used] raise: Error.
        self should: [endp unblock] raise: Error.
        self deny: endp tryBlock.

        "Move to free..."
        endp free.
        self assert: endp isUnused.
        self should: [endp used] raise: Error.
        self should: [endp unblock] raise: Error.
        self assert: endp tryBlock.

        "Now try to block it..."
        self assert: endp isBlocked.
        self should: [endp reserve] raise: Error.
        self should: [endp free] raise: Error.
        self should: [endp used] raise: Error.
        self deny: endp tryBlock.

        "Now unblock and restore"
        endp unblock.
        self assert: endp isUnused.
    ]

    testAllocation [
        | trunk endp |

        trunk := MGCPVirtualTrunk createWithDest: '127.0.0.1' numberPorts: 32.

        1 to: 32 do: [:each |
            self assert: ((trunk allocateEndpointIfFailure: [])
                            used; isUsed).
        ].

        "test an allocation failure"
        self assert: (trunk allocateEndpointIfFailure: [true]).

        "now free some endpoints"
        self assert: (trunk endpointAt: 20) endpointNumber equals: 20.
        (trunk endpointAt: 20) free.
        (trunk endpointAt:  5) free.
        endp := (trunk allocateEndpointIfFailure: []).
        self assert: endp endpointName = '5@mgw'.

        "last_used should be five now"
        (trunk endpointAt:  4) free.
        endp := (trunk allocateEndpointIfFailure: []).
        self assert: endp endpointName = '14@mgw'.

        endp := (trunk allocateEndpointIfFailure: []).
        self assert: endp endpointName = '4@mgw'.
    ]
]

PP.PPCompositeParserTest subclass: MGCPParserTest [
    <category: 'OsmoMGCP-Callagent-Tests'>

    MGCPParserTest class >> crcxMessage [
        ^String streamContents: [:stream |
            stream
                nextPutAll: 'CRCX 1 14@mgw MGCP 1.0'; cr; nl;
                nextPutAll: 'C: 4a84ad5d25f'; cr; nl;
                nextPutAll: 'L: p:20, a:GSM-EFR, nt:IN'; cr; nl;
                nextPutAll: 'M: recvonly'; cr; nl;
                cr; nl;
                nextPutAll: 'v=0'; cr; nl;
                nextPutAll: 'b=0'; cr; nl]
    ]

    MGCPParserTest class >> natDLCXMessage [
        ^String streamContents: [:stream |
            stream
                nextPutAll: 'DLCX nat-0 1@mgw MGCP 1.0'; cr; nl]
    ]

    MGCPParserTest class >> dlcxMessageReg [
        ^String streamContents: [:stream |
            stream
                nextPutAll: 'DLCX nat-9999999999 a@mgw MGCP 1.0'; cr; nl]

    ]

    exampleCRCXWithOsmux [
        ^String streamContents: [:stream |
            stream
                nextPutAll: 'CRCX 361562151 1@mgw MGCP 1.0'; nl;
                nextPutAll: 'X-Osmux: on'; cr; nl;
                nextPutAll: 'C: f553fcb979'; cr; nl;
                nextPutAll: 'L: p:20, a:AMR, nt:IN'; cr; nl;
                nextPutAll: 'M: recvonly'; cr; nl
            ]

    ]

    parserClass [
        ^MGCPParser
    ]

    testParseCRCXWithOsmux [
        | crcx |
        crcx := self parse: self exampleCRCXWithOsmux.
        self assert: crcx class verb equals: 'CRCX'.
    ]

    testParseCRCX [
        | crcx |
        crcx := self parse: self class crcxMessage.

        self assert: crcx class verb equals: 'CRCX'.
        self assert: (crcx parameterAt: 'M') equals: 'recvonly'.
        self assert: crcx asDatagram equals: self class crcxMessage.
    ]

    testParseNatDLCX [
        | dlcx |
        dlcx := self parse: self class dlcxMessageReg.

        self assert: dlcx class verb equals: 'DLCX'.
        self assert: dlcx asDatagram equals: self class dlcxMessageReg.
    ]

    testParseDLCX [
        | dlcx |
        dlcx := self parse: self class natDLCXMessage.

        self assert: dlcx class verb equals: 'DLCX'.
        self assert: dlcx asDatagram equals: self class natDLCXMessage.
    ]

    testRespParse [
        | nl res sdp inp |
        nl := Character cr asString, Character nl asString.

        sdp := 'v=0', nl,
               'o=- 258696477 0 IN IP4 172.16.1.107', nl,
               's=-', nl,
               'c=IN IP4 172.16.1.107', nl,
               't=0 0', nl,
               'm=audio 6666 RTP/AVP 127', nl,
               'a=rtpmap:127 GSM-EFR/8000/1', nl,
               'a=ptime:20', nl,
               'a=recvonly', nl,
               'm=image 4402 udptl t38', nl,
               'a=T38FaxVersion:0', nl,
               'a=T38MaxBitRate:14400', nl.

        inp := '200 32323 OK', nl,
                        'I: 233434', nl,
                        nl,
                        sdp.
        res := self parse: inp.

        self assert: res code = 200.
        self assert: res isSuccess.
        self assert: res transactionId = '32323'.
        self assert: res sdp = sdp.
        self assert: (res parameterAt: 'I' ifAbsent: []) = '233434'.
        self assert: res asDatagram equals: inp.
    ]

    testFailureResp [
        | nl res |
        nl := Character cr asString, Character nl asString.
        res := self parse: '400 32323 OK', nl.

        self deny: res isSuccess.
        self assert: res sdp isNil.
    ]
]