rustlings/exercises/07_structs/structs3.rs

88 lines
2.4 KiB
Rust
Raw Permalink Normal View History

2024-07-06 23:21:52 +03:00
// Structs contain data, but can also have logic. In this exercise, we have
2024-07-06 22:37:55 +03:00
// defined the `Package` struct, and we want to test some logic attached to it.
2020-04-27 21:17:26 +03:00
#[derive(Debug)]
struct Package {
sender_country: String,
recipient_country: String,
2023-08-29 01:52:11 +03:00
weight_in_grams: u32,
2020-04-27 21:17:26 +03:00
}
impl Package {
2024-06-21 23:54:00 +03:00
fn new(sender_country: String, recipient_country: String, weight_in_grams: u32) -> Self {
2023-08-29 01:52:11 +03:00
if weight_in_grams < 10 {
2024-06-21 23:54:00 +03:00
// This isn't how you should handle errors in Rust, but we will
// learn about error handling later.
panic!("Can't ship a package with weight below 10 grams");
}
Self {
sender_country,
recipient_country,
weight_in_grams,
2020-04-27 21:17:26 +03:00
}
}
2024-06-21 23:54:00 +03:00
// TODO: Add the correct return type to the function signature.
fn is_international(&self) {
2024-06-26 03:26:04 +03:00
// TODO: Read the tests that use this method to find out when a package
// is considered international.
2020-04-27 21:17:26 +03:00
}
2024-06-21 23:54:00 +03:00
// TODO: Add the correct return type to the function signature.
fn get_fees(&self, cents_per_gram: u32) {
// TODO: Calculate the package's fees.
2020-04-27 21:17:26 +03:00
}
}
fn main() {
// You can optionally experiment here.
}
2020-04-27 21:17:26 +03: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 21:17:26 +03:00
2023-08-29 01:52:11 +03:00
Package::new(sender_country, recipient_country, 5);
2020-04-27 21:17:26 +03: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 21:17:26 +03: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 21:17:26 +03:00
#[test]
fn calculate_transport_fees() {
let sender_country = String::from("Spain");
let recipient_country = String::from("Spain");
2020-04-27 21:17:26 +03: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 12:43:23 +03:00
assert_eq!(package.get_fees(cents_per_gram * 2), 9000);
2020-04-27 21:17:26 +03:00
}
}