Commit 4eac6e72 authored by Benedetta Arena's avatar Benedetta Arena
Browse files

fix: improved documentation text

parent 67da27cd
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
*** Settings ***
Documentation       Three brokers are set up A, B and C. A has two registrations, one inclusive for the entities created in B and one exclusive for the entity created in C.
...                 The client sends a HTTP GET request to check that quering the offparking type returns the entities in B and C.
Documentation       Three brokers are set up A, B and C. A has two registrations, one inclusive for the entities in B and one exclusive for the entity in C.
...                 The client sends a HTTP GET request to check that quering the OffStreetParking type returns the entities in B and C.

Resource            ${EXECDIR}/resources/IOPUtils/InteroperabilityUtils.resource

@@ -36,7 +36,7 @@ IOP_003_01_01 Query Entities Of Type OffstreetParking Via GET
    ...    5_7_2
    ...    6_4_3_1

    # Agent queries all entities with type OffStreetParking in A and checks for a successful response that contains the attributes of both entities in B and C.
    # Client queries all entities with type OffStreetParking in A. Agent checks for a successful response that contains the attributes availableSpotsNumber and totalSpotsNumber from OffStreetParking:1 and the attributes availableSpotsNumber and totalSpotsNumber and location from OffStreetParking:2.
    ${response_a}=    Query Entities
    ...    entity_types=OffStreetParking
    ...    broker_url=${broker_A_url}
+3 −3
Original line number Diff line number Diff line
*** Settings ***
Documentation       Three brokers are set up A, B and C. A has two registrations, one inclusive for the entities created in B and one exclusive for the entity created in C.
...                 The client sends and HTTP POST request to check that the entities can be queried from all brokers.
Documentation       Three brokers are set up A, B and C. A has two registrations, one inclusive for the entities in B and one exclusive for the entity in C.
...                 The client sends and HTTP POST request to check that the entities with type OffStreetParking can be queried from all brokers.

Resource            ${EXECDIR}/resources/IOPUtils/InteroperabilityUtils.resource

@@ -36,7 +36,7 @@ IOP_003_01_02 Query Entities Of Type OffstreetParking Via POST
    ...    5_7_2
    ...    6_23_2_1

    # Agent queries all entities with type OffStreetParking in A and checks for a successful response that contains the attributes of both entities in B and C.
    # Client queries all entities with type OffStreetParking in A and agent checks for a successful response. It should contain the attributes availableSpotsNumber and totalSpotsNumber from OffStreetParking:1 and the attributes availableSpotsNumber and location from OffStreetParking:2.
    &{entity_selector}=    Create Dictionary    type=OffStreetParking
    @{entities}=    Create List    ${entity_selector}
    ${response_a}=    Query Entities Via POST
+2 −2
Original line number Diff line number Diff line
*** Settings ***
Documentation       Four brokers are set up A, B, C and D. A has three registrations, one inclusive for the entities created in B, one redirect for the entities created in C and D and one redirect for the entity created in D.
...                 The client sends a HTTP GET request to check that quering the offparking type returns the entities in B, C and D and said entities have the same attributes as the ones queried from A.
Documentation       Four brokers are set up A, B, C and D. A has three registrations, one inclusive for the entities in B, one redirect for the entities in C and D and one redirect for the entity in D.
...                 The client sends a HTTP GET request to check that quering the type OffStreetParking returns the entities in B, C and D. Said entities shall have the same attributes as the ones queried from A.

Resource            ${EXECDIR}/resources/IOPUtils/InteroperabilityUtils.resource

+2 −2
Original line number Diff line number Diff line
*** Settings ***
Documentation       Four brokers are set up A, B, C and D. A has five registrations, two inclusive for the entities created in B, one redirect for the entities created in C and two redirect for the entity created in D.
...                 Check that the entities in B, C and D and said entities have the same attributes as the ones queried from A.
Documentation       Four brokers are set up A, B, C and D. A has five registrations, two inclusive for the entities in B, one redirect for the entities in C and two redirect for the entity in D.
...                 Check that the entities in B, C and D have the same attributes as the ones queried from A.

Resource            ${EXECDIR}/resources/IOPUtils/InteroperabilityUtils.resource

+2 −2
Original line number Diff line number Diff line
*** Settings ***
Documentation       Four brokers are set up A, B, C and D. A has three registrations, one auxiliary for the entities created in B, one inclusive for the entities created in C and one inclusive for the entity created in D.
...                 Check that the entities returned from A match the attributes from the entities in B, C and D.
Documentation       Four brokers are set up A, B, C and D. A has three registrations, one auxiliary for the entities in B, one inclusive for the entities in C and one inclusive for the entity in D.
...                 Check that the entities returned from A match the attributes of the entities in B, C and D.

Resource            ${EXECDIR}/resources/IOPUtils/InteroperabilityUtils.resource

Loading