diff options
author | Not Zed <NotZed@HelixCode.com> | 2000-11-24 11:18:20 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2000-11-24 11:18:20 +0800 |
commit | 99e80d6ecf06cc60f2734f87bc974bd9479ba139 (patch) | |
tree | 84b8922548128a99dd89e2ecb96fba5f21d94f78 /camel/tests/lib/camel-test.h | |
parent | a7e18523ff09dd48a0aae229e1416c6d021dbb29 (diff) | |
download | gsoc2013-evolution-99e80d6ecf06cc60f2734f87bc974bd9479ba139.tar gsoc2013-evolution-99e80d6ecf06cc60f2734f87bc974bd9479ba139.tar.gz gsoc2013-evolution-99e80d6ecf06cc60f2734f87bc974bd9479ba139.tar.bz2 gsoc2013-evolution-99e80d6ecf06cc60f2734f87bc974bd9479ba139.tar.lz gsoc2013-evolution-99e80d6ecf06cc60f2734f87bc974bd9479ba139.tar.xz gsoc2013-evolution-99e80d6ecf06cc60f2734f87bc974bd9479ba139.tar.zst gsoc2013-evolution-99e80d6ecf06cc60f2734f87bc974bd9479ba139.zip |
Add tests.
2000-11-24 Not Zed <NotZed@HelixCode.com>
* Makefile.am (SUBDIRS): Add tests.
* camel-mime-filter-basic.c (filter): Well, I'll add the extra
bytes here too, lathough not strictly needed, might save a
re-malloc when we get to complete().
* camel-mime-filter-charset.c (filter): Make sure we have room if
we only convert very short data.
(complete): and here too.
* tests/Makefile.am: Initial test harness & tests. Requires gcc
for this.
* camel-internet-address.c (d): Turn off debug.
* camel-charset-map.c (camel_charset_step): Oops, & masks for set
intersection, not | them. Dunno how this got even close to
working.
2000-11-23 Not Zed <NotZed@HelixCode.com>
* camel-mime-filter-basic.c (filter): For base64 encoding, the
output size for 0, 1, or 2 bytes of input can exceed input*2, so
make sure we account for that as well.
(complete): And here.
(complete): Similarly for qp encoding, if we have a trailing
space, we need some extra bytes (not needed for 'filter()', as any
such bytes are stored in state/save).
* camel-mime-utils.c (quoted_decode_step): Removed fixme not required.
(quoted_encode_close): Dont append a trailing afterall. Otherwise
a pass through the encode/decode will grow the message each time.
svn path=/trunk/; revision=6656
Diffstat (limited to 'camel/tests/lib/camel-test.h')
-rw-r--r-- | camel/tests/lib/camel-test.h | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/camel/tests/lib/camel-test.h b/camel/tests/lib/camel-test.h new file mode 100644 index 0000000000..8d3c94bd00 --- /dev/null +++ b/camel/tests/lib/camel-test.h @@ -0,0 +1,52 @@ + +/* some utilities for testing */ + +#include "config.h" + +#include <stdlib.h> +#include <glib.h> + +/* perform a check assertion */ +#define check(x) do {if (!(x)) { camel_test_fail("%s", #x); } } while (0) +#define check_msg(x, y, z...) do {if (!(x)) { camel_test_fail("%s\n\t" #y, #x, ##z); } } while (0) + +#define check_count(object, expected) do { \ + if (CAMEL_OBJECT(object)->ref_count != expected) { \ + camel_test_fail("%s->ref_count != %s\n\tref_count = %d", #object, #expected, CAMEL_OBJECT(object)->ref_count); \ + } \ +} while (0) + +#define check_unref(object, expected) do { \ + check_count(object, expected); \ + camel_object_unref(CAMEL_OBJECT(object)); \ + if (expected == 1) { \ + object = NULL; \ + } \ +} while (0) + +#define test_free(mem) (g_free(mem), mem=NULL) + +#define push camel_test_push +#define pull camel_test_pull + +void camel_test_init(int argc, char **argv); + +/* start/finish a new test */ +void camel_test_start(const char *what); +void camel_test_end(void); + +/* start/finish a new test part */ +void camel_test_push(const char *what, ...); +void camel_test_pull(void); + +/* fail a test, with a reason why */ +void camel_test_fail(const char *why, ...); + +/* Set whether a failed test quits. May be nested, but must be called in nonfatal/fatal pairs */ +void camel_test_nonfatal(const char *why, ...); +void camel_test_fatal(); + + +/* utility functions */ +/* compare strings, ignore whitespace though */ +int string_equal(const char *a, const char *b); |