aboutsummaryrefslogtreecommitdiffstats
path: root/m2ua/M2UATests.st
blob: 4f6def2d33f1361a9e5493be4b40e620d279d145 (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
"
 (C) 2013 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/>.
"

Object subclass: M2UAASMock [
    | socket |
    
    <category: 'OsmoNetwork-M2UA-Tests'>
    <comment: 'A simple mock'>

    socketService: aSocket [
	<category: 'creation'>
	socket := aSocket
    ]

    handleAspActive: aMsg [
	<category: 'dispatch'>
	| ret |
	ret := M2UAMSG new
		    msgClass: M2UAConstants clsASPTM;
		    msgType: M2UAConstants asptmActivAck;
		    yourself.
	socket sendToAsp: ret toMessage asByteArray
    ]

    handleAspDown: aMsg [
	<category: 'dispatch'>
	| ret |
	ret := M2UAMSG new
		    msgClass: M2UAConstants clsASPSM;
		    msgType: M2UAConstants aspsmDownAck;
		    yourself.
	socket sendToAsp: ret toMessage asByteArray
    ]

    handleAspInactive: aMsg [
	<category: 'dispatch'>
	| ret |
	ret := M2UAMSG new
		    msgClass: M2UAConstants clsASPTM;
		    msgType: M2UAConstants asptmInactivAck;
		    yourself.
	socket sendToAsp: ret toMessage asByteArray
    ]

    handleAspUp: aMsg [
	<category: 'dispatch'>
	| ret |
	ret := M2UAMSG new
		    msgClass: M2UAConstants clsASPSM;
		    msgType: M2UAConstants aspsmUpAck;
		    yourself.
	socket sendToAsp: ret toMessage asByteArray
    ]

    onData: aData [
	| msg |
	msg := M2UAMSG parseToClass: aData.
	msg dispatchOnAsp: self
    ]
]

Object subclass: SCTPNetworkServiceMock [
    | on_connect on_released on_data as asp |
    
    <category: 'OsmoNetwork-M2UA-Tests'>
    <comment: 'I mock SCTPand directly connect an AS with an ASP.'>

    onSctpConnect: aBlock [
	<category: 'notification'>
	on_connect := aBlock
    ]

    applicationServer: anAs [
	<category: 'creation'>
	as := anAs
    ]

    applicationServerProcess: anAsp [
	<category: 'creation'>
	asp := anAsp
    ]

    onSctpData: aBlock [
	<category: 'creation'>
	on_data := aBlock
    ]

    onSctpReleased: aBlock [
	<category: 'creation'>
	on_released := aBlock
    ]

    hostname [
	<category: 'management'>
	^'localhost'
    ]

    port [
	<category: 'management'>
	^0
    ]

    start [
	"Nothing"

	<category: 'management'>
	on_connect value
    ]

    stop [
	<category: 'management'>
	on_released value
    ]

    nextPut: aMsg [
	as onData: aMsg
    ]

    sendToAsp: aMsg [
	on_data 
	    value: nil
	    value: nil
	    value: 2
	    value: aMsg
    ]
]

TestCase subclass: M2UAApplicationServerProcessTest [
    
    <comment: 'A M2UAApplicationServerProcessTest is a test class for testing the behavior of M2UAApplicationServerProcess'>
    <category: 'OsmoNetwork-M2UA-Tests'>

    testCreation [
	| asp |
	asp := M2UAApplicationServerProcess new
		    onAspActive: [];
		    onAspDown: [];
		    onAspInactive: [];
		    onAspUp: [];
		    onStateChange: [];
		    onError: [:msg | ];
		    onNotify: [:type :ident | ];
		    onSctpEstablished: [];
		    onSctpReleased: [];
		    onSctpRestarted: [];
		    onSctpStatus: [];
		    yourself
    ]

    testStateTransitions [
	| mock as asp |
	mock := SCTPNetworkServiceMock new.
	as := M2UAASMock new
		    socketService: mock;
		    yourself.
	asp := M2UAApplicationServerProcess initWith: mock.
	mock
	    applicationServer: as;
	    applicationServerProcess: asp.

	"This works as the mock will handle this synchronously"
	self assert: asp state = M2UAAspStateDown.
	asp
	    sctpEstablish;
	    aspUp.
	self assert: asp state = M2UAAspStateInactive.

	"Now bring it down and up again"
	asp aspDown.
	self assert: asp state = M2UAAspStateDown.
	asp
	    aspUp;
	    aspActive.
	self assert: asp state = M2UAAspStateActive.
	asp aspDown.
	self assert: asp state = M2UAAspStateDown.
	asp
	    aspUp;
	    aspActive;
	    aspInactive.
	self assert: asp state = M2UAAspStateInactive.
	asp sctpRelease.
	self assert: asp state = M2UAAspStateDown
    ]
]

TestCase subclass: M2UAAspStateMachineTest [
    
    <comment: 'A M2UAAspStateMachineTest is a test class for testing the behavior of M2UAAspStateMachine'>
    <category: 'OsmoNetwork-M2UA-Tests'>

    testLegalTransitions [
	| machine |
	machine := M2UAAspStateMachine new.
	self assert: machine state = M2UAAspStateDown.
	machine aspUp: 'Link is up'.
	self assert: machine state = M2UAAspStateInactive.
	machine aspActive: 'Active'.
	self assert: machine state = M2UAAspStateActive.
	machine aspInactive: 'Inactive'.
	self assert: machine state = M2UAAspStateInactive.
	machine aspActive: 'Active'.
	self assert: machine state = M2UAAspStateActive.
	machine sctpCdi: 'Connection is gone'.
	self assert: machine state = M2UAAspStateDown
    ]
]