Commit a22e4331 authored by Rennoch's avatar Rennoch
Browse files

Merge branch 'STF574' of https://forge.etsi.org/rep/vxlte/vxlte-iop into STF574

parents faf1d06a a4736625
Loading
Loading
Loading
Loading

.gitignore

0 → 100644
+5 −0
Original line number Diff line number Diff line
.project
.settings
.classpath
.metadata

.project

deleted100644 → 0
+0 −40
Original line number Diff line number Diff line
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
	<name>STF574_vxlte-iop</name>
	<comment></comment>
	<projects>
		<project>Abstract_Socket_CNL113384</project>
	</projects>
	<buildSpec>
		<buildCommand>
			<name>org.eclipse.jdt.core.javabuilder</name>
			<arguments>
			</arguments>
		</buildCommand>
		<buildCommand>
			<name>com.testingtech.ttworkbench.ttthree.modelBuilder</name>
			<arguments>
			</arguments>
		</buildCommand>
		<buildCommand>
			<name>org.eclipse.xtext.ui.shared.xtextBuilder</name>
			<arguments>
			</arguments>
		</buildCommand>
		<buildCommand>
			<name>com.testingtech.ttworkbench.ttthree.todoBuilder</name>
			<arguments>
			</arguments>
		</buildCommand>
		<buildCommand>
			<name>com.testingtech.ttworkbench.ttthree.tt3pluginbuilder</name>
			<arguments>
			</arguments>
		</buildCommand>
	</buildSpec>
	<natures>
		<nature>com.testingtech.ttworkbench.core.ttcn3nature</nature>
		<nature>org.eclipse.xtext.ui.shared.xtextNature</nature>
		<nature>org.eclipse.jdt.core.javanature</nature>
	</natures>
