Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
Emergency VoLTE Interoperability Tests
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
INT - Core Network and Interoperability Testing
Voice and Video over LTE
Emergency VoLTE Interoperability Tests
Commits
82d02a4c
Commit
82d02a4c
authored
1 year ago
by
Iztok Juvancic
Browse files
Options
Downloads
Patches
Plain Diff
added emergency attach TD
parent
67f8c922
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!6
Update master branch for closing TTF T010
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
ttcn/AtsImsIot/AtsImsIot_Emergency.ttcn
+39
-2
39 additions, 2 deletions
ttcn/AtsImsIot/AtsImsIot_Emergency.ttcn
with
39 additions
and
2 deletions
ttcn/AtsImsIot/AtsImsIot_Emergency.ttcn
+
39
−
2
View file @
82d02a4c
...
...
@@ -106,7 +106,7 @@ module AtsImsIot_Emergency {
* TS 129 272 [8], clause 5.2.1.1 (MME shall proceed even if Update Location fails)
*
*/
testcase
TC_VoLTE_EC
O
_INT_ATT_02
(
)
runs
on
ImsTestCoordinator
system
IotSystemInterface
{
testcase
TC_VoLTE_E
M
C_INT_ATT_02
(
)
runs
on
ImsTestCoordinator
system
IotSystemInterface
{
var
IotEquipmentUser
v_ueA
:=
f_cf_create_IotEquipmentUser
(
c_userUE_A
);
var
ImsUserInfo
v_userInfoA
:=
f_getImUser
(
PX_EUT_A
);
...
...
@@ -128,7 +128,7 @@ module AtsImsIot_Emergency {
// Check that user A starts initial network attachment
f_mtc_check_TP_S6A_MME_ULR_01
(
vc_vxlte_monitor_components
.
s6a
,
true
);
// Check (ULR – Event 2)
f_mtc_check_TP_S6A_HSS_ECO_ULA_01
(
vc_vxlte_monitor_components
.
s6a
);
// Check (ULA – Event 3)
f_mtc_check_TP_GX_PCRF_EC
O
_CCA_0
2
(
vc_vxlte_monitor_components
.
gx
);
// Check (CCR, CCA – Events 4, 5)
f_mtc_check_TP_GX_PCRF_E
M
C_CCA_0
1
(
vc_vxlte_monitor_components
.
gx
);
// Check (CCR, CCA – Events 4, 5)
// postamble
f_mtc_userRadioEnabled
(
v_ueA
,
false
,
true
);
...
...
@@ -1284,7 +1284,44 @@ module AtsImsIot_Emergency {
group
EmergencyNetworkDetachment
{
group
EmergencySessionDetachment
{
/**
* @desc Emergency Network Detachment (with/without) emergency registration
*
* @see
*/
testcase
TC_VoLTE_ECO_INT_DTC_01
(
)
runs
on
ImsTestCoordinator
system
IotSystemInterface
{
var
IotEquipmentUser
v_ueA
:=
f_cf_create_IotEquipmentUser
(
c_userUE_A
);
var
ImsUserInfo
v_userInfoA
:=
f_getImUser
(
PX_EUT_A
);
f_setVxLteMonIterfacesAvailability
();
//Check required monitor interfaces due to TD
if
(
f_checkVxLteRequiredMonitorInterface
({
PX_DIAMETER_GX_INTERFACENAME
})){
f_cf_createVxLteMonitor
();
// map/connect component ports
f_cf_adapter_up
(
);
f_cf_user_up
(
v_ueA
);
f_cf_VxLteMonitor_Up
();
//preamble
f_mtc_userRadioEnabled
(
v_ueA
,
true
,
true
);
// UA-A trigger an initial network_attachment by enabling radio interface of its mobile
f_mtc_userRadioEnabled
(
v_ueA
,
false
,
true
);
// test body
// Check that user A starts initial network attachment
f_mtc_check_TP_GX_PCRF_ECO_CCA_02
(
vc_vxlte_monitor_components
.
gx
,
false
);
// Check (CCA – Event 3)
//postamble
//unmap/disconnect component ports
f_cf_user_down
(
v_ueA
);
f_cf_VxLteMonitor_Down
();
f_cf_adapter_down
(
);
}
else
{
//log...
setverdict
(
inconc
,
"At least one required monitor interface SHALL be selected! Check PIXITs"
)
}
}
// End of TC TC_VoLTE_ECO_INT_DTC_01
}
// End of group EmergencySessionDetachment
}
// End of group EmergencyNetworkDetachment
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment