3f36a12b98da7daf590029b4e00f5e7f6879a262
[integration/test.git] / csit / suites / netconf / CRUD / CRUD.robot
1 *** Settings ***
2 Documentation     netconf-connector CRUD test suite.
3 ...
4 ...               Copyright (c) 2015 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 ...
11 ...               Perform basic operations (Create, Read, Update and Delete or CRUD) on device
12 ...               data mounted onto a netconf connector and see if they work.
13 Suite Setup       Setup_Everything
14 Suite Teardown    Teardown_Everything
15 Test Setup        SetupUtils.Setup_Test_With_Logging_And_Fast_Failing
16 Test Teardown     FailFast.Start_Failing_Fast_If_This_Failed
17 Library           Collections
18 Library           RequestsLibrary
19 Library           OperatingSystem
20 Library           String
21 Library           SSHLibrary    timeout=10s
22 Resource          ${CURDIR}/../../../libraries/FailFast.robot
23 Resource          ${CURDIR}/../../../libraries/KarafKeywords.robot
24 Resource          ${CURDIR}/../../../libraries/NetconfKeywords.robot
25 Resource          ${CURDIR}/../../../libraries/NetconfViaRestconf.robot
26 Resource          ${CURDIR}/../../../libraries/SetupUtils.robot
27 Resource          ${CURDIR}/../../../libraries/Utils.robot
28 Variables         ${CURDIR}/../../../variables/Variables.py
29
30 *** Variables ***
31 ${DIRECTORY_WITH_TEMPLATE_FOLDERS}    ${CURDIR}/../../../variables/netconf/CRUD
32 ${device_name}    netconf-test-device
33
34 *** Test Cases ***
35 Check_Device_Is_Not_Mounted_At_Beginning
36     [Documentation]    Sanity check making sure our device is not there. Fail if found.
37     [Tags]    critical
38     NetconfKeywords.Check_Device_Has_No_Netconf_Connector    ${device_name}
39
40 Mount_Device_On_Netconf
41     [Documentation]    Make request to mount a testtool device on Netconf connector
42     [Tags]    critical
43     NetconfKeywords.Configure_Device_In_Netconf    ${device_name}
44
45 Check_ODL_Has_Netconf_Connector_For_Device
46     [Documentation]    Get the list of mounts and search for our device there. Fail if not found.
47     [Tags]    critical
48     ${count}    NetconfKeywords.Count_Netconf_Connectors_For_Device    ${device_name}
49     Builtin.Should_Be_Equal_As_Strings    ${count}    1
50
51 Wait_For_Device_To_Become_Mounted
52     [Documentation]    Wait until the device becomes available through Netconf.
53     NetconfKeywords.Wait_Device_Connected    ${device_name}
54
55 Check_Device_Data_Is_Empty
56     [Documentation]    Get the device data and make sure it is empty.
57     Check_Config_Data    <data xmlns="${ODL_NETCONF_NAMESPACE}"></data>
58
59 Create_Device_Data
60     [Documentation]    Send some sample test data into the device and check that the request went OK.
61     ${template_as_string}=    BuiltIn.Set_Variable    {'DEVICE_NAME': '${device_name}'}
62     NetconfViaRestconf.Post_Xml_Template_Folder_Via_Restconf    ${DIRECTORY_WITH_TEMPLATE_FOLDERS}${/}dataorig    ${template_as_string}
63
64 Check_Device_Data_Is_Created
65     [Documentation]    Get the device data and make sure it contains the created content.
66     Check_Config_Data    <data xmlns="${ODL_NETCONF_NAMESPACE}"><cont xmlns="urn:opendaylight:test:netconf:crud" xmlns:a="${ODL_NETCONF_NAMESPACE}" a:operation="replace"><l>Content</l></cont></data>
67
68 Modify_Device_Data
69     [Documentation]    Send a request to change the sample test data and check that the request went OK.
70     ${template_as_string}=    BuiltIn.Set_Variable    {'DEVICE_NAME': '${device_name}'}
71     NetconfViaRestconf.Put_Xml_Template_Folder_Via_Restconf    ${DIRECTORY_WITH_TEMPLATE_FOLDERS}${/}datamod1    ${template_as_string}
72
73 Check_Device_Data_Is_Modified
74     [Documentation]    Get the device data and make sure it contains the created content.
75     Check_Config_Data    <data xmlns="${ODL_NETCONF_NAMESPACE}"><cont xmlns="urn:opendaylight:test:netconf:crud" xmlns:a="${ODL_NETCONF_NAMESPACE}" a:operation="replace"><l>Modified Content</l></cont></data>
76
77 Delete_Device_Data
78     [Documentation]    Send a request to delete the sample test data on the device and check that the request went OK.
79     ${template_as_string}=    BuiltIn.Set_Variable    {'DEVICE_NAME': '${device_name}'}
80     NetconfViaRestconf.Delete_Xml_Template_Folder_Via_Restconf    ${DIRECTORY_WITH_TEMPLATE_FOLDERS}${/}datamod1    ${template_as_string}
81
82 Check_Device_Data_Is_Deleted
83     [Documentation]    Get the device data and make sure it is empty again.
84     Check_Config_Data    <data xmlns="${ODL_NETCONF_NAMESPACE}"></data>
85
86 Remove_Device_From_Netconf
87     [Documentation]    Make request to unmount a testtool device on Netconf connector.
88     [Tags]    critical
89     [Setup]    SetupUtils.Setup_Test_With_Logging_And_Without_Fast_Failing
90     NetconfKeywords.Remove_Device_From_Netconf    ${device_name}
91
92 Check_Device_Going_To_Be_Gone_After_Delete
93     [Documentation]    Check that the device is really going to be gone. Fail
94     ...    if found after one minute. This is an expected behavior as the
95     ...    delete request is sent to the config subsystem which then triggers
96     ...    asynchronous destruction of the netconf connector referring to the
97     ...    device and the device's data. This test makes sure this
98     ...    asynchronous operation does not take unreasonable amount of time
99     ...    by making sure that both the netconf connector and the device's
100     ...    data is gone before reporting success.
101     [Tags]    critical
102     NetconfKeywords.Wait_Device_Fully_Removed    ${device_name}
103
104 *** Keywords ***
105 Setup_Everything
106     [Documentation]    Setup everything needed for the test cases.
107     # Setup resources used by the suite.
108     SetupUtils.Setup_Utils_For_Setup_And_Teardown
109     RequestsLibrary.Create_Session    operational    http://${ODL_SYSTEM_IP}:${RESTCONFPORT}${OPERATIONAL_API}    auth=${AUTH}
110     NetconfKeywords.Setup_Netconf_Keywords
111     # Connect to the Mininet machine
112     SSHLibrary.Open_Connection    ${TOOLS_SYSTEM_IP}    prompt=${TOOLS_SYSTEM_PROMPT}
113     Utils.Flexible_Mininet_Login
114     NetconfKeywords.Install_And_Start_Testtool    device-count=10    schemas=${CURDIR}/../../../variables/netconf/CRUD/schemas
115
116 Teardown_Everything
117     [Documentation]    Teardown the test infrastructure, perform cleanup and release all resources.
118     Teardown_Netconf_Via_Restconf
119     RequestsLibrary.Delete_All_Sessions
120     BuiltIn.Run_Keyword_And_Ignore_Error    NetconfKeywords.Stop_Testtool
121
122 Check_Config_Data
123     [Arguments]    ${expected}    ${contains}=False
124     ${url}=    Builtin.Set_Variable    network-topology:network-topology/topology/topology-netconf/node/${device_name}/yang-ext:mount
125     ${data}=    Utils.Get_Data_From_URI    nvr_session    ${url}    headers=${ACCEPT_XML}
126     BuiltIn.Run_Keyword_Unless    ${contains}    BuiltIn.Should_Be_Equal_As_Strings    ${data}    ${expected}
127     BuiltIn.Run_Keyword_If    ${contains}    BuiltIn.Should_Contain    ${data}    ${expected}