</projectDescription>
+23 −1
Original line number Diff line number Diff line
/* ETSI Software License
* As long as the here under conditions are respected, non-exclusive permission is hereby granted,
* free of charge, to use, reproduce and modify this software source code, under the following conditions:
* This source code is provided AS IS with no warranties, express or implied, including but not limited to,
* the warranties of merchant ability, fitness for a particular purpose and warranties for non-infringement
* of intellectual property rights.
* ETSI shall not be held liable in any event for any direct or indirect damages whatsoever (including, without
* limitation, damages for loss of profits, business interruption, loss of information, or any other pecuniary
* loss) arising out of or related to the use of or inability to use the source code.
* This permission is granted to facilitate the implementation of the related ETSI standard, provided that
* ETSI is given the right to use, reproduce and amend the modified source code under the same conditions
* as the present permission.
* This permission does not apply to any documentation associated with this source code for which ETSI keeps
* all rights reserved.
* The present ETSI Source Code license shall be included in all copies of whole or part of this source code
* and shall not imply any sub-license right.
* (c) ETSI 2019-2020 
*/
 
 
 Package Diameter_Common {
    Domain {
        pics: 
@@ -20,6 +40,8 @@ Package Diameter_Common {
            - detachment
            - invokes
            - create_session_request
            - delete_session_request
            - termination_SIP_signalling_session
            // CX DIAMETER Requests/Answers
            - UAA
            - UAR
+108 −38
Original line number Diff line number Diff line
@@ -441,7 +441,7 @@ Package TP_GM {
        Test objective  "Verify that the P-CSCF successfully processes a user de-registration."
        
        Reference 
            "ETSI TS 124 229 [2], Clause 5.2.5.1 and Clause 6.2"
            "ETSI TS 124 229 [2], Clause 5.2.5.1 and Clause 6.1"
        
        Config Id CF_VxLTE_INT
        
@@ -475,7 +475,7 @@ Package TP_GM {
        Test objective  "Verify that the P-CSCF successfully processes a user de-registration."
        
        Reference 
            "ETSI TS 124 229 [2], Clause 5.2.5.1 and Clause 6.2"
            "ETSI TS 124 229 [2], Clause 5.2.5.1 and Clause 6.1"
        
        Config Id CF_VxLTE_RMI
        
@@ -595,6 +595,76 @@ Package TP_GM {
            }
    } // End of TP_GM_PCSCF_SUBSCRIBE_02
    
    Test Purpose {
        
        TP Id TP_GM_PCSCF_NOTIFY_01
        
        Test objective  "Verify that the P-CSCF successfully processes a NOTIFY in case of IMS Administrative de-registration."
        
        Reference 
            "ETSI TS 124 229 [2], Clause 5.1.2.1 and Clause 6.1.1 and Clause 6.1.2"
        
        Config Id CF_VxLTE_INT
        
        PICS Selection NONE
        
        Initial conditions with {
            the UE_A entity isAttachedTo the EPC_A and
            the UE_A entity isRegisteredTo the IMS_A
        }
        
        Expected behaviour
            ensure that {
                when {
                    the IMS_S_CSCF_A entity isRequestedToSend a NOTIFY containing
                        Event indicating value "reg,de-reg"
                    ;
                }
                then {
                    the IMS_P_CSCF_A entity sends an NOTIFY containing
                        Event indicating value "reg,de-reg"
                        // TODO To be continued
                        ;
                     from the UE_A entity
                }
            }
    } // End of TP_GM_PCSCF_NOTIFY_01
    
    Test Purpose {
        
        TP Id TP_GM_PCSCF_200OK_01
        
        Test objective  "Verify that the P-CSCF successfully processes a 200 (OK) NOTIFY (IMS Administrative de-registration)."
        
        Reference 
            "ETSI TS 124 229 [2], clauses 5.1.3 and 6.1.1"
        
        Config Id CF_VxLTE_INT
        
        PICS Selection  NONE
        
        Initial conditions with {
            the UE_A entity isAttachedTo the EPC_A and
            the UE_B entity isAttachedTo the EPC_B and
            the UE_A entity isRegisteredTo the IMS_A and
            the UE_B entity isRegisteredTo the IMS_B
        }
        
        Expected behaviour
            ensure that { 
                when {
                    the IMS_S_CSCF_A entity isRequestedToSend a NOTIFY containing
                        Event indicating value "reg,de-reg"
                    ;
                }
                then {
                    the UE_A entity sends a 200_Ok
                    to the IMS_P_CSCF_A entity
                }
            }
        
    } // End of TP_GM_PCSCF_200OK_01
    
    Test Purpose {
        
        TP Id TP_GM_PCSCF_INVITE_01
@@ -604,7 +674,7 @@ Package TP_GM {
        Test objective  "Verify that the P-CSCF successfully processes an initial INVITE (Originating Leg)."
        
        Reference 
            "ETSI TS 124 229 [2], clauses 5.1.3 and 6.1.1"
            "ETSI TS 124 229 [2], Clause 5.2.7.2 and Clause 5.4.4.1 and Clause 5.4.4.2 and Clause 6.1"
        
        Config Id CF_VxLTE_INT
        
@@ -650,7 +720,7 @@ Package TP_GM {
        Test objective  "Verify that the P-CSCF successfully processes an initial INVITE (Terminating Leg)."
        
        Reference 
            "ETSI TS 124 229 [2], clauses 5.1.4 and 6.1.1"
            "ETSI TS 124 229 [2], Clause 5.2.7.3 and Clause 6.1"
        
        Config Id CF_VxLTE_INT
        
@@ -696,7 +766,7 @@ Package TP_GM {
        Test objective  "Verify that the P-CSCF successfully processes an initial INVITE (Originating Leg)."
        
        Reference 
            "ETSI TS 124 229 [2], clauses 5.1.3 and 6.1.1"
            "ETSI TS 124 229 [2], Clause 5.2.7.2 and Clause 6.1"
        
        Config Id CF_VxLTE_RMI
        
@@ -742,7 +812,7 @@ Package TP_GM {
        Test objective  "Verify that the P-CSCF successfully processes an initial INVITE (Terminating Leg)."
        
        Reference 
            "ETSI TS 124 229 [2], clauses 5.1.4 and 6.1.1"
            "ETSI TS 124 229 [2], Clause 5.2.7.3 and Clause 6.1"
        
        Config Id CF_VxLTE_RMI
        
@@ -758,7 +828,7 @@ Package TP_GM {
        Expected behaviour
            ensure that {
                when {
                    the UE_A entity isRequestedToSend an INVITE
                    the UE_B entity isRequestedToSend an INVITE
                }
                then {
                    the IMS_P_CSCF_A entity sends an INVITE containing
@@ -788,7 +858,7 @@ Package TP_GM {
        Test objective  "Verify that the P-CSCF successfully processes a 100 (Trying) provisional response on initial INVITE (Originating Leg)."
        
        Reference 
            "ETSI TS 124 229 [2], clauses 5.1.3 and 6.1.1"
            "ETSI TS 124 229 [2], Clause 5.3.5 and Clause 6.1"
        
        Config Id CF_VxLTE_INT
        
@@ -823,7 +893,7 @@ Package TP_GM {
        Test objective  "Verify that the P-CSCF successfully processes a 100 (Trying) provisional response on initial INVITE (Originating Leg)."
        
        Reference 
            "ETSI TS 124 229 [2], clauses 5.1.4 and 6.1.1"
            "ETSI TS 124 229 [2], Clause 5.3.5 and Clause 6.1"
        
        Config Id CF_VxLTE_INT
        
@@ -873,7 +943,7 @@ Package TP_GM {
        Test objective  "Verify that the P-CSCF successfully processes a 100 (Trying) provisional response on initial INVITE (Originating Leg)."
        
        Reference 
            "ETSI TS 124 229 [2], clauses 5.1.3 and 6.1.1"
            "ETSI TS 124 229 [2], Clause 5.3.5 and Clause 6.1"
        
        Config Id CF_VxLTE_INT
        
@@ -908,7 +978,7 @@ Package TP_GM {
        Test objective  "Verify that the P-CSCF successfully processes a 100 (Trying) provisional response on initial INVITE (Originating Leg)."
        
        Reference 
            "ETSI TS 124 229 [2], clauses 5.1.4 and 6.1.1"
            "ETSI TS 124 229 [2], Clause 5.3.5 and Clause 6.1"
        
        Config Id CF_VxLTE_RMI
        
@@ -958,7 +1028,7 @@ Package TP_GM {
        Test objective  "Verify that the P-CSCF successfully processes a 180 (Ringing) provisional response on initial INVITE (Originating Leg)."
        
        Reference 
            "ETSI TS 124 229 [2], clauses 5.1.3 and 6.1.1"
            "ETSI TS 124 229 [2], Clause 5.3.5 and Clause 6.1"
        
        Config Id CF_VxLTE_INT
        
@@ -997,7 +1067,7 @@ Package TP_GM {
        Test objective  "Verify that the P-CSCF successfully processes a 180 (Ringing) provisional response on initial INVITE (Terminating Leg)."
        
        Reference 
            "ETSI TS 124 229 [2], clauses 5.1.4 and 6.1.1"
            "ETSI TS 124 229 [2], Clause 5.3.5 and Clause 6.1"
        
        Config Id CF_VxLTE_INT
        
@@ -1053,7 +1123,7 @@ Package TP_GM {
        Test objective  "Verify that the P-CSCF successfully processes a 180 (Ringing) provisional response on initial INVITE (Originating Leg)."
        
        Reference 
            "ETSI TS 124 229 [2], clauses 5.1.3 and 6.1.1"
            "ETSI TS 124 229 [2], Clause 5.3.5 and Clause 6.1"
        
        Config Id CF_VxLTE_RMI
        
@@ -1092,7 +1162,7 @@ Package TP_GM {
        Test objective  "Verify that the P-CSCF successfully processes a 180 (Ringing) provisional response on initial INVITE (Terminating Leg)."
        
        Reference 
            "ETSI TS 124 229 [2], clauses 5.1.4 and 6.1.1"
            "ETSI TS 124 229 [2], Clause 5.3.5 and Clause 6.1"
        
        Config Id CF_VxLTE_RMI
        
@@ -1710,7 +1780,7 @@ Package TP_GM {
        Test objective  "Verify that the P-CSCF successfully processes a BYE (Originating Leg)."
        
        Reference 
            "ETIS TS 124 229 [2] Clause 5.1.5 (1st paragraph), Clause 5.2.8.2, Clause 6.2"
            "ETIS TS 124 229 [2] Clause 5.1.5 (1st paragraph), Clause 5.2.8.2, Clause 6.1"
        
        Config Id CF_VxLTE_INT
        
@@ -1753,7 +1823,7 @@ Package TP_GM {
        Test objective  "Verify that the P-CSCF successfully processes a BYE (Terminating Leg)."
        
        Reference 
            "ETIS TS 124 229 [2] Clause 5.1.5 (1st paragraph), Clause 5.2.8.2, Clause 6.2"
            "ETIS TS 124 229 [2] Clause 5.1.5 (1st paragraph), Clause 5.2.8.2, Clause 6.1"
        
        Config Id CF_VxLTE_INT
        
@@ -1796,7 +1866,7 @@ Package TP_GM {
        Test objective  "Verify that the P-CSCF successfully processes a BYE (Network initiated)."
        
        Reference 
            "ETIS TS 124 229 [2] Clause 5.1.5 (1st paragraph), Clause 5.2.8.2, Clause 6.2"
            "ETIS TS 124 229 [2] Clause 5.1.5 (1st paragraph), Clause 5.2.8.2, Clause 6.1"
        
        Config Id CF_VxLTE_INT
        
@@ -1839,7 +1909,7 @@ Package TP_GM {
        Test objective  "Verify that the P-CSCF successfully processes a BYE (Originating Leg)."
        
        Reference 
            "ETIS TS 124 229 [2] Clause 5.1.5 (1st paragraph), Clause 5.2.8.2, Clause 6.2"
            "ETIS TS 124 229 [2] Clause 5.1.5 (1st paragraph), Clause 5.2.8.2, Clause 6.1"
        
        Config Id CF_VxLTE_RMI
        
@@ -1882,7 +1952,7 @@ Package TP_GM {
        Test objective  "Verify that the P-CSCF successfully processes a BYE (Terminating Leg)."
        
        Reference 
            "ETIS TS 124 229 [2] Clause 5.1.5 (1st paragraph), Clause 5.2.8.2, Clause 6.2"
            "ETIS TS 124 229 [2] Clause 5.1.5 (1st paragraph), Clause 5.2.8.2, Clause 6.1"
        
        Config Id CF_VxLTE_RMI
        
@@ -1925,7 +1995,7 @@ Package TP_GM {
        Test objective  "Verify that the P-CSCF successfully processes a BYE (Network initiated)."
        
        Reference 
            "ETIS TS 124 229 [2] Clause 5.1.5 (1st paragraph), Clause 5.2.8.2, Clause 6.2"
            "ETIS TS 124 229 [2] Clause 5.1.5 (1st paragraph), Clause 5.2.8.2, Clause 6.1"
        
        Config Id CF_VxLTE_RMI
        
@@ -1966,7 +2036,7 @@ Package TP_GM {
        Test objective  "Verify that the P-CSCF successfully processes a 200 (OK) BYE (Originating Leg)."
        
        Reference 
            "ETSI TS 124 229 [2], ETIS TS 124 229 [2] Clause 5.1.5, Clause 6.2"
            "ETSI TS 124 229 [2], ETIS TS 124 229 [2] Clause 5.1.5, Clause 6.1"
        
        Config Id CF_VxLTE_INT
        
@@ -2008,7 +2078,7 @@ Package TP_GM {
        Test objective  "Verify that the P-CSCF successfully processes a 200 (OK) BYE (Terminating Leg)."
        
        Reference 
            "ETSI TS 124 229 [2], ETIS TS 124 229 [2] Clause 5.1.5, Clause 6.2"
            "ETSI TS 124 229 [2], ETIS TS 124 229 [2] Clause 5.1.5, Clause 6.1"
        
        Config Id CF_VxLTE_INT
        
@@ -2050,7 +2120,7 @@ Package TP_GM {
        Test objective  "Verify that the P-CSCF successfully processes a 200 (OK) BYE (Terminating Leg)."
        
        Reference 
            "ETSI TS 124 229 [2], ETIS TS 124 229 [2] Clause 5.1.5, Clause 6.2"
            "ETSI TS 124 229 [2], ETIS TS 124 229 [2] Clause 5.1.5, Clause 6.1"
        
        Config Id CF_VxLTE_INT
        
@@ -2088,7 +2158,7 @@ Package TP_GM {
        Test objective  "Verify that the P-CSCF successfully processes a CANCEL (Originating Leg)."
        
        Reference 
            "ETSI TS 124 229 [2], Clause 5.1.3 and Clause 6.2"
            "ETSI TS 124 229 [2], Clause 5.1.3 and Clause 6.1"
        
        Config Id CF_VxLTE_INT
        
@@ -2130,7 +2200,7 @@ Package TP_GM {
        Test objective  "Verify that the P-CSCF successfully processes a CANCEL (Terminating Leg)."
        
        Reference 
            "ETSI TS 124 229 [2], Clause 5.1.3 and Clause 6.2"
            "ETSI TS 124 229 [2], Clause 5.1.3 and Clause 6.1"
        
        Config Id CF_VxLTE_INT
        
@@ -2172,7 +2242,7 @@ Package TP_GM {
        Test objective  "Verify that the P-CSCF successfully processes a CANCEL (Originating Leg)."
        
        Reference 
            "ETSI TS 124 229 [2], Clause 5.1.3 and Clause 6.2"
            "ETSI TS 124 229 [2], Clause 5.1.3 and Clause 6.1"
        
        Config Id CF_VxLTE_INT
        
@@ -2214,7 +2284,7 @@ Package TP_GM {
        Test objective  "Verify that the P-CSCF successfully processes a CANCEL (Terminating Leg)."
        
        Reference 
            "ETSI TS 124 229 [2], Clause 5.1.3 and Clause 6.2"
            "ETSI TS 124 229 [2], Clause 5.1.3 and Clause 6.1"
        
        Config Id CF_VxLTE_RMI
        
@@ -2257,7 +2327,7 @@ Package TP_GM {
        Test objective  "Verify that the P-CSCF successfully processes a 200 (OK) CANCEL (Originating Leg)."
        
        Reference 
            "ETSI TS 124 229 [2], Clause 5.1.3 and Clause 6.2"
            "ETSI TS 124 229 [2], Clause 5.1.3 and Clause 6.1"
        
        Config Id CF_VxLTE_INT
        
@@ -2296,7 +2366,7 @@ Package TP_GM {
        Test objective  "Verify that the P-CSCF successfully processes a 200 (OK) CANCEL (Terminating Leg)."
        
        Reference 
            "ETSI TS 124 229 [2], Clause 5.1.3 and Clause 6.2"
            "ETSI TS 124 229 [2], Clause 5.1.3 and Clause 6.1"
        
        Config Id CF_VxLTE_INT
        
@@ -2425,7 +2495,7 @@ Package TP_GM {
        Test objective  "Verify that the P-CSCF successfully processes a 486 INVITE (busy) to reject call (Originating Leg)."
        
        Reference 
            "ETSI TS 124 229 [2], Clause 5.1.3 and Clause 6.2"
            "ETSI TS 124 229 [2], Clause 5.1.3 and Clause 6.1"
        
        Config Id CF_VxLTE_INT
        
@@ -2467,7 +2537,7 @@ Package TP_GM {
        Test objective  "Verify that the P-CSCF successfully processes a 486 INVITE (busy) to reject call (Terminating Leg)."
        
        Reference 
            "ETSI TS 124 229 [2], Clause 5.1.3 and Clause 6.2"
            "ETSI TS 124 229 [2], Clause 5.1.3 and Clause 6.1"
        
        Config Id CF_VxLTE_INT
        
@@ -2509,7 +2579,7 @@ Package TP_GM {
        Test objective  "Verify that the P-CSCF successfully processes a 486 INVITE (busy) to reject call (Originating Leg)."
        
        Reference 
            "ETSI TS 124 229 [2], Clause 5.1.3 and Clause 6.2"
            "ETSI TS 124 229 [2], Clause 5.1.3 and Clause 6.1"
        
        Config Id CF_VxLTE_RMI
        
@@ -2551,7 +2621,7 @@ Package TP_GM {
        Test objective  "Verify that the P-CSCF successfully processes a 486 INVITE (busy) to reject call (Terminating Leg)."
        
        Reference 
            "ETSI TS 124 229 [2], Clause 5.1.3 and Clause 6.2"
            "ETSI TS 124 229 [2], Clause 5.1.3 and Clause 6.1"
        
        Config Id CF_VxLTE_RMI
        
@@ -2592,7 +2662,7 @@ Package TP_GM {
        Test objective  "Verify that the P-CSCF successfully processes a 487 INVITE (Request Terminated) (Originating Leg)."
        
        Reference 
            "ETSI TS 124 229 [2], Clause 5.1.3 and Clause 6.2"
            "ETSI TS 124 229 [2], Clause 5.1.3 and Clause 6.1"
        
        Config Id CF_VxLTE_INT
        
@@ -2633,7 +2703,7 @@ Package TP_GM {
        Test objective  "Verify that the P-CSCF successfully processes a 487 INVITE (Request Terminated) (Terminating Leg)."
        
        Reference 
            "ETSI TS 124 229 [2], Clause 5.1.3 and Clause 6.2"
            "ETSI TS 124 229 [2], Clause 5.1.3 and Clause 6.1"
        
        Config Id CF_VxLTE_INT
        
@@ -2677,7 +2747,7 @@ Package TP_GM {
        Test objective  "Verify that the P-CSCF successfully processes a 487 INVITE (Request Terminated) (Originating Leg)."
        
        Reference 
            "ETSI TS 124 229 [2], Clause 5.1.3 and Clause 6.2"
            "ETSI TS 124 229 [2], Clause 5.1.3 and Clause 6.1"
        
        Config Id CF_VxLTE_RMI
        
@@ -2718,7 +2788,7 @@ Package TP_GM {
        Test objective  "Verify that the P-CSCF successfully processes a 487 INVITE (Request Terminated) (Terminating Leg)."
        
        Reference 
            "ETSI TS 124 229 [2], Clause 5.1.3 and Clause 6.2"
            "ETSI TS 124 229 [2], Clause 5.1.3 and Clause 6.1"
        
        Config Id CF_VxLTE_RMI
        
+162 −8

File changed.

Preview size limit exceeded, changes collapsed.

Loading