Rust - Solved Bob

This commit is contained in:
anthony.cicchetti 2017-04-26 13:07:35 -04:00
parent 4a08850331
commit c0699cf34c
5 changed files with 122 additions and 0 deletions

7
rust/bob/.gitignore vendored Normal file
View file

@ -0,0 +1,7 @@
# Generated by Cargo
# will have compiled files and executables
/target/
# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
# More information here http://doc.crates.io/guide.html#cargotoml-vs-cargolock
Cargo.lock

3
rust/bob/Cargo.toml Normal file
View file

@ -0,0 +1,3 @@
[package]
name = "bob"
version = "0.0.0"

51
rust/bob/README.md Normal file
View file

@ -0,0 +1,51 @@
# Bob
Bob is a lackadaisical teenager. In conversation, his responses are very limited.
Bob answers 'Sure.' if you ask him a question.
He answers 'Whoa, chill out!' if you yell at him.
He says 'Fine. Be that way!' if you address him without actually saying
anything.
He answers 'Whatever.' to anything else.
## Rust Installation
Refer to the [exercism help page][help-page] for Rust installation and learning
resources.
## Writing the Code
Execute the tests with:
```bash
$ cargo test
```
All but the first test have been ignored. After you get the first test to
pass, remove the ignore flag (`#[ignore]`) from the next test and get the tests
to pass again. The test file is located in the `tests` directory. You can
also remove the ignore flag from all the tests to get them to run all at once
if you wish.
Make sure to read the [Crates and Modules](https://doc.rust-lang.org/stable/book/crates-and-modules.html) chapter if you
haven't already, it will help you with organizing your files.
## Feedback, Issues, Pull Requests
The [exercism/xrust](https://github.com/exercism/xrust) repository on GitHub is the home for all of the Rust exercises. If you have feedback about an exercise, or want to help implement new exercises, head over there and create an issue. Members of the [rust track team](https://github.com/orgs/exercism/teams/rust) are happy to help!
If you want to know more about Exercism, take a look at the [contribution guide](https://github.com/exercism/x-common/blob/master/CONTRIBUTING.md).
[help-page]: http://exercism.io/languages/rust
[crates-and-modules]: http://doc.rust-lang.org/stable/book/crates-and-modules.html
## Source
Inspired by the 'Deaf Grandma' exercise in Chris Pine's Learn to Program tutorial. [http://pine.fm/LearnToProgram/?Chapter=06](http://pine.fm/LearnToProgram/?Chapter=06)
## Submitting Incomplete Problems
It's possible to submit an incomplete solution so you can see how others have completed the exercise.

15
rust/bob/src/lib.rs Normal file
View file

@ -0,0 +1,15 @@
pub fn reply(inp_string: &'static str) -> String{
// let inp_string = String::from(test_string);
if inp_string.ends_with("?") {
return String::from("Sure.")
}
else if inp_string.trim().len() == 0 {
return String::from("Fine. Be that way!")
}
else if inp_string.to_uppercase() == inp_string{
return String::from("Whoa, chill out!")
}
else {
return String::from("Whatever.")
}
}

46
rust/bob/tests/bob.rs Normal file
View file

@ -0,0 +1,46 @@
extern crate bob;
#[test]
fn test_statement() {
assert_eq!("Whatever.", bob::reply("Tom-ay-to, tom-aaaah-to."));
}
#[test]
fn test_shouting() {
assert_eq!("Whoa, chill out!", bob::reply("WATCH OUT!"));
}
#[test]
fn test_exclaiming() {
assert_eq!("Whatever.", bob::reply("Let's go make out behind the gym!"));
}
#[test]
fn test_asking() {
assert_eq!("Sure.", bob::reply("Does this cryogenic chamber make me look fat?"));
}
#[test]
fn test_shout_numbers() {
assert_eq!("Whoa, chill out!", bob::reply("1, 2, 3 GO!"));
}
#[test]
fn test_shout_weird_characters() {
assert_eq!("Whoa, chill out!", bob::reply("ZOMG THE %^*@#$(*^ ZOMBIES ARE COMING!!11!!1!"));
}
#[test]
fn test_shout_without_punctuation() {
assert_eq!("Whoa, chill out!", bob::reply("I HATE YOU"));
}
#[test]
fn test_non_question_with_question_mark() {
assert_eq!("Whatever.", bob::reply("Ending with ? means a question."));
}
#[test]
fn test_silent_treatment() {
assert_eq!("Fine. Be that way!", bob::reply(""));
}