blob: 2f80bd14e99dc61cf399bc7cf58befebd03a185a [file] [log] [blame]
Kailash Khalasi72614802018-05-02 09:21:23 -07001*** Settings ***
2Documentation Setup and Teardown Functionality for XOS API Tests
3Library Collections
4Library String
5Library OperatingSystem
6Library XML
7Library RequestsLibrary
8Library HttpLibrary.HTTP
9Library ../Framework/utils/utils.py
10Library ../Framework/restApi.py
11Variables ../Properties/RestApiProperties.py
12
13*** Keywords ***
14Verify API Functionality
15 [Arguments] ${type} ${endpoint} ${data}=${EMPTY} ${data_id}=${EMPTY} ${key}=${EMPTY}
16 Run Keyword If "${type}" == "RETRIEVE" CORD Get ${endpoint} ${data_id} ${data} ${key}
17 Run Keyword If "${type}" == "CREATE" CORD Post ${endpoint} ${data}
18 Run Keyword If "${type}" == "UPDATE" CORD Put ${endpoint} ${data} ${data_id}
19 Run Keyword If "${type}" == "DELETE" CORD Delete ${endpoint} ${data_id}
20
21CORD Get
22 [Documentation] Make a GET call to the CORD controller
23 [Arguments] ${service} ${id} ${value} ${key}
24 ${resp}= Get Request ${SERVER_IP} ${service}/${id}
25 Log ${resp.content}
26 Should Be Equal As Strings ${resp.status_code} 200
27 ${updated_value}= Run Keyword If '${key}' != 'null' Get Json Value ${resp.content} /${key}
28 ${updated_value}= Run Keyword If '${key}' != 'null' Remove String ${updated_value} "
29 Run Keyword If '${key}' != 'null' Should Contain "${value}" ${updated_value}
30 [Return] ${resp}
31
32CORD Post
33 [Documentation] Make a POST call to the CORD controller
34 [Arguments] ${service} ${data}
35 ${data}= Evaluate json.dumps(${data}) json
36 ${resp}= Post Request ${SERVER_IP} uri=${service} data=${data}
37 Log ${resp.content}
38 Should Be Equal As Strings ${resp.status_code} 200
39 ${id}= Get Json Value ${resp.content} /id
40 Set Suite Variable ${id}
41 [Return] ${resp}
42
43CORD Put
44 [Documentation] Make a PUT call to the CORD controller
45 [Arguments] ${service} ${data} ${data_id}
46 ${data}= Evaluate json.dumps(${data}) json
47 ${resp}= Put Request ${SERVER_IP} uri=${service}/${data_id} data=${data}
48 Log ${resp.content}
49 Should Be Equal As Strings ${resp.status_code} 200
50 ${id}= Get Json Value ${resp.content} /id
51 Set Suite Variable ${id}
52 [Return] ${resp}
53
54CORD Delete
55 [Documentation] Make a DELETE call to the CORD controller
56 [Arguments] ${service} ${data_id}
57 ${resp}= Delete Request ${SERVER_IP} uri=${service}/${data_id}
58 Log ${resp.content}
59 Should Be Equal As Strings ${resp.status_code} 200
60 [Return] ${resp}
61
62Generate JSON Data
63 {% for m in proto.messages %}
64 {%- if m.name not in ['XOSBase'] -%}
65 {% autoescape false %}
66 {% endautoescape %}
67 ${json_{{ m.name | lower }}_1}= Set Variable { }
68 ${json_{{ m.name | lower }}_updated_1}= Set Variable { }
69 ${json_{{ m.name | lower}}_updated_key}= Set Variable null
70 Set Suite Variable ${json_{{ m.name | lower}}_updated_key}
71 # set required fields for {{ m.name | lower }} object
72 {% for f in m.fields + xproto_base_fields(m, proto.message_table) -%}
73 {% if f.modifier == "required" -%}
74 {% if f.options.blank == "False" -%}
75 {% if not f.options.default -%}
76 {% if f.link -%}
77 ${tmp_{{ f.options.model | lower }}_id}= Create {{ f.options.model }}
78 ${json_{{ m.name | lower }}_1}= Set Json Value ${json_{{ m.name | lower }}_1} /{{ f.name }}_id ${tmp_{{ f.options.model | lower }}_id}
79 {% else -%}
80 ${json_{{ m.name | lower}}_{{ f.name }}_1}= Generate Random Value {{ f.type }}
81 ${json_{{ m.name | lower }}_1}= Set Json Value ${json_{{ m.name | lower }}_1} /{{ f.name }} "${json_{{ m.name | lower }}_{{ f.name }}_1}"
82 {% if loop.index0 == 0 -%}
83 ${json_{{ m.name | lower}}_updated_key}= Set Variable {{ f.name }}
84 ${json_{{ m.name | lower}}_{{ f.name }}_updated_1}= Generate Random Value {{ f.type }}
85 ${json_{{ m.name | lower }}_updated_1}= Set Json Value ${json_{{ m.name | lower }}_updated__1} /{{ f.name }} "${json_{{ m.name | lower }}_{{ f.name }}_updated_1}"
86 {% endif -%}
87 {% endif -%}
88 {% endif -%}
89 {% endif -%}
90 {% endif -%}
91 {% endfor -%}
92 {% if m.name == "Site" -%}
93 ${json_{{ m.name | lower}}_login_base_tmp}= Set Variable testloginbase
94 ${json_{{ m.name | lower}}_1}= Set Json Value ${json_{{ m.name | lower }}_1} /login_base "${json_{{ m.name | lower }}_login_base_tmp}"
95 {% endif -%}
96 {% if m.name == "Slice" -%}
97 ${json_{{ m.name | lower}}_name}= Generate Random Slice Name
98 ${json_{{ m.name | lower}}_1}= Set Json Value ${json_{{ m.name | lower }}_1} /name "${json_{{ m.name | lower }}_name}"
99 ${json_{{ m.name | lower}}_name_updated_1}= Generate Random Slice Name
100 ${json_{{ m.name | lower}}_updated_1}= Set Json Value ${json_{{ m.name | lower }}_updated_1} /name "${json_{{ m.name | lower}}_name_updated_1}"
101 {% endif -%}
Kailash Khalasidb41afa2018-07-05 15:16:02 -0700102 {% if m.name == "ProgranServiceInstance" -%}
103 ${json_{{ m.name | lower}}_name}= Generate Random Value string
104 ${json_{{ m.name | lower}}_1}= Set Json Value ${json_{{ m.name | lower }}_1} /name "${json_{{ m.name | lower }}_name}"
105 ${json_{{ m.name | lower}}_name_updated_1}= Generate Random Value string
106 ${json_{{ m.name | lower}}_updated_1}= Set Json Value ${json_{{ m.name | lower }}_updated_1} /name "${json_{{ m.name | lower}}_name_updated_1}"
107 {% endif %}
Kailash Khalasi62ab4032018-07-09 14:01:21 -0700108 {% if m.name == "RCORDSubscriber" -%}
Kailash Khalasiad9acf52018-07-12 10:06:06 -0700109 ## Create req objects for subscriber (voltservice -> oltdevice -> ponport -> onudevice)
110 CORD Post /xosapi/v1/volt/voltservices {"name": "testvoltservice123"}
111 CORD Post /xosapi/v1/volt/oltdevices {"volt_service_id": ${id}, "uplink": "testoltdevice123"}
112 CORD Post /xosapi/v1/volt/ponports {"s_tag": "1234", "olt_device_id": ${id}, "port_no": "123", "name": "testponport123"}
Kailash Khalasi62ab4032018-07-09 14:01:21 -0700113 ${json_{{ m.name | lower}}_onudevice}= Set Variable onudevice123
114 ${json_{{ m.name | lower}}_1}= Set Json Value ${json_{{ m.name | lower }}_1} /onu_device "${json_{{ m.name | lower}}_onudevice}"
Kailash Khalasiad9acf52018-07-12 10:06:06 -0700115 CORD Post /xosapi/v1/volt/onudevices {"serial_number": "onudevice123", "pon_port_id": ${id}, "vendor": "abcdefg"}
Kailash Khalasi62ab4032018-07-09 14:01:21 -0700116 {% endif %}
Kailash Khalasi72614802018-05-02 09:21:23 -0700117 ${json_{{ m.name | lower }}_1}= To JSON ${json_{{ m.name | lower }}_1}
118 ${json_{{ m.name | lower }}_updated_1}= To JSON ${json_{{ m.name | lower }}_updated_1}
119 Set Suite Variable ${json_{{ m.name | lower }}_1}
120 Set Suite Variable ${json_{{ m.name | lower }}_updated_1}
121 {% endif -%}
122 {% endfor %}
123
124{% for m in proto.messages %}
125{%- if m.name not in ['XOSBase'] -%}
126Create {{ m.name }}
127 ##Creating {{ m.name | lower }} object
128 ${json_{{ m.name | lower }}_tmp}= Set Variable { }
129 # set required fields for {{ m.name | lower }} object
130 {% for f in m.fields + xproto_base_fields(m, proto.message_table) -%}
131 {% if f.link -%}
132 {% if f.modifier == "required" -%}
133 {% if f.options.blank == "False" -%}
134 # create dependent {{ f.options.model }}
135 ${dependent_{{ f.options.model | lower }}_id}= Create {{ f.options.model }}
136 ${json_{{ m.name | lower}}_tmp}= Set Json Value ${json_{{ m.name | lower }}_tmp} /{{ f.name }}_id ${dependent_{{ f.options.model | lower }}_id}
137 {% endif -%}
138 {% endif -%}
139 {% else -%}
140 {% if f.modifier == "required" -%}
141 {% if f.options.blank == "False" -%}
142 {% if not f.options.default -%}
143 ${json_{{ m.name | lower}}_{{ f.name }}_tmp}= Generate Random Value {{ f.type }}
144 ${json_{{ m.name | lower}}_tmp}= Set Json Value ${json_{{ m.name | lower }}_tmp} /{{ f.name }} "${json_{{ m.name | lower}}_{{ f.name }}_tmp}"
145 {% endif -%}
146 {% endif -%}
147 {% endif -%}
148 {% endif -%}
149 {% endfor -%}
150 {% if m.name == "Site" -%}
151 ${json_{{ m.name | lower}}_login_base_tmp}= Set Variable testloginbase
152 ${json_{{ m.name | lower}}_tmp}= Set Json Value ${json_{{ m.name | lower }}_tmp} /login_base "${json_{{ m.name | lower }}_login_base_tmp}"
153 {% endif -%}
154 {% if m.name == "Slice" -%}
155 ${json_{{ m.name | lower}}_name}= Generate Random Slice Name
156 ${json_{{ m.name | lower}}_tmp}= Set Json Value ${json_{{ m.name | lower }}_tmp} /name "${json_{{ m.name | lower }}_name}"
157 {% endif -%}
158 {% if m.name == "Network" -%}
159 ${json_{{ m.name | lower}}_tmp}= Set Json Value ${json_{{ m.name | lower }}_tmp} /permit_all_slices true
160 {% endif -%}
161 ${json_{{ m.name | lower }}_tmp}= To JSON ${json_{{ m.name | lower }}_tmp}
Kailash Khalasi9302c182018-05-07 13:46:15 -0600162 ${resp}= CORD Post /xosapi/v1/{{ xproto_unquote(m.options.app_label) }}/{{ xproto_pluralize(m) | lower}} ${json_{{ m.name | lower }}_tmp}
Kailash Khalasi72614802018-05-02 09:21:23 -0700163 ${id_{{ m.name | lower }}_tmp}= Get Json Value ${resp.content} /id
164 Append To List ${dependent_{{ m.name | lower }}_ids} ${id_{{ m.name | lower }}_tmp}
165 [Return] ${id_{{ m.name | lower }}_tmp}
166{% endif -%}
167{% endfor -%}
168
169Setup Tests
170 [Documentation] Find all dependent objects per model and create them and store them for later use
171 {% for m in proto.messages %}
172 {%- if m.name not in ['XOSBase'] -%}
173 ${model}= Set Variable {{ m.name | lower }}s
174 @{dependent_{{ m.name | lower }}_ids}= Create List ${model}
175 Set Suite Variable @{dependent_{{ m.name | lower }}_ids}
176 {% endif -%}
177 {% endfor -%}
178 @{dependent_models}= Create List
179 Set Suite Variable ${dependent_models}
180 ${auth} = Create List ${XOS_USER} ${XOS_PASSWD}
181 ${HEADERS} Create Dictionary Content-Type=application/json
182 Create Session ${SERVER_IP} http://${SERVER_IP}:${SERVER_PORT} auth=${AUTH} headers=${HEADERS}
183 Generate JSON Data
184
185Teardown Tests
186 [Documentation] Delete all dependent objects created in Setup
187 {% for m in proto.messages %}
188 {%- if m.name not in ['XOSBase'] -%}
189 ${len}= Get Length ${dependent_{{ m.name | lower }}_ids}
190 : FOR ${INDEX} IN RANGE 1 ${len}
191 \ Run Keyword And Ignore Error CORD Delete /xosapi/v1/{{ xproto_unquote(m.options.app_label) }}/${dependent_{{ m.name | lower }}_ids[0]} ${dependent_{{ m.name | lower }}_ids[${INDEX}]}
192 {% endif -%}
193 {% endfor -%}
Kailash Khalasiad9acf52018-07-12 10:06:06 -0700194 Delete All Sessions