rustlings/exercises/13_error_handling/errors1.rs

42 lines
1.2 KiB
Rust
Raw Permalink Normal View History

2024-10-28 20:46:17 +00:00
// TODO: This function refuses to generate text to be printed on a nametag if
// you pass it an empty string. It'd be nicer if it explained what the problem
// was instead of just returning `None`. Thankfully, Rust has a similar
// construct to `Option` that can be used to express error conditions. Change
// the function signature and body to return `Result<String, String>` instead
// of `Option<String>`.
2024-10-31 20:27:56 +00:00
fn generate_nametag_text(name: String) -> Result<String, String> {
2024-10-28 20:46:17 +00:00
if name.is_empty() {
// Empty names aren't allowed
2024-10-31 20:27:56 +00:00
Err("Empty names aren't allowed".to_string())
2024-10-28 20:46:17 +00:00
} else {
2024-10-31 20:27:56 +00:00
Ok(format!("Hi! My name is {name}"))
2024-10-28 20:46:17 +00:00
}
}
fn main() {
// You can optionally experiment here.
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn generates_nametag_text_for_a_nonempty_name() {
assert_eq!(
generate_nametag_text("Beyoncé".to_string()).as_deref(),
Ok("Hi! My name is Beyoncé"),
);
}
#[test]
fn explains_why_generating_nametag_text_fails() {
assert_eq!(
generate_nametag_text(String::new())
.as_ref()
.map_err(|e| e.as_str()),
Err("Empty names aren't allowed"),
);
}
}