rustlings/exercises/structs/structs3.rs

82 lines
2.3 KiB
Rust
Raw Normal View History

2020-04-27 13:17:26 -05:00
// structs3.rs
// Structs contain data, but can also have logic. In this exercise we have
// defined the Package struct and we want to test some logic attached to it.
// Make the code compile and the tests pass!
2022-07-14 05:04:54 -05:00
// Execute `rustlings hint structs3` or use the `hint` watch subcommand for a hint.
2020-04-27 13:17:26 -05:00
#[derive(Debug)]
struct Package {
sender_country: String,
recipient_country: String,
weight_in_grams: i32,
2020-04-27 13:17:26 -05:00
}
impl Package {
fn new(sender_country: String, recipient_country: String, weight_in_grams: i32) -> Package {
if weight_in_grams <= 0 {
panic!("Can not ship a weightless package.")
2020-04-27 13:17:26 -05:00
} else {
Package {
2020-08-10 09:24:21 -05:00
sender_country,
recipient_country,
weight_in_grams,
}
2020-04-27 13:17:26 -05:00
}
}
2023-02-20 20:26:18 -06:00
fn is_international(&self) -> bool {
if self.sender_country == self.recipient_country { false } else { true }
2020-04-27 13:17:26 -05:00
}
2023-02-20 20:26:18 -06:00
fn get_fees(&self, cents_per_gram: i32) -> i32 {
self.weight_in_grams * cents_per_gram
2020-04-27 13:17:26 -05:00
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
#[should_panic]
fn fail_creating_weightless_package() {
let sender_country = String::from("Spain");
let recipient_country = String::from("Austria");
2020-04-27 13:17:26 -05:00
Package::new(sender_country, recipient_country, -2210);
2020-04-27 13:17:26 -05:00
}
#[test]
fn create_international_package() {
let sender_country = String::from("Spain");
let recipient_country = String::from("Russia");
let package = Package::new(sender_country, recipient_country, 1200);
2020-04-27 13:17:26 -05:00
assert!(package.is_international());
}
#[test]
fn create_local_package() {
let sender_country = String::from("Canada");
let recipient_country = sender_country.clone();
let package = Package::new(sender_country, recipient_country, 1200);
assert!(!package.is_international());
}
2020-04-27 13:17:26 -05:00
#[test]
fn calculate_transport_fees() {
let sender_country = String::from("Spain");
let recipient_country = String::from("Spain");
2020-04-27 13:17:26 -05:00
let cents_per_gram = 3;
let package = Package::new(sender_country, recipient_country, 1500);
assert_eq!(package.get_fees(cents_per_gram), 4500);
2022-10-04 04:43:23 -05:00
assert_eq!(package.get_fees(cents_per_gram * 2), 9000);
2020-04-27 13:17:26 -05:00
}
}