Issue 87 execute tests with GitHub ci (#234)
* Enable lcov coverage in unit testing via cmake. * fix pipeline build error * add compile options for unit test to silence some warnings * remove all BAC_TEST unit tests in src/bacnet/ folder. They are now in test/bacnet/ folders using ztest. * removed key.c - only used for unit test. * produce XML test result output for parsing * produce junit XML test result output * change lint workflow to quality * update readme badge for quality results Co-authored-by: Steve Karg <skarg@users.sourceforge.net>
This commit is contained in:
@@ -198,127 +198,3 @@ int reject_decode_service_request(uint8_t *apdu,
|
||||
return len;
|
||||
}
|
||||
#endif
|
||||
|
||||
#ifdef BAC_TEST
|
||||
#include <assert.h>
|
||||
#include <string.h>
|
||||
#include "ctest.h"
|
||||
|
||||
/* decode the whole APDU - mainly used for unit testing */
|
||||
static int reject_decode_apdu(uint8_t *apdu,
|
||||
unsigned apdu_len,
|
||||
uint8_t *invoke_id,
|
||||
uint8_t *reject_reason)
|
||||
{
|
||||
int len = 0;
|
||||
|
||||
if (!apdu)
|
||||
return -1;
|
||||
/* optional checking - most likely was already done prior to this call */
|
||||
if (apdu_len) {
|
||||
if (apdu[0] != PDU_TYPE_REJECT)
|
||||
return -1;
|
||||
if (apdu_len > 1) {
|
||||
len = reject_decode_service_request(
|
||||
&apdu[1], apdu_len - 1, invoke_id, reject_reason);
|
||||
}
|
||||
}
|
||||
|
||||
return len;
|
||||
}
|
||||
|
||||
static void testRejectEncodeDecode(Test *pTest)
|
||||
{
|
||||
uint8_t apdu[480] = { 0 };
|
||||
int len = 0;
|
||||
int apdu_len = 0;
|
||||
uint8_t invoke_id = 0;
|
||||
uint8_t reject_reason = 0;
|
||||
uint8_t test_invoke_id = 0;
|
||||
uint8_t test_reject_reason = 0;
|
||||
|
||||
len = reject_encode_apdu(&apdu[0], invoke_id, reject_reason);
|
||||
ct_test(pTest, len != 0);
|
||||
apdu_len = len;
|
||||
|
||||
len = reject_decode_apdu(
|
||||
&apdu[0], apdu_len, &test_invoke_id, &test_reject_reason);
|
||||
ct_test(pTest, len != -1);
|
||||
ct_test(pTest, test_invoke_id == invoke_id);
|
||||
ct_test(pTest, test_reject_reason == reject_reason);
|
||||
|
||||
/* change type to get negative response */
|
||||
apdu[0] = PDU_TYPE_ABORT;
|
||||
len = reject_decode_apdu(
|
||||
&apdu[0], apdu_len, &test_invoke_id, &test_reject_reason);
|
||||
ct_test(pTest, len == -1);
|
||||
|
||||
/* test NULL APDU */
|
||||
len = reject_decode_apdu(
|
||||
NULL, apdu_len, &test_invoke_id, &test_reject_reason);
|
||||
ct_test(pTest, len == -1);
|
||||
|
||||
/* force a zero length */
|
||||
len = reject_decode_apdu(&apdu[0], 0, &test_invoke_id, &test_reject_reason);
|
||||
ct_test(pTest, len == 0);
|
||||
|
||||
/* check them all... */
|
||||
for (invoke_id = 0; invoke_id < 255; invoke_id++) {
|
||||
for (reject_reason = 0; reject_reason < 255; reject_reason++) {
|
||||
len = reject_encode_apdu(&apdu[0], invoke_id, reject_reason);
|
||||
apdu_len = len;
|
||||
ct_test(pTest, len != 0);
|
||||
len = reject_decode_apdu(
|
||||
&apdu[0], apdu_len, &test_invoke_id, &test_reject_reason);
|
||||
ct_test(pTest, len != -1);
|
||||
ct_test(pTest, test_invoke_id == invoke_id);
|
||||
ct_test(pTest, test_reject_reason == reject_reason);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
static void testRejectErrorCode(Test *pTest)
|
||||
{
|
||||
int i;
|
||||
BACNET_ERROR_CODE error_code;
|
||||
BACNET_REJECT_REASON reject_reason;
|
||||
BACNET_REJECT_REASON test_reject_reason;
|
||||
|
||||
for (i = 0; i < MAX_BACNET_REJECT_REASON; i++) {
|
||||
reject_reason = (BACNET_REJECT_REASON)i;
|
||||
error_code = reject_convert_to_error_code(reject_reason);
|
||||
test_reject_reason = reject_convert_error_code(error_code);
|
||||
if (test_reject_reason != reject_reason) {
|
||||
printf("Reject: result=%u reject-code=%u\n", test_reject_reason,
|
||||
reject_reason);
|
||||
}
|
||||
ct_test(pTest, test_reject_reason == reject_reason);
|
||||
}
|
||||
}
|
||||
|
||||
void testReject(Test *pTest)
|
||||
{
|
||||
testRejectEncodeDecode(pTest);
|
||||
testRejectErrorCode(pTest);
|
||||
}
|
||||
|
||||
#ifdef TEST_REJECT
|
||||
int main(void)
|
||||
{
|
||||
Test *pTest;
|
||||
bool rc;
|
||||
|
||||
pTest = ct_create("BACnet Reject", NULL);
|
||||
/* individual tests */
|
||||
rc = ct_addTestFunction(pTest, testReject);
|
||||
assert(rc);
|
||||
|
||||
ct_setStream(pTest, stdout);
|
||||
ct_run(pTest);
|
||||
(void)ct_report(pTest);
|
||||
ct_destroy(pTest);
|
||||
|
||||
return 0;
|
||||
}
|
||||
#endif /* TEST_REJECT */
|
||||
#endif /* BAC_TEST */
|
||||
|
||||
Reference in New Issue
Block a user