blob: a4db86075e5e9be2a29b700d874fe97bb7c86801 [file] [log] [blame]
Kailash Khalasi22da3862018-05-07 10:01:01 -06001
2*** Settings ***
3Documentation Test Suite for XOS APIs
4Suite Setup Setup
5Suite Teardown Teardown
6Test Template Verify API Functionality
7Library Collections
8Library String
9Library OperatingSystem
10Library XML
11Library RequestsLibrary
12Library HttpLibrary.HTTP
13Library ../Framework/utils/utils.py
14Library ../Framework/restApi.py
15Resource ${TESTLIBRARY}
16Variables ../Properties/RestApiProperties.py
17
18*** Variables ***
19${xos_service} core
20
21*** Test Cases *** TYPE API
22{% for m in proto.messages %}
23{%- if xproto_unquote(m.options.app_label) != "core" -%}
24{%- if m.name not in ['XOSBase'] -%}
Kailash Khalasi22da3862018-05-07 10:01:01 -060025{% autoescape false %}
26{% endautoescape %}
Kailash Khalasidf12b702018-05-07 21:25:27 -070027Create {{ m.name }} CREATE /xosapi/v1/{{ xproto_unquote(m.options.app_label) }}/{{ xproto_pluralize(m) | lower}} ${json_{{ m.name | lower}}_1}
Kailash Khalasi22da3862018-05-07 10:01:01 -060028 [Tags] {{ m.name }}
29
Kailash Khalasidf12b702018-05-07 21:25:27 -070030Update {{ m.name }} UPDATE /xosapi/v1/{{ xproto_unquote(m.options.app_label) }}/{{ xproto_pluralize(m) | lower}} ${json_{{ m.name | lower}}_updated_1} ${id}
Kailash Khalasi22da3862018-05-07 10:01:01 -060031 [Tags] {{ m.name }}
32
Kailash Khalasidf12b702018-05-07 21:25:27 -070033Get {{ m.name }} RETRIEVE /xosapi/v1/{{ xproto_unquote(m.options.app_label) }}/{{ xproto_pluralize(m) | lower}} ${json_{{ m.name | lower}}_updated_1} ${id} ${json_{{ m.name | lower}}_updated_key}
Kailash Khalasi22da3862018-05-07 10:01:01 -060034 [Tags] {{ m.name }}
35
Kailash Khalasidf12b702018-05-07 21:25:27 -070036Delete {{ m.name }} DELETE /xosapi/v1/{{ xproto_unquote(m.options.app_label) }}/{{ xproto_pluralize(m) | lower}} data_id=${id}
Kailash Khalasi22da3862018-05-07 10:01:01 -060037 [Tags] {{ m.name }}
Kailash Khalasi22da3862018-05-07 10:01:01 -060038{% endif -%}
39{% endif -%}
40{% endfor %}
41
42*** Keywords ***
43Setup
44 Setup Tests
45
46Teardown
47 Teardown Tests