Newer
Older
Documentation Verify throwing 406 HTTP status code (Not Acceptable Media Type) if the "Accept" header does not imply "application/json" nor "application/ld+json"
Resource ${EXECDIR}/resources/ApiUtils.resource
Resource ${EXECDIR}/resources/AssertionUtils.resource
Resource ${EXECDIR}/resources/JsonUtils.resource
*** Variables ***
${accept}= application/xml
${status_code}= 406
${building_id_prefix}= urn:ngsi-ld:Building:
${building_filename}= building-simple-attributes-sample.jsonld
${subscription_id_prefix}= urn:ngsi-ld:Subscription:
${subscription_filename}= csourceSubscriptions/subscription-sample.jsonld
044_04_01 endpoint get /entities/{entityId}
[Documentation] Verify throwing 406 HTTP status code (Not Acceptable Media Type) if the "Accept" header does not imply "application/json" nor "application/ld+json" (get /entities/{entityId})
[Tags] e-query 6_3_4
${entity_id}= Generate Random Entity Id ${building_id_prefix}
${response}= Create Entity Selecting Content Type
... ${building_filename}
... ${entity_id}
... ${CONTENT_TYPE_LD_JSON}
Check Response Status Code 201 ${response.status_code}
${response}= Query Entity ${entity_id} accept=${accept}
Check Response Status Code ${status_code} ${response.status_code}
[Teardown] Delete Entity by Id Returning Response ${entity_id}
044_04_02 endpoint get /subscriptions/{subscriptionId}
[Documentation] Verify throwing 406 HTTP status code (Not Acceptable Media Type) if the "Accept" header does not imply "application/json" nor "application/ld+json" (get /subscriptions/{subscriptionId})
[Tags] sub-retrieve 6_3_4
${id}= Generate Random Entity Id ${subscription_id_prefix}
${response}= Create Subscription ${id} ${subscription_filename} ${CONTENT_TYPE_LD_JSON}
Check Response Status Code 201 ${response.status_code}
${response}= Retrieve Subscription ${id} accept=${accept}
Check Response Status Code ${status_code} ${response.status_code}
[Teardown] Delete Subscription ${id}
044_04_03 endpoint get /csourceRegistrations/
[Documentation] Verify throwing 406 HTTP status code (Not Acceptable Media Type) if the "Accept" header does not imply "application/json" nor "application/ld+json" (get /csourceRegistrations/)
[Tags] csr-query 6_3_4
${response}= Query Context Source Registrations With Return type=Building accept=${accept}
Check Response Status Code ${status_code} ${response.status_code}
044_04_04 endpoint get /csourceSubscriptions/
[Documentation] Verify throwing 406 HTTP status code (Not Acceptable Media Type) if the "Accept" header does not imply "application/json" nor "application/ld+json" (get /csourceSubscriptions/)
[Tags] csrsub-query
${response}= Query Context Source Registration Subscriptions accept=${accept}
Check Response Status Code ${status_code} ${response.status_code}
044_04_05 endpoint get /temporal/entities
[Documentation] Verify throwing 406 HTTP status code (Not Acceptable Media Type) if the "Accept" header does not imply "application/json" nor "application/ld+json" (get /temporal/entities)
[Tags] te-query 6_3_4
${entity_types_to_be_retrieved}= Catenate SEPARATOR=, Vehicle
${response}= Query Temporal Representation Of Entities
... entity_types=${entity_types_to_be_retrieved}
... timerel=after
... timeAt=2020-08-01T12:05:00Z
... accept=${accept}
Check Response Status Code ${status_code} ${response.status_code}