Search in sources :

Example 1 with StringT

use of org.projectnessie.cel.common.types.StringT in project cel-java by projectnessie.

the class CELTest method GlobalVars.

@Test
void GlobalVars() {
    Type mapStrDyn = Decls.newMapType(Decls.String, Decls.Dyn);
    Env e = newEnv(declarations(Decls.newVar("attrs", mapStrDyn), Decls.newVar("default", Decls.Dyn), Decls.newFunction("get", Decls.newInstanceOverload("get_map", asList(mapStrDyn, Decls.String, Decls.Dyn), Decls.Dyn))));
    AstIssuesTuple astIss = e.compile("attrs.get(\"first\", attrs.get(\"second\", default))");
    // Create the program.
    ProgramOption funcs = functions(Overload.function("get", args -> {
        if (args.length != 3) {
            return newErr("invalid arguments to 'get'");
        }
        if (!(args[0] instanceof Mapper)) {
            return newErr("invalid operand of type '%s' to obj.get(key, def)", args[0].type());
        }
        Mapper attrs = (Mapper) args[0];
        if (!(args[1] instanceof StringT)) {
            return newErr("invalid key of type '%s' to obj.get(key, def)", args[1].type());
        }
        StringT key = (StringT) args[1];
        Val defVal = args[2];
        if (attrs.contains(key) == True) {
            return attrs.get(key);
        }
        return defVal;
    }));
    // Global variables can be configured as a ProgramOption and optionally overridden on Eval.
    Program prg = e.program(astIss.getAst(), funcs, globals(mapOf("default", "third")));
    // t.Run("global_default", func(t *testing.T) {
    Object vars = mapOf("attrs", mapOf());
    EvalResult out = prg.eval(vars);
    assertThat(out.getVal().equal(stringOf("third"))).isSameAs(True);
    // })
    // t.Run("attrs_alt", func(t *testing.T) {
    vars = mapOf("attrs", mapOf("second", "yep"));
    out = prg.eval(vars);
    assertThat(out.getVal().equal(stringOf("yep"))).isSameAs(True);
    // })
    // t.Run("local_default", func(t *testing.T) {
    vars = mapOf("attrs", mapOf(), "default", "fourth");
    out = prg.eval(vars);
    assertThat(out.getVal().equal(stringOf("fourth"))).isSameAs(True);
// })
}
Also used : BoolT(org.projectnessie.cel.common.types.BoolT) Interpretable(org.projectnessie.cel.interpreter.Interpretable) Macro(org.projectnessie.cel.parser.Macro) Call(com.google.api.expr.v1alpha1.Expr.Call) Assertions.assertThat(org.assertj.core.api.Assertions.assertThat) PartialActivation(org.projectnessie.cel.interpreter.Activation.PartialActivation) EnvOption.container(org.projectnessie.cel.EnvOption.container) Macro.newReceiverMacro(org.projectnessie.cel.parser.Macro.newReceiverMacro) Activation.emptyActivation(org.projectnessie.cel.interpreter.Activation.emptyActivation) Disabled(org.junit.jupiter.api.Disabled) InterpretableDecorator(org.projectnessie.cel.interpreter.InterpretableDecorator) Collections.singletonList(java.util.Collections.singletonList) True(org.projectnessie.cel.common.types.BoolT.True) Err.isError(org.projectnessie.cel.common.types.Err.isError) Container(org.projectnessie.cel.common.types.traits.Container) Arrays.asList(java.util.Arrays.asList) CEL.estimateCost(org.projectnessie.cel.CEL.estimateCost) OptPartialEval(org.projectnessie.cel.EvalOption.OptPartialEval) ProtoTypeRegistry.newEmptyRegistry(org.projectnessie.cel.common.types.pb.ProtoTypeRegistry.newEmptyRegistry) ParsedExpr(com.google.api.expr.v1alpha1.ParsedExpr) EnvOption.customTypeProvider(org.projectnessie.cel.EnvOption.customTypeProvider) Val(org.projectnessie.cel.common.types.ref.Val) TypeRegistry(org.projectnessie.cel.common.types.ref.TypeRegistry) InterpretableAttribute(org.projectnessie.cel.interpreter.Interpretable.InterpretableAttribute) Collections.emptyList(java.util.Collections.emptyList) Expr(com.google.api.expr.v1alpha1.Expr) Ident(com.google.api.expr.v1alpha1.Expr.Ident) InterpretableCall(org.projectnessie.cel.interpreter.Interpretable.InterpretableCall) OptExhaustiveEval(org.projectnessie.cel.EvalOption.OptExhaustiveEval) OptTrackState(org.projectnessie.cel.EvalOption.OptTrackState) StringT.stringOf(org.projectnessie.cel.common.types.StringT.stringOf) Decls(org.projectnessie.cel.checker.Decls) CEL.attributePattern(org.projectnessie.cel.CEL.attributePattern) Executors(java.util.concurrent.Executors) Test(org.junit.jupiter.api.Test) ProgramOption.functions(org.projectnessie.cel.ProgramOption.functions) DefaultTypeAdapter(org.projectnessie.cel.common.types.pb.DefaultTypeAdapter) Overload(org.projectnessie.cel.interpreter.functions.Overload) EvalResult(org.projectnessie.cel.Program.EvalResult) Err.newErr(org.projectnessie.cel.common.types.Err.newErr) IntOne(org.projectnessie.cel.common.types.IntT.IntOne) IntStream(java.util.stream.IntStream) Overloads(org.projectnessie.cel.common.types.Overloads) Env.newEnv(org.projectnessie.cel.Env.newEnv) StdLib(org.projectnessie.cel.Library.StdLib) IntT(org.projectnessie.cel.common.types.IntT) Trait(org.projectnessie.cel.common.types.traits.Trait) EnvOption.declarations(org.projectnessie.cel.EnvOption.declarations) CompletableFuture(java.util.concurrent.CompletableFuture) Err.valOrErr(org.projectnessie.cel.common.types.Err.valOrErr) CEL.partialVars(org.projectnessie.cel.CEL.partialVars) AtomicReference(java.util.concurrent.atomic.AtomicReference) EnvOption.customTypeAdapter(org.projectnessie.cel.EnvOption.customTypeAdapter) AstIssuesTuple(org.projectnessie.cel.Env.AstIssuesTuple) Mapper(org.projectnessie.cel.common.types.traits.Mapper) ProgramOption.evalOptions(org.projectnessie.cel.ProgramOption.evalOptions) Assertions.assertThatThrownBy(org.assertj.core.api.Assertions.assertThatThrownBy) Type(com.google.api.expr.v1alpha1.Type) CEL.astToCheckedExpr(org.projectnessie.cel.CEL.astToCheckedExpr) CEL.noVars(org.projectnessie.cel.CEL.noVars) ExecutorService(java.util.concurrent.ExecutorService) Collections.emptyMap(java.util.Collections.emptyMap) CEL.astToString(org.projectnessie.cel.CEL.astToString) ProgramOption.globals(org.projectnessie.cel.ProgramOption.globals) Operator(org.projectnessie.cel.common.operators.Operator) NamespacedAttribute(org.projectnessie.cel.interpreter.AttributeFactory.NamespacedAttribute) UnknownT(org.projectnessie.cel.common.types.UnknownT) Cost(org.projectnessie.cel.interpreter.Coster.Cost) EnvOption.types(org.projectnessie.cel.EnvOption.types) ProgramOption.customDecorator(org.projectnessie.cel.ProgramOption.customDecorator) EnvOption.macros(org.projectnessie.cel.EnvOption.macros) Interpretable.newConstValue(org.projectnessie.cel.interpreter.Interpretable.newConstValue) CheckedExpr(com.google.api.expr.v1alpha1.CheckedExpr) CEL.parsedExprToAst(org.projectnessie.cel.CEL.parsedExprToAst) TimeUnit(java.util.concurrent.TimeUnit) Consumer(java.util.function.Consumer) InterpretableConst(org.projectnessie.cel.interpreter.Interpretable.InterpretableConst) CEL.astToParsedExpr(org.projectnessie.cel.CEL.astToParsedExpr) CEL.checkedExprToAst(org.projectnessie.cel.CEL.checkedExprToAst) EvalState(org.projectnessie.cel.interpreter.EvalState) Util.mapOf(org.projectnessie.cel.Util.mapOf) StringT(org.projectnessie.cel.common.types.StringT) EnvOption.homogeneousAggregateLiterals(org.projectnessie.cel.EnvOption.homogeneousAggregateLiterals) Env.newCustomEnv(org.projectnessie.cel.Env.newCustomEnv) EnvOption.abbrevs(org.projectnessie.cel.EnvOption.abbrevs) Val(org.projectnessie.cel.common.types.ref.Val) Mapper(org.projectnessie.cel.common.types.traits.Mapper) Type(com.google.api.expr.v1alpha1.Type) EvalResult(org.projectnessie.cel.Program.EvalResult) Env.newEnv(org.projectnessie.cel.Env.newEnv) Env.newCustomEnv(org.projectnessie.cel.Env.newCustomEnv) AstIssuesTuple(org.projectnessie.cel.Env.AstIssuesTuple) StringT(org.projectnessie.cel.common.types.StringT) Test(org.junit.jupiter.api.Test)

