From c0699cf34c5b55d1c737902c1adc81bb8f03bb8c Mon Sep 17 00:00:00 2001 From: "anthony.cicchetti" Date: Wed, 26 Apr 2017 13:07:35 -0400 Subject: [PATCH] Rust - Solved Bob --- rust/bob/.gitignore | 7 ++++++ rust/bob/Cargo.toml | 3 +++ rust/bob/README.md | 51 +++++++++++++++++++++++++++++++++++++++++++ rust/bob/src/lib.rs | 15 +++++++++++++ rust/bob/tests/bob.rs | 46 ++++++++++++++++++++++++++++++++++++++ 5 files changed, 122 insertions(+) create mode 100644 rust/bob/.gitignore create mode 100644 rust/bob/Cargo.toml create mode 100644 rust/bob/README.md create mode 100644 rust/bob/src/lib.rs create mode 100644 rust/bob/tests/bob.rs diff --git a/rust/bob/.gitignore b/rust/bob/.gitignore new file mode 100644 index 0000000..cb14a42 --- /dev/null +++ b/rust/bob/.gitignore @@ -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 diff --git a/rust/bob/Cargo.toml b/rust/bob/Cargo.toml new file mode 100644 index 0000000..34ba7cb --- /dev/null +++ b/rust/bob/Cargo.toml @@ -0,0 +1,3 @@ +[package] +name = "bob" +version = "0.0.0" diff --git a/rust/bob/README.md b/rust/bob/README.md new file mode 100644 index 0000000..4300cf1 --- /dev/null +++ b/rust/bob/README.md @@ -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. + diff --git a/rust/bob/src/lib.rs b/rust/bob/src/lib.rs new file mode 100644 index 0000000..0b48b46 --- /dev/null +++ b/rust/bob/src/lib.rs @@ -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.") + } +} \ No newline at end of file diff --git a/rust/bob/tests/bob.rs b/rust/bob/tests/bob.rs new file mode 100644 index 0000000..cbe10fc --- /dev/null +++ b/rust/bob/tests/bob.rs @@ -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("")); +}