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
use std::io::Write;

use crate::{
    codec::{Decoder, Encoder},
    error::{DecodeError, EncodeError},
    protocol::commands::COMMAND_HEARTBEAT,
};

use super::Command;

#[cfg_attr(test, derive(fake::Dummy))]
#[derive(PartialEq, Eq, Debug, Default)]
pub struct HeartBeatCommand {}

impl Encoder for HeartBeatCommand {
    fn encoded_size(&self) -> u32 {
        0
    }

    fn encode(&self, _writer: &mut impl Write) -> Result<(), EncodeError> {
        Ok(())
    }
}

impl Command for HeartBeatCommand {
    fn key(&self) -> u16 {
        COMMAND_HEARTBEAT
    }
}

impl Decoder for HeartBeatCommand {
    fn decode(input: &[u8]) -> Result<(&[u8], Self), DecodeError> {
        Ok((input, HeartBeatCommand {}))
    }
}

#[cfg_attr(test, derive(fake::Dummy))]
#[derive(Debug, PartialEq, Eq)]
pub struct HeartbeatResponse {}

impl Decoder for HeartbeatResponse {
    fn decode(input: &[u8]) -> Result<(&[u8], Self), DecodeError> {
        Ok((input, HeartbeatResponse {}))
    }
}

impl Encoder for HeartbeatResponse {
    fn encoded_size(&self) -> u32 {
        0
    }

    fn encode(&self, _writer: &mut impl std::io::Write) -> Result<(), crate::error::EncodeError> {
        Ok(())
    }
}

#[cfg(test)]
mod tests {
    use crate::commands::tests::command_encode_decode_test;

    use super::HeartBeatCommand;
    use crate::commands::heart_beat::HeartbeatResponse;

    #[test]
    fn heart_request_test() {
        command_encode_decode_test::<HeartBeatCommand>();
    }

    #[test]
    fn heart_response_test() {
        command_encode_decode_test::<HeartbeatResponse>();
    }
}