use of jakarta.json.JsonObject in project zilla by aklivity.
the class SchemaTest method shouldValidateClientProxyName.
@Test
public void shouldValidateClientProxyName() {
JsonObject config = schema.validate("proxy.sni.json");
assertThat(config, not(nullValue()));
}
use of jakarta.json.JsonObject in project zilla by aklivity.
the class SchemaTest method shouldValidateServerSigner.
@Test
public void shouldValidateServerSigner() {
JsonObject config = schema.validate("server.signer.json");
assertThat(config, not(nullValue()));
}
use of jakarta.json.JsonObject in project zilla by aklivity.
the class SchemaTest method shouldValidateClientAlpn.
@Test
public void shouldValidateClientAlpn() {
JsonObject config = schema.validate("client.alpn.json");
assertThat(config, not(nullValue()));
}
use of jakarta.json.JsonObject in project zilla by aklivity.
the class SchemaTest method shouldValidateClientAlpnDefault.
@Test
public void shouldValidateClientAlpnDefault() {
JsonObject config = schema.validate("client.alpn.default.json");
assertThat(config, not(nullValue()));
}
use of jakarta.json.JsonObject in project zilla by aklivity.
the class SchemaTest method shouldValidateClientMutual.
@Test
public void shouldValidateClientMutual() {
JsonObject config = schema.validate("client.mutual.json");
assertThat(config, not(nullValue()));
}
Aggregations