Commit 79046d69 authored by lopezaguilar's avatar lopezaguilar
Browse files

Adding LdContextNotAvailable testing over Cached @context and reload=true

parent b300df11
Loading
Loading
Loading
Loading
+0 −4
Original line number Diff line number Diff line
@@ -2,10 +2,6 @@
Documentation       Check that you can list all the @context available in the broker with no previous add @context

Resource            ${EXECDIR}/resources/ApiUtils/JSON-LD@ContextServer.resource
Resource            ${EXECDIR}/resources/AssertionUtils.resource
Resource            ${EXECDIR}/resources/JsonUtils.resource
Resource            ${EXECDIR}/resources/HttpUtils.resource
Library             Collections

Test Template       List @contexts with no previous created @context

+0 −3
Original line number Diff line number Diff line
@@ -2,10 +2,7 @@
Documentation       Check that you can list all the @context available in the broker with one add @context

Resource            ${EXECDIR}/resources/ApiUtils/JSON-LD@ContextServer.resource
Resource            ${EXECDIR}/resources/AssertionUtils.resource
Resource            ${EXECDIR}/resources/JsonUtils.resource
Resource            ${EXECDIR}/resources/HttpUtils.resource
Library             Collections

Test Setup          Create Initial @context
Test Teardown       Delete Initial @context
+0 −3
Original line number Diff line number Diff line
@@ -2,10 +2,7 @@
Documentation       Check that you can list all the @context available in the broker with several add @contexts

Resource            ${EXECDIR}/resources/ApiUtils/JSON-LD@ContextServer.resource
Resource            ${EXECDIR}/resources/AssertionUtils.resource
Resource            ${EXECDIR}/resources/JsonUtils.resource
Resource            ${EXECDIR}/resources/HttpUtils.resource
Library             Collections

Test Setup          Create Initial set of @contexts
Test Teardown       Delete Initial @contexts
+0 −4
Original line number Diff line number Diff line
@@ -2,10 +2,6 @@
Documentation       Check that you get an error when try to list @context with wrong details or kind

Resource            ${EXECDIR}/resources/ApiUtils/JSON-LD@ContextServer.resource
Resource            ${EXECDIR}/resources/AssertionUtils.resource
Resource            ${EXECDIR}/resources/JsonUtils.resource
Resource            ${EXECDIR}/resources/HttpUtils.resource
Library             Collections

Test Template       List @contexts with no previous created @context

+4 −7
Original line number Diff line number Diff line
@@ -2,10 +2,7 @@
Documentation       Check that you can list all the @context available in the broker with several add @contexts with details equal to true

Resource            ${EXECDIR}/resources/ApiUtils/JSON-LD@ContextServer.resource
Resource            ${EXECDIR}/resources/AssertionUtils.resource
Resource            ${EXECDIR}/resources/JsonUtils.resource
Resource            ${EXECDIR}/resources/HttpUtils.resource
Library             Collections

Test Setup          Create Initial set of @contexts
Test Teardown       Delete Initial @contexts
@@ -21,16 +18,16 @@ ${reason_204}= No Content


*** Test Cases ***    DETAILS    KIND    COUNT
052_03_05 List @contexts with details equal to false and no kind and with previously several add @context
052_05_01 List @contexts with details equal to false and no kind and with previously several add @context
    [Tags]    ctx-serve    5_13_3
    true    ${EMPTY}    4
052_03_06 List @contexts with details equal to false and kind equal to hosted and with previously several add @context
052_05_02 List @contexts with details equal to false and kind equal to hosted and with previously several add @context
    [Tags]    ctx-serve    5_13_3
    true    Hosted    3
052_03_07 List @contexts with details equal to false and kind equal to cached abd with previously several add @context
052_05_03 List @contexts with details equal to false and kind equal to cached abd with previously several add @context
    [Tags]    ctx-serve    5_13_3
    true    Cached    1
052_03_08 List @contexts with details equal to false and kind equal to implicitlycreated and with previously several add @context
052_05_04 List @contexts with details equal to false and kind equal to implicitlycreated and with previously several add @context
    [Tags]    ctx-serve    5_13_3
    true    ImplicitlyCreated    0

Loading