diff --git a/lib/src/acl.rs b/lib/src/acl.rs index ec16b994..5ad01882 100644 --- a/lib/src/acl.rs +++ b/lib/src/acl.rs @@ -27,6 +27,22 @@ impl Acls { } /// An acl is a collection of acl entries. +/// +/// The JSON representation of this struct intentionally matches the JSON +/// format used to create/update ACLs via api.fastly.com. The goal being +/// to allow users to use the same JSON in Viceroy as in production. +/// +/// Example: +/// +/// ```json +/// { "entries": [ +/// { "op": "create", "prefix": "1.2.3.0/24", "action": "BLOCK" }, +/// { "op": "create", "prefix": "23.23.23.23/32", "action": "ALLOW" }, +/// { "op": "update", "prefix": "FACE::/32", "action": "ALLOW" } +/// ]} +/// ``` +/// +/// Note that, in Viceroy, the `op` field is ignored. #[derive(Debug, Default, Deserialize)] pub struct Acl { pub(crate) entries: Vec, @@ -273,6 +289,9 @@ fn acl_lookup() { #[test] fn acl_json_parse() { + // In the following JSON, the `op` field should be ignored. It's included + // to assert that the JSON format used with api.fastly.com to create/modify + // ACLs can be used in Viceroy as well. let input = r#" { "entries": [ { "op": "create", "prefix": "1.2.3.0/24", "action": "BLOCK" }, diff --git a/test-fixtures/data/my-acl-1.json b/test-fixtures/data/my-acl-1.json index 6ed02a26..ee44a2e9 100644 --- a/test-fixtures/data/my-acl-1.json +++ b/test-fixtures/data/my-acl-1.json @@ -1,8 +1,8 @@ { "entries": [ - { "prefix": "1.2.3.0/24", "action": "BLOCK" }, - { "prefix": "192.168.0.0/16", "action": "BLOCK" }, - { "prefix": "23.23.23.23/32", "action": "ALLOW" }, - { "prefix": "1.2.3.4/32", "action": "ALLOW" } + { "op": "update", "prefix": "1.2.3.0/24", "action": "BLOCK" }, + { "op": "create", "prefix": "192.168.0.0/16", "action": "BLOCK" }, + { "op": "update", "prefix": "23.23.23.23/32", "action": "ALLOW" }, + { "op": "create", "prefix": "1.2.3.4/32", "action": "ALLOW" } ] } diff --git a/test-fixtures/data/my-acl-2.json b/test-fixtures/data/my-acl-2.json index bb385ec9..113a33e6 100644 --- a/test-fixtures/data/my-acl-2.json +++ b/test-fixtures/data/my-acl-2.json @@ -1,6 +1,6 @@ { "entries": [ - { "prefix": "2000::/24", "action": "BLOCK" }, - { "prefix": "FACE::/16", "action": "ALLOW" } + { "op": "update", "prefix": "2000::/24", "action": "BLOCK" }, + { "op": "create", "prefix": "FACE::/16", "action": "ALLOW" } ] }