use serde::{Deserialize, Serialize};
use crate::protocol::JsonMessage;
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
#[serde(tag = "op", rename = "unadvertise", rename_all = "camelCase")]
pub struct Unadvertise {
pub channel_ids: Vec<u32>,
}
impl Unadvertise {
pub fn new(channel_ids: impl IntoIterator<Item = u32>) -> Self {
Self {
channel_ids: channel_ids.into_iter().collect(),
}
}
}
impl JsonMessage for Unadvertise {}
#[cfg(test)]
mod tests {
use super::*;
fn message() -> Unadvertise {
Unadvertise::new([1, 2, 3])
}
#[test]
fn test_encode() {
insta::assert_json_snapshot!(message());
}
#[test]
fn test_roundtrip() {
let orig = message();
let buf = orig.to_string();
let parsed: Unadvertise = serde_json::from_str(&buf).unwrap();
assert_eq!(parsed, orig);
}
}