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
use crate::{datagram::*, derive::DEFAULT_TIMEOUT, firmware::fpga::GPIOIn, geometry::Device};

/// Datagram for configure force fan
pub struct EmulateGPIOIn<F: Fn(&Device, GPIOIn) -> bool> {
    f: F,
}

impl<F: Fn(&Device, GPIOIn) -> bool> EmulateGPIOIn<F> {
    /// constructor
    pub const fn new(f: F) -> Self {
        Self { f }
    }

    /// Get the function
    // GRCOV_EXCL_START
    pub fn f(&self) -> &F {
        &self.f
    }
    // GRCOV_EXCL_STOP
}

impl<F: Fn(&Device, GPIOIn) -> bool> Datagram for EmulateGPIOIn<F> {
    type O1 = crate::firmware::operation::EmulateGPIOInOp<F>;
    type O2 = crate::firmware::operation::NullOp;

    fn operation(self) -> (Self::O1, Self::O2) {
        (Self::O1::new(self.f), Self::O2::default())
    }

    fn timeout(&self) -> Option<Duration> {
        Some(DEFAULT_TIMEOUT)
    }
}

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

    // GRCOV_EXCL_START
    fn f(_: &Device, _: GPIOIn) -> bool {
        true
    }
    // GRCOV_EXCL_STOP

    #[test]
    fn test_timeout() {
        let datagram = EmulateGPIOIn::new(f);
        let timeout = datagram.timeout();
        assert!(timeout.is_some());
        assert!(timeout.unwrap() > Duration::ZERO);
    }

    #[test]
    fn test_operation() {
        let datagram = EmulateGPIOIn::new(f);
        let _ = datagram.operation();
    }
}