Commit 306a0006 authored by Benoit Orihuela's avatar Benoit Orihuela
Browse files

feat: replace critical tag by mandatory

parent 4d95afe4
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -9,7 +9,7 @@ Library OperatingSystem
*** Test Case ***
With invalid json document
    [Documentation]  Check that you cannot create a batch of entities with an invalid json document
    [Tags]  critical
    [Tags]  mandatory

    Batch Request Entities From File   batch/invalid-json-sample.jsonld

@@ -18,7 +18,7 @@ With invalid json document

With empty json document
    [Documentation]  Check that you cannot create a batch of entities with an empty json document
    [Tags]  critical
    [Tags]  mandatory

    Batch Request Entities From File   batch/empty-sample.jsonld

+3 −3
Original line number Diff line number Diff line
@@ -13,7 +13,7 @@ ${building_id_prefix}= urn:ngsi-ld:Building:
*** Test Case ***
Create a batch of minimal entities
    [Documentation]  Check that you can create a batch of minimal entities
    [Tags]  critical
    [Tags]  mandatory

    ${first_entity_id}=     Generate Random Entity Id    ${building_id_prefix}
    ${second_entity_id}=     Generate Random Entity Id    ${building_id_prefix}
@@ -31,7 +31,7 @@ Create a batch of minimal entities

Create a batch of entities having only simple properties
    [Documentation]  Check that you can create a batch of entities having only simple properties
    [Tags]  critical
    [Tags]  mandatory

    ${first_entity_id}=     Generate Random Entity Id    ${building_id_prefix}
    ${second_entity_id}=     Generate Random Entity Id    ${building_id_prefix}
@@ -49,7 +49,7 @@ Create a batch of entities having only simple properties

Create a batch of entities having multiple attributes
    [Documentation]  Check that you can create a batch of entities having multiple attributes
    [Tags]  critical
    [Tags]  mandatory

    ${first_entity_id}=     Generate Random Entity Id    ${building_id_prefix}
    ${second_entity_id}=     Generate Random Entity Id    ${building_id_prefix}
+1 −1
Original line number Diff line number Diff line
@@ -15,7 +15,7 @@ ${building_id_prefix}= urn:ngsi-ld:Building:
*** Test Case ***
Create a batch of two valid entities and one invalid entity
    [Documentation]  Check that you can create a batch of two valid entities and one invalid entity
    [Tags]  critical
    [Tags]  mandatory

    ${first_entity_id}=     Generate Random Entity Id    ${building_id_prefix}
    ${second_entity_id}=     Generate Random Entity Id    ${building_id_prefix}
+2 −2
Original line number Diff line number Diff line
@@ -15,7 +15,7 @@ ${endpoint}= entities
*** Test Case ***
With invalid json document
    [Documentation]  Check that you cannot delete a batch of entities with an invalid json document
    [Tags]  critical
    [Tags]  mandatory

    Batch Request Entities From File   batch/invalid-json-sample.jsonld

@@ -24,7 +24,7 @@ With invalid json document

With empty json document
    [Documentation]  Check that you cannot delete a batch of entities with an empty json document
    [Tags]  critical
    [Tags]  mandatory

    Batch Request Entities From File   batch/empty-sample.jsonld

+1 −1
Original line number Diff line number Diff line
@@ -19,7 +19,7 @@ ${building_id_prefix}= urn:ngsi-ld:Building:
*** Test Case ***
Delete a batch of entities
    [Documentation]  Check that you can delete a batch of entities
    [Tags]  critical
    [Tags]  mandatory

    @{entities_ids_to_be_deleted}=  Create List   ${first_entity_id}     ${second_entity_id}

Loading