unsigned limit;
char *buf;
{
- unsigned i;
+ char *bufptr = buf;
+ int byte = 0;
- if ((buf == NULL) || (limit < 3))
+ if (data == NULL || bufptr == NULL || limit == 0) {
return;
+ }
- for (i = 0; (i < limit / 3) && (i < len); i++) {
- sprintf(&buf[i*3], "%02x:", data[i]);
+ if (((len == 0) || ((len * 3) > limit))) {
+ *bufptr = 0x0;
+ return;
}
- buf[(i * 3) - 1] = 0;
+
+ for ( ; byte < len; ++byte) {
+ if (byte > 0) {
+ *bufptr++ = ':';
+ }
+
+ sprintf(bufptr, "%02x", data[byte]);
+ bufptr += 2;
+ }
+
return;
}
return;
}
+ATF_TC(print_hex_only);
+
+ATF_TC_HEAD(print_hex_only, tc)
+{
+ atf_tc_set_md_var(tc, "descr", "Verify hex data formatting.");
+}
+
+/* This test exercises the print_hex_only function
+ */
+ATF_TC_BODY(print_hex_only, tc)
+{
+ unsigned char data[] = {0xaa,0xbb,0xcc,0xdd};
+ char* ref = "aa:bb:cc:dd";
+ char buf[14];
+ memset(buf, 'x', sizeof(buf));
+ int data_len = sizeof(data);
+ int expected_len = 12;
+
+ /* Proper input values should produce proper result */
+ print_hex_only (data_len, data, expected_len, buf);
+ if (strlen(buf) != strlen(ref)) {
+ atf_tc_fail("len of result is wrong");
+ }
+
+ if (strcmp(buf, ref)) {
+ atf_tc_fail("result doesn't match ref");
+ }
+
+ /* Make sure we didn't overrun the buffer */
+ if (buf[expected_len] != 'x') {
+ atf_tc_fail("data over run detected");
+ }
+
+ /* Buffer == null doesn't crash */
+ print_hex_only (data_len, data, expected_len, NULL);
+
+ /* Limit == 0 doesn't write (or crash) */
+ *buf = '-';
+ print_hex_only (data_len, data, 0, buf);
+ if (*buf != '-') {
+ atf_tc_fail("limit of zero, altered buffer");
+ }
+
+ /* data == NULL doesn't write (or crash) */
+ print_hex_only (data_len, NULL, expected_len, buf);
+ if (*buf != '-') {
+ atf_tc_fail("limit of zero, altered buffer");
+ }
+
+ /* Limit too small should produce zero length string */
+ *buf = '-';
+ print_hex_only (data_len, data, expected_len - 1, buf);
+ if (*buf != 0x0) {
+ atf_tc_fail("limit too small should have failed");
+ }
+
+ /* Data length of 0 should produce zero length string */
+ *buf = '-';
+ print_hex_only (0, data, expected_len, buf);
+ if (*buf != 0x0) {
+ atf_tc_fail("limit too small should have failed");
+ }
+}
/* This macro defines main() method that will call specified
test cases. tp and simple_test_case names can be whatever you want
{
ATF_TP_ADD_TC(tp, find_percent_basic);
ATF_TP_ADD_TC(tp, find_percent_adv);
+ ATF_TP_ADD_TC(tp, print_hex_only);
return (atf_no_error());
}