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
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
use super::{Channel, Encodable};
use std::io::{Result, Write};

/// Reply to a specific message (using an UUID) on a channel

#[non_exhaustive]
#[must_use = "commands must be encoded"]
#[derive(Debug, Copy, Clone, PartialEq, Ord, PartialOrd, Eq, Hash)]
#[cfg_attr(feature = "serde", derive(::serde::Deserialize))]
pub struct Reply<'a> {
    pub(crate) channel: &'a str,
    pub(crate) msg_id: &'a str,
    pub(crate) msg: &'a str,
}

/// Reply to a specific message (using an UUID) on a channel

pub const fn reply<'a>(channel: &'a str, msg_id: &'a str, msg: &'a str) -> Reply<'a> {
    Reply {
        channel,
        msg_id,
        msg,
    }
}

impl<'a> Encodable for Reply<'a> {
    fn encode<W: Write + ?Sized>(&self, buf: &mut W) -> Result<()> {
        write_nl!(
            buf,
            "@reply-parent-msg-id={} PRIVMSG {} :{}",
            self.msg_id,
            Channel(self.channel),
            self.msg
        )
    }
}

#[cfg(test)]
mod tests {
    use super::super::*;
    use super::*;

    const TEST_UUID: &str = "aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa";

    #[test]
    fn reply_encode() {
        test_encode(
            reply("#museun", TEST_UUID, "this is a test of a line"),
            format!(
                "@reply-parent-msg-id={} PRIVMSG #museun :this is a test of a line\r\n",
                TEST_UUID
            ),
        );

        test_encode(
            reply("#museun", TEST_UUID, &"foo ".repeat(500)),
            format!(
                "@reply-parent-msg-id={} PRIVMSG #museun :{}\r\n",
                TEST_UUID,
                &"foo ".repeat(500)
            ),
        );
    }

    #[test]
    fn reply_ensure_channel_encode() {
        test_encode(
            reply("museun", TEST_UUID, "this is a test of a line"),
            format!(
                "@reply-parent-msg-id={} PRIVMSG #museun :this is a test of a line\r\n",
                TEST_UUID
            ),
        );

        test_encode(
            reply("museun", TEST_UUID, &"foo ".repeat(500)),
            format!(
                "@reply-parent-msg-id={} PRIVMSG #museun :{}\r\n",
                TEST_UUID,
                &"foo ".repeat(500)
            ),
        );
    }

    #[test]
    #[cfg(feature = "serde")]
    fn reply_serde() {
        test_serde(
            reply("#museun", TEST_UUID, "this is a test of a line"),
            format!(
                "@reply-parent-msg-id={} PRIVMSG #museun :this is a test of a line\r\n",
                TEST_UUID
            ),
        );

        test_serde(
            reply("#museun", TEST_UUID, &"foo ".repeat(500)),
            format!(
                "@reply-parent-msg-id={} PRIVMSG #museun :{}\r\n",
                TEST_UUID,
                &"foo ".repeat(500)
            ),
        );
    }

    #[test]
    #[cfg(feature = "serde")]
    fn reply_ensure_channel_serde() {
        test_serde(
            reply("museun", TEST_UUID, "this is a test of a line"),
            format!(
                "@reply-parent-msg-id={} PRIVMSG #museun :this is a test of a line\r\n",
                TEST_UUID
            ),
        );

        test_serde(
            reply("museun", TEST_UUID, &"foo ".repeat(500)),
            format!(
                "@reply-parent-msg-id={} PRIVMSG #museun :{}\r\n",
                TEST_UUID,
                &"foo ".repeat(500)
            ),
        );
    }
}