-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathconvert-policy-json-to-cedar.rs
55 lines (49 loc) · 1.82 KB
/
convert-policy-json-to-cedar.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/*
* Copyright Cedar Contributors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#![no_main]
use thiserror::Error;
use cedar_drt_inner::*;
use cedar_policy_core::{ast::PolicyID, est::FromJsonError};
#[derive(miette::Diagnostic, Error, Debug)]
enum ESTParseError {
#[error(transparent)]
JSONToEST(#[from] serde_json::error::Error),
#[error(transparent)]
#[diagnostic(transparent)]
ESTToAST(#[from] FromJsonError),
}
fuzz_target!(|est_json_str: String| {
if let Ok(ast_from_est) = serde_json::from_str::<serde_json::Value>(&est_json_str)
.and_then(|val| serde_json::from_value::<cedar_policy_core::est::Policy>(val))
.map_err(ESTParseError::from)
.and_then(|est| {
est.try_into_ast_template(Some(PolicyID::from_string("policy0")))
.map_err(ESTParseError::from)
})
{
let ast_from_cedar =
cedar_policy_core::parser::parse_policy_or_template(None, &ast_from_est.to_string());
match ast_from_cedar {
Ok(ast_from_cedar) => {
check_policy_equivalence(&ast_from_est, &ast_from_cedar);
}
Err(e) => {
println!("{:?}", miette::Report::new(e));
panic!("Policy parsed from est to ast but did not roundtrip ast->text->ast");
}
}
}
});