aboutsummaryrefslogtreecommitdiffstats
path: root/callagent/Tests.st
blob: 84795643b8af9e29e5882c91d2e540114fbda82f (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
"
 (C) 2010-2011 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 |

    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: 32]
    ]

    endpoint [
        ^ self trunk endpointAt: 20.
    ]

    exampleCRCX [
        | crnl |
        ^ (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')
                    parameterAdd: 'L: p:20, a:GSM-EFR, nt:IN';
                    parameterAdd: 'M: recvonly';
                    yourself.
        trans command: crcx.

        self assert: crcx asDatagram = self exampleCRCX.
    ]

    tearDown [
       self callagent stop.
    ]
]

MGCPCallAgent subclass: MGCPMockNoTransmitAgent [
    | send |

    MGCPMockNoTransmitAgent class >> new [
        ^ super new
            initialize;
            yourself
    ]

    initialize [
        send := Semaphore new.
    ]

    queueData: aDatagram [
        send signal
    ]

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

MGCPMockNoTransmitAgent subclass: MGCPTransmitSecond [
    | drop |

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

    queueData: aData [
        super queueData: aData.

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

MGCPTransaction subclass: MGCPShortTransaction [
    MGCPShortTransaction class >> retransmitTime [ ^ 1 ]
    MGCPShortTransaction class >> expireTime [ ^ 6 ]
]

TestCase subclass: MGCPTransactionTest [
    | trunk callagent dropAgent |

    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')
                    parameterAdd: 'L: p:20, a:GSM-EFR, nt:IN';
                    parameterAdd: 'M: 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')
                    parameterAdd: 'L: p:20, a:GSM-EFR, nt:IN';
                    parameterAdd: 'M: 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 [
    testStateTransition [
        | trunk endp |

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

        "Initial..."
        self assert: endp isUnused.

        "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"
        (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'.
    ]
]