TP_IC.tplan2 23.4 KB
Newer Older
/*
Copyright (c) ETSI 2019.

This software is subject to copyrights owned by ETSI. Non-exclusive permission
is hereby granted, free of charge, to copy, reproduce and amend this file
under the following conditions: It is provided "as is", without warranty of any
kind, expressed or implied.

ETSI shall never be liable for any claim, damages, or other liability arising
from its use or inability of use.This permission does not apply to any documentation
associated with this file for which ETSI keeps all rights reserved. The present
copyright notice shall be included in all copies of whole or part of this
file and shall not imply any sub-license right.
*/


Package TP_IC {
	
    import all from Sip_Common;	
	 
    Test Purpose {
        TP Id TP_IC_IBCF_GC_01
        
        Test objective  "IMS CN components shall support SIP messages > 1 300 bytes"
               
        Reference 
          "TS 124 229 (V15.6.0) [1], clause 4.2A"  
        
        Config Id CFG_IC_01
                  
        PICS Selection PICS_1
        
        Initial conditions with {
            the UE_A entity isRegisteredTo the IMS_A and
            the NW_UE_B entity isAttachedTo the IMS_A
        }

        Expected behaviour
            ensure that {
                when {
                    the UE_A entity sends a MESSAGE   
                       containing  Message_Body_Size indicating value greater than 1300 bytes ;
                    to the IMS_A entity
                }
                then {
                    the IMS_A entity forwards the MESSAGE to the NW_UE_B entity
                }
            }  
    }  // End of TP TP_IC_IBCF_GC_01
    
    
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 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 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 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696


  /*  TO BE FINALIZED IF/WHEN REFERENCED IN THE TEST DESCRIPTION PART  */
 /* Test Purpose {
        TP Id  TP_IC_PCSCF_REG_001   // Previous TP_IMS_5011_01  
    Test objective 
        "In case of IMS AKA as security mechanism the P-CSCF shall forward 
         REGISTER requests received from the UE to the entry point in the 
         home network"
    Reference
        "TS 124 229 (V15.06.0) [1], clause 5.2.2.1 ¶16 (2nd numbered list) and 5.2.2.2"
    Config Id CFG_IC_01   
    Initial conditions with {
            the IMS_A entity isNotConfiguredForTopologyHiding and
            the UE_B entity isExistingIn the IMS_B
            
        }
        
    }  */
     // End of Test purpose TP_IC_PCSCF_REG_001

    
    
    
  
    Test Purpose {
        TP Id  TP_IC_IBCF_INVITE_01     // Former TP_IMS_5097_01
        Test objective 
               "S-CSCF shall insert orig-ioi parameter, remove access-network-charging-info parameter 
                and P-Access-Network-Info header before sending initial INVITE or a initial request over NNI"
        Reference
            "TS 124 229 (V15.06.0) [1], clause 5.4.3.2 ¶11 (1st numbered list)"
        Config Id  CFG_IC_01
        
        PICS Selection  PICS_1
        
        Initial conditions with {
            the UE_A entity isRegisteredTo the IMS_A and 
            the NW_UE_B entity isRegisteredTo the IMS_B and 
            the IMS_A entity isNotConfiguredForTopologyHiding
        }
        
        Expected behaviour 
            ensure that { 
                when { 
                    the UE_A entity sends an intial INVITE "addressed to NW_UE_B" to the IMS_A entity  
                }
                then {
                    the IMS_A entity forwards the initial INVITE containing
                        RouteHeader containing
                            not  "S-CSCF SIP URI of IMS A" 
                        ;  ,
                        PChargingVectorHeader containing
                            "icid-value parameter",
                            "orig-ioi parameter" containing
                            "IMS A"
                        ;  ,
                        not "access network charging info parameter",
                        not "term-ioi parameter"
                        ;  ,
                        RecordRouteHeader containing
                        "originating S-CSCF SIP URI"
                        ;  ,
                        not "P-Access-Network-Info header"
                    ;
                    to the NW_UE_B entity
                }
            }
        
    } // End of TP TP_IC_IBCF_INVITE_01
        




    Test Purpose {
        TP Id  TP_IC_IBCF_INVITE_02     // Former TP_IMS_5097_02
        Test objective 
               "S-CSCF inserts a second P-Asserted-Identity header indicating a registered tel URI 
                or sip URI whichever is not present in initial INVITE"
        Reference
            "TS 124 229 (V15.06.0) [1], clause 5.4.3.2 ¶9 (item 9 1st numbered list)"
        Config Id  CFG_IC_01
        
        PICS Selection  PICS_1
        
        Initial conditions with {
            the UE_A entity isRegisteredTo the IMS_A and 
            the NW_UE_B entity isRegisteredTo the IMS_B and 
            the IMS_A entity registeredIdentityTelURI and 
            the IMS_A entity registeredIdentitySipURI
        }
        
        Expected behaviour
            ensure that { 
                when { 
                    the UE_A entity sends an intial INVITE "addressed to NW_UE_B" to the IMS_A entity  
                }
                then {
                    the IMS_A entity forwards the initial INVITE containing
                        P_Asserted_Identity_Header containing
                            "the SIP URI of UE A" 
                        ;  ,
                        P_Asserted_Identity_Header containing
                            "the TEL URI of UE A"
                        ;  
                    ;
                    to the NW_UE_B entity
                }
            }
        
    } // End of TP TP_IC_IBCF_INVITE_02
    
    

    
/*   TO BE CORRECTED

    Test Purpose {
        TP Id  TP_IC_SCSCF_INVITE_03     // Former TP_IMS_5097_04
        Test objective 
               "S-CSCF uses ENUM/DNS to translate Tel URIs to SIP URIs in initial INVITE requests"
        Reference
            "TS 124 229 (V15.06.0) [1], clause 5.4.3.2 (item 10 1st numbered list)"
        Config Id  CFG_IC_02
        
        PICS Selection  PICS_1
        
        Initial conditions with {
            the UE_A entity isRegisteredTo the IMS_A and 
            the UE_B entity isRegisteredTo the NW_UE_B and 
            the Enum_DB entity isConfiguredWithENUMentryForTelURI_E164NumberOf the UE_B 
        }
        
        Expected behaviour
            ensure that { 
                when { 
                    the UE_A entity sends an intial INVITE "addressed to UE_B" containing
                        Request_URI containing
                            "a Tel URI"
                        ; 
                    ; 
                    to the IMS_A entity
                    and the IMS_A entity sends intial INVITE 
                           
                        
                    to the Enum_DB entity
                }
                then {
                    the IMS_A entity forwards the initial INVITE containing
                        Request URI containing
                            "a SIP URI of UE B" 
                        ;  ,
                        P_Charging_Vector_header containing
                            "an access network charging info parameter"
                        ;  
                    ;
                    to the NW_UE_B entity
                }
            }
        
    } // End of TP_IC_SCSCF_INVITE_03

 */


    Test Purpose {
        TP Id  TP_IC_IBCF_INVITE_04     // Former TP_IMS_5046_01
        Test objective 
               "When the P-CSCF receives an initial INVITE request for a dialog from a UE for which a Service-
                Route header list exists without topology hiding and the UE is not performing the functions of 
                an external attached network using static mode of operation"
        Reference
            "TS 124 229 (V15.06.0) [1], clause 5.2.6.3.3 (1st numbered list)"
        Config Id  CFG_IC_03
        
        PICS Selection  PICS_1
        
        Initial conditions with {
            the UE_A entity isRegisteredTo the IMS_A and 
            the UE_B entity isRegisteredTo the IMS_B and 
            the IMS_A entity isNotConfiguredForTopologyHiding
        }
        
        Expected behaviour
            ensure that { 
                when { 
                    the UE_B entity sends an intial INVITE "addressed to UE_A" to the IMS_A entity  
                }
                then {
                    the IMS_A entity forwards the initial INVITE containing
                        Route_Header 
                            not indicating value "the P-CSCF SIP URI of IMS_A" 
                          ,
                        Route_Header 
                            indicating value "the list of Service Route header URIs from registration" ,
                            
                        Via_Header containing
                            P_CSCF_via_port_number ,
                            P_CSCF_FQDN_address "or" 
                            P_CSCF_IP_address_of_IMS_A
                        ; ,
                        Record_Route_Header containing
                            P_CSCF_port_number_where_IMS_A_awaits_subsequent_requests_from_UE_A ,
                            P_CSCF_FQDN_address "or" 
                            P_CSCF_IP_address_of_IMS_A
                        ; ,
                        not P_Preferred_Identity_Header ,
                        P_Asserted_Identity_Header 
                            indicating value "an address of UE_B" ,
                        P_Charging_Vector_Header
                            indicating value "an icid_value paramater"
                    ;
                    to the IMS_B entity
                }
            }
        
    } // End of TP TP_IC_IBCF_INVITE_04




    Test Purpose {  // Former TP TP_IMS_5115_01
        TP Id  TP_IC_IBCF_180RESP_01
        Test objective
            "S-CSCF include term-ioi parameter and restores orig-ioi in 180 
             responses from UE to initial requests in terminating network"
        Reference
            "TS 124 229 (V15.06.0) [1], clause 5.4.3.3  (item 2 in 3rd numbered list)"
            
        Config Id CFG_IC_02
        
        PICS Selection  PICS_1
        
        Initial conditions with {
            the UE_A entity isRegisteredTo the IMS_A and
            the UE_B entity isRegisteredTo the IMS_B and
            the UE_B entity hasReceivedIntialRequestForDialog from the UE_A entity 
        }
        
        Expected behaviour
            ensure that {
                when {
                    the UE_B entity sends a 180 response "addressed to UE_A" to the IMS_B entity 
                }
                then {
                    the IMS_B entity sends the 180 response containing
                        P_Charging_Vector_Header containing 
                           orig_ioi_parameter 
                               indicating value "Operator Identifier Of ImsA" ,
                           term_ioi_parameter 
                               indicating value "Operator Identifier Of ImsB"
                        ;
                    ; 
                    to the IMS_A entity 
                }

        }
    }  // End of TP TP_IC_IBCF_180RESP_01



    Test Purpose {  // Former TP TP_IMS_5131_01
        TP Id  TP_IC_IBCF_180RESP_02
        Test objective
            "I-CSCF shall remove P-Charging-Function-Addresses header from 180 response to initial request"
        Reference
        "TS 124 229 (V15.06.0) [1], clause 5.3.2.1 (paragraph after note 10)"
            
        Config Id CFG_IC_02
        
        PICS Selection  PICS_1
        
        Initial conditions with {
            the UE_A entity isRegisteredTo the IMS_A and
            the UE_B entity isRegisteredTo the IMS_B and
            the UE_B entity hasReceivedIntialRequestForDialog from the UE_A entity 
        }
        
        Expected behaviour
            ensure that {
                when {
                    the UE_B entity sends a 180 response "addressed to UE_A" to the IMS_B entity  
                }
                then {
                    the IMS_B entity sends the 180 response containing
                       not P_Charging_Vector_Header
                    ;
                    to the IMS_A entity 
                }

        }
    }  // End of TP TP_IC_IBCF_180RESP_02





    Test Purpose {  // Former TP TP_IMS_5115_03
        TP Id  TP_IC_IBCF_1XXRESP_01
        Test objective
            "S-CSCF inserts a second P-Asserted-Identity header in 1xx response indicating a 
             registered tel URI or SIP URI whichever is not present"
        Reference
            "TS 124 229 (V15.06.0) [1], clause 5.4.3.3 (item 3 in 3rd numbered list)"
            
        Config Id CFG_IC_02
        
        PICS Selection  PICS_1
        
        Initial conditions with {
            the UE_A entity isRegisteredTo the IMS_A and
            the UE_B entity isRegisteredTo the IMS_B and
            the UE_B entity registeredPublicIdsWithTelUriAndSipUri and
            the UE_B entity hasReceivedIntialRequestForDialog from the UE_A entity 
        }
        
        Expected behaviour
            ensure that {
                when {
                    the UE_B entity sends a 180 response "addressed to UE_A" to the IMS_B entity 
                }
                then {
                    the IMS_B entity sends the 180 response containing
                       P_Asserted_Identity_header 
                            indicating value "the SIP URI of UE_B" ,
                       P_Asserted_Identity_header 
                            indicating value "the Tel URI of the UE_B"
                    ;
                    to the IMS_A entity 
                }

        }
    }  // End of TP TP_IC_IBCF_1XXRESP_01

 

    Test Purpose {  // Former TP TP_IMS_5115_02
        TP Id  TP_IC_IBCF_2XXRESP_01
        Test objective
            "S-CSCF include term-ioi parameter and restores orig-ioi in 2xx 
             responses from UE to initial requests in terminating network"
        Reference
            "TS 124 229 (V15.06.0) [1], clause 5.4.3.3 (item 2 in 3rd numbered list)"
            
        Config Id CFG_IC_02
        
        PICS Selection  PICS_1
        
        Initial conditions with {
            the UE_A entity isRegisteredTo the IMS_A and
            the UE_B entity isRegisteredTo the IMS_B and
            the UE_A entity hasReceived180OnInitialRequest from the UE_B entity 
        }
        
        Expected behaviour
            ensure that {
                when {
                    the UE_B entity sends a 200 response "addressed to UE_A" to the IMS_B entity 
                }
                then {
                    the IMS_B entity sends the 200 response containing
                        P_Charging_Vector_Header containing 
                           orig_ioi_parameter 
                               indicating value "Operator Identfier Of IMS_A" ,
                           term_ioi_parameter 
                               indicating value "Operator Identifier Of IMS_B"
                        ;
                    ; 
                    to the IMS_A entity 
                }

        }
    }  // End of TP TP_IC_IBCF_2XXRESP_01



    Test Purpose {  // Former TP TP_IMS_5115_04
        TP Id  TP_IC_IBCF_2XXRESP_02
        Test objective
            "S-CSCF inserts a second P-Asserted-Identity header in 1xx response indicating a 
             registered tel URI or SIP URI whichever is not present"
        Reference
            "TS 124 229 (V15.06.0) [1], clause 5.4.3.3 (item 3 in 3rd numbered list)"
            
        Config Id CFG_IC_02
        
        PICS Selection  PICS_1
        
        Initial conditions with {
            the UE_A entity isRegisteredTo the IMS_A and
            the UE_B entity isRegisteredTo the IMS_B and
            the UE_B entity registeredPublicIdsWithTelUriAndSipUri and
            the UE_A entity hasReceived180OnInitialRequest from the UE_B entity 
        }
        
        Expected behaviour
            ensure that {
                when {
                    the UE_B entity sends a 200 response "addressed to UE_A" to the IMS_B entity  
                }
                then {
                    the IMS_B entity sends the 200 response containing
                       P_Asserted_Identity_header 
                            indicating value "the SIP URI of UE_B" ,
                       P_Asserted_Identity_header 
                            indicating value "the Tel URI of the UE_B"
                    ;
                    to the IMS_A entity 
                }
        }
    }  // End of TP TP_IC_IBCF_2XXRESP_02







    Test Purpose {  // Former TP TP_IMS_5121_02
        TP Id  TP_IC_IBCF_2XXRESP_04
        Test objective
            "S-CSCF remove access-network-charging-info parameter from 2xx response to subsequent or target refresh requests"
            
        Reference
            "TS 124 229 (V15.06.0) [1], clause 5.4.3.3 (9th numbered list)"
            
        Config Id CFG_IC_02
        
        PICS Selection  PICS_1
        
        Initial conditions with {
            the UE_A entity isRegisteredTo the IMS_A and
            the UE_B entity isRegisteredTo the IMS_B and
            the UE_B entity hasReceivedSubsequentOrTargetRefreshRequestInDialog 
        }
        
        Expected behaviour
            ensure that {
                when {
                    the UE_B entity sends a 200 response "addressed to UE_A" to the IMS_B entity  
                }
                then {
                    the IMS_B entity sends the 200 response containing
                       P_Charging_Vector_header containing 
                            not access_network_charging_info parameter
                       ;
                    ;
                    to the IMS_A entity 
                }
        }
    }  // End of TP TP_IC_IBCF_2XXRESP_04





    Test Purpose {  // Former TP TP_IMS_5106_01
        TP Id  TP_IC_IBCF_REINVITE_01
        Test objective
            "S-CSCF shall handle subsequent INVITE prior to sending it over NNI"
        Reference
            "TS 124 229 (V15.06.0) [1], clause 5.4.3.2 (6th numbered list)"
            
        Config Id CFG_IC_01
        
        PICS Selection  PICS_1
        
        Initial conditions with {
            the UE_A entity isRegisteredTo the IMS_A and
            the UE_B entity isRegisteredTo the IMS_B and
            the UE_A entity hasInitiatedDialogWith the UE_B
        }
        
        Expected behaviour
            ensure that {
                when {
                    the UE_A entity sends a subsequent INVITE "addressed to UE_B" to the IMS_A entity  
                }
                then {
                    the IMS_A entity sends the subsequent INVITE containing
                       Record_Route_header indicating value 
                            "the S-CSCF SIP URI of IMS A" ,
                       P_Charging_Vector_header indicating value 
                         not access_network_charging_info
                    ;
                    to the IMS_B entity 
                }
        }
    }  // End of TP TP_IC_IBCF_REINVITE_01








    Test Purpose {  // Former TP TP_IMS_5131_02
        TP Id  TP_IC_IBCF_2XXRESP_03
        Test objective
            "I-CSCF shall remove P-Charging-Function-Addresses header from 200 response to initial request"
        Reference
        "TS 124 229 (V15.06.0) [1], clause 5.3.2.1 (paragraph after note 10)"
            
        Config Id CFG_IC_02
        
        PICS Selection  PICS_1
        
        Initial conditions with {
            the UE_A entity isRegisteredTo the IMS_A and
            the UE_B entity isRegisteredTo the IMS_B and
            the UE_B entity hasReceivedIntialRequestForDialog from the UE_A entity 
        }
        
        Expected behaviour
            ensure that {
                when {
                    the UE_B entity sends a 200 response "addressed to UE_A" to the IMS_B entity  
                }
                then {
                    the IMS_B entity sends the 200 response containing
                       not P_Charging_Vector_Header
                    ;
                    to the IMS_A entity 
                }

        }
    }  // End of TP TP_IC_IBCF_2XXRESP_03












    Test Purpose {
        TP Id  TP_IC_IBCF_BYE_01     // Former TP_IMS_5107_01
        Test objective 
               "S-CSCF removes its own SIP URI from the route header before sending BYE"
        Reference
            "TS 124 229 (V15.06.0) [1], clause 5.4.3.2 (item 1 in 7th numbered list)"
        Config Id  CFG_IC_01
        
        PICS Selection  PICS_1
        
        Initial conditions with {
            the UE_A entity isRegisteredTo the IMS_A and 
            the NW_UE_B entity isRegisteredTo the IMS_B and 
            the IMS_A entity hasInitiatedDialogWith the NW_UE_B 
        }
        
        Expected behaviour 
            ensure that { 
                when { 
                    the UE_A entity sends a BYE "addressed to NW_UE_B" to the IMS_A entity  
                }
                then {
                    the IMS_A entity forwards the BYE containing
                        RouteHeader containing
                            not  "the S-CSCF SIP URI of IMS A" 
                        ;    
                    ;
                    to the NW_UE_B entity
                }
            }
        
    } // End of TP TP_IC_IBCF_BYE_01


    Test Purpose {
        TP Id  TP_IC_IBCF_ACK_01     // Former TP_IMS_5107_02
        Test objective 
               "S-CSCF removes its own SIP URI from the route header before sending ACK"
        Reference
            "TS 124 229 (V15.06.0) [1], clause 5.4.3.2 (item 1 in 7th numbered list)"
        Config Id  CFG_IC_01
        
        PICS Selection  PICS_1
        
        Initial conditions with {
            the UE_A entity isRegisteredTo the IMS_A and 
            the NW_UE_B entity isRegisteredTo the IMS_B and 
            the IMS_A entity hasReceived200OkOnInitialRequestForDialogWith the NW_UE_B 
        }
        
        Expected behaviour 
            ensure that { 
                when { 
                    the UE_A entity sends an ACK "addressed to NW_UE_B" to the IMS_A entity  
                }
                then {
                    the IMS_A entity forwards the ACK containing
                        RouteHeader containing
                            not  "the S-CSCF SIP URI of IMS A" 
                        ;    
                    ;
                    to the NW_UE_B entity
                }
            }
        
    } // End of TP TP_IC_IBCF_BYE_01


    Test Purpose {
        TP Id  TP_IC_IBCF_100TRY_01     // Former TP_IMS_5070_01
        Test objective 
               "The P-CSCF shall respond with a 100 (Trying) provisional response on initial INVITE in 
                terminating network"
        Reference
            "TS 124 229 (V15.06.0) [1], clause 5.2.7.3"
        Config Id  CFG_IC_03
        
        PICS Selection  PICS_1
        
        Initial conditions with {
            the UE_A entity isRegisteredTo the IMS_A and 
            the UE_B entity isRegisteredTo the IMS_B  
        }
        
        Expected behaviour
            ensure that { 
                when { 
                    the UE_B entity sends an intial INVITE "addressed to UE_A" to the IMS_A entity  
                }
                then {
                    the IMS_A entity sends a 100 response 
                    to the IMS_B entity
                }
            }
        
    } // End of TP TP_IC_IBCF_100TRY_01




    
}  // End of Package TP_IC