Smell: Testing of "normal" code instead of exceptions.
Problem: The "normal operation" or most commonly/naturally executed code is put inside if bodies or attached as an else body to
some error checking.
Solution: Unless it is impossible or there is a very good reason for not to, always test for exceptions
and write your code so that the normal case is written without any extra indentation.
Examples:
void bad_handle_data(char *data, size_t length)
{
if (check_CRC(data, length) == OK) {
/*
* 300
* lines
* of
* data
* handling
*/
} else {
printf("Error: CRC check failed\n");
}
}
void good_handle_data(char *data, size_t length)
{
if (check_CRC(data, length) != OK) {
printf("Error: CRC check failed\n");
return;
}
/*
* 300
* lines
* of
* data
* handling
*/
}
void bad_search_and_print_something(struct something array[], size_t length, int criteria_1, int criteria_2, int criteria_3)
{
int i;
for (i=0; i<length; i++) {
if (array[i].member_1 == criteria_1) {
if (array[i].member_2 == criteria_2) {
if (array[i].member_3 == criteria_3) {
printf("Found macth for (%d,%d,%d) at index %d\n", criteria_1, criteria_2, criteria_3, i);
}
}
}
}
}
void good_search_and_print_something(struct something array[], size_t length, int criteria_1, int criteria_2, int criteria_3)
{
int i;
for (i=0; i<length; i++) {
if (array[i].member_1 != criteria_1) {
continue;
}
if (array[i].member_2 != criteria_2) {
continue;
}
if (array[i].member_3 != criteria_3) {
continue;
}
printf("Found macth for (%d,%d,%d) at index %d\n", criteria_1, criteria_2, criteria_3, i);
}
}
Rule of thumb: Never test the normal case, test exceptions.