identity_credential/credential/
policy.rsuse serde::Deserialize;
use serde::Serialize;
use identity_core::common::Object;
use identity_core::common::OneOrMany;
use identity_core::common::Url;
#[derive(Clone, Debug, Default, PartialEq, Eq, Deserialize, Serialize)]
pub struct Policy {
#[serde(skip_serializing_if = "Option::is_none")]
pub id: Option<Url>,
#[serde(rename = "type")]
pub types: OneOrMany<String>,
#[serde(flatten)]
pub properties: Object,
}
impl Policy {
pub fn new<T>(types: T) -> Self
where
T: Into<OneOrMany<String>>,
{
Self {
id: None,
types: types.into(),
properties: Object::new(),
}
}
pub fn with_id<T>(types: T, id: Url) -> Self
where
T: Into<OneOrMany<String>>,
{
Self {
id: Some(id),
types: types.into(),
properties: Object::new(),
}
}
pub fn with_properties<T>(types: T, properties: Object) -> Self
where
T: Into<OneOrMany<String>>,
{
Self {
id: None,
types: types.into(),
properties,
}
}
pub fn with_id_and_properties<T>(types: T, id: Url, properties: Object) -> Self
where
T: Into<OneOrMany<String>>,
{
Self {
id: Some(id),
types: types.into(),
properties,
}
}
}
#[cfg(test)]
mod tests {
use identity_core::convert::FromJson;
use crate::credential::Policy;
const JSON1: &str = include_str!("../../tests/fixtures/policy-1.json");
const JSON2: &str = include_str!("../../tests/fixtures/policy-2.json");
#[test]
fn test_from_json() {
let policy: Policy = Policy::from_json(JSON1).unwrap();
assert_eq!(policy.id.unwrap(), "http://example.com/policies/credential/4");
assert_eq!(policy.types.as_slice(), ["IssuerPolicy"]);
assert_eq!(policy.properties["profile"], "http://example.com/profiles/credential");
assert_eq!(
policy.properties["prohibition"][0]["assigner"],
"https://example.edu/issuers/14"
);
assert_eq!(policy.properties["prohibition"][0]["assignee"], "AllVerifiers");
assert_eq!(
policy.properties["prohibition"][0]["target"],
"http://example.edu/credentials/3732"
);
assert_eq!(policy.properties["prohibition"][0]["action"][0], "Archival");
let policy: Policy = Policy::from_json(JSON2).unwrap();
assert_eq!(policy.id.unwrap(), "http://example.com/policies/credential/6");
assert_eq!(policy.types.as_slice(), ["HolderPolicy"]);
assert_eq!(policy.properties["profile"], "http://example.com/profiles/credential");
assert_eq!(
policy.properties["prohibition"][0]["assigner"],
"did:example:ebfeb1f712ebc6f1c276e12ec21"
);
assert_eq!(
policy.properties["prohibition"][0]["assignee"],
"https://wineonline.example.org/"
);
assert_eq!(
policy.properties["prohibition"][0]["target"],
"http://example.edu/credentials/3732"
);
assert_eq!(policy.properties["prohibition"][0]["action"][0], "3rdPartyCorrelation");
}
}