Commit 1ff70558 authored by garciay's avatar garciay
Browse files

Add Routing table TCs

parent fdf730de
Loading
Loading
Loading
Loading
+16 −0
Original line number Diff line number Diff line
@@ -3,6 +3,9 @@
 *  @version    $Id$
 *  @desc       This module defines the ATS interface
 */
    /**
     * @desc Does the IUT support port range conifguration?
     */
module Ats6RD_Pics {
    
    /**
@@ -20,6 +23,19 @@ module Ats6RD_Pics {
     */
    modulepar boolean PICS_PORT_RANGE := false;
    
    /**
     * @desc Does the IUT authorize ICMP echo request/response?
     */
    modulepar boolean PICS_ICMP_ECHO_REQUEST := false;
    
    /**
     * @desc Does the IUT support GRT upstream ingress & VRF upstream egress?
     */
    modulepar boolean PICS_RT_GRT_UPSTREAM_VRF_UPSTREAM := false;
    
    /**
     * @desc Does the IUT support VRF upstream ingress & GRT upstream egress?
     */
    modulepar boolean PICS_RT_VRF_UPSTREAM_GRT_UPSTREAM := false;
    
} // End of module Ats6RD_Pics
 No newline at end of file
+338 −18

File changed.

Preview size limit exceeded, changes collapsed.

+520 −511
Original line number Diff line number Diff line
@@ -5,10 +5,13 @@
 */
module Ats6RD_TestControl {
    
    import from Ats6RD_Pics all;
    import from Ats6RD_TestCases all;
    
    control {
        
        if (PICS_ROLE_IS_CPE) {
            
            /**
             * @desc Check that IUT sends a DHCPv4 Request to the DHCPv4 Server after initialization
             * @reference ETSI TS 101 569-1 Clause 6.8.9.3 Feature: 6RD Configuration
@@ -166,6 +169,10 @@ module Ats6RD_TestControl {
             */
            execute(TC_6RD_CPE_TI_BV_001());
            
        }
        
        if (PICS_ROLE_IS_BR) {
            
            /**
             * @desc Check that the IUT supports the functionality of 6RD base NAT 
             * @verdict pass on success, inconc on timeout, fail otherwise
@@ -522,6 +529,8 @@ module Ats6RD_TestControl {
             */
            execute(TC_6RD_BR_AW_BV_003());
            
        }
        
    } // End of 'control' statement
    
} // End of module Ats6RD_TestControl