Example 2 with StringT

use of org.projectnessie.cel.common.types.StringT in project cel-java by projectnessie.

the class InterpreterTest method testCases.

@SuppressWarnings("unused")
static TestCase[] testCases() {
    return new TestCase[] { new TestCase(InterpreterTestCase.literal_any).expr("google.protobuf.Any{type_url: 'type.googleapis.com/google.api.expr.test.v1.proto2.TestAllTypes', value: b'\\x08\\x96\\x01'}").types(com.google.api.expr.test.v1.proto2.TestAllTypesProto.TestAllTypes.getDefaultInstance(), Any.getDefaultInstance()).out(TestAllTypes.newBuilder().setSingleInt32(150).build()), new TestCase(InterpreterTestCase.literal_var).expr("x").env(Decls.newVar("x", Decls.newObjectType("google.protobuf.Any"))).types(Any.getDefaultInstance(), com.google.api.expr.v1alpha1.Value.getDefaultInstance(), com.google.api.expr.test.v1.proto2.TestAllTypesProto.TestAllTypes.getDefaultInstance()).in("x", com.google.api.expr.v1alpha1.Value.newBuilder().setObjectValue(Any.newBuilder().setTypeUrl("type.googleapis.com/google.api.expr.test.v1.proto2.TestAllTypes").setValue(ByteString.copyFrom(new byte[] { 8, (byte) 150, 1 }))).build()).out(TestAllTypes.newBuilder().setSingleInt32(150).build()), new TestCase(InterpreterTestCase.select_pb3_unset).expr("TestAllTypes{}.single_struct").container("google.api.expr.test.v1.proto3").types(com.google.api.expr.test.v1.proto3.TestAllTypesProto.TestAllTypes.getDefaultInstance()).out(Struct.getDefaultInstance()), new TestCase(InterpreterTestCase.elem_in_mixed_type_list_error).expr("'elem' in [1u, 'str', 2, b'bytes']").err("no such overload: string.@in(uint,bytes,...)"), new TestCase(InterpreterTestCase.elem_in_mixed_type_list).expr("'elem' in [1, 'elem', 2]").out(boolOf(true)), new TestCase(InterpreterTestCase.select_literal_uint).expr("google.protobuf.UInt32Value{value: 123u}").out(ULong.valueOf(123)), new TestCase(InterpreterTestCase.select_pb3_unset).expr("TestAllTypes{}.single_struct").container("google.api.expr.test.v1.proto3").types(com.google.api.expr.test.v1.proto3.TestAllTypesProto.TestAllTypes.getDefaultInstance()).out(Struct.getDefaultInstance()), new TestCase(InterpreterTestCase.select_on_int64).expr("a.pancakes").types(Decls.newVar("a", Decls.Int)).in("a", intOf(15)).err("no such overload: int.ref-resolve(*)").unchecked(), new TestCase(InterpreterTestCase.select_pb3_empty_list).container("google.api.expr.test.v1.proto3").expr("TestAllTypes{list_value: []}.list_value").types(com.google.api.expr.test.v1.proto3.TestAllTypesProto.TestAllTypes.getDefaultInstance()).out(ListValue.getDefaultInstance()), new TestCase(InterpreterTestCase.select_pb3_enum_big).container("google.api.expr.test.v1.proto3").expr("x.standalone_enum").types(com.google.api.expr.test.v1.proto3.TestAllTypesProto.TestAllTypes.getDefaultInstance()).env(Decls.newVar("x", Decls.newObjectType("google.api.expr.test.v1.proto3.TestAllTypes"))).in("x", com.google.api.expr.test.v1.proto3.TestAllTypesProto.TestAllTypes.newBuilder().setStandaloneEnumValue(108).build()).out(intOf(108)), new TestCase(InterpreterTestCase.select_pb3_enum_neg).container("google.api.expr.test.v1.proto3").expr("x.standalone_enum").types(com.google.api.expr.test.v1.proto3.TestAllTypesProto.TestAllTypes.getDefaultInstance()).env(Decls.newVar("x", Decls.newObjectType("google.api.expr.test.v1.proto3.TestAllTypes"))).in("x", com.google.api.expr.test.v1.proto3.TestAllTypesProto.TestAllTypes.newBuilder().setStandaloneEnumValue(-3).build()).out(intOf(-3)), new TestCase(InterpreterTestCase.eq_list_elem_mixed_types_error).expr("[1] == [1.0]").unchecked().err("no such overload: int._==_(double)"), new TestCase(InterpreterTestCase.parse_nest_message_literal).container("google.api.expr.test.v1.proto3").expr("NestedTestAllTypes{child: NestedTestAllTypes{child: NestedTestAllTypes{child: NestedTestAllTypes{child: NestedTestAllTypes{child: NestedTestAllTypes{child: " + "NestedTestAllTypes{child: NestedTestAllTypes{child: NestedTestAllTypes{child: NestedTestAllTypes{child: NestedTestAllTypes{child: NestedTestAllTypes{child: " + "NestedTestAllTypes{child: NestedTestAllTypes{child: NestedTestAllTypes{child: NestedTestAllTypes{child: NestedTestAllTypes{child: NestedTestAllTypes{child: " + "NestedTestAllTypes{child: NestedTestAllTypes{child: NestedTestAllTypes{child: NestedTestAllTypes{child: NestedTestAllTypes{child: NestedTestAllTypes{child: " + "NestedTestAllTypes{child: NestedTestAllTypes{child: NestedTestAllTypes{child: NestedTestAllTypes{child: NestedTestAllTypes{child: NestedTestAllTypes{child: " + "NestedTestAllTypes{payload: TestAllTypes{single_int64: 137}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}.payload.single_int64").types(com.google.api.expr.test.v1.proto3.TestAllTypesProto.NestedTestAllTypes.getDefaultInstance()).out(intOf(0)), new TestCase(InterpreterTestCase.parse_repeat_index).expr("[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[['foo']]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]][0][0][0][0][0][0][0][0][0][0][0][0][0][0][0][0][0][0][0][0][0][0][0][0][0][0][0][0][0][0][0][0]").out(stringOf("foo")), new TestCase(InterpreterTestCase.cond_bad_type).expr("'cows' ? false : 17").err("no such overload").unchecked(), new TestCase(InterpreterTestCase.and_false_1st).expr("false && true").cost(costOf(0, 1)).exhaustiveCost(costOf(1, 1)).out(False), new TestCase(InterpreterTestCase.and_false_2nd).expr("true && false").cost(costOf(0, 1)).exhaustiveCost(costOf(1, 1)).out(False), new TestCase(InterpreterTestCase.and_error_1st_false).expr("1/0 != 0 && false").cost(costOf(2, 3)).exhaustiveCost(costOf(3, 3)).out(False), new TestCase(InterpreterTestCase.and_error_2nd_false).expr("false && 1/0 != 0").cost(costOf(0, 3)).exhaustiveCost(costOf(3, 3)).out(False), new TestCase(InterpreterTestCase.and_error_1st_error).expr("1/0 != 0 && true").cost(costOf(2, 3)).exhaustiveCost(costOf(3, 3)).err("divide by zero"), new TestCase(InterpreterTestCase.and_error_2nd_error).expr("true && 1/0 != 0").cost(costOf(0, 3)).exhaustiveCost(costOf(3, 3)).err("divide by zero"), new TestCase(InterpreterTestCase.call_no_args).expr("zero()").cost(costOf(1, 1)).unchecked().funcs(Overload.function("zero", (args) -> IntZero)).out(IntZero), new TestCase(InterpreterTestCase.call_one_arg).expr("neg(1)").cost(costOf(1, 1)).unchecked().funcs(Overload.unary("neg", NegatorType, arg -> ((Negater) arg).negate())).out(IntNegOne), new TestCase(InterpreterTestCase.call_two_arg).expr("b'abc'.concat(b'def')").cost(costOf(1, 1)).unchecked().funcs(Overload.binary("concat", AdderType, (lhs, rhs) -> ((Adder) lhs).add(rhs))).out(new byte[] { 'a', 'b', 'c', 'd', 'e', 'f' }), new TestCase(InterpreterTestCase.call_varargs).expr("addall(a, b, c, d) == 10").cost(costOf(6, 6)).unchecked().funcs(Overload.function("addall", AdderType, args -> {
        int val = 0;
        for (Val arg : args) {
            val += arg.intValue();
        }
        return intOf(val);
    })).in("a", 1, "b", 2, "c", 3, "d", 4), new TestCase(InterpreterTestCase.call_ns_func).expr("base64.encode('hello')").cost(costOf(1, 1)).env(Decls.newFunction("base64.encode", singletonList(Decls.newOverload("base64_encode_string", singletonList(Decls.String), Decls.String)))).funcs(Overload.unary("base64.encode", InterpreterTest::base64Encode), Overload.unary("base64_encode_string", InterpreterTest::base64Encode)).out("aGVsbG8="), new TestCase(InterpreterTestCase.call_ns_func_unchecked).expr("base64.encode('hello')").cost(costOf(1, 1)).unchecked().funcs(Overload.unary("base64.encode", InterpreterTest::base64Encode)).out("aGVsbG8="), new TestCase(InterpreterTestCase.call_ns_func_in_pkg).container("base64").expr("encode('hello')").cost(costOf(1, 1)).env(Decls.newFunction("base64.encode", singletonList(Decls.newOverload("base64_encode_string", singletonList(Decls.String), Decls.String)))).funcs(Overload.unary("base64.encode", InterpreterTest::base64Encode), Overload.unary("base64_encode_string", InterpreterTest::base64Encode)).out("aGVsbG8="), new TestCase(InterpreterTestCase.call_ns_func_unchecked_in_pkg).expr("encode('hello')").cost(costOf(1, 1)).container("base64").unchecked().funcs(Overload.unary("base64.encode", InterpreterTest::base64Encode)).out("aGVsbG8="), new TestCase(InterpreterTestCase.complex).expr("!(headers.ip in [\"10.0.1.4\", \"10.0.1.5\"]) && \n" + "((headers.path.startsWith(\"v1\") && headers.token in [\"v1\", \"v2\", \"admin\"]) || \n" + "(headers.path.startsWith(\"v2\") && headers.token in [\"v2\", \"admin\"]) || \n" + "(headers.path.startsWith(\"/admin\") && headers.token == \"admin\" && headers.ip in [\"10.0.1.2\", \"10.0.1.2\", \"10.0.1.2\"]))").cost(costOf(3, 24)).exhaustiveCost(costOf(24, 24)).optimizedCost(costOf(2, 20)).env(Decls.newVar("headers", Decls.newMapType(Decls.String, Decls.String))).in("headers", mapOf("ip", "10.0.1.2", "path", "/admin/edit", "token", "admin")), new TestCase(InterpreterTestCase.complex_qual_vars).expr("!(headers.ip in [\"10.0.1.4\", \"10.0.1.5\"]) && \n" + "((headers.path.startsWith(\"v1\") && headers.token in [\"v1\", \"v2\", \"admin\"]) || \n" + "(headers.path.startsWith(\"v2\") && headers.token in [\"v2\", \"admin\"]) || \n" + "(headers.path.startsWith(\"/admin\") && headers.token == \"admin\" && headers.ip in [\"10.0.1.2\", \"10.0.1.2\", \"10.0.1.2\"]))").cost(costOf(3, 24)).exhaustiveCost(costOf(24, 24)).optimizedCost(costOf(2, 20)).env(Decls.newVar("headers.ip", Decls.String), Decls.newVar("headers.path", Decls.String), Decls.newVar("headers.token", Decls.String)).in("headers.ip", "10.0.1.2", "headers.path", "/admin/edit", "headers.token", "admin"), new TestCase(InterpreterTestCase.cond).expr("a ? b < 1.2 : c == ['hello']").cost(costOf(3, 3)).env(Decls.newVar("a", Decls.Bool), Decls.newVar("b", Decls.Double), Decls.newVar("c", Decls.newListType(Decls.String))).in("a", true, "b", 2.0, "c", new String[] { "hello" }).out(False), new TestCase(InterpreterTestCase.in_list).expr("6 in [2, 12, 6]").cost(costOf(1, 1)).optimizedCost(costOf(0, 0)), new TestCase(InterpreterTestCase.in_map).expr("'other-key' in {'key': null, 'other-key': 42}").cost(costOf(1, 1)), new TestCase(InterpreterTestCase.index).expr("m['key'][1] == 42u && m['null'] == null && m[string(0)] == 10").cost(costOf(2, 9)).exhaustiveCost(costOf(9, 9)).optimizedCost(costOf(2, 8)).env(Decls.newVar("m", Decls.newMapType(Decls.String, Decls.Dyn))).in("m", mapOf("key", new Object[] { ULong.valueOf(21), ULong.valueOf(42) }, "null", null, "0", 10)), new TestCase(InterpreterTestCase.index_relative).expr("([[[1]], [[2]], [[3]]][0][0] + [2, 3, {'four': {'five': 'six'}}])[3].four.five == 'six'").cost(costOf(2, 2)), new TestCase(InterpreterTestCase.literal_bool_false).expr("false").cost(costOf(0, 0)).out(False), new TestCase(InterpreterTestCase.literal_bool_true).expr("true").cost(costOf(0, 0)), new TestCase(InterpreterTestCase.literal_empty).expr("google.protobuf.Any{}").err("conversion error: got Any with empty type-url"), new TestCase(InterpreterTestCase.literal_null).expr("null").cost(costOf(0, 0)).out(NullValue), new TestCase(InterpreterTestCase.literal_list).expr("[1, 2, 3]").cost(costOf(0, 0)).out(new long[] { 1, 2, 3 }), new TestCase(InterpreterTestCase.literal_map).expr("{'hi': 21, 'world': 42u}").cost(costOf(0, 0)).out(mapOf("hi", 21, "world", ULong.valueOf(42))), new TestCase(InterpreterTestCase.literal_equiv_string_bytes).expr("string(bytes(\"\\303\\277\")) == '''\\303\\277'''").cost(costOf(3, 3)).optimizedCost(costOf(1, 1)), new TestCase(InterpreterTestCase.literal_not_equiv_string_bytes).expr("string(b\"\\303\\277\") != '''\\303\\277'''").cost(costOf(2, 2)).optimizedCost(costOf(1, 1)), new TestCase(InterpreterTestCase.literal_equiv_bytes_string).expr("string(b\"\\303\\277\") == '\u00FF'").cost(costOf(2, 2)).optimizedCost(costOf(1, 1)), new TestCase(InterpreterTestCase.literal_bytes_string).expr("string(b'aaa\"bbb')").cost(costOf(1, 1)).optimizedCost(costOf(0, 0)).out("aaa\"bbb"), new TestCase(InterpreterTestCase.literal_bytes_string2).expr("string(b\"\"\"Kim\\t\"\"\")").cost(costOf(1, 1)).optimizedCost(costOf(0, 0)).out("Kim\t"), new TestCase(InterpreterTestCase.literal_pb_struct).expr("google.protobuf.Struct{fields: {'uno': 1.0, 'dos': 2.0}}").out(mapOf("uno", 1.0d, "dos", 2.0d)), new TestCase(InterpreterTestCase.literal_pb3_msg).container("google.api.expr").types(Expr.getDefaultInstance()).expr("v1alpha1.Expr{ \n" + "	id: 1, \n" + "	const_expr: v1alpha1.Constant{ \n" + "		string_value: \"oneof_test\" \n" + "	}\n" + "}").cost(costOf(0, 0)).out(Expr.newBuilder().setId(1).setConstExpr(Constant.newBuilder().setStringValue("oneof_test")).build()), new TestCase(InterpreterTestCase.literal_pb_enum).container("google.api.expr.test.v1.proto3").types(com.google.api.expr.test.v1.proto3.TestAllTypesProto.TestAllTypes.getDefaultInstance()).expr("TestAllTypes{\n" + "repeated_nested_enum: [\n" + "	0,\n" + "	TestAllTypes.NestedEnum.BAZ,\n" + "	TestAllTypes.NestedEnum.BAR],\n" + "repeated_int32: [\n" + "	TestAllTypes.NestedEnum.FOO,\n" + "	TestAllTypes.NestedEnum.BAZ]}").cost(costOf(0, 0)).out(com.google.api.expr.test.v1.proto3.TestAllTypesProto.TestAllTypes.newBuilder().addRepeatedNestedEnum(com.google.api.expr.test.v1.proto3.TestAllTypesProto.TestAllTypes.NestedEnum.FOO).addRepeatedNestedEnum(com.google.api.expr.test.v1.proto3.TestAllTypesProto.TestAllTypes.NestedEnum.BAZ).addRepeatedNestedEnum(com.google.api.expr.test.v1.proto3.TestAllTypesProto.TestAllTypes.NestedEnum.BAR).addRepeatedInt32(0).addRepeatedInt32(2).build()), new TestCase(InterpreterTestCase.timestamp_eq_timestamp).expr("timestamp(0) == timestamp(0)").cost(costOf(3, 3)).optimizedCost(costOf(1, 1)), new TestCase(InterpreterTestCase.timestamp_ne_timestamp).expr("timestamp(1) != timestamp(2)").cost(costOf(3, 3)).optimizedCost(costOf(1, 1)), new TestCase(InterpreterTestCase.timestamp_lt_timestamp).expr("timestamp(0) < timestamp(1)").cost(costOf(3, 3)).optimizedCost(costOf(1, 1)), new TestCase(InterpreterTestCase.timestamp_le_timestamp).expr("timestamp(2) <= timestamp(2)").cost(costOf(3, 3)).optimizedCost(costOf(1, 1)), new TestCase(InterpreterTestCase.timestamp_gt_timestamp).expr("timestamp(1) > timestamp(0)").cost(costOf(3, 3)).optimizedCost(costOf(1, 1)), new TestCase(InterpreterTestCase.timestamp_ge_timestamp).expr("timestamp(2) >= timestamp(2)").cost(costOf(3, 3)).optimizedCost(costOf(1, 1)), new TestCase(InterpreterTestCase.string_to_timestamp).expr("timestamp('1986-04-26T01:23:40Z')").cost(costOf(1, 1)).optimizedCost(costOf(0, 0)).out(Timestamp.newBuilder().setSeconds(514862620).build()), new TestCase(InterpreterTestCase.macro_all_non_strict).expr("![0, 2, 4].all(x, 4/x != 2 && 4/(4-x) != 2)").cost(costOf(5, 38)).exhaustiveCost(costOf(38, 38)), new TestCase(InterpreterTestCase.macro_all_non_strict_var).expr("code == \"111\" && [\"a\", \"b\"].all(x, x in tags) \n" + "|| code == \"222\" && [\"a\", \"b\"].all(x, x in tags)").env(Decls.newVar("code", Decls.String), Decls.newVar("tags", Decls.newListType(Decls.String))).in("code", "222", "tags", new String[] { "a", "b" }), new TestCase(InterpreterTestCase.macro_exists_lit).expr("[1, 2, 3, 4, 5u, 1.0].exists(e, type(e) == uint)"), new TestCase(InterpreterTestCase.macro_exists_nonstrict).expr("[0, 2, 4].exists(x, 4/x == 2 && 4/(4-x) == 2)"), new TestCase(InterpreterTestCase.macro_exists_var).expr("elems.exists(e, type(e) == uint)").cost(costOf(0, 9223372036854775807L)).exhaustiveCost(costOf(0, 9223372036854775807L)).env(Decls.newVar("elems", Decls.newListType(Decls.Dyn))).in("elems", new Object[] { 0, 1, 2, 3, 4, ULong.valueOf(5), 6 }), new TestCase(InterpreterTestCase.macro_exists_one).expr("[1, 2, 3].exists_one(x, (x % 2) == 0)"), new TestCase(InterpreterTestCase.macro_filter).expr("[1, 2, 3].filter(x, x > 2) == [3]"), new TestCase(InterpreterTestCase.macro_has_map_key).expr("has({'a':1}.a) && !has({}.a)").cost(costOf(1, 4)).exhaustiveCost(costOf(4, 4)), new TestCase(InterpreterTestCase.macro_has_pb2_field).container("google.api.expr.test.v1.proto2").types(com.google.api.expr.test.v1.proto2.TestAllTypesProto.TestAllTypes.getDefaultInstance()).env(Decls.newVar("pb2", Decls.newObjectType("google.api.expr.test.v1.proto2.TestAllTypes"))).in("pb2", com.google.api.expr.test.v1.proto2.TestAllTypesProto.TestAllTypes.newBuilder().addRepeatedBool(false).putMapInt64NestedType(1, com.google.api.expr.test.v1.proto2.TestAllTypesProto.NestedTestAllTypes.getDefaultInstance()).build()).expr("has(TestAllTypes{standalone_enum: TestAllTypes.NestedEnum.BAR}.standalone_enum) \n" + "&& has(TestAllTypes{standalone_enum: TestAllTypes.NestedEnum.FOO}.standalone_enum) \n" + "&& !has(TestAllTypes{single_nested_enum: TestAllTypes.NestedEnum.FOO}.single_nested_message) \n" + "&& !has(TestAllTypes{}.standalone_enum) \n" + "&& has(TestAllTypes{single_nested_enum: TestAllTypes.NestedEnum.FOO}.single_nested_enum) \n" + "&& !has(pb2.single_int64) \n" + "&& has(pb2.repeated_bool) \n" + "&& !has(pb2.repeated_int32) \n" + "&& has(pb2.map_int64_nested_type) \n" + "&& !has(pb2.map_string_string)").cost(costOf(1, 29)).exhaustiveCost(costOf(29, 29)), new TestCase(InterpreterTestCase.macro_has_pb3_field).types(com.google.api.expr.test.v1.proto3.TestAllTypesProto.TestAllTypes.getDefaultInstance()).env(Decls.newVar("pb3", Decls.newObjectType("google.api.expr.test.v1.proto3.TestAllTypes"))).container("google.api.expr.test.v1.proto3").in("pb3", com.google.api.expr.test.v1.proto3.TestAllTypesProto.TestAllTypes.newBuilder().addRepeatedBool(false).putMapInt64NestedType(1, com.google.api.expr.test.v1.proto3.TestAllTypesProto.NestedTestAllTypes.getDefaultInstance()).build()).expr("has(TestAllTypes{standalone_enum: TestAllTypes.NestedEnum.BAR}.standalone_enum) \n" + "&& !has(TestAllTypes{standalone_enum: TestAllTypes.NestedEnum.FOO}.standalone_enum) \n" + "&& !has(TestAllTypes{single_nested_enum: TestAllTypes.NestedEnum.FOO}.single_nested_message) \n" + "&& has(TestAllTypes{single_nested_enum: TestAllTypes.NestedEnum.FOO}.single_nested_enum) \n" + "&& !has(TestAllTypes{}.single_nested_message) \n" + "&& has(TestAllTypes{single_nested_message: TestAllTypes.NestedMessage{}}.single_nested_message) \n" + "&& !has(TestAllTypes{}.standalone_enum) \n" + "&& !has(pb3.single_int64) \n" + "&& has(pb3.repeated_bool) \n" + "&& !has(pb3.repeated_int32) \n" + "&& has(pb3.map_int64_nested_type) \n" + "&& !has(pb3.map_string_string)").cost(costOf(1, 35)).exhaustiveCost(costOf(35, 35)), new TestCase(InterpreterTestCase.macro_map).expr("[1, 2, 3].map(x, x * 2) == [2, 4, 6]").cost(costOf(6, 14)).exhaustiveCost(costOf(14, 14)), new TestCase(InterpreterTestCase.matches).expr("input.matches('k.*') \n" + "&& !'foo'.matches('k.*') \n" + "&& !'bar'.matches('k.*') \n" + "&& 'kilimanjaro'.matches('.*ro')").cost(costOf(2, 10)).exhaustiveCost(costOf(10, 10)).env(Decls.newVar("input", Decls.String)).in("input", "kathmandu"), new TestCase(InterpreterTestCase.nested_proto_field).expr("pb3.single_nested_message.bb").cost(costOf(1, 1)).types(com.google.api.expr.test.v1.proto3.TestAllTypesProto.TestAllTypes.getDefaultInstance()).env(Decls.newVar("pb3", Decls.newObjectType("google.api.expr.test.v1.proto3.TestAllTypes"))).in("pb3", com.google.api.expr.test.v1.proto3.TestAllTypesProto.TestAllTypes.newBuilder().setSingleNestedMessage(com.google.api.expr.test.v1.proto3.TestAllTypesProto.TestAllTypes.NestedMessage.newBuilder().setBb(1234).build()).build()).out(intOf(1234)), new TestCase(InterpreterTestCase.nested_proto_field_with_index).expr("pb3.map_int64_nested_type[0].child.payload.single_int32 == 1").cost(costOf(2, 2)).types(com.google.api.expr.test.v1.proto3.TestAllTypesProto.TestAllTypes.getDefaultInstance()).env(Decls.newVar("pb3", Decls.newObjectType("google.api.expr.test.v1.proto3.TestAllTypes"))).in("pb3", com.google.api.expr.test.v1.proto3.TestAllTypesProto.TestAllTypes.newBuilder().putMapInt64NestedType(0, com.google.api.expr.test.v1.proto3.TestAllTypesProto.NestedTestAllTypes.newBuilder().setChild(com.google.api.expr.test.v1.proto3.TestAllTypesProto.NestedTestAllTypes.newBuilder().setPayload(com.google.api.expr.test.v1.proto3.TestAllTypesProto.TestAllTypes.newBuilder().setSingleInt32(1))).build()).build()), new TestCase(InterpreterTestCase.or_true_1st).expr("ai == 20 || ar[\"foo\"] == \"bar\"").cost(costOf(2, 5)).exhaustiveCost(costOf(5, 5)).env(Decls.newVar("ai", Decls.Int), Decls.newVar("ar", Decls.newMapType(Decls.String, Decls.String))).in("ai", 20, "ar", mapOf("foo", "bar")), new TestCase(InterpreterTestCase.or_true_2nd).expr("ai == 20 || ar[\"foo\"] == \"bar\"").cost(costOf(2, 5)).exhaustiveCost(costOf(5, 5)).env(Decls.newVar("ai", Decls.Int), Decls.newVar("ar", Decls.newMapType(Decls.String, Decls.String))).in("ai", 2, "ar", mapOf("foo", "bar")), new TestCase(InterpreterTestCase.or_false).expr("ai == 20 || ar[\"foo\"] == \"bar\"").cost(costOf(2, 5)).exhaustiveCost(costOf(5, 5)).env(Decls.newVar("ai", Decls.Int), Decls.newVar("ar", Decls.newMapType(Decls.String, Decls.String))).in("ai", 2, "ar", mapOf("foo", "baz")).out(False), new TestCase(InterpreterTestCase.or_error_1st_error).expr("1/0 != 0 || false").cost(costOf(2, 3)).exhaustiveCost(costOf(3, 3)).err("divide by zero"), new TestCase(InterpreterTestCase.or_error_2nd_error).expr("false || 1/0 != 0").cost(costOf(0, 3)).exhaustiveCost(costOf(3, 3)).err("divide by zero"), new TestCase(InterpreterTestCase.or_error_1st_true).expr("1/0 != 0 || true").cost(costOf(2, 3)).exhaustiveCost(costOf(3, 3)).out(True), new TestCase(InterpreterTestCase.or_error_2nd_true).expr("true || 1/0 != 0").cost(costOf(0, 3)).exhaustiveCost(costOf(3, 3)).out(True), new TestCase(InterpreterTestCase.pkg_qualified_id).expr("b.c.d != 10").cost(costOf(2, 2)).container("a.b").env(Decls.newVar("a.b.c.d", Decls.Int)).in("a.b.c.d", 9), new TestCase(InterpreterTestCase.pkg_qualified_id_unchecked).expr("c.d != 10").cost(costOf(2, 2)).unchecked().container("a.b").in("a.c.d", 9), new TestCase(InterpreterTestCase.pkg_qualified_index_unchecked).expr("b.c['d'] == 10").cost(costOf(2, 2)).unchecked().container("a.b").in("a.b.c", mapOf("d", 10)), new TestCase(InterpreterTestCase.select_key).expr("m.strMap['val'] == 'string'\n" + "&& m.floatMap['val'] == 1.5\n" + "&& m.doubleMap['val'] == -2.0\n" + "&& m.intMap['val'] == -3\n" + "&& m.int32Map['val'] == 4\n" + "&& m.int64Map['val'] == -5\n" + "&& m.uintMap['val'] == 6u\n" + "&& m.uint32Map['val'] == 7u\n" + "&& m.uint64Map['val'] == 8u\n" + "&& m.boolMap['val'] == true\n" + "&& m.boolMap['val'] != false").cost(costOf(2, 32)).exhaustiveCost(costOf(32, 32)).env(Decls.newVar("m", Decls.newMapType(Decls.String, Decls.Dyn))).in("m", mapOf("strMap", mapOf("val", "string"), "floatMap", mapOf("val", 1.5f), "doubleMap", mapOf("val", -2.0d), "intMap", mapOf("val", -3), "int32Map", mapOf("val", 4), "int64Map", mapOf("val", -5L), "uintMap", mapOf("val", ULong.valueOf(6)), "uint32Map", mapOf("val", ULong.valueOf(7)), "uint64Map", mapOf("val", ULong.valueOf(8L)), "boolMap", mapOf("val", true))), new TestCase(InterpreterTestCase.select_bool_key).expr("m.boolStr[true] == 'string'\n" + "&& m.boolFloat32[true] == 1.5\n" + "&& m.boolFloat64[false] == -2.1\n" + "&& m.boolInt[false] == -3\n" + "&& m.boolInt32[false] == 0\n" + "&& m.boolInt64[true] == 4\n" + "&& m.boolUint[true] == 5u\n" + "&& m.boolUint32[true] == 6u\n" + "&& m.boolUint64[false] == 7u\n" + "&& m.boolBool[true]\n" + "&& m.boolIface[false] == true").cost(costOf(2, 31)).exhaustiveCost(costOf(31, 31)).env(Decls.newVar("m", Decls.newMapType(Decls.String, Decls.Dyn))).in("m", mapOf("boolStr", mapOf(true, "string"), "boolFloat32", mapOf(true, 1.5f), "boolFloat64", mapOf(false, -2.1d), "boolInt", mapOf(false, -3), "boolInt32", mapOf(false, 0), "boolInt64", mapOf(true, 4L), "boolUint", mapOf(true, ULong.valueOf(5)), "boolUint32", mapOf(true, ULong.valueOf(6)), "boolUint64", mapOf(false, ULong.valueOf(7L)), "boolBool", mapOf(true, true), "boolIface", mapOf(false, true))), new TestCase(InterpreterTestCase.select_uint_key).expr("m.uintIface[1u] == 'string'\n" + "&& m.uint32Iface[2u] == 1.5\n" + "&& m.uint64Iface[3u] == -2.1\n" + "&& m.uint64String[4u] == 'three'").cost(costOf(2, 11)).exhaustiveCost(costOf(11, 11)).env(Decls.newVar("m", Decls.newMapType(Decls.String, Decls.Dyn))).in("m", mapOf("uintIface", mapOf(ULong.valueOf(1), "string"), "uint32Iface", mapOf(ULong.valueOf(2), 1.5), "uint64Iface", mapOf(ULong.valueOf(3), -2.1), "uint64String", mapOf(ULong.valueOf(4), "three"))), new TestCase(InterpreterTestCase.select_index).expr("m.strList[0] == 'string'\n" + "&& m.floatList[0] == 1.5\n" + "&& m.doubleList[0] == -2.0\n" + "&& m.intList[0] == -3\n" + "&& m.int32List[0] == 4\n" + "&& m.int64List[0] == -5\n" + "&& m.uintList[0] == 6u\n" + "&& m.uint32List[0] == 7u\n" + "&& m.uint64List[0] == 8u\n" + "&& m.boolList[0] == true\n" + "&& m.boolList[1] != true\n" + "&& m.ifaceList[0] == {}").cost(costOf(2, 35)).exhaustiveCost(costOf(35, 35)).env(Decls.newVar("m", Decls.newMapType(Decls.String, Decls.Dyn))).in("m", mapOf("strList", new String[] { "string" }, "floatList", new Float[] { 1.5f }, "doubleList", new Double[] { -2.0d }, "intList", new int[] { -3 }, "int32List", new int[] { 4 }, "int64List", new long[] { -5L }, "uintList", new Object[] { ULong.valueOf(6) }, "uint32List", new Object[] { ULong.valueOf(7) }, "uint64List", new Object[] { ULong.valueOf(8L) }, "boolList", new boolean[] { true, false }, "ifaceList", new Object[] { new HashMap<>() })), new TestCase(InterpreterTestCase.select_field).expr("a.b.c\n" + "&& pb3.repeated_nested_enum[0] == TestAllTypes.NestedEnum.BAR\n" + "&& json.list[0] == 'world'").cost(costOf(1, 7)).exhaustiveCost(costOf(7, 7)).container("google.api.expr.test.v1.proto3").types(com.google.api.expr.test.v1.proto3.TestAllTypesProto.TestAllTypes.getDefaultInstance()).env(Decls.newVar("a.b", Decls.newMapType(Decls.String, Decls.Bool)), Decls.newVar("pb3", Decls.newObjectType("google.api.expr.test.v1.proto3.TestAllTypes")), Decls.newVar("json", Decls.newMapType(Decls.String, Decls.Dyn))).in("a.b", mapOf("c", true), "pb3", com.google.api.expr.test.v1.proto3.TestAllTypesProto.TestAllTypes.newBuilder().addRepeatedNestedEnum(com.google.api.expr.test.v1.proto3.TestAllTypesProto.TestAllTypes.NestedEnum.BAR).build(), "json", Value.newBuilder().setStructValue(Struct.newBuilder().putFields("list", Value.newBuilder().setListValue(ListValue.newBuilder().addValues(Value.newBuilder().setStringValue("world"))).build())).build()), // pb2 primitive fields may have default values set.
    new TestCase(InterpreterTestCase.select_pb2_primitive_fields).expr("!has(a.single_int32)\n" + "&& a.single_int32 == -32\n" + "&& a.single_int64 == -64\n" + "&& a.single_uint32 == 32u\n" + "&& a.single_uint64 == 64u\n" + "&& a.single_float == 3.0\n" + "&& a.single_double == 6.4\n" + "&& a.single_bool\n" + "&& \"empty\" == a.single_string").cost(costOf(3, 26)).exhaustiveCost(costOf(26, 26)).types(TestAllTypes.getDefaultInstance()).in("a", TestAllTypes.newBuilder().build()).env(Decls.newVar("a", Decls.newObjectType("google.api.expr.test.v1.proto2.TestAllTypes"))), // Wrapper type nil or value test.
    new TestCase(InterpreterTestCase.select_pb3_wrapper_fields).expr("!has(a.single_int32_wrapper) && a.single_int32_wrapper == null\n" + "&& has(a.single_int64_wrapper) && a.single_int64_wrapper == 0\n" + "&& has(a.single_string_wrapper) && a.single_string_wrapper == \"hello\"\n" + "&& a.single_int64_wrapper == Int32Value{value: 0}").cost(costOf(3, 21)).exhaustiveCost(costOf(21, 21)).types(com.google.api.expr.test.v1.proto3.TestAllTypesProto.TestAllTypes.getDefaultInstance()).abbrevs("google.protobuf.Int32Value").env(Decls.newVar("a", Decls.newObjectType("google.api.expr.test.v1.proto3.TestAllTypes"))).in("a", com.google.api.expr.test.v1.proto3.TestAllTypesProto.TestAllTypes.newBuilder().setSingleInt64Wrapper(Int64Value.newBuilder().build()).setSingleStringWrapper(StringValue.of("hello")).build()), new TestCase(InterpreterTestCase.select_pb3_compare).expr("a.single_uint64 > 3u").cost(costOf(2, 2)).container("google.api.expr.test.v1.proto3").types(com.google.api.expr.test.v1.proto3.TestAllTypesProto.TestAllTypes.getDefaultInstance()).env(Decls.newVar("a", Decls.newObjectType("google.api.expr.test.v1.proto3.TestAllTypes"))).in("a", com.google.api.expr.test.v1.proto3.TestAllTypesProto.TestAllTypes.newBuilder().setSingleUint64(10).build()).out(True), new TestCase(InterpreterTestCase.select_pb3_compare_signed).expr("a.single_int64 > 3").cost(costOf(2, 2)).container("google.api.expr.test.v1.proto3").types(com.google.api.expr.test.v1.proto3.TestAllTypesProto.TestAllTypes.getDefaultInstance()).env(Decls.newVar("a", Decls.newObjectType("google.api.expr.test.v1.proto3.TestAllTypes"))).in("a", com.google.api.expr.test.v1.proto3.TestAllTypesProto.TestAllTypes.newBuilder().setSingleInt64(10).build()).out(True), new TestCase(InterpreterTestCase.select_custom_pb3_compare).expr("a.bb > 100").cost(costOf(2, 2)).container("google.api.expr.test.v1.proto3").types(com.google.api.expr.test.v1.proto3.TestAllTypesProto.TestAllTypes.NestedMessage.getDefaultInstance()).env(Decls.newVar("a", Decls.newObjectType("google.api.expr.test.v1.proto3.TestAllTypes.NestedMessage"))).attrs(new CustAttrFactory(newAttributeFactory(testContainer("google.api.expr.test.v1.proto3"), DefaultTypeAdapter.Instance, newEmptyRegistry()))).in("a", com.google.api.expr.test.v1.proto3.TestAllTypesProto.TestAllTypes.NestedMessage.newBuilder().setBb(101).build()).out(True), new TestCase(InterpreterTestCase.select_relative).expr("json('{\"hi\":\"world\"}').hi == 'world'").cost(costOf(2, 2)).env(Decls.newFunction("json", singletonList(Decls.newOverload("string_to_json", singletonList(Decls.String), Decls.Dyn)))).funcs(Overload.unary("json", val -> {
        if (val.type() != StringT.StringType) {
            return noSuchOverload(StringType, "json", val);
        }
        StringT str = (StringT) val;
        Map<String, Object> m = new HashMap<>();
        // TODO need some toJson here
        throw new UnsupportedOperationException("IMPLEMENT ME");
    // json.Unmarshal([]byte(str), &m)
    // return DefaultTypeAdapter.Instance.nativeToValue(m);
    })).disabled("would need some JSON library to implement this test..."), new TestCase(InterpreterTestCase.select_subsumed_field).expr("a.b.c").cost(costOf(1, 1)).env(Decls.newVar("a.b.c", Decls.Int), Decls.newVar("a.b", Decls.newMapType(Decls.String, Decls.String))).in("a.b.c", 10, "a.b", mapOf("c", "ten")).out(intOf(10)), new TestCase(InterpreterTestCase.select_empty_repeated_nested).expr("TestAllTypes{}.repeated_nested_message.size() == 0").cost(costOf(2, 2)).types(com.google.api.expr.test.v1.proto3.TestAllTypesProto.TestAllTypes.getDefaultInstance()).container("google.api.expr.test.v1.proto3").out(True), new TestCase(InterpreterTestCase.duration_get_milliseconds).expr("x.getMilliseconds()").env(Decls.newVar("x", Decls.Duration)).in("x", com.google.protobuf.Duration.newBuilder().setSeconds(123).setNanos(123456789).build()).cost(costOf(2, 2)).exhaustiveCost(costOf(2, 2)).out(123123), new TestCase(InterpreterTestCase.timestamp_get_hours_tz).expr("timestamp('2009-02-13T23:31:30Z').getHours('2:00')").out(intOf(1)).cost(costOf(2, 2)).optimizedCost(costOf(1, 1)), new TestCase(InterpreterTestCase.index_out_of_range).expr("[1, 2, 3][3]").err("invalid_argument: index '3' out of range in list of size '3'"), new TestCase(InterpreterTestCase.parse_nest_list_index).expr("a[a[a[a[a[a[a[a[a[a[a[a[a[a[a[a[a[a[a[a[a[a[a[a[a[a[a[a[a[a[a[a[0]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]").env(Decls.newVar("a", Decls.newListType(Decls.Int))).in("a", new long[] { 0 }).out(intOf(0)) };
}
Also used : Val(org.projectnessie.cel.common.types.ref.Val) HashMap(java.util.HashMap) ByteString(com.google.protobuf.ByteString) StringT(org.projectnessie.cel.common.types.StringT) CustAttrFactory(org.projectnessie.cel.interpreter.AttributesTest.CustAttrFactory)

Aggregations

CheckedExpr (com.google.api.expr.v1alpha1.CheckedExpr)1 Expr (com.google.api.expr.v1alpha1.Expr)1 Call (com.google.api.expr.v1alpha1.Expr.Call)1 Ident (com.google.api.expr.v1alpha1.Expr.Ident)1 ParsedExpr (com.google.api.expr.v1alpha1.ParsedExpr)1 Type (com.google.api.expr.v1alpha1.Type)1 ByteString (com.google.protobuf.ByteString)1 Arrays.asList (java.util.Arrays.asList)1 Collections.emptyList (java.util.Collections.emptyList)1 Collections.emptyMap (java.util.Collections.emptyMap)1 Collections.singletonList (java.util.Collections.singletonList)1 HashMap (java.util.HashMap)1 CompletableFuture (java.util.concurrent.CompletableFuture)1 ExecutorService (java.util.concurrent.ExecutorService)1 Executors (java.util.concurrent.Executors)1 TimeUnit (java.util.concurrent.TimeUnit)1 AtomicReference (java.util.concurrent.atomic.AtomicReference)1 Consumer (java.util.function.Consumer)1 IntStream (java.util.stream.IntStream)1 Assertions.assertThat (org.assertj.core.api.Assertions.assertThat)1