Newer
Older
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
/*
* @author TTF T016
* @version $Id$
* @desc This module provides the TCfunctions used by the test component
* for SCCAS tests.
*/
module AtsSccas_TCFunctions {
// XSD support
import from XSD all;
// LibCommon
import from LibCommon_Sync all;
import from LibCommon_VerdictControl all;
import from LibCommon_DataStrings all;
// LibSip
import from LibSip_SIPTypesAndValues all;
import from LibSip_SDPTypes all;
import from LibSip_Templates all;
import from LibSip_Steps all;
import from LibSip_Interface all;
import from LibSip_PIXITS all;
// LibIms
import from LibIms_Templates all;
import from LibIms_Steps all;
import from LibIms_SIPTypesAndValues all;
import from LibIms_Interface all;
// AtsSccas
// import from AtsSccas_TestSystem all;
import from AtsSccas_Templates all;
import from AtsSccas_Steps all;
import from AtsSccas_PICS all;
import from AtsSccas_PIXITS all;
group Group_6_3 {
group TP_6_3_1_General {
/**
* @desc Verify that the SCCAS successfully obtain/processes 3pty registration information
* @param p_cSeq_s Random CSeq REGISTER number
*/
function f_TC_ISC_SCCAS_RSC_REG_01(in CSeq p_cSeq_s)
runs on ImsComponent {
// Local variables
var CSeq v_cSeq_s := p_cSeq_s;
// Preambule
f_init_userprofile(c_userProfile_UE1atSUThome);
f_initSipUrl(c_serviceProfile_EMERGENCY);
f_init_interfaceprofile(c_interfaceProfile_IMS_SUT_PCSCF1);
action("Please register UE")
f_selfOrClientSyncAndVerdict(c_prDone, f_getVerdict()); // sync
// Registration
f_setHeaders_REGISTER(v_cSeq_s);
f_SendREGISTER(
m_sccas_register(
vc_requestUri,
vc_callId,
vc_cSeq,
vc_from,
vc_to,
vc_via_REG,
vc_contact,
m_add_Authorization_digest(
vc_authorization,
{c_Integrity_protected_no}
),
PX_IMS_SUT_SCSCF_IPADDR, // TODO To be refined during validation
PX_IMS_SUT_SCSCF_PORT, // TODO To be refined during validation
"600000",
-,
m_contentType(c_sdpApplication), // TODO To be refined during validation
m_MBody_SDP(vc_sdp_local) // TODO To be refined during validation
));
tc_ack.start;
alt {
[] SIPP.receive(mw_sccas_Response_2xxonREGISTER(vc_callId, vc_cSeq, vc_from, vc_to, vc_via_REG, vc_contact)) {
tc_ack.stop;
log("*** " & __SCOPE__ & ": PASS: 200 OK message was received ***");
f_selfOrClientSyncAndVerdict(c_tbDone, e_success); // sync
}
[] tc_ack.timeout {
f_selfOrClientSyncAndVerdict(c_tbDone, e_error); // sync
}
}
// TODO Deregistration?
f_selfOrClientSyncAndVerdict(c_poDone, f_getVerdict()); // sync
} // End of function f_TC_ISC_SCCAS_RSC_REG_01
/**
* @desc Verify that the SCCAS successfully obtain/processes de-registration information (Expires=0)
* @param p_cSeq_s Random CSeq REGISTER number
*/
function f_TC_ISC_SCCAS_RSC_REG_02(in CSeq p_cSeq_s)
runs on ImsComponent {
// Local variables
var CSeq v_cSeq_s := p_cSeq_s;
// Preambule
f_init_userprofile(c_userProfile_UE1atSUThome);
f_initSipUrl(c_serviceProfile_EMERGENCY);
f_init_interfaceprofile(c_interfaceProfile_IMS_SUT_PCSCF1);
action("Please register UE")
f_selfOrClientSyncAndVerdict(c_prDone, f_getVerdict()); // sync
// Registration
f_setHeaders_REGISTER(v_cSeq_s);
f_SendREGISTER(
m_sccas_register(
vc_requestUri,
vc_callId,
vc_cSeq,
vc_from,
vc_to,
vc_via_REG,
vc_contact,
omit,
PX_IMS_SUT_SCSCF_IPADDR, // TODO To be refined during validation
PX_IMS_SUT_SCSCF_PORT, // TODO To be refined during validation
"0"
));
tc_ack.start;
alt {
[] SIPP.receive(mw_sccas_Response_2xxonREGISTER(vc_callId, vc_cSeq, vc_from, vc_to, vc_via_REG, vc_contact)) {
tc_ack.stop;
log("*** " & __SCOPE__ & ": PASS: 200 OK message was received ***");
f_selfOrClientSyncAndVerdict(c_tbDone, e_success); // sync
}
[] tc_ack.timeout {
f_selfOrClientSyncAndVerdict(c_tbDone, e_error); // sync
}
}
// TODO Deregistration?
f_selfOrClientSyncAndVerdict(c_poDone, f_getVerdict()); // sync
} // End of function f_TC_ISC_SCCAS_RSC_REG_02
} // End of group TP_6_3_1_General
group TP_6_3_2_Triggers_To_ATCF {
/**
* @desc Verify that the SCCAS successfully obtain/processes SRVCC information
* @param p_cSeq_s Random CSeq REGISTER number
*/
function f_TC_ISC_SCCAS_RSC_REG_03(in CSeq p_cSeq_s)
runs on ImsComponent {
// Local variables
var CSeq v_cSeq_s := p_cSeq_s;
// Preambule
f_init_userprofile(c_userProfile_UE1atSUThome);
f_initSipUrl(c_serviceProfile_EMERGENCY);
f_init_interfaceprofile(c_interfaceProfile_IMS_SUT_PCSCF1);
action("Please register UE")
f_selfOrClientSyncAndVerdict(c_prDone, f_getVerdict()); // sync
// Registration
f_setHeaders_REGISTER(v_cSeq_s);
f_SendREGISTER(
m_sccas_register(
vc_requestUri,
vc_callId,
vc_cSeq,
vc_from,
vc_to,
vc_via_REG,
vc_contact,
m_add_Authorization_digest(
vc_authorization,
{c_Integrity_protected_no}
),
PX_IMS_SUT_SCSCF_IPADDR, // TODO To be refined during validation
PX_IMS_SUT_SCSCF_PORT, // TODO To be refined during validation
"600000",
m_sccas_featureCaps({m_fcValue("g3gppAtcfFeatureCapabilityIndicator")}),
m_contentType(c_sdpApplication), // TODO To be refined during validation
m_MBody_SDP(vc_sdp_local) // TODO To be refined during validation
));
tc_ack.start;
alt {
[] SIPP.receive(mw_sccas_Response_2xxonREGISTER(vc_callId, vc_cSeq, vc_from, vc_to, vc_via_REG, vc_contact)) {
tc_ack.stop;
log("*** " & __SCOPE__ & ": PASS: 200 OK message was received ***");
f_selfOrClientSyncAndVerdict(c_tbDone, e_success); // sync
}
[] tc_ack.timeout {
f_selfOrClientSyncAndVerdict(c_tbDone, e_error); // sync
}
}
// TODO Deregistration?
f_selfOrClientSyncAndVerdict(c_poDone, f_getVerdict()); // sync
} // End of function f_TC_ISC_SCCAS_RSC_REG_03
} // End of group TP_6_3_2_Triggers_To_ATCF
group TP_6_3_3_SRVCC_Information_To_ATCF {
/**
* @desc Verify that the SCCAS successfully sends MESSAGE providing PS to CS SRVCC information
* @param p_cSeq_s Random CSeq REGISTER number
*/
function f_TC_ISC_SCCAS_RSC_REG_04_ueims(in CSeq p_cSeq_s)
runs on ImsComponent {
// Local variables
var CSeq v_cSeq_s := p_cSeq_s;
// Preambule
f_init_userprofile(c_userProfile_UE1atSUThome);
f_initSipUrl(c_serviceProfile_EMERGENCY);
f_init_interfaceprofile(c_interfaceProfile_IMS_SUT_PCSCF1);
action("Please register UE")
f_selfOrClientSyncAndVerdict(c_prDone, f_getVerdict()); // sync
// Registration
f_setHeaders_REGISTER(v_cSeq_s);
f_SendREGISTER(
m_sccas_register(
vc_requestUri,
vc_callId,
vc_cSeq,
vc_from,
vc_to,
vc_via_REG,
vc_contact,
m_add_Authorization_digest(
vc_authorization,
{c_Integrity_protected_no}
),
PX_IMS_SUT_SCSCF_IPADDR, // TODO To be refined during validation
PX_IMS_SUT_SCSCF_PORT, // TODO To be refined during validation
"600000",
m_sccas_featureCaps( // TS 124 237 Clause C.6 Definition of feature-capability indicator g.3gpp.atcfmgmt-uri
{
m_fcValue(
"g-3gpp-atcf-mgmt-uri-in-path",
{
{"sip-uri", { tokenOrHost := PX_SIP_URI }}
})
}),
m_contentType(c_sdpApplication), // TODO To be refined during validation
m_MBody_SDP(vc_sdp_local) // TODO To be refined during validation
));
tc_ack.start;
alt {
[] SIPP.receive(mw_sccas_Response_2xxonREGISTER(vc_callId, vc_cSeq, vc_from, vc_to, vc_via_REG, vc_contact)) {
tc_ack.stop;
log("*** " & __SCOPE__ & ": PASS: 200 OK message was received ***");
f_selfOrClientSyncAndVerdict(c_tbDone, e_success); // sync
}
[] tc_ack.timeout {
f_selfOrClientSyncAndVerdict(c_tbDone, e_error); // sync
}
}
// TODO Deregistration?
f_selfOrClientSyncAndVerdict(c_poDone, f_getVerdict()); // sync
} // End of function f_TC_ISC_SCCAS_RSC_REG_04_ueims
function f_TC_ISC_SCCAS_RSC_REG_04_atcf(in CSeq p_cSeq_s)
runs on ImsComponent {
// Local variables
var CSeq v_cSeq_s := p_cSeq_s;
// Preambule
f_init_userprofile(c_userProfile_UE1atSUThome);
f_initSipUrl(c_serviceProfile_EMERGENCY);
f_init_interfaceprofile(c_interfaceProfile_IMS_SUT_PCSCF1);
f_selfOrClientSyncAndVerdict(c_prDone, f_getVerdict()); // sync
// Message
LibIms_Steps.f_setHeadersMESSAGE(v_cSeq_s, vc_from.addressField.addrSpecUnion, vc_to.addressField.addrSpecUnion);
f_awaitingMESSAGE(
mw_sccas_MESSAGE_Request(
-, -, -, -, // TODO To be refined during validation
m_contentType("application/vnd.3gpp.SRVCC-info+xml"), // TODO To be refined during validation
? // TODO To be refined during validation
)
);
f_selfOrClientSyncAndVerdict(c_tbDone, f_getVerdict()); // sync
// Answer to the MESSAGE
f_send200OK();
f_selfOrClientSyncAndVerdict(c_poDone, f_getVerdict()); // sync
} // End of function f_TC_ISC_SCCAS_RSC_REG_04_atcf
} // End of group TP_6_3_3_SRVCC_Information_To_ATCF
group TP_6_3_4_Trigger_SRVCC_To_MSC {
/**
* @desc Verify that the SCCAS successfully get CS to PS SRVCC information
* @param p_cSeq_s Random CSeq REGISTER number
*/
function f_TC_ISC_SCCAS_RSC_REG_05_ueims(in CSeq p_cSeq_s)
runs on ImsComponent {
// Local variables
var CSeq v_cSeq_s := p_cSeq_s;
// Preambule
f_init_userprofile(c_userProfile_UE1atSUThome);
f_initSipUrl(c_serviceProfile_EMERGENCY);
f_init_interfaceprofile(c_interfaceProfile_IMS_SUT_PCSCF1);
action("Please register UE")
f_selfOrClientSyncAndVerdict(c_prDone, f_getVerdict()); // sync
// Registration
f_setHeaders_REGISTER(v_cSeq_s);
f_SendREGISTER(
m_sccas_register(
vc_requestUri,
vc_callId,
vc_cSeq,
vc_from,
vc_to,
vc_via_REG,
vc_contact,
m_add_Authorization_digest(
vc_authorization,
{c_Integrity_protected_no}
),
PX_IMS_SUT_SCSCF_IPADDR, // TODO To be refined during validation
PX_IMS_SUT_SCSCF_PORT, // TODO To be refined during validation
"600000",
m_sccas_featureCaps( // TS 124 237 Clause C.6 Definition of feature-capability indicator g.3gpp.atcfmgmt-uri
{
m_fcValue(
"g-3gpp-atcf-mgmt-uri-in-path",
{
{"sip-uri", { tokenOrHost := PX_SIP_URI }}
})
}),
m_contentType(c_sdpApplication), // TODO To be refined during validation
m_MBody_SDP(vc_sdp_local) // TODO To be refined during validation
));
tc_ack.start;
alt {
[] SIPP.receive(mw_sccas_Response_2xxonREGISTER(vc_callId, vc_cSeq, vc_from, vc_to, vc_via_REG, vc_contact)) {
tc_ack.stop;
log("*** " & __SCOPE__ & ": PASS: 200 OK message was received ***");
f_selfOrClientSyncAndVerdict(c_tbDone, e_success); // sync
}
[] tc_ack.timeout {
f_selfOrClientSyncAndVerdict(c_tbDone, e_error); // sync
}
}
// TODO Deregistration?
f_selfOrClientSyncAndVerdict(c_poDone, f_getVerdict()); // sync
} // End of function f_TC_ISC_SCCAS_RSC_REG_05_ueims
function f_TC_ISC_SCCAS_RSC_REG_05_msc(in CSeq p_cSeq_s)
runs on ImsComponent {
f_selfOrClientSyncAndVerdict(c_prDone, f_getVerdict()); // sync
// Registration
f_selfOrClientSyncAndVerdict(c_tbDone, f_getVerdict()); // sync
// deregistration
f_selfOrClientSyncAndVerdict(c_poDone, f_getVerdict()); // sync
} // end function f_TC_ISC_SCCAS_RSC_REG_05_msc
} // End of group TP_6_3_4_Trigger_SRVCC_To_MSC
} // End of group Group_6_3
group Group_6A_4 {
} // End of group Group_6A_4
group Group_7_3 {
} // End of group Group_7_3
group Group_8_3 {
} // End of group Group_8_3
group Group_9_3 {
} // End of group Group_9_3
group Group_10_3 {
} // End of group Group_10_3
group Group_11_3 {
} // End of group Group_11_3
} // End of module AtsSccas_TCFunctions