Search in sources :

Example 36 with JsonObject

use of jakarta.json.JsonObject in project zilla by aklivity.

the class SchemaTest method shouldValidateClientWhenTopicSubscribeOnly.

@Ignore("TODO")
@Test
public void shouldValidateClientWhenTopicSubscribeOnly() {
    JsonObject config = schema.validate("client.when.topic.subscribe.only.json");
    assertThat(config, not(nullValue()));
}
Also used : JsonObject(jakarta.json.JsonObject) Ignore(org.junit.Ignore) Test(org.junit.Test)

Example 37 with JsonObject

use of jakarta.json.JsonObject in project zilla by aklivity.

the class SchemaTest method shouldValidateClientWhenTopicOrSessions.

@Ignore("TODO")
@Test
public void shouldValidateClientWhenTopicOrSessions() {
    JsonObject config = schema.validate("client.when.topic.or.sessions.json");
    assertThat(config, not(nullValue()));
}
Also used : JsonObject(jakarta.json.JsonObject) Ignore(org.junit.Ignore) Test(org.junit.Test)

Example 38 with JsonObject

use of jakarta.json.JsonObject in project zilla by aklivity.

the class SchemaTest method shouldValidateServerWhenTopic.

@Test
public void shouldValidateServerWhenTopic() {
    JsonObject config = schema.validate("server.when.topic.json");
    assertThat(config, not(nullValue()));
}
Also used : JsonObject(jakarta.json.JsonObject) Test(org.junit.Test)

Example 39 with JsonObject

use of jakarta.json.JsonObject in project zilla by aklivity.

the class SchemaTest method shouldValidateProxyWithTopicDynamic.

@Test
public void shouldValidateProxyWithTopicDynamic() {
    JsonObject config = schema.validate("proxy.with.topic.dynamic.json");
    assertThat(config, not(nullValue()));
}
Also used : JsonObject(jakarta.json.JsonObject) Test(org.junit.Test)

Example 40 with JsonObject

use of jakarta.json.JsonObject in project zilla by aklivity.

the class SchemaTest method shouldValidateProxyWithTopic.

@Test
public void shouldValidateProxyWithTopic() {
    JsonObject config = schema.validate("proxy.with.topic.json");
    assertThat(config, not(nullValue()));
}
Also used : JsonObject(jakarta.json.JsonObject) Test(org.junit.Test)

Aggregations

JsonObject (jakarta.json.JsonObject)356 Test (org.junit.Test)125 Test (org.junit.jupiter.api.Test)92 JsonArray (jakarta.json.JsonArray)29 Response (jakarta.ws.rs.core.Response)29 JsonObjectBuilder (jakarta.json.JsonObjectBuilder)24 JsonString (jakarta.json.JsonString)24 JsonValue (jakarta.json.JsonValue)20 WebClientResponse (io.helidon.webclient.WebClientResponse)19 Client (jakarta.ws.rs.client.Client)18 StringReader (java.io.StringReader)17 HelidonTest (io.helidon.microprofile.tests.junit5.HelidonTest)15 JsonReader (jakarta.json.JsonReader)14 List (java.util.List)14 JsonException (jakarta.json.JsonException)13 Map (java.util.Map)13 Logger (java.util.logging.Logger)13 Routing (io.helidon.webserver.Routing)11 Json (jakarta.json.Json)11 Produces (jakarta.ws.rs.Produces)11