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
use chrono::{DateTime, Utc};
use serde::{Deserialize, Serialize};
use strum_macros::{EnumString, ToString};

#[derive(Debug, Serialize, Deserialize, PartialEq)]
#[serde(rename_all = "camelCase")]
pub struct InvoiceEvent {
    pub invoice_id: String,
    pub event_date: DateTime<Utc>,
    #[serde(flatten)]
    pub event_type: InvoiceEventType,
}

#[derive(Clone, Debug, Serialize, Deserialize, PartialEq, EnumString, ToString)]
#[serde(tag = "eventType")]
pub enum InvoiceEventType {
    #[strum(to_string = "RECEIVED")]
    InvoiceReceivedEvent,
    #[strum(to_string = "ACCEPTED")]
    InvoiceAcceptedEvent,
    #[strum(to_string = "REJECTED")]
    InvoiceRejectedEvent {
        rejection: crate::payment::Rejection,
    },
    #[strum(to_string = "CANCELLED")]
    InvoiceCancelledEvent,
    #[strum(to_string = "SETTLED")]
    InvoiceSettledEvent,
}

#[cfg(test)]
mod test {
    use super::*;
    use crate::payment::{Rejection, RejectionReason};
    use bigdecimal::{BigDecimal, FromPrimitive};
    use chrono::TimeZone;

    #[test]
    fn test_serialize_rejected_event_has_flat_rejection() {
        let ie = InvoiceEvent {
            invoice_id: "ajdik".to_string(),
            event_date: Utc
                .datetime_from_str("2020-12-21T15:51:21.126645Z", "%+")
                .unwrap(),
            event_type: InvoiceEventType::InvoiceRejectedEvent {
                rejection: Rejection {
                    rejection_reason: RejectionReason::UnsolicitedService,
                    total_amount_accepted: BigDecimal::from_f32(3.14).unwrap(),
                    message: None,
                },
            },
        };

        assert_eq!(
            "{\"invoiceId\":\"ajdik\",\
                \"eventDate\":\"2020-12-21T15:51:21.126645Z\",\
                \"eventType\":\"InvoiceRejectedEvent\",\
                \"rejection\":{\
                    \"rejectionReason\":\"UNSOLICITED_SERVICE\",\
                    \"totalAmountAccepted\":\"3.140000\"\
                }\
             }",
            serde_json::to_string(&ie).unwrap()
        );
    }

    #[test]
    fn test_deserialize_event() {
        let ie: InvoiceEvent = serde_json::from_str(
            "{\
                \"invoiceId\":\"ajdik\",\
                \"eventDate\":\"2020-12-21T15:51:21.126645Z\",\
                \"eventType\":\"InvoiceAcceptedEvent\"\
            }",
        )
        .unwrap();

        assert_eq!(
            InvoiceEvent {
                invoice_id: "ajdik".to_string(),
                event_date: Utc
                    .datetime_from_str("2020-12-21T15:51:21.126645Z", "%+")
                    .unwrap(),
                event_type: InvoiceEventType::InvoiceAcceptedEvent,
            },
            ie
        );
    }

    #[test]
    fn test_serialize_event_type() {
        let iet = InvoiceEventType::InvoiceSettledEvent;
        assert_eq!(
            "{\"eventType\":\"InvoiceSettledEvent\"}",
            serde_json::to_string(&iet).unwrap()
        );
    }

    #[test]
    fn test_deserialize_event_type() {
        let iet: InvoiceEventType =
            serde_json::from_str("{\"eventType\":\"InvoiceReceivedEvent\"}").unwrap();
        assert_eq!(InvoiceEventType::InvoiceReceivedEvent, iet);
    }

    #[test]
    fn test_deserialize_event_type_from_str() {
        let iet: InvoiceEventType = "REJECTED".parse().unwrap();
        assert_eq!(
            InvoiceEventType::InvoiceRejectedEvent {
                rejection: Default::default()
            },
            iet
        );
    }

    #[test]
    fn test_deserialize_event_type_to_string() {
        assert_eq!(InvoiceEventType::InvoiceSettledEvent.to_string(), "SETTLED");
    }
}