Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix instructions(steps) for conversions/from_str exercice #626

Merged
merged 1 commit into from
Jan 21, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 15 additions & 21 deletions exercises/conversions/from_str.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,17 @@ struct Person {
}

// I AM NOT DONE

// Steps:
// 1. If the length of the provided string is 0, then return an error
// 1. If the length of the provided string is 0 an error should be returned
// 2. Split the given string on the commas present in it
// 3. Extract the first element from the split operation and use it as the name
// 4. If the name is empty, then return an error
// 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
// 5. Extract the other element from the split operation and parse it into a `usize` as the age
// with something like `"4".parse::<usize>()`.
// If while parsing the age, something goes wrong, then return an error
// Otherwise, then return a Result of a Person object
// 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

impl FromStr for Person {
type Err = String;
fn from_str(s: &str) -> Result<Person, Self::Err> {
Expand Down Expand Up @@ -48,50 +50,42 @@ mod tests {
assert_eq!(p.age, 32);
}
#[test]
#[should_panic]
fn missing_age() {
"John,".parse::<Person>().unwrap();
assert!("John,".parse::<Person>().is_err());
}

#[test]
#[should_panic]
fn invalid_age() {
"John,twenty".parse::<Person>().unwrap();
assert!("John,twenty".parse::<Person>().is_err());
}

#[test]
#[should_panic]
fn missing_comma_and_age() {
"John".parse::<Person>().unwrap();
assert!("John".parse::<Person>().is_err());
}

#[test]
#[should_panic]
fn missing_name() {
",1".parse::<Person>().unwrap();
assert!(",1".parse::<Person>().is_err());
}

#[test]
#[should_panic]
fn missing_name_and_age() {
",".parse::<Person>().unwrap();
assert!(",".parse::<Person>().is_err());
}

#[test]
#[should_panic]
fn missing_name_and_invalid_age() {
",one".parse::<Person>().unwrap();
assert!(",one".parse::<Person>().is_err());
}

#[test]
#[should_panic]
fn trailing_comma() {
"John,32,".parse::<Person>().unwrap();
assert!("John,32,".parse::<Person>().is_err());
}

#[test]
#[should_panic]
fn trailing_comma_and_some_string() {
"John,32,man".parse::<Person>().unwrap();
assert!("John,32,man".parse::<Person>().is_err());
}
}