rs-pfcp 0.4.0

High-performance Rust implementation of PFCP (Packet Forwarding Control Protocol) for 5G networks with 100% 3GPP TS 29.244 Release 18 compliance
Documentation
//! Quota Validity Time Information Element.
//!
//! Per 3GPP TS 29.244 Section 8.2.131, contains the validity time
//! of a quota in seconds.

use crate::error::PfcpError;
use crate::ie::{Ie, IeType};

#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub struct QuotaValidityTime {
    pub value: u32,
}

impl QuotaValidityTime {
    pub fn new(value: u32) -> Self {
        Self { value }
    }

    pub fn marshal(&self) -> [u8; 4] {
        self.value.to_be_bytes()
    }

    pub fn unmarshal(data: &[u8]) -> Result<Self, PfcpError> {
        if data.len() < 4 {
            return Err(PfcpError::invalid_length(
                "Quota Validity Time",
                IeType::QuotaValidityTime,
                4,
                data.len(),
            ));
        }
        Ok(Self {
            value: u32::from_be_bytes(data[0..4].try_into().unwrap()),
        })
    }

    pub fn to_ie(&self) -> Ie {
        Ie::new(IeType::QuotaValidityTime, self.marshal().to_vec())
    }
}

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

    #[test]
    fn test_marshal_unmarshal() {
        let ie = QuotaValidityTime::new(3600);
        let parsed = QuotaValidityTime::unmarshal(&ie.marshal()).unwrap();
        assert_eq!(parsed, ie);
    }

    #[test]
    fn test_round_trip_values() {
        for &v in &[0, 1, 60, 3600, 86400, u32::MAX] {
            let ie = QuotaValidityTime::new(v);
            let parsed = QuotaValidityTime::unmarshal(&ie.marshal()).unwrap();
            assert_eq!(parsed, ie);
        }
    }

    #[test]
    fn test_unmarshal_short() {
        assert!(matches!(
            QuotaValidityTime::unmarshal(&[0; 3]),
            Err(PfcpError::InvalidLength { .. })
        ));
    }

    #[test]
    fn test_to_ie() {
        assert_eq!(
            QuotaValidityTime::new(60).to_ie().ie_type,
            IeType::QuotaValidityTime
        );
    }

    #[test]
    fn test_byte_order() {
        assert_eq!(
            QuotaValidityTime::new(0x12345678).marshal(),
            [0x12, 0x34, 0x56, 0x78]
        );
    }
}