use relay_protocol::{Annotated, Empty, FromValue, IntoValue, Object, Value};
use crate::processor::ProcessValue;
use crate::protocol::EventId;
#[derive(Clone, Debug, Default, PartialEq, Empty, FromValue, IntoValue, ProcessValue)]
pub struct ReplayContext {
pub replay_id: Annotated<EventId>,
#[metastructure(additional_properties, retain = "true")]
pub other: Object<Value>,
}
impl super::DefaultContext for ReplayContext {
fn default_key() -> &'static str {
"replay"
}
fn from_context(context: super::Context) -> Option<Self> {
match context {
super::Context::Replay(c) => Some(*c),
_ => None,
}
}
fn cast(context: &super::Context) -> Option<&Self> {
match context {
super::Context::Replay(c) => Some(c),
_ => None,
}
}
fn cast_mut(context: &mut super::Context) -> Option<&mut Self> {
match context {
super::Context::Replay(c) => Some(c),
_ => None,
}
}
fn into_context(self) -> super::Context {
super::Context::Replay(Box::new(self))
}
}
#[cfg(test)]
mod tests {
use super::*;
use crate::protocol::Context;
#[test]
fn test_replay_context() {
let json = r#"{
"replay_id": "4c79f60c11214eb38604f4ae0781bfb2",
"type": "replay"
}"#;
let context = Annotated::new(Context::Replay(Box::new(ReplayContext {
replay_id: Annotated::new(EventId("4c79f60c11214eb38604f4ae0781bfb2".parse().unwrap())),
other: Object::default(),
})));
assert_eq!(context, Annotated::from_json(json).unwrap());
assert_eq!(json, context.to_json_pretty().unwrap());
}
#[test]
fn test_replay_context_normalization() {
let json = r#"{
"replay_id": "4C79F60C11214EB38604F4AE0781BFB2",
"type": "replay"
}"#;
let context = Annotated::new(Context::Replay(Box::new(ReplayContext {
replay_id: Annotated::new(EventId("4c79f60c11214eb38604f4ae0781bfb2".parse().unwrap())),
other: Object::default(),
})));
assert_eq!(context, Annotated::from_json(json).unwrap());
}
}