aboutsummaryrefslogtreecommitdiff
path: root/src/validate_ipv4_address.rs
diff options
context:
space:
mode:
authorRichard Walters <rwalters@digitalstirling.com>2020-10-14 23:56:26 -0700
committerRichard Walters <rwalters@digitalstirling.com>2020-10-14 23:56:26 -0700
commit4bb39345ab9cfcaecf9a5aae7dda1b08a6ab490e (patch)
tree5a6b4c287452782861632438174eafedb5891bb2 /src/validate_ipv4_address.rs
parent03b82171f70815e43fbc64d120a20e7a1eebd0bc (diff)
Distribute tests closer to the code they test
Diffstat (limited to 'src/validate_ipv4_address.rs')
-rw-r--r--src/validate_ipv4_address.rs53
1 files changed, 53 insertions, 0 deletions
diff --git a/src/validate_ipv4_address.rs b/src/validate_ipv4_address.rs
index 1b9f7b2..98254df 100644
--- a/src/validate_ipv4_address.rs
+++ b/src/validate_ipv4_address.rs
@@ -94,3 +94,56 @@ pub fn validate_ipv4_address<T>(address: T) -> Result<(), Error>
})?
.finalize()
}
+
+#[cfg(test)]
+mod tests {
+
+ use super::*;
+
+ #[test]
+ fn good() {
+ let test_vectors = [
+ "0.0.0.0",
+ "1.2.3.0",
+ "1.2.3.4",
+ "1.2.3.255",
+ "1.2.255.4",
+ "1.255.3.4",
+ "255.2.3.4",
+ "255.255.255.255",
+ ];
+ for test_vector in &test_vectors {
+ assert!(validate_ipv4_address(*test_vector).is_ok());
+ }
+ }
+
+ #[test]
+ fn bad() {
+ named_tuple!(
+ struct TestVector {
+ address_string: &'static str,
+ expected_error: Error,
+ }
+ );
+ let test_vectors: &[TestVector] = &[
+ ("1.2.x.4", Error::IllegalCharacter(Context::Ipv4Address)).into(),
+ ("1.2.3.4.8", Error::TooManyAddressParts).into(),
+ ("1.2.3", Error::TooFewAddressParts).into(),
+ ("1.2.3.", Error::TruncatedHost).into(),
+ ("1.2.3.256", Error::InvalidDecimalOctet).into(),
+ ("1.2.3.-4", Error::IllegalCharacter(Context::Ipv4Address)).into(),
+ ("1.2.3. 4", Error::IllegalCharacter(Context::Ipv4Address)).into(),
+ ("1.2.3.4 ", Error::IllegalCharacter(Context::Ipv4Address)).into(),
+ ];
+ for test_vector in test_vectors {
+ let result = validate_ipv4_address(test_vector.address_string());
+ assert!(result.is_err(), "{}", test_vector.address_string());
+ assert_eq!(
+ *test_vector.expected_error(),
+ result.unwrap_err(),
+ "{}",
+ test_vector.address_string()
+ );
+ }
+ }
+}