Update Robot Framework format - step 15
[integration/test.git] / csit / suites / daexim / 040-export-inclusions.robot
1 *** Settings ***
2 Documentation       Test suite for verifying basic export with inclusions
3
4 Resource            ../../libraries/DaeximKeywords.robot
5
6 Suite Setup         ClusterManagement Setup
7 Suite Teardown      Delete All Sessions
8
9
10 *** Test Cases ***
11 Create Module Include Export
12     [Documentation]    schedule a basic export/backup with applied inclusion pattern
13     [Tags]    inclusions    export
14     # Module is just included
15     ${file1}    DaeximKeywords.Schedule Include Export
16     ...    ${FIRST_CONTROLLER_INDEX}
17     ...    config
18     ...    network-topology
19     ...    ${FALSE}
20     ${lines1}    OperatingSystem.Grep File    ${file1}    network-topology:
21     Builtin.Should Not Be Empty    ${lines1}
22     # Module is both included and excluded
23     ${file1}    DaeximKeywords.Schedule Include Export
24     ...    ${FIRST_CONTROLLER_INDEX}
25     ...    config
26     ...    network-topology
27     ...    ${TRUE}
28     ${lines1}    OperatingSystem.Grep File    ${file1}    network-topology:
29     Builtin.Should Be Empty    ${lines1}