2019-12-16 13:34:30 +00:00
|
|
|
// This does practically the same thing that TryFrom<&str> does.
|
|
|
|
// Additionally, upon implementing FromStr, you can use the `parse` method
|
|
|
|
// on strings to generate an object of the implementor type.
|
|
|
|
// You can read more about it at https://doc.rust-lang.org/std/str/trait.FromStr.html
|
|
|
|
use std::str::FromStr;
|
|
|
|
|
|
|
|
#[derive(Debug)]
|
|
|
|
struct Person {
|
|
|
|
name: String,
|
|
|
|
age: usize,
|
|
|
|
}
|
|
|
|
|
2019-12-16 16:33:00 +00:00
|
|
|
// I AM NOT DONE
|
2021-01-21 12:55:22 +00:00
|
|
|
|
2019-12-16 13:34:30 +00:00
|
|
|
// Steps:
|
2021-01-21 12:55:22 +00:00
|
|
|
// 1. If the length of the provided string is 0 an error should be returned
|
2019-12-16 13:34:30 +00:00
|
|
|
// 2. Split the given string on the commas present in it
|
2021-01-21 12:55:22 +00:00
|
|
|
// 3. Only 2 elements should returned from the split, otherwise return an error
|
|
|
|
// 4. Extract the first element from the split operation and use it as the name
|
2020-05-03 00:41:11 +00:00
|
|
|
// 5. Extract the other element from the split operation and parse it into a `usize` as the age
|
2020-05-15 21:02:57 +00:00
|
|
|
// with something like `"4".parse::<usize>()`.
|
2021-01-21 12:55:22 +00:00
|
|
|
// 5. If while extracting the name and the age something goes wrong an error should be returned
|
|
|
|
// If everything goes well, then return a Result of a Person object
|
|
|
|
|
2019-12-16 13:34:30 +00:00
|
|
|
impl FromStr for Person {
|
|
|
|
type Err = String;
|
|
|
|
fn from_str(s: &str) -> Result<Person, Self::Err> {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let p = "Mark,20".parse::<Person>().unwrap();
|
|
|
|
println!("{:?}", p);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use super::*;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn empty_input() {
|
|
|
|
assert!("".parse::<Person>().is_err());
|
|
|
|
}
|
|
|
|
#[test]
|
|
|
|
fn good_input() {
|
2020-04-22 02:51:56 +00:00
|
|
|
let p = "John,32".parse::<Person>();
|
|
|
|
assert!(p.is_ok());
|
|
|
|
let p = p.unwrap();
|
|
|
|
assert_eq!(p.name, "John");
|
|
|
|
assert_eq!(p.age, 32);
|
2019-12-16 13:34:30 +00:00
|
|
|
}
|
|
|
|
#[test]
|
|
|
|
fn missing_age() {
|
2021-01-21 12:55:22 +00:00
|
|
|
assert!("John,".parse::<Person>().is_err());
|
2020-05-03 00:41:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn invalid_age() {
|
2021-01-21 12:55:22 +00:00
|
|
|
assert!("John,twenty".parse::<Person>().is_err());
|
2020-05-03 00:41:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn missing_comma_and_age() {
|
2021-01-21 12:55:22 +00:00
|
|
|
assert!("John".parse::<Person>().is_err());
|
2019-12-16 13:34:30 +00:00
|
|
|
}
|
2020-05-03 00:41:11 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn missing_name() {
|
2021-01-21 12:55:22 +00:00
|
|
|
assert!(",1".parse::<Person>().is_err());
|
2020-05-03 00:41:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn missing_name_and_age() {
|
2021-01-21 12:55:22 +00:00
|
|
|
assert!(",".parse::<Person>().is_err());
|
2020-05-03 00:41:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn missing_name_and_invalid_age() {
|
2021-01-21 12:55:22 +00:00
|
|
|
assert!(",one".parse::<Person>().is_err());
|
2020-05-03 00:41:11 +00:00
|
|
|
}
|
2021-01-08 15:07:13 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn trailing_comma() {
|
2021-01-21 12:55:22 +00:00
|
|
|
assert!("John,32,".parse::<Person>().is_err());
|
2021-01-08 15:07:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn trailing_comma_and_some_string() {
|
2021-01-21 12:55:22 +00:00
|
|
|
assert!("John,32,man".parse::<Person>().is_err());
|
2021-01-08 15:07:13 +00:00
|
|
|
}
|
2020-05-15 21:02:57 +00:00
|
|
|
}
|