use of jakarta.json.JsonObject in project zilla by aklivity.
the class SchemaTest method shouldValidateServerAlpnDefault.
@Test
public void shouldValidateServerAlpnDefault() {
JsonObject config = schema.validate("server.alpn.default.json");
assertThat(config, not(nullValue()));
}
use of jakarta.json.JsonObject in project zilla by aklivity.
the class SchemaTest method shouldValidateClientMutualSigner.
@Test
public void shouldValidateClientMutualSigner() {
JsonObject config = schema.validate("client.mutual.signer.json");
assertThat(config, not(nullValue()));
}
use of jakarta.json.JsonObject in project zilla by aklivity.
the class SchemaTest method shouldValidateServerSni.
@Test
public void shouldValidateServerSni() {
JsonObject config = schema.validate("server.sni.json");
assertThat(config, not(nullValue()));
}
use of jakarta.json.JsonObject in project zilla by aklivity.
the class SchemaTest method shouldValidateServer.
@Test
public void shouldValidateServer() {
JsonObject config = schema.validate("server.json");
assertThat(config, not(nullValue()));
}
use of jakarta.json.JsonObject in project zilla by aklivity.
the class SchemaTest method shouldValidateServerPorts.
@Test
public void shouldValidateServerPorts() {
JsonObject config = schema.validate("server.ports.json");
assertThat(config, not(nullValue()));
}
Aggregations