diff options
author | unknown <mats@mysql.com> | 2006-04-04 18:16:15 +0200 |
---|---|---|
committer | unknown <mats@mysql.com> | 2006-04-04 18:16:15 +0200 |
commit | 6d9323ade0b057fb6e80b6473531f54993d7ecf3 (patch) | |
tree | dd8e8d7fdd3a93b877138eb5257cdc5f44ec3b13 /unittest | |
parent | dfa9a7641104686b588af016aa58cf46a9db093f (diff) | |
download | mariadb-git-6d9323ade0b057fb6e80b6473531f54993d7ecf3.tar.gz |
WL#3206 (Add unit tests):
An implementation of the TAP framework for writing unit tests.
Makefile.am:
Adding directories mytap and unittest
configure.in:
Building Makefiles for mytap and unittest directories.
mytap/Doxyfile:
New BitKeeper file ``mytap/Doxyfile''
mytap/Makefile.am:
New BitKeeper file ``mytap/Makefile.am''
mytap/t/basic.t.c:
New BitKeeper file ``mytap/t/basic.t.c''
mytap/tap.c:
New BitKeeper file ``mytap/tap.c''
mytap/tap.h:
New BitKeeper file ``mytap/tap.h''
unittest/Makefile.am:
New BitKeeper file ``unittest/Makefile.am''
unittest/examples/Makefile.am:
New BitKeeper file ``unittest/examples/Makefile.am''
unittest/examples/no_plan.t.c:
New BitKeeper file ``unittest/examples/no_plan.t.c''
unittest/examples/simple.t.c:
New BitKeeper file ``unittest/examples/simple.t.c''
unittest/examples/skip.t.c:
New BitKeeper file ``unittest/examples/skip.t.c''
unittest/examples/skip_all.t.c:
New BitKeeper file ``unittest/examples/skip_all.t.c''
unittest/examples/todo.t.c:
New BitKeeper file ``unittest/examples/todo.t.c''
unittest/mysys/Makefile.am:
New BitKeeper file ``unittest/mysys/Makefile.am''
unittest/mysys/bitmap.t.c:
New BitKeeper file ``unittest/mysys/bitmap.t.c''
unittest/unit.pl:
New BitKeeper file ``unittest/unit.pl''
Diffstat (limited to 'unittest')
-rw-r--r-- | unittest/Makefile.am | 1 | ||||
-rw-r--r-- | unittest/examples/Makefile.am | 20 | ||||
-rw-r--r-- | unittest/examples/no_plan.t.c | 19 | ||||
-rw-r--r-- | unittest/examples/simple.t.c | 38 | ||||
-rw-r--r-- | unittest/examples/skip.t.c | 14 | ||||
-rw-r--r-- | unittest/examples/skip_all.t.c | 23 | ||||
-rw-r--r-- | unittest/examples/todo.t.c | 19 | ||||
-rw-r--r-- | unittest/mysys/Makefile.am | 14 | ||||
-rw-r--r-- | unittest/mysys/bitmap.t.c | 374 | ||||
-rw-r--r-- | unittest/unit.pl | 77 |
10 files changed, 599 insertions, 0 deletions
diff --git a/unittest/Makefile.am b/unittest/Makefile.am new file mode 100644 index 00000000000..54142b1e08d --- /dev/null +++ b/unittest/Makefile.am @@ -0,0 +1 @@ +SUBDIRS = mysys examples diff --git a/unittest/examples/Makefile.am b/unittest/examples/Makefile.am new file mode 100644 index 00000000000..1d0416f88c8 --- /dev/null +++ b/unittest/examples/Makefile.am @@ -0,0 +1,20 @@ +AM_CPPFLAGS = -I$(srcdir) -I$(top_builddir)/include +AM_CPPFLAGS += -I$(top_builddir)/mytap + +AM_LDFLAGS = -L$(top_builddir)/mytap + +AM_CFLAGS = -Wall -ansi -pedantic + +LDADD = -lmytap + +noinst_PROGRAMS = simple.t skip.t todo.t skip_all.t no_plan.t + +simple_t_SOURCES = simple.t.c + +skip_t_SOURCES = skip.t.c + +todo_t_SOURCES = todo.t.c + +skip_all_t_SOURCES = skip_all.t.c + +no_plan_t_SOURCES = no_plan.t.c diff --git a/unittest/examples/no_plan.t.c b/unittest/examples/no_plan.t.c new file mode 100644 index 00000000000..67029c7962f --- /dev/null +++ b/unittest/examples/no_plan.t.c @@ -0,0 +1,19 @@ + +#include <stdlib.h> +#include <tap.h> + +/* + Sometimes, the number of tests is not known beforehand. In those + cases, the plan can be omitted and will instead be written at the + end of the test (inside exit_status()). + + Use this sparingly, it is a last resort: planning how many tests you + are going to run will help you catch that offending case when some + tests are skipped for an unknown reason. +*/ +int main() { + ok(1, NULL); + ok(1, NULL); + ok(1, NULL); + return exit_status(); +} diff --git a/unittest/examples/simple.t.c b/unittest/examples/simple.t.c new file mode 100644 index 00000000000..866af865327 --- /dev/null +++ b/unittest/examples/simple.t.c @@ -0,0 +1,38 @@ + +#include <tap.h> + +unsigned int gcs(unsigned int a, unsigned int b) +{ + if (b > a) { + unsigned int t = a; + a = b; + b = t; + } + + while (b != 0) { + unsigned int m = a % b; + a = b; + b = m; + } + return a; +} + +int main() { + unsigned int a,b; + unsigned int failed; + plan(1); + diag("Testing basic functions"); + failed = 0; + for (a = 1 ; a < 2000 ; ++a) + for (b = 1 ; b < 2000 ; ++b) + { + unsigned int d = gcs(a, b); + if (a % d != 0 || b % d != 0) { + ++failed; + diag("Failed for gcs(%4u,%4u)", a, b); + } + } + ok(failed == 0, "Testing gcs()"); + return exit_status(); +} + diff --git a/unittest/examples/skip.t.c b/unittest/examples/skip.t.c new file mode 100644 index 00000000000..dd8f96c9541 --- /dev/null +++ b/unittest/examples/skip.t.c @@ -0,0 +1,14 @@ + +#include <tap.h> +#include <stdlib.h> + +int main() { + plan(4); + ok(1, NULL); + ok(1, NULL); + SKIP_BLOCK_IF(1, 2, "No point") { + ok(1, NULL); + ok(1, NULL); + } + return exit_status(); +} diff --git a/unittest/examples/skip_all.t.c b/unittest/examples/skip_all.t.c new file mode 100644 index 00000000000..7590bdaeb0b --- /dev/null +++ b/unittest/examples/skip_all.t.c @@ -0,0 +1,23 @@ + +#include <stdlib.h> +#include <tap.h> + +int has_feature() { + return 0; +} + +/* + In some cases, an entire test file does not make sense because there + some feature is missing. In that case, the entire test case can be + skipped in the following manner. + */ +int main() { + if (!has_feature()) + skip_all("Missing feature"); + plan(4); + ok(1, NULL); + ok(1, NULL); + ok(1, NULL); + ok(1, NULL); + return exit_status(); +} diff --git a/unittest/examples/todo.t.c b/unittest/examples/todo.t.c new file mode 100644 index 00000000000..13a0c950b54 --- /dev/null +++ b/unittest/examples/todo.t.c @@ -0,0 +1,19 @@ + +#include <stdlib.h> +#include <tap.h> + +int main() +{ + plan(4); + ok(1, NULL); + ok(1, NULL); + /* + Tests in the todo region is expected to fail. If they don't, + something is strange. + */ + todo_start("Need to fix these"); + ok(0, NULL); + ok(0, NULL); + todo_end(); + return exit_status(); +} diff --git a/unittest/mysys/Makefile.am b/unittest/mysys/Makefile.am new file mode 100644 index 00000000000..4d725facc52 --- /dev/null +++ b/unittest/mysys/Makefile.am @@ -0,0 +1,14 @@ + +AM_CPPFLAGS = -I$(srcdir) -I$(top_builddir)/include +AM_CPPFLAGS += -I$(top_builddir)/mytap + +AM_CFLAGS = -Wall -ansi -pedantic + +AM_LDFLAGS = -L$(top_builddir)/mytap -L$(top_builddir)/mysys +AM_LDFLAGS += -L$(top_builddir)/strings + +LDADD = -lmytap -lmysys -lmystrings + +noinst_PROGRAMS = bitmap.t + +bitmap_t_SOURCES = bitmap.t.c diff --git a/unittest/mysys/bitmap.t.c b/unittest/mysys/bitmap.t.c new file mode 100644 index 00000000000..305256d6441 --- /dev/null +++ b/unittest/mysys/bitmap.t.c @@ -0,0 +1,374 @@ + +#include <tap.h> + +#include <my_global.h> +#include "my_bitmap.h" + +#include <string.h> + +static void bitmap_print(MY_BITMAP *map) +{ + uint32 *to= map->bitmap, *end= map->last_word_ptr; + while (to <= end) + { + fprintf(stderr,"0x%x ", *to++); + } + fprintf(stderr,"\n"); +} + +uint get_rand_bit(uint bitsize) +{ + return (rand() % bitsize); +} + +bool test_set_get_clear_bit(MY_BITMAP *map, uint bitsize) +{ + uint i, test_bit; + uint no_loops= bitsize > 128 ? 128 : bitsize; + for (i=0; i < no_loops; i++) + { + test_bit= get_rand_bit(bitsize); + bitmap_set_bit(map, test_bit); + if (!bitmap_is_set(map, test_bit)) + goto error1; + bitmap_clear_bit(map, test_bit); + if (bitmap_is_set(map, test_bit)) + goto error2; + } + return FALSE; +error1: + printf("Error in set bit, bit %u, bitsize = %u", test_bit, bitsize); + return TRUE; +error2: + printf("Error in clear bit, bit %u, bitsize = %u", test_bit, bitsize); + return TRUE; +} + +bool test_flip_bit(MY_BITMAP *map, uint bitsize) +{ + uint i, test_bit; + uint no_loops= bitsize > 128 ? 128 : bitsize; + for (i=0; i < no_loops; i++) + { + test_bit= get_rand_bit(bitsize); + bitmap_flip_bit(map, test_bit); + if (!bitmap_is_set(map, test_bit)) + goto error1; + bitmap_flip_bit(map, test_bit); + if (bitmap_is_set(map, test_bit)) + goto error2; + } + return FALSE; +error1: + printf("Error in flip bit 1, bit %u, bitsize = %u", test_bit, bitsize); + return TRUE; +error2: + printf("Error in flip bit 2, bit %u, bitsize = %u", test_bit, bitsize); + return TRUE; +} + +bool test_operators(MY_BITMAP *map, uint bitsize) +{ + return FALSE; +} + +bool test_get_all_bits(MY_BITMAP *map, uint bitsize) +{ + uint i; + bitmap_set_all(map); + if (!bitmap_is_set_all(map)) + goto error1; + if (!bitmap_is_prefix(map, bitsize)) + goto error5; + bitmap_clear_all(map); + if (!bitmap_is_clear_all(map)) + goto error2; + if (!bitmap_is_prefix(map, 0)) + goto error6; + for (i=0; i<bitsize;i++) + bitmap_set_bit(map, i); + if (!bitmap_is_set_all(map)) + goto error3; + for (i=0; i<bitsize;i++) + bitmap_clear_bit(map, i); + if (!bitmap_is_clear_all(map)) + goto error4; + return FALSE; +error1: + diag("Error in set_all, bitsize = %u", bitsize); + return TRUE; +error2: + diag("Error in clear_all, bitsize = %u", bitsize); + return TRUE; +error3: + diag("Error in bitmap_is_set_all, bitsize = %u", bitsize); + return TRUE; +error4: + diag("Error in bitmap_is_clear_all, bitsize = %u", bitsize); + return TRUE; +error5: + diag("Error in set_all through set_prefix, bitsize = %u", bitsize); + return TRUE; +error6: + diag("Error in clear_all through set_prefix, bitsize = %u", bitsize); + return TRUE; +} + +bool test_compare_operators(MY_BITMAP *map, uint bitsize) +{ + uint i, j, test_bit1, test_bit2, test_bit3,test_bit4; + uint no_loops= bitsize > 128 ? 128 : bitsize; + MY_BITMAP map2_obj, map3_obj; + MY_BITMAP *map2= &map2_obj, *map3= &map3_obj; + uint32 map2buf[1024]; + uint32 map3buf[1024]; + bitmap_init(&map2_obj, map2buf, bitsize, FALSE); + bitmap_init(&map3_obj, map3buf, bitsize, FALSE); + bitmap_clear_all(map2); + bitmap_clear_all(map3); + for (i=0; i < no_loops; i++) + { + test_bit1=get_rand_bit(bitsize); + bitmap_set_prefix(map, test_bit1); + test_bit2=get_rand_bit(bitsize); + bitmap_set_prefix(map2, test_bit2); + bitmap_intersect(map, map2); + test_bit3= test_bit2 < test_bit1 ? test_bit2 : test_bit1; + bitmap_set_prefix(map3, test_bit3); + if (!bitmap_cmp(map, map3)) + goto error1; + bitmap_clear_all(map); + bitmap_clear_all(map2); + bitmap_clear_all(map3); + test_bit1=get_rand_bit(bitsize); + test_bit2=get_rand_bit(bitsize); + test_bit3=get_rand_bit(bitsize); + bitmap_set_prefix(map, test_bit1); + bitmap_set_prefix(map2, test_bit2); + test_bit3= test_bit2 > test_bit1 ? test_bit2 : test_bit1; + bitmap_set_prefix(map3, test_bit3); + bitmap_union(map, map2); + if (!bitmap_cmp(map, map3)) + goto error2; + bitmap_clear_all(map); + bitmap_clear_all(map2); + bitmap_clear_all(map3); + test_bit1=get_rand_bit(bitsize); + test_bit2=get_rand_bit(bitsize); + test_bit3=get_rand_bit(bitsize); + bitmap_set_prefix(map, test_bit1); + bitmap_set_prefix(map2, test_bit2); + bitmap_xor(map, map2); + test_bit3= test_bit2 > test_bit1 ? test_bit2 : test_bit1; + test_bit4= test_bit2 < test_bit1 ? test_bit2 : test_bit1; + bitmap_set_prefix(map3, test_bit3); + for (j=0; j < test_bit4; j++) + bitmap_clear_bit(map3, j); + if (!bitmap_cmp(map, map3)) + goto error3; + bitmap_clear_all(map); + bitmap_clear_all(map2); + bitmap_clear_all(map3); + test_bit1=get_rand_bit(bitsize); + test_bit2=get_rand_bit(bitsize); + test_bit3=get_rand_bit(bitsize); + bitmap_set_prefix(map, test_bit1); + bitmap_set_prefix(map2, test_bit2); + bitmap_subtract(map, map2); + if (test_bit2 < test_bit1) + { + bitmap_set_prefix(map3, test_bit1); + for (j=0; j < test_bit2; j++) + bitmap_clear_bit(map3, j); + } + if (!bitmap_cmp(map, map3)) + goto error4; + bitmap_clear_all(map); + bitmap_clear_all(map2); + bitmap_clear_all(map3); + test_bit1=get_rand_bit(bitsize); + bitmap_set_prefix(map, test_bit1); + bitmap_invert(map); + bitmap_set_all(map3); + for (j=0; j < test_bit1; j++) + bitmap_clear_bit(map3, j); + if (!bitmap_cmp(map, map3)) + goto error5; + bitmap_clear_all(map); + bitmap_clear_all(map3); + } + return FALSE; +error1: + diag("intersect error bitsize=%u,size1=%u,size2=%u", bitsize, + test_bit1,test_bit2); + return TRUE; +error2: + diag("union error bitsize=%u,size1=%u,size2=%u", bitsize, + test_bit1,test_bit2); + return TRUE; +error3: + diag("xor error bitsize=%u,size1=%u,size2=%u", bitsize, + test_bit1,test_bit2); + return TRUE; +error4: + diag("subtract error bitsize=%u,size1=%u,size2=%u", bitsize, + test_bit1,test_bit2); + return TRUE; +error5: + diag("invert error bitsize=%u,size=%u", bitsize, + test_bit1); + return TRUE; +} + +bool test_count_bits_set(MY_BITMAP *map, uint bitsize) +{ + uint i, bit_count=0, test_bit; + uint no_loops= bitsize > 128 ? 128 : bitsize; + for (i=0; i < no_loops; i++) + { + test_bit=get_rand_bit(bitsize); + if (!bitmap_is_set(map, test_bit)) + { + bitmap_set_bit(map, test_bit); + bit_count++; + } + } + if (bit_count==0 && bitsize > 0) + goto error1; + if (bitmap_bits_set(map) != bit_count) + goto error2; + return FALSE; +error1: + diag("No bits set bitsize = %u", bitsize); + return TRUE; +error2: + diag("Wrong count of bits set, bitsize = %u", bitsize); + return TRUE; +} + +bool test_get_first_bit(MY_BITMAP *map, uint bitsize) +{ + uint i, j, test_bit; + uint no_loops= bitsize > 128 ? 128 : bitsize; + for (i=0; i < no_loops; i++) + { + test_bit=get_rand_bit(bitsize); + bitmap_set_bit(map, test_bit); + if (bitmap_get_first_set(map) != test_bit) + goto error1; + bitmap_set_all(map); + bitmap_clear_bit(map, test_bit); + if (bitmap_get_first(map) != test_bit) + goto error2; + bitmap_clear_all(map); + } + return FALSE; +error1: + diag("get_first_set error bitsize=%u,prefix_size=%u",bitsize,test_bit); + return TRUE; +error2: + diag("get_first error bitsize= %u, prefix_size= %u",bitsize,test_bit); + return TRUE; +} + +bool test_get_next_bit(MY_BITMAP *map, uint bitsize) +{ + uint i, j, test_bit; + uint no_loops= bitsize > 128 ? 128 : bitsize; + for (i=0; i < no_loops; i++) + { + test_bit=get_rand_bit(bitsize); + for (j=0; j < test_bit; j++) + bitmap_set_next(map); + if (!bitmap_is_prefix(map, test_bit)) + goto error1; + bitmap_clear_all(map); + } + return FALSE; +error1: + diag("get_next error bitsize= %u, prefix_size= %u", bitsize,test_bit); + return TRUE; +} + +bool test_prefix(MY_BITMAP *map, uint bitsize) +{ + uint i, j, test_bit; + uint no_loops= bitsize > 128 ? 128 : bitsize; + for (i=0; i < no_loops; i++) + { + test_bit=get_rand_bit(bitsize); + bitmap_set_prefix(map, test_bit); + if (!bitmap_is_prefix(map, test_bit)) + goto error1; + bitmap_clear_all(map); + for (j=0; j < test_bit; j++) + bitmap_set_bit(map, j); + if (!bitmap_is_prefix(map, test_bit)) + goto error2; + bitmap_set_all(map); + for (j=bitsize - 1; ~(j-test_bit); j--) + bitmap_clear_bit(map, j); + if (!bitmap_is_prefix(map, test_bit)) + goto error3; + bitmap_clear_all(map); + } + return FALSE; +error1: + diag("prefix1 error bitsize = %u, prefix_size = %u", bitsize,test_bit); + return TRUE; +error2: + diag("prefix2 error bitsize = %u, prefix_size = %u", bitsize,test_bit); + return TRUE; +error3: + diag("prefix3 error bitsize = %u, prefix_size = %u", bitsize,test_bit); + return TRUE; +} + + +bool do_test(uint bitsize) +{ + MY_BITMAP map; + uint32 buf[1024]; + if (bitmap_init(&map, buf, bitsize, FALSE)) + { + diag("init error for bitsize %d", bitsize); + goto error; + } + if (test_set_get_clear_bit(&map,bitsize)) + goto error; + bitmap_clear_all(&map); + if (test_flip_bit(&map,bitsize)) + goto error; + bitmap_clear_all(&map); + if (test_operators(&map,bitsize)) + goto error; + bitmap_clear_all(&map); + if (test_get_all_bits(&map, bitsize)) + goto error; + bitmap_clear_all(&map); + if (test_compare_operators(&map,bitsize)) + goto error; + bitmap_clear_all(&map); + if (test_count_bits_set(&map,bitsize)) + goto error; + bitmap_clear_all(&map); + if (test_get_first_bit(&map,bitsize)) + goto error; + bitmap_clear_all(&map); + if (test_get_next_bit(&map,bitsize)) + goto error; + if (test_prefix(&map,bitsize)) + goto error; + return FALSE; +error: + return TRUE; +} + +int main() +{ + int i; + plan(4095); + for (i= 1; i < 4096; i++) + ok(do_test(i) == 0, "bitmap size %d", i); + return exit_status(); +} diff --git a/unittest/unit.pl b/unittest/unit.pl new file mode 100644 index 00000000000..bc20938309a --- /dev/null +++ b/unittest/unit.pl @@ -0,0 +1,77 @@ +#!/usr/bin/perl + +# Override _command_line in the standard Perl test harness to prevent +# it from using "perl" to run the test scripts. +package MySQL::Straps; +use base qw(Test::Harness::Straps); +sub _command_line { return $_[1] } + +package main; + +use strict; +use Test::Harness; +use File::Find; + +sub run_cmd (@); + +my %dispatch = ( + "run" => \&run_cmd, +); + +=head1 NAME + +unit - Run unit tests in directory + +=head1 SYNOPSIS + + unit run + +=cut + +my $cmd = shift; + +if (defined $cmd && exists $dispatch{$cmd}) { + $dispatch{$cmd}->(@ARGV); +} else { + print "Unknown command", (defined $cmd ? " $cmd" : ""), ".\n"; + print "Available commands are: ", join(", ", keys %dispatch), "\n"; +} + +=head2 run + +Run all unit tests in the current directory and all subdirectories. + +=cut + + +sub _find_test_files (@) { + my @dirs = @_; + my @files; + find sub { + $File::Find::prune = 1 if /^SCCS$/; + push(@files, $File::Find::name) if -x _ && /\.t\z/; + }, @dirs; + return @files; +} + +sub run_cmd (@) { + my @files; + + push(@_, '.') if @_ == 0; + + foreach my $name (@_) { + push(@files, _find_test_files $name) if -d $name; + push(@files, $name) if -f $name; + } + + if (@files > 0) { + # Removing the first './' from the file names + foreach (@files) { s!^\./!! } + + # Install the strap above instead of the default strap + $Test::Harness::Strap = MySQL::Straps->new; + + runtests @files; + } +} + |