ghastoolkit 0.12.2

GitHub Advanced Security Toolkit in Rust
Documentation
use serde::{Deserialize, Serialize};

use crate::supplychain::License;

/// List of Licenses for a dependency
///
/// # Example
///
/// ```rust
/// use ghastoolkit::supplychain::Licenses;
///
/// // Parse a string into a list of licenses
/// let licenses = Licenses::from("MIT, Apache-2.0");
/// # assert_eq!(licenses.len(), 2);
/// // Do some with the licenses
///
/// ```
#[derive(Debug, Clone, Default, Serialize, Deserialize, PartialEq, Eq)]
pub struct Licenses {
    licenses: Vec<License>,
}

impl Licenses {
    /// Create a new list of licenses
    pub fn new() -> Self {
        Self {
            licenses: Vec::new(),
        }
    }

    /// Push a new license to the list
    pub fn push(&mut self, license: License) {
        self.licenses.push(license);
    }

    /// Check if the list of licenses is empty
    pub fn is_empty(&self) -> bool {
        self.licenses.is_empty()
    }

    /// Get the length of the list of licenses
    pub fn len(&self) -> usize {
        self.licenses.len()
    }

    /// Check if the list contains a particular license
    pub fn contains(&self, license: &License) -> bool {
        self.licenses.contains(license)
    }

    /// Parse a string into a list of licenses.
    /// It will split the string by "and" or ","
    pub fn parse(value: &str) -> Licenses {
        match value.to_lowercase().as_str() {
            value if value.contains("and") => Licenses::parse_sep(value, "and"),
            value if value.contains(',') => Licenses::parse_sep(value, ","),
            _ => {
                let mut licenses = Licenses::new();
                licenses.push(License::from(value));
                licenses
            }
        }
    }

    fn parse_sep(value: &str, sep: &str) -> Licenses {
        let mut licenses = Licenses::new();
        for license in value.split(sep) {
            licenses.push(License::from(license.trim()));
        }
        licenses
    }
}

impl IntoIterator for Licenses {
    type Item = License;
    type IntoIter = std::vec::IntoIter<License>;

    fn into_iter(self) -> Self::IntoIter {
        self.licenses.into_iter()
    }
}

impl From<&str> for Licenses {
    fn from(value: &str) -> Self {
        Licenses::parse(value)
    }
}

impl From<String> for Licenses {
    fn from(value: String) -> Self {
        Licenses::parse(value.as_str())
    }
}

impl From<Vec<&str>> for Licenses {
    fn from(value: Vec<&str>) -> Self {
        let mut licenses = Licenses::new();
        for license in value {
            licenses.push(License::from(license));
        }
        licenses
    }
}

#[cfg(test)]
mod tests {
    use crate::supplychain::{License, Licenses};

    #[test]
    fn test_single_license() {
        let licenses = Licenses::from("Apache-2.0");

        let correct = Licenses {
            licenses: vec![License::Apache(String::from("2.0"))],
        };

        assert_eq!(licenses, correct);
        assert_eq!(licenses.len(), 1);
    }

    #[test]
    fn test_licenses_from_str() {
        let licenses = Licenses::from("Apache-2.0 AND MIT");

        let correct = Licenses {
            licenses: vec![License::Apache(String::from("2.0")), License::MIT],
        };

        assert_eq!(licenses, correct);
        assert_eq!(licenses.len(), 2);
    }

    #[test]
    fn test_licenses_from_vec() {
        let licenses = Licenses::from(vec!["Apache-2.0", "MIT"]);

        let correct = Licenses {
            licenses: vec![License::Apache(String::from("2.0")), License::MIT],
        };

        assert_eq!(licenses, correct);
        assert_eq!(licenses.len(), 2);
    }

    #[test]
    fn test_licenses_commasep() {
        let licenses = Licenses::from("Apache-2.0, MIT");

        let correct = Licenses {
            licenses: vec![License::Apache(String::from("2.0")), License::MIT],
        };

        assert_eq!(licenses, correct);
    }
}