Skip to content
Snippets Groups Projects
  • Vladimir Davydov's avatar
    62ae8bf3
    test: allow to omit message in ok/is/isnt unit test helpers · 62ae8bf3
    Vladimir Davydov authored
    It's really annoying to add a message after each check in a unit test.
    Let's make this optional. If the message is omitted, "line %d" will be
    used instead. Also, let's print the expression on failure because it
    may be useful if exact sources are unavailable.
    
    NO_DOC=refactoring
    NO_CHANGELOG=refactoring
    62ae8bf3
    History
    test: allow to omit message in ok/is/isnt unit test helpers
    Vladimir Davydov authored
    It's really annoying to add a message after each check in a unit test.
    Let's make this optional. If the message is omitted, "line %d" will be
    used instead. Also, let's print the expression on failure because it
    may be useful if exact sources are unavailable.
    
    NO_DOC=refactoring
    NO_CHANGELOG=refactoring
unit.c 1.48 KiB
#include "unit.h"

#include <stdbool.h>
#include <stdio.h>
#include <stdarg.h>


enum { MAX_LEVELS = 10 };
static int tests_done[MAX_LEVELS];
static int tests_failed[MAX_LEVELS];
static int plan_test[MAX_LEVELS];
static int level = -1;

void
_space(FILE *stream)
{
	for (int i = 0 ; i < level; i++) {
		fprintf(stream, "    ");
	}
}

void
_plan(int count, bool tap)
{
	++level;
	plan_test[level] = count;
	tests_done[level] = 0;
	tests_failed[level] = 0;

	if (tap && level == 0)
		printf("TAP version 13\n");

	_space(stdout);
	printf("%d..%d\n", 1, plan_test[level]);
}

int
check_plan(void)
{
	int r = 0;
	if (tests_done[level] != plan_test[level]) {
		_space(stderr);
		fprintf(stderr,
			"# Looks like you planned %d tests but ran %d.\n",
			plan_test[level], tests_done[level]);
		r = -1;
	}

	if (tests_failed[level]) {
		_space(stderr);
		fprintf(stderr,
			"# Looks like you failed %d test of %d run.\n",
			tests_failed[level], tests_done[level]);
		r = tests_failed[level];
	}
	--level;
	if (level >= 0) {
		is(r, 0, "subtests");
	}
	return r;
}

void
_ok(int condition, const char *expr, const char *file, int line,
    const char *fmt, ...)
{
	va_list ap;

	_space(stdout);
	printf("%s %d - ", condition ? "ok" : "not ok", ++tests_done[level]);
	va_start(ap, fmt);
	vprintf(fmt, ap);
	printf("\n");
	va_end(ap);
	if (!condition) {
		tests_failed[level]++;
		_space(stderr);
		fprintf(stderr, "#   Failed test `%s'\n", expr);
		_space(stderr);
		fprintf(stderr, "#   in %s at line %d\n", file, line);
	}
}