2020-04-27 18:17:26 +00:00
|
|
|
// structs3.rs
|
|
|
|
// Structs contain more than simply some data, they 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! If you have issues execute `rustlings hint structs3`
|
|
|
|
|
|
|
|
// I AM NOT DONE
|
|
|
|
|
|
|
|
#[derive(Debug)]
|
|
|
|
struct Package {
|
2020-06-11 16:44:47 +00:00
|
|
|
sender_country: String,
|
|
|
|
recipient_country: String,
|
|
|
|
weight_in_grams: i32,
|
2020-04-27 18:17:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Package {
|
2020-06-11 16:44:47 +00:00
|
|
|
fn new(sender_country: String, recipient_country: String, weight_in_grams: i32) -> Package {
|
|
|
|
if weight_in_grams <= 0 {
|
2020-04-27 18:17:26 +00:00
|
|
|
// Something goes here...
|
|
|
|
} else {
|
2020-08-10 14:24:21 +00:00
|
|
|
return Package {
|
|
|
|
sender_country,
|
|
|
|
recipient_country,
|
|
|
|
weight_in_grams,
|
|
|
|
};
|
2020-04-27 18:17:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn is_international(&self) -> ??? {
|
|
|
|
// Something goes here...
|
|
|
|
}
|
|
|
|
|
2020-09-19 19:22:56 +00:00
|
|
|
fn get_fees(&self, cents_per_gram: i32) -> ??? {
|
|
|
|
// Something goes here...
|
2020-04-27 18:17:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use super::*;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
#[should_panic]
|
|
|
|
fn fail_creating_weightless_package() {
|
2020-06-11 16:44:47 +00:00
|
|
|
let sender_country = String::from("Spain");
|
|
|
|
let recipient_country = String::from("Austria");
|
2020-04-27 18:17:26 +00:00
|
|
|
|
2020-06-11 16:44:47 +00:00
|
|
|
Package::new(sender_country, recipient_country, -2210);
|
2020-04-27 18:17:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn create_international_package() {
|
2020-06-11 16:44:47 +00:00
|
|
|
let sender_country = String::from("Spain");
|
|
|
|
let recipient_country = String::from("Russia");
|
2020-07-11 02:01:38 +00:00
|
|
|
|
2020-06-11 16:44:47 +00:00
|
|
|
let package = Package::new(sender_country, recipient_country, 1200);
|
2020-04-27 18:17:26 +00:00
|
|
|
|
|
|
|
assert!(package.is_international());
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn calculate_transport_fees() {
|
2020-06-11 16:44:47 +00:00
|
|
|
let sender_country = String::from("Spain");
|
|
|
|
let recipient_country = String::from("Spain");
|
2020-04-27 18:17:26 +00:00
|
|
|
|
2020-09-19 19:22:56 +00:00
|
|
|
let cents_per_gram = ???;
|
2020-07-11 02:01:38 +00:00
|
|
|
|
2020-06-11 16:44:47 +00:00
|
|
|
let package = Package::new(sender_country, recipient_country, 1500);
|
2020-07-11 02:01:38 +00:00
|
|
|
|
2020-09-19 19:22:56 +00:00
|
|
|
assert_eq!(package.get_fees(cents_per_gram), 4500);
|
2020-04-27 18:17:26 +00:00
|
|
|
}
|
|
|
|
}
|