019_02_05.robot 2.14 KB
Newer Older
root's avatar
root committed
*** Settings ***
Documentation   Check that you can query entitites via POST Interaction based on a list of properties
Resource    ${EXECDIR}/resources/ApiUtils.resource
Resource    ${EXECDIR}/resources/AssertionUtils.resource
Resource    ${EXECDIR}/resources/JsonUtils.resource

*** Variable ***
${building_id_prefix}=  urn:ngsi-ld:Building:
${filename}=  building-minimal-sample.jsonld
lopesg's avatar
lopesg committed
${expectation_filename}=  building-minimal-expectation.jsonld
${entity_type}=  https://ngsi-ld-test-suite/context#Building
root's avatar
root committed
${geometry_property}=  location

*** Test Cases ***                                                 
lopesg's avatar
lopesg committed
Query several entities via POST Interaction based on a list of properties
root's avatar
root committed
    [Documentation]  Check that you can query entitites via POST Interaction based on a list of properties
lopesg's avatar
lopesg committed
    [Tags]  /entityOperations/query    5_7_2
root's avatar
root committed

    ${first_entity_id}=     Generate Random Entity Id    ${building_id_prefix}
    ${request}    ${response}=    Create Entity Selecting Content Type  ${filename}     ${first_entity_id}    ${CONTENT_TYPE_LD_JSON}
    Check Response Status Code  201    ${response['status']}
    ${second_entity_id}=     Generate Random Entity Id    ${building_id_prefix}
    ${request}    ${response}=    Create Entity Selecting Content Type  ${filename}     ${second_entity_id}    ${CONTENT_TYPE_LD_JSON}
    Check Response Status Code  201    ${response['status']}

    @{entities_ids_to_be_compared}=  Create List   ${first_entity_id}    ${second_entity_id}
root's avatar
root committed
    @{entity_types_to_be_retrieved}=  Create List   ${entity_type}
    ${response}=    Query Entities Via POST    entity_types=${entity_types_to_be_retrieved}    geoproperty=${geometry_property}
    Check Response Status Code  200    ${response['status']}
    Check Response Body Containing List Containing Entity elements    ${expectation_filename}    ${entities_ids_to_be_compared}    ${response['body']}
root's avatar
root committed

    [Teardown]  Delete Entities    ${first_entity_id}    ${second_entity_id}


*** Keywords ***
Delete Entities
    [Arguments]  ${first_entity_id}    ${second_entity_id}
    Delete Entity by Id Returning Response   ${first_entity_id}
    Delete Entity by Id Returning Response   ${second_entity_id}