use of org.projectnessie.cel.common.types.ref.TypeRegistry in project cel-java by projectnessie.
the class AttributesTest method benchmarkResolverFieldQualifier.
@Test
void benchmarkResolverFieldQualifier() {
TestAllTypes msg = TestAllTypes.newBuilder().setSingleNestedMessage(NestedMessage.newBuilder().setBb(123)).build();
TypeRegistry reg = newRegistry(msg);
AttributeFactory attrs = newAttributeFactory(Container.defaultContainer, reg, reg);
Activation vars = newActivation(mapOf("msg", msg));
NamespacedAttribute attr = attrs.absoluteAttribute(1, "msg");
Type opType = reg.findType("google.api.expr.test.v1.proto3.TestAllTypes");
assertThat(opType).isNotNull();
Type fieldType = reg.findType("google.api.expr.test.v1.proto3.TestAllTypes.NestedMessage");
assertThat(fieldType).isNotNull();
attr.addQualifier(makeQualifier(attrs, opType.getType(), 2, "single_nested_message"));
attr.addQualifier(makeQualifier(attrs, fieldType.getType(), 3, "bb"));
// Note: migrated to JMH
}
use of org.projectnessie.cel.common.types.ref.TypeRegistry in project cel-java by projectnessie.
the class AttributesTest method attributesRelativeAttr.
@Test
void attributesRelativeAttr() {
TypeRegistry reg = newRegistry();
AttributeFactory attrs = newAttributeFactory(Container.defaultContainer, reg, reg);
Map<Object, Object> data = mapOf("a", mapOf(-1, new int[] { 2, 42 }), "b", 1);
Activation vars = newActivation(data);
// The relative attribute under test is applied to a map literal:
// {
// a: {-1: [2, 42], b: 1}
// b: 1
// }
//
// The expression being evaluated is: <map-literal>.a[-1][b] -> 42
InterpretableConst op = newConstValue(1, reg.nativeToValue(data));
Attribute attr = attrs.relativeAttribute(1, op);
Qualifier qualA = attrs.newQualifier(null, 2, "a");
Qualifier qualNeg1 = attrs.newQualifier(null, 3, intOf(-1));
attr.addQualifier(qualA);
attr.addQualifier(qualNeg1);
attr.addQualifier(attrs.absoluteAttribute(4, "b"));
Object out = attr.resolve(vars);
assertThat(out).isEqualTo(intOf(42));
assertThat(estimateCost(attr)).extracting("min", "max").containsExactly(1L, 1L);
}
use of org.projectnessie.cel.common.types.ref.TypeRegistry in project cel-java by projectnessie.
the class AttributesTest method attributesRelativeAttr_OneOf.
@Test
void attributesRelativeAttr_OneOf() {
TypeRegistry reg = newRegistry();
Container cont = newContainer(Container.name("acme.ns"));
AttributeFactory attrs = newAttributeFactory(cont, reg, reg);
Map<Object, Object> data = mapOf("a", mapOf(-1, new int[] { 2, 42 }), "acme.b", 1);
Activation vars = newActivation(data);
// The relative attribute under test is applied to a map literal:
// {
// a: {-1: [2, 42], b: 1}
// b: 1
// }
//
// The expression being evaluated is: <map-literal>.a[-1][b] -> 42
//
// However, since the test is validating what happens with maybe attributes
// the attribute resolution must also consider the following variations:
// - <map-literal>.a[-1][acme.ns.b]
// - <map-literal>.a[-1][acme.b]
//
// The correct behavior should yield the value of the last alternative.
InterpretableConst op = newConstValue(1, reg.nativeToValue(data));
Attribute attr = attrs.relativeAttribute(1, op);
Qualifier qualA = attrs.newQualifier(null, 2, "a");
Qualifier qualNeg1 = attrs.newQualifier(null, 3, intOf(-1));
attr.addQualifier(qualA);
attr.addQualifier(qualNeg1);
attr.addQualifier(attrs.maybeAttribute(4, "b"));
Object out = attr.resolve(vars);
assertThat(out).isEqualTo(intOf(42));
assertThat(estimateCost(attr)).extracting("min", "max").containsExactly(1L, 1L);
}
use of org.projectnessie.cel.common.types.ref.TypeRegistry in project cel-java by projectnessie.
the class AttributesTest method attributeMissingMsg_UnknownField.
@Test
void attributeMissingMsg_UnknownField() {
TypeRegistry reg = newRegistry();
AttributeFactory attrs = newPartialAttributeFactory(Container.defaultContainer, reg, reg);
Any any = Any.pack(TestAllTypes.getDefaultInstance());
Activation vars = newPartialActivation(mapOf("missing_msg", any), newAttributePattern("missing_msg").qualString("field"));
// missing_msg.field
NamespacedAttribute attr = attrs.absoluteAttribute(1, "missing_msg");
Qualifier field = attrs.newQualifier(null, 2, "field");
attr.addQualifier(field);
Object out = attr.resolve(vars);
assertThat(out).isInstanceOf(UnknownT.class);
}
use of org.projectnessie.cel.common.types.ref.TypeRegistry in project cel-java by projectnessie.
the class AttributesTest method attributesOneofAttr.
@Test
void attributesOneofAttr() {
TypeRegistry reg = newRegistry();
Container cont = newContainer(Container.name("acme.ns"));
AttributeFactory attrs = newAttributeFactory(cont, reg, reg);
Map<Object, Object> data = mapOf("a", mapOf("b", new int[] { 2, 42 }), "acme.a.b", 1, "acme.ns.a.b", "found");
Activation vars = newActivation(data);
// a.b -> should resolve to acme.ns.a.b per namespace resolution rules.
Attribute attr = attrs.maybeAttribute(1, "a");
Qualifier qualB = attrs.newQualifier(null, 2, "b");
attr.addQualifier(qualB);
Object out = attr.resolve(vars);
assertThat(out).isEqualTo("found");
assertThat(estimateCost(attr)).extracting("min", "max").containsExactly(1L, 1L);
}
Aggregations