summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorChristopher Peplin <chris.peplin@rhubarbtech.com>2014-01-08 17:19:05 -0500
committerChristopher Peplin <chris.peplin@rhubarbtech.com>2014-01-08 17:29:27 -0500
commitfe38d0d4925be0e0182ec5b511b8f7fe715ffee5 (patch)
treeec793794470a14b44380ce922040446cf53de663 /tests
parent2b6a91c5885328894fddbad3acd33d80cf5fb792 (diff)
Reject a response that should have had PID but did not.
Diffstat (limited to 'tests')
-rw-r--r--tests/test_core.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/test_core.c b/tests/test_core.c
index 9f979232..be4d1412 100644
--- a/tests/test_core.c
+++ b/tests/test_core.c
@@ -144,6 +144,21 @@ START_TEST (test_wrong_mode_response)
}
END_TEST
+START_TEST (test_missing_pid)
+{
+ uint16_t arb_id = OBD2_FUNCTIONAL_BROADCAST_ID;
+ DiagnosticRequestHandle handle = diagnostic_request_pid(&SHIMS,
+ DIAGNOSTIC_ENHANCED_PID, arb_id, 0x2, response_received_handler);
+
+ fail_if(last_response_was_received);
+ const uint8_t can_data[] = {0x1, 0x22 + 0x40};
+ diagnostic_receive_can_frame(&SHIMS, &handle, arb_id + 0x8, can_data,
+ sizeof(can_data));
+ fail_if(last_response_was_received);
+ fail_if(handle.completed);
+}
+END_TEST
+
START_TEST (test_wrong_pid_response)
{
uint16_t arb_id = OBD2_FUNCTIONAL_BROADCAST_ID;
@@ -253,6 +268,7 @@ Suite* testSuite(void) {
tcase_add_test(tc_core, test_request_pid_enhanced);
tcase_add_test(tc_core, test_wrong_mode_response);
tcase_add_test(tc_core, test_wrong_pid_response);
+ tcase_add_test(tc_core, test_missing_pid);
tcase_add_test(tc_core, test_wrong_pid_then_right_completes);
tcase_add_test(tc_core, test_handle_completed);
tcase_add_test(tc_core, test_negative_response);