diff options
author | tom barrett <spalf0@gmail.com> | 2019-03-02 11:01:02 -0600 |
---|---|---|
committer | tom barrett <spalf0@gmail.com> | 2019-03-02 11:01:02 -0600 |
commit | 0973ac1666a6ee3b606a537742abe506719fd156 (patch) | |
tree | 2611d628601e9bf69f8ab478bb209791c58a4a10 /tests | |
parent | ce9adc4cc1b4b30322dc30ee85c42ee1451ffbf9 (diff) |
engines tests
Diffstat (limited to 'tests')
-rw-r--r-- | tests/tests.rs | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/tests/tests.rs b/tests/tests.rs index 141cc41..ddbbaf7 100644 --- a/tests/tests.rs +++ b/tests/tests.rs @@ -173,4 +173,46 @@ mod test { assert!(masses.len() == 2); assert!(ship.item_count(ItemType::Iron) == 0); } + + #[test] + fn test_engines() { + let (mut ship, mut masses) = setup(); + setup_ship_target(&mut ship, &mut masses); + + let mut astroid = masses.remove("astroid").unwrap(); + astroid.velocity = Vector::new((constants::SHIP_ENGINES_ACCELERATION * 2.0, 0.0, 0.0)); + astroid.process(&mut masses); + masses.insert(String::from("astroid"), astroid); + + ship.give_received_data(ModuleType::Engines, String::from("c")); + ship.process(&mut masses); + assert!(ship.velocity.x == constants::SHIP_ENGINES_ACCELERATION); + + ship.process(&mut masses); + assert!(ship.velocity.x == constants::SHIP_ENGINES_ACCELERATION * 2.0); + + ship.process(&mut masses); + assert!(ship.velocity.x == constants::SHIP_ENGINES_ACCELERATION * 2.0); + + ship.give_received_data(ModuleType::Engines, String::from("s")); + ship.process(&mut masses); + assert!(ship.velocity.x == constants::SHIP_ENGINES_ACCELERATION); + + ship.process(&mut masses); + assert!(ship.velocity.x == 0.0); + + ship.process(&mut masses); + assert!(ship.velocity.x == 0.0); + + ship.give_received_data(ModuleType::Engines, String::from("t")); + ship.process(&mut masses); + assert!(ship.velocity.x == constants::SHIP_ENGINES_ACCELERATION * -1.0); + + ship.process(&mut masses); + assert!(ship.velocity.x == constants::SHIP_ENGINES_ACCELERATION * -1.0); + + ship.give_received_data(ModuleType::Engines, String::from("t")); + ship.process(&mut masses); + assert!(ship.velocity.x == constants::SHIP_ENGINES_ACCELERATION * -2.0); + } } |