basic bmp suite added
[integration/test.git] / csit / suites / bgpcep / bgpfunct / 050_bmp_basic.robot
1 *** Settings ***
2 Documentation     Basic tests for odl-bgpcep-bmp feature
3 ...
4 ...               Copyright (c) 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 ...               This is a basic suite for bgp monitoring protocol feature.
11 ...               After the feature odl-bgpcep-bmp installation the port 12345 should be
12 ...               bound for listening,
13 ...               To test this feature bgp-bmp-mock tool is used. It is a part of the
14 ...               bgpcep project. It is a java tool which simulates more peers and more
15 ...               routers.
16 ...               In this particular test suite it simulates 1 peer with 1 router, which
17 ...               means it advertizes one peer ipv4 address towards odl. As a result one
18 ...               route should appear in the restconf/operational/bmp-monitor:bmp-monitor.
19 Suite Setup       Set_It_Up
20 Suite Teardown    Tear_It_Down
21 Library           SSHLibrary
22 Library           RequestsLibrary
23 Resource          ${CURDIR}/../../../libraries/NexusKeywords.robot
24 Resource          ${CURDIR}/../../../libraries/Utils.robot
25 Resource          ${CURDIR}/../../../libraries/TemplatedRequests.robot
26
27 *** Variables ***
28 ${CONFIG_SESSION}    config-session
29 ${BGP_BMP_DIR}    ${CURDIR}/../../../variables/bgpfunctional/bmp_basic
30 ${BMP_LOG_FILE}    bmpmock.log
31
32 *** Test Cases ***
33 Start_Bmp_Mock
34     [Documentation]    Starts bmp-mock on tools vm
35     ${command}=    NexusKeywords.Compose_Full_Java_Command    -jar ${filename} --local_address ${TOOLS_SYSTEM_IP} --remote_address ${ODL_SYSTEM_IP} --routers_count 1 --peers_count 1 --log_level DEBUG 2>&1 | tee ${BMP_LOG_FILE}
36     BuiltIn.Log    ${command}
37     SSHLibrary.Set_Client_Configuration    timeout=30s
38     SSHLibrary.Write    ${command}
39     SSHLibrary.Read_Until    successfully established.
40
41 Verify Data Reported
42     [Documentation]    Verifies if the tool reported expected data
43     &{mapping}    BuiltIn.Create_Dictionary    TOOL_IP=${TOOLS_SYSTEM_IP}
44     BuiltIn.Wait_Until_Keyword_Succeeds    3x    2s    TemplatedRequests.Get_As_Json_Templated    folder=${BGP_BMP_DIR}    mapping=${mapping}    session=${CONFIG_SESSION}
45     ...    verify=True
46
47 Stop_Bmp_Mock
48     [Documentation]    Send ctrl+c to bmp-mock to stop it
49     Utils.Write_Bare_Ctrl_C
50     ${output}=    SSHLibrary.Read_Until_Prompt
51     BuiltIn.Log    ${output}
52
53 *** Keywords ***
54 Set_It_Up
55     [Documentation]    Create SSH session to ToolsVm, prepare HTTP client session to Controller.
56     ...    Figure out latest pcc-mock version and download it from Nexus to ToolsVm.
57     NexusKeywords.Initialize_Artifact_Deployment_And_Usage
58     RequestsLibrary.Create_Session    ${CONFIG_SESSION}    http://${ODL_SYSTEM_IP}:${RESTCONFPORT}    auth=${AUTH}
59     ${name}=    NexusKeywords.Deploy_Test_Tool    bgpcep    bgp-bmp-mock
60     BuiltIn.Set_Suite_Variable    ${filename}    ${name}
61
62 Tear_It_Down
63     [Documentation]    Download pccmock.log and Log its contents.
64     ...    Compute and Log the diff between expected and actual normalized responses.
65     ...    Close both HTTP client session and SSH connection to Mininet.
66     SSHLibrary.Get_File    ${BMP_LOG_FILE}
67     ${cnt}=    OperatingSystem.Get_File    ${BMP_LOG_FILE}
68     Log    ${cnt}
69     Delete_All_Sessions
70     Close_All_Connections