Fix bgpcep tcpmd5user test
[integration/test.git] / csit / suites / bgpcep / bgpuser / ibgp_peer_lsp.robot
1 *** Settings ***
2 Documentation     Basic tests for iBGP peers.
3 ...
4 ...               Copyright (c) 2015-2016 Cisco Systems, Inc. and others. All rights reserved.
5 ...
6 ...               This program and the accompanying materials are made available under the
7 ...               terms of the Eclipse Public License v1.0 which accompanies this distribution,
8 ...               and is available at http://www.eclipse.org/legal/epl-v10.html
9 ...
10 ...               Test suite performs basic iBGP functional test case for
11 ...               carrying LSP State Information in BGP as described in
12 ...               http://tools.ietf.org/html/draft-ietf-idr-te-lsp-distribution-03
13 Suite Setup       Setup_Everything
14 Suite Teardown    BgpOperations.Teardown_Everything
15 Test Setup        SetupUtils.Setup_Test_With_Logging_And_Without_Fast_Failing
16 Test Teardown     SetupUtils.Teardown_Test_Show_Bugs_If_Test_Failed
17 Library           OperatingSystem
18 Library           RequestsLibrary
19 Library           DateTime
20 Resource          ../../../libraries/BGPcliKeywords.robot
21 Resource          ../../../libraries/BgpOperations.robot
22 Resource          ../../../libraries/KarafKeywords.robot
23 Resource          ../../../libraries/SetupUtils.robot
24 Resource          ../../../libraries/SSHKeywords.robot
25 Resource          ../../../libraries/TemplatedRequests.robot
26 Resource          ../../../libraries/WaitForFailure.robot
27 Resource          ../../../variables/Variables.robot
28
29 *** Variables ***
30 ${BGP_VARIABLES_FOLDER}    ${CURDIR}/../../../variables/bgpuser/
31 ${COUNT}          1
32 ${HOLDTIME}       180
33 ${BGP_PEER_LOG_FILE}    bgp_peer.log
34 ${BGP_PEER_COMMAND}    python play.py --amount ${COUNT} --myip=${TOOLS_SYSTEM_IP} --myport=${BGP_TOOL_PORT} --peerip=${ODL_SYSTEM_IP} --peerport=${ODL_BGP_PORT} --${BGP_PEER_LOG_LEVEL} --logfile ${BGP_PEER_LOG_FILE} --bgpls True
35 ${BGP_PEER_OPTIONS}    &>${BGP_PEER_LOG_FILE}
36 ${DEFAULT_RIB_CHECK_PERIOD}    1s
37 ${DEFAULT_RIB_CHECK_TIMEOUT}    10s
38 ${BGP_PEER_LOG_LEVEL}    debug
39 ${ODL_LOG_LEVEL}    INFO
40 ${ODL_BGP_LOG_LEVEL}    DEFAULT
41 ${JSONKEYSTR}     "linkstate-route"
42 ${BGP_PEER_NAME}    example-bgp-peer
43 ${DEVICE_NAME}    controller-config
44 ${CONFIG_SESSION}    config-session
45 ${SKIP_PARAMS}    --skipattr
46 ${RIB_INSTANCE}    example-bgp-rib
47 ${PROTOCOL_OPENCONFIG}    ${RIB_INSTANCE}
48
49 *** Test Cases ***
50 TC1_Configure_iBGP_Peer
51     [Documentation]    Configure BGP peer module with initiate-connection set to false.
52     [Tags]    critical
53     &{mapping}    Create Dictionary    DEVICE_NAME=${DEVICE_NAME}    BGP_NAME=${BGP_PEER_NAME}    IP=${TOOLS_SYSTEM_IP}    HOLDTIME=${HOLDTIME}    PEER_PORT=${BGP_TOOL_PORT}
54     ...    INITIATE=false    BGP_RIB=${RIB_INSTANCE}    PASSIVE_MODE=true    BGP_RIB_OPENCONFIG=${PROTOCOL_OPENCONFIG}    RIB_INSTANCE_NAME=${RIB_INSTANCE}
55     TemplatedRequests.Put_As_Xml_Templated    ${BGP_VARIABLES_FOLDER}${/}bgp_peer    mapping=${mapping}    session=${CONFIG_SESSION}
56
57 TC1_Check_Example_Bgp_Rib_Is_Empty
58     [Documentation]    Check RIB for none linkstate-routes
59     [Tags]    critical
60     BgpOperations.Check_Example_Bgp_Rib_Does_Not_Contain    ${CONFIG_SESSION}    ${JSONKEYSTR}
61
62 TC1_Connect_BGP_Peer
63     [Documentation]    Connect BGP peer with advertising the routes without mandatory params like LOC_PREF.
64     [Tags]    critical
65     BuiltIn.Run_Keyword_And_Ignore_Error    KarafKeywords.Log_Message_To_Controller_Karaf    Error = WELL_KNOWN_ATTR_MISSING is EXPECTED in this test case, and should be thrown when missing mandatory attributes.
66     BGPcliKeywords.Start_Console_Tool    ${BGP_PEER_COMMAND} ${SKIP_PARAMS}    ${BGP_PEER_OPTIONS}
67     BGPcliKeywords.Read_And_Fail_If_Prompt_Is_Seen
68
69 TC1_Check_Example_Bgp_Rib
70     [Documentation]    Check RIB for not containig linkstate-route(s), because update messages were not good.
71     [Tags]    critical
72     WaitForFailure.Verify_Keyword_Does_Not_Fail_Within_Timeout    ${DEFAULT_RIB_CHECK_TIMEOUT}    ${DEFAULT_RIB_CHECK_PERIOD}    BgpOperations.Check_Example_Bgp_Rib_Does_Not_Contain    ${CONFIG_SESSION}    ${JSONKEYSTR}
73
74 TC1_Disconnect_BGP_Peer
75     [Documentation]    Stop BGP peer & store logs
76     [Tags]    critical
77     BGPcliKeywords.Stop_Console_Tool
78     BGPcliKeywords.Store_File_To_Workspace    ${BGP_PEER_LOG_FILE}    tc1_${BGP_PEER_LOG_FILE}
79
80 TC1_Deconfigure_iBGP_Peer
81     [Documentation]    Revert the BGP configuration to the original state: without any configured peers.
82     &{mapping}    BuiltIn.Create_Dictionary    DEVICE_NAME=${DEVICE_NAME}    BGP_NAME=${BGP_PEER_NAME}    IP=${TOOLS_SYSTEM_IP}    BGP_RIB_OPENCONFIG=${PROTOCOL_OPENCONFIG}
83     TemplatedRequests.Delete_Templated    ${BGP_VARIABLES_FOLDER}/bgp_peer    mapping=${mapping}    session=${CONFIG_SESSION}
84
85 TC2_Configure_iBGP_Peer
86     [Documentation]    Configures BGP peer module with initiate-connection set to false.
87     &{mapping}    BuiltIn.Create_Dictionary    DEVICE_NAME=${DEVICE_NAME}    BGP_NAME=${BGP_PEER_NAME}    IP=${TOOLS_SYSTEM_IP}    HOLDTIME=${HOLDTIME}    PEER_PORT=${BGP_TOOL_PORT}
88     ...    INITIATE=false    RIB_INSTANCE_NAME=${RIB_INSTANCE}    PASSIVE_MODE=true    BGP_RIB_OPENCONFIG=${PROTOCOL_OPENCONFIG}
89     TemplatedRequests.Put_As_Xml_Templated    ${BGP_VARIABLES_FOLDER}/bgp_peer    mapping=${mapping}    session=${CONFIG_SESSION}
90
91 TC2_Check_Example_Bgp_Rib_Is_Empty
92     [Documentation]    Check RIB for none linkstate-routes
93     [Tags]    critical
94     BgpOperations.Check_Example_Bgp_Rib_Does_Not_Contain    ${CONFIG_SESSION}    ${JSONKEYSTR}
95
96 TC2_Connect_BGP_Peer
97     [Documentation]    Connect BGP peer
98     [Tags]    critical
99     BGPcliKeywords.Start_Console_Tool    ${BGP_PEER_COMMAND}    ${BGP_PEER_OPTIONS}
100     BGPcliKeywords.Read_And_Fail_If_Prompt_Is_Seen
101
102 TC2_Check_Example_Bgp_Rib
103     [Documentation]    Check RIB for linkstate-route(s) and check all of their attributes.
104     [Tags]    critical
105     &{mapping}    BuiltIn.Create_Dictionary    IP=${TOOLS_SYSTEM_IP}
106     BuiltIn.Wait_Until_Keyword_Succeeds    ${DEFAULT_RIB_CHECK_TIMEOUT}    ${DEFAULT_RIB_CHECK_PERIOD}    TemplatedRequests.Get_As_Json_Templated    ${BGP_VARIABLES_FOLDER}/lsp/effective_rib_in    mapping=${mapping}    session=${CONFIG_SESSION}
107     ...    verify=True
108
109 TC2_Disconnect_BGP_Peer
110     [Documentation]    Stop BGP peer & store logs
111     [Tags]    critical
112     BGPcliKeywords.Stop_Console_Tool
113     BGPcliKeywords.Store_File_To_Workspace    ${BGP_PEER_LOG_FILE}    tc2_${BGP_PEER_LOG_FILE}
114
115 TC2_Deconfigure_iBGP_Peer
116     [Documentation]    Revert the BGP configuration to the original state: without any configured peers.
117     &{mapping}    BuiltIn.Create_Dictionary    DEVICE_NAME=${DEVICE_NAME}    BGP_NAME=${BGP_PEER_NAME}    IP=${TOOLS_SYSTEM_IP}    BGP_RIB_OPENCONFIG=${PROTOCOL_OPENCONFIG}
118     TemplatedRequests.Delete_Templated    ${BGP_VARIABLES_FOLDER}/bgp_peer    mapping=${mapping}    session=${CONFIG_SESSION}
119
120 *** Keywords ***
121 Setup_Everything
122     [Documentation]    Initialize SetupUtils. SSH-login to mininet machine, create HTTP session,
123     ...    prepare directories for responses, put Python tool to mininet machine, setup imported resources.
124     SetupUtils.Setup_Utils_For_Setup_And_Teardown
125     SSHLibrary.Set_Default_Configuration    prompt=${TOOLS_SYSTEM_PROMPT}
126     SSHLibrary.Open_Connection    ${TOOLS_SYSTEM_IP}
127     SSHKeywords.Flexible_Mininet_Login
128     SSHKeywords.Require_Python
129     SSHKeywords.Assure_Library_Ipaddr    target_dir=.
130     SSHLibrary.Put_File    ${CURDIR}/../../../../tools/fastbgp/play.py
131     RequestsLibrary.Create_Session    ${CONFIG_SESSION}    http://${ODL_SYSTEM_IP}:${RESTCONFPORT}    auth=${AUTH}
132     KarafKeywords.Setup_Karaf_Keywords
133     KarafKeywords.Execute_Controller_Karaf_Command_On_Background    log:set ${ODL_LOG_LEVEL}
134     KarafKeywords.Execute_Controller_Karaf_Command_On_Background    log:set ${ODL_BGP_LOG_LEVEL} org.opendaylight.bgpcep
135     KarafKeywords.Execute_Controller_Karaf_Command_On_Background    log:set ${ODL_BGP_LOG_LEVEL} org.opendaylight.protocol