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
/*
* @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);
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
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);
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
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
));
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);
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
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);
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_ACTF_MGMT_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,
mw_pChargingVector(-, { tokenOrHost := "orig-ioi" }), // TODO To be refined during validation
mw_PAssertedID(
mw_PAssertedIDValue(PX_SCCAS_URI)
)
)) {
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
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(
-, -,
mw_pChargingVector(-, { tokenOrHost := "orig-ioi" }), // 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);
f_selfOrClientSyncAndVerdict(c_prDone, f_getVerdict()); // sync
// Registration
f_setHeaders_REGISTER(v_cSeq_s);
v_contact := valueof(vc_contact);
v_contact.contactBody.contactAddresses[0].contactParams := { // TODO To be refined during validation
{
"g.3gpp.atcf-mgmt-uri",
{tokenOrHost := PX_ACTF_MGMT_URI}
},
{
"g.3gpp.path",
{tokenOrHost := PX_ACTF_URI}
}
};
f_SendREGISTER(
m_sccas_register(
vc_requestUri,
vc_callId,
vc_cSeq,
vc_from,
vc_to,
vc_via_REG,
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
{"sip-uri", { tokenOrHost := PX_ACTF_MGMT_URI }}
})*/, // TODO To be refined during validation
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
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
group TP_6_3_5_Providing_SRVCC_To_MSC {
/**
* @desc Verify that the SCCAS successfully provide CS to PS SRVCC information
* @param p_cSeq_s Random CSeq REGISTER number
*/
function f_TC_ISC_SCCAS_RSC_REG_06_ueims(in CSeq p_cSeq_s)
runs on ImsComponent {
// Local variables
var CSeq v_cSeq_s := p_cSeq_s;
var Contact v_contact;
// Preambule
f_init_userprofile(c_userProfile_UE1atSUThome);
f_initSipUrl(c_serviceProfile_EMERGENCY);
f_init_interfaceprofile(c_interfaceProfile_IMS_SUT_PCSCF1);
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
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
f_selfOrClientSyncAndVerdict(c_prDone, f_getVerdict()); // sync
// Registration
f_setHeaders_REGISTER(v_cSeq_s);
v_contact := valueof(vc_contact);
v_contact.contactBody.contactAddresses[0].contactParams := { // TODO To be refined during validation
{
"g.3gpp.icsi-ref",
{tokenOrHost := PX_ICSI_URI}
}
};
f_SendREGISTER(
m_sccas_register(
vc_requestUri,
vc_callId,
vc_cSeq,
vc_from,
vc_to,
vc_via_REG,
v_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_ACTF_MGMT_URI }}
})
})*/, // TODO To be refined during validation
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,
mw_pChargingVector(-, { tokenOrHost := "orig-ioi" }), // TODO To be refined during validation
mw_PAssertedID(
mw_PAssertedIDValue(PX_SCCAS_URI)
), // TODO To be refined during validation
mw_acceptContact(
{ // TODO To be refined during validation
{
"g.3gpp.path-media",
{tokenOrHost := PX_ICSI_URI}
}
}
)
)) {
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_06_ueims
function f_TC_ISC_SCCAS_RSC_REG_06_msc(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(
-, -,
mw_pChargingVector(-, { tokenOrHost := "orig-ioi" }), // 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 function f_TC_ISC_SCCAS_RSC_REG_06_msc
} // End of group TP_6_3_5_Providing_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