OPA conformance: Ensure that withkeyword OPA tests pass (#88)

- ignore worktrees
- feature guard time module
- Apply with modifiers before evaluating loop expressions
- Support value modifier for functions
- stubs for http.send and io.jwt.decode_verify
- Initialize with-document after initializing init data
- In case of conflict, with modifier override init-data values.
- In case of conflict, subsequent with modifier overrides earlier ones.
- Ensure that zero parameter functions are evaluated and added to document
- opa.runtime builtin
  returns:
   - git commit hash
   - environment vars
   - regorus features enabled
   - builtins available
   - deprecated builtins available
- If `sort_bindings` is specified, sort the bindings in OPA tests
- gather inputs, used vars and comprehensions in with modifiers
- For refs starting with `data`, ensure that modules are evaluated before looking up
  value of the expression. Thie ensures that modules that have only been partly populated
  (E.g via with mods) are completely evaluated before the value is looked up
- Mark rules overridden using with modifiers are evaluated.
- Exclude env vars in opa.runtime.
- Include regorus version in OPA runtime
- update to opa v0.60.0
- scheduler: Handle function refs in with modifers. Error out only if
  a truly undefined ref.
- Handle undefined params, parameter expression evaluation errors before
  applying with modifiers.
- When applying with modifiers, first determine whether the target is a
  function. If so, handle cleanly.
- concat: raise error only in strict mode
- In strict mode, propagate errors raised by function rule execution
  in case of multiple function definitions for same rule
- skip "withkeyword/builtin-builtin: arity 0" test which can never pass.
- When a mock has is being applied, clear with_function so that
  other mocks won't be applied during the evaluation of the mock.
- Ability to specify strictness in tests

Signed-off-by: Anand Krishnamoorthi <anakrish@microsoft.com>
This commit is contained in:
Anand Krishnamoorthi
2024-01-04 01:13:04 -08:00
committed by GitHub
parent b470c3fb7f
commit 25dec7e59b
16 changed files with 574 additions and 142 deletions
+1
View File
@@ -132,6 +132,7 @@ cases:
want_result:
a1: "hello world"
a2: 6
strict: false
- note: or-all-error
data: {}
+9
View File
@@ -138,8 +138,10 @@ pub fn eval_file(
input_opt: Option<ValueOrVec>,
query: &str,
enable_tracing: bool,
strict: bool,
) -> Result<Vec<Value>> {
let mut engine: Engine = engine::Engine::new();
engine.set_strict_builtin_errors(strict);
let mut results = vec![];
let mut files = vec![];
@@ -237,6 +239,12 @@ struct TestCase {
traces: Option<bool>,
want_error: Option<String>,
want_error_code: Option<String>,
#[serde(default = "default_strict")]
strict: bool,
}
fn default_strict() -> bool {
true
}
#[derive(Serialize, Deserialize, PartialEq, Debug)]
@@ -270,6 +278,7 @@ fn yaml_test_impl(file: &str) -> Result<()> {
case.input,
case.query.as_str(),
enable_tracing,
case.strict,
) {
Ok(results) => match case.want_result {
Some(want_result) => {
+3 -2
View File
@@ -6,6 +6,7 @@ array
assignments
base64builtins
base64urlbuiltins
baseandvirtualdocs
bitsand
bitsnegate
bitsor
@@ -47,7 +48,6 @@ indexing
indirectreferences
inputvalues
intersection
invalidkeyerror
jsonbuiltins
jsonfilter
jsonfilteridempotent
@@ -110,4 +110,5 @@ urlbuiltins
uuid
varreferences
virtualdocs
walkbuiltin
walkbuiltin
withkeyword
+22 -3
View File
@@ -13,7 +13,7 @@ use serde::{Deserialize, Serialize};
use walkdir::WalkDir;
const OPA_REPO: &str = "https://github.com/open-policy-agent/opa";
const OPA_BRANCH: &str = "v0.58.0";
const OPA_BRANCH: &str = "v0.60.0";
#[derive(Serialize, Deserialize, PartialEq, Debug)]
#[serde(deny_unknown_fields)]
@@ -85,7 +85,19 @@ fn eval_test_case(case: &TestCase) -> Result<Value> {
let mut values = vec![];
for qr in query_results.result {
values.push(if !qr.bindings.is_empty_object() {
qr.bindings.clone()
if case.sort_bindings == Some(true) {
let mut v = qr.bindings.clone();
let bindings = v.as_object_mut()?;
for (_, v) in bindings.iter_mut() {
match v {
Value::Array(_) => v.as_array_mut()?.sort(),
_ => (),
}
}
v
} else {
qr.bindings.clone()
}
} else if let Some(v) = qr.expressions.last() {
v.value.clone()
} else {
@@ -168,7 +180,14 @@ fn run_opa_tests(opa_tests_dir: String, folders: &[String]) -> Result<()> {
]
}]"#,
)?;
};
} else if case.note == "withkeyword/builtin-builtin: arity 0" {
// The test expects empty object to be returned by opa.runtime.
// This cannot happen.
// Skip the test.
println!("skipping impossible test: {}", case.note);
continue;
}
match (eval_test_case(&case), &case.want_result) {
(Ok(actual), Some(expected))
if is_json_schema_test && json_schema_tests_check(&actual, &expected) =>