Snow is a header-only unit testing library for C. Just include the file snow/snow.h.
Some miscellaneous points:
- Snow uses some GNU extensions, so it might not work with all
ISO C compatible compilers. It's confirmed to work with at least GCC and
Clang. It should even work on GCC and Clang versions too old to support C11
(or even C99), but the convenience
asserteq
andassertneq
macros require C11. - Windows is supported through MinGW, with the caveat that it assumes your terminal supports UTF-8. CMD.exe and Powershell will print mangled ✓ and ✕ characters. Color is also disabled on Windows.
- I really recommend running the test executable with valgrind. That will help you find memory issues such as memory leaks, out of bounds array reads/writes, etc.
When creating the main function using the snow_main
macro, your executable
will take these arguments. The --no- prefixed arguments will disable the
relevant function:
- --version, -v: Show the current version and exit.
- --help, -h: Show usage and exit.
- --color, -c, or --no-color: Enable the use of color. Default: on when output is a TTY, off otherwise.
- --quiet, -q, or --no-quiet: Suppress most messages, only test faulures and the 'Total: Passed X/Y tests' line will still print. Default: off.
- --log <file>: Output to a log file instead of stdout.
- --timer, -t, or --no-timer: Print the number of miliseconds CPU time spent on each test alongside its success message. Default: on.
- --maybes, -m, or --no-maybes: Print out messages when beginning a test rather than just when it completed. Default: on when output is a TTY, off otherwise.
- --cr, or --no-cr: Print a
\r
after maybe messages instead of\n
. This will override them with successes or failures as they are printed out. Default: on when output is a TTY, off otherwise.
Here's a simple example which tests a couple of filesystem functions, and has a subdescription for testing fread-related stuff.
- Compile:
gcc -Isnow -DSNOW_ENABLED -g -o test example.c
-Isnow
: addsnow
to our include path, to make#include <snow/snow.h>
work. (That assumessnow/snow/snow.h
exists, like if you clone this repo.)-DSNOW_ENABLED
: Enable snow (otherwisedescribe(...)
would be compiled down to nothing).-g
: Add debug symbols for valgrind.
- Run:
valgrind --leak-check=full --show-leak-kinds=all --track-origins=yes ./test
#include <stdio.h>
#include <snow/snow.h>
describe(files, {
it("opens files", {
FILE *f = fopen("test", "r");
assertneq(f, NULL);
defer(fclose(f));
});
it("writes to files", {
FILE *f = fopen("testfile", "w");
assertneq(f, NULL);
defer(remove("testfile"));
defer(fclose(f));
char str[] = "hello there";
asserteq(fwrite(str, 1, sizeof(str), f), sizeof(str));
});
subdesc(fread, {
it("reads 10 bytes", {
FILE *f = fopen("/dev/zero", "r");
assertneq(f, NULL);
defer(fclose(f));
char buf[10];
asserteq(fread(buf, 1, 10, f), 10);
});
it("reads 20 bytes", {
FILE *f = fopen("/dev/zero", "r");
assertneq(f, NULL);
defer(fclose(f));
char buf[20];
asserteq(fread(buf, 1, 20, f), 20);
});
});
});
snow_main();
A top-level description of a component, which can contain subdesc
s and it
s.
A describe(testname, block)
will define a function void test_##testname()
,
which the main function created by snow_main
will call automatically.
A description of a sub-component, which can contain nested subdesc
s and
it
s. It's similar to describe
, but doesn't define a function.
A particular test case. It can contain asserts and defer
s, as well as just
regular code. A failing assert (or direct call to fail(...)
) will mark the
test as failed, but if it completes normally, it's marked as successful.
defer
is used for tearing down, and is inspired by Go's defer
statement.
Once the test case completes, each deferred expression will be executed, in the
reverse order of their definitions (i.e defer(printf("World")); defer(printf("Hello "));
will print "Hello World"). If the test case fails,
only deferred expressions defined before the point of failure will be executed.
This macro expands to a main function which handless stuff like parsing arguments and freeing memory allocated by Snow. All described functions will automatically be called by the main functions.
Just directly fail the test case. The arguments are a printf-style format,
optionally followed by arguments, just like printf
.
Fail if the expression x
returns 0.
Fail unless a
equals b
. If b
is a string, strcmp
will be used to check
for equality; otherwise, ==
will be used.
asserteq
requires C11.
If you can't use C11, or want to explicitly state what type your arguments are
(say you want to compare strings by pointer instead of by content), you
can use the asserteq_int
, asserteq_ptr
, asserteq_dbl
, and asserteq_str
macros instead of asserteq
.
Fail if a
equals b
. If b
is a string, strcmp
will be used to check
for equality; otherwise, ==
will be used.
assertneq
requires C11.
If you can't use C11, or want to explicitly state what type your arguments are
(say you want to compare strings by pointer instead of by content), you
can use the assertneq_int
, assertneq_ptr
, assertneq_dbl
, and asserteq_str
macros instead of assertneq
.
Fail unless the first n
bytes of a
and b
are the same.
Fail if the first n
bytes of a
and b
are the same.
Exactly how to test your code might not be as obvious with C as it is for other languages. I haven't yet used Snow for any big projects, but here's how I would do it
When testing a library's interface, you can just create a test
folder which
is completely decoupled from the library's source code, and just compile your
test code with a flag to link against your library.
Testing anything that's not exposed as a library's public API is is possible
because unless SNOW_ENABLED
is defined, describe
will just be an empty
macro, and all uses of it will be removed by the preprocessor. Therfore, you
can include tests directly in your C source files, and regular builds won't
use snow, while builds with -DSNOW_ENABLED
will be your test suite.
Since all test macros are compiled down to nothing, this will have no runtime performance or binary size impact.
Note that since snow.h
defines macros with pretty general names (it
,
describe
, assert
), it's probably a good idea to put your tests at the
bottom of the source and only include snow.h
right above the test code, to
avoid name conflicts.
The exampleproject directory is an example of a program tested this way.