use of jakarta.json.JsonObject in project zilla by aklivity.
the class SchemaTest method shouldValidateHttp2ClientOverride.
@Test
public void shouldValidateHttp2ClientOverride() {
JsonObject config = schema.validate("v2/client.override.json");
assertThat(config, not(nullValue()));
}
use of jakarta.json.JsonObject in project zilla by aklivity.
the class SchemaTest method shouldValidateHttp1ServerAccessControlCrossOriginAllowExplicitCached.
@Test
public void shouldValidateHttp1ServerAccessControlCrossOriginAllowExplicitCached() {
JsonObject config = schema.validate("v1.1/server.access.control.cross.origin.allow.explicit.cached.json");
assertThat(config, not(nullValue()));
}
use of jakarta.json.JsonObject in project zilla by aklivity.
the class SchemaTest method shouldValidateCacheOptionsDeltaType.
@Test
public void shouldValidateCacheOptionsDeltaType() {
JsonObject config = schema.validate("cache.options.delta.type.json");
assertThat(config, not(nullValue()));
}
use of jakarta.json.JsonObject in project zilla by aklivity.
the class SchemaTest method shouldValidateClientOptionsMerged.
@Test
public void shouldValidateClientOptionsMerged() {
JsonObject config = schema.validate("client.options.merged.json");
assertThat(config, not(nullValue()));
}
use of jakarta.json.JsonObject in project zilla by aklivity.
the class SchemaTest method shouldValidateCacheOptionsMerged.
@Test
public void shouldValidateCacheOptionsMerged() {
JsonObject config = schema.validate("cache.options.merged.json");
assertThat(config, not(nullValue()));
}
Aggregations