Commit 4448012b authored by Houcem Kacem's avatar Houcem Kacem
Browse files

fix: fix request parameters in query temporal evolution of entities

parent 82c07d26
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -26,7 +26,7 @@ Query the temporal evolution of entities
    [Documentation]  Check that you can query the temporal evolution of entities
    [Tags]  mandatory

    @{entity_types_to_be_retrieved}=  Create List   Vehicle
    ${entity_types_to_be_retrieved}=  Catenate    SEPARATOR=,     Vehicle

    Query Temporal Representation Of Entities   entity_types=${entity_types_to_be_retrieved}   timerel=${timerel}    timeAt=${timeAt}   context=${ngsild_test_suite_context}

+2 −2
Original line number Diff line number Diff line
@@ -18,8 +18,8 @@ Query the temporal evolution of certain attributes of entities
    [Documentation]  Check that you can query the temporal evolution of certain attributes of entities
    [Tags]  mandatory

    @{entity_types_to_be_retrieved}=  Create List   Vehicle
    @{temporal_attributes_to_be_retrieved}=  Create List   speed
    ${entity_types_to_be_retrieved}=  Catenate    SEPARATOR=,     Vehicle
    ${temporal_attributes_to_be_retrieved}=  Catenate    SEPARATOR=,     speed

    Query Temporal Representation Of Entities   entity_types=${entity_types_to_be_retrieved}   timerel=after    timeAt=2020-07-01T12:05:00Z   attrs=${temporal_attributes_to_be_retrieved}    context=${ngsild_test_suite_context}

+1 −1
Original line number Diff line number Diff line
@@ -18,7 +18,7 @@ Query the temporal evolution of the last N instances of entities attributes
    [Documentation]  Check that you can query the temporal evolution of the last N instances of entities attributes
    [Tags]  mandatory

    @{entity_types_to_be_retrieved}=  Create List   Vehicle
    ${entity_types_to_be_retrieved}=  Catenate    SEPARATOR=,     Vehicle

    Query Temporal Representation Of Entities   entity_types=${entity_types_to_be_retrieved}   timerel=after    timeAt=2020-07-01T12:05:00Z   lastN=${14}    context=${ngsild_test_suite_context}

+1 −1
Original line number Diff line number Diff line
@@ -18,7 +18,7 @@ Query the temporal evolution of entities using a context
    [Documentation]  Check that you can query the temporal evolution of entities using a context
    [Tags]  mandatory

    @{entity_types_to_be_retrieved}=  Create List   Vehicle
    ${entity_types_to_be_retrieved}=  Catenate    SEPARATOR=,     Vehicle

    Query Temporal Representation Of Entities   entity_types=${entity_types_to_be_retrieved}   timerel=after    timeAt=2020-07-01T12:05:00Z    context=${ngsild_test_suite_context}

+1 −1
Original line number Diff line number Diff line
@@ -19,7 +19,7 @@ Query the temporal evolution of entities matching the given type(s)
    [Documentation]  Check that you can query the temporal evolution of entities matching the given type(s)
    [Tags]  mandatory

    @{entity_types_to_be_retrieved}=  Create List   Vehicle     Bus
    ${entity_types_to_be_retrieved}=  Catenate    SEPARATOR=,     Bus

    Query Temporal Representation Of Entities   entity_types=${entity_types_to_be_retrieved}   timerel=after    timeAt=2020-07-01T12:05:00Z    context=${ngsild_test_suite_context}

Loading