78 lines
2.1 KiB
Rust
78 lines
2.1 KiB
Rust
// 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`
|
|
|
|
#[derive(Debug)]
|
|
struct Package {
|
|
sender_country: String,
|
|
recipient_country: String,
|
|
weight_in_grams: i32,
|
|
}
|
|
|
|
impl Package {
|
|
fn new(sender_country: String, recipient_country: String, weight_in_grams: i32) -> Package {
|
|
if weight_in_grams <= 0 {
|
|
let msg = format!(
|
|
"Weight must be greater than 0, {} specified",
|
|
weight_in_grams
|
|
);
|
|
panic!(msg)
|
|
} else {
|
|
return Package {
|
|
sender_country,
|
|
recipient_country,
|
|
weight_in_grams,
|
|
};
|
|
}
|
|
}
|
|
|
|
fn is_international(&self) -> bool {
|
|
if self.sender_country == self.recipient_country {
|
|
false
|
|
} else {
|
|
true
|
|
}
|
|
}
|
|
|
|
fn get_fees(&self, cents_per_kg: i32) -> i32 {
|
|
let weight_in_kgs = (self.weight_in_grams as f32) / 1000.;
|
|
(weight_in_kgs * (cents_per_kg as f32)) as i32
|
|
}
|
|
}
|
|
|
|
#[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");
|
|
|
|
Package::new(sender_country, recipient_country, -2210);
|
|
}
|
|
|
|
#[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);
|
|
|
|
assert!(package.is_international());
|
|
}
|
|
|
|
#[test]
|
|
fn calculate_transport_fees() {
|
|
let sender_country = String::from("Spain");
|
|
let recipient_country = String::from("Spain");
|
|
|
|
let cents_per_kg = 3000;
|
|
let package = Package::new(sender_country, recipient_country, 1500);
|
|
|
|
assert_eq!(package.get_fees(cents_per_kg), 4500);
|
|
}
|
|
}
|