chiark / gitweb /
Add a new function to compute the leftmost bit of a uint32_t
[disorder] / lib / test.c
index 2b40a44999ee6cf834754b2594a130576dcbd8ee..30af3a53d0684328bf3656fd21655c0d58ab30ca 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * This file is part of DisOrder.
- * Copyright (C) 2005, 2007 Richard Kettlewell
+ * Copyright (C) 2005, 2007, 2008 Richard Kettlewell
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  */
 /** @file lib/test.c @brief Library tests */
 
-#include <config.h>
-#include "types.h"
+#include "test.h"
 
-#include <stdio.h>
-#include <string.h>
-#include <stdlib.h>
-#include <errno.h>
-#include <ctype.h>
-#include <assert.h>
+long long tests, errors;
+int fail_first;
 
-#include "utf8.h"
-#include "mem.h"
-#include "log.h"
-#include "vector.h"
-#include "charset.h"
-#include "mime.h"
-#include "hex.h"
-#include "words.h"
-#include "heap.h"
-
-static int tests, errors;
-
-/** @brief Checks that @p expr is nonzero */
-#define insist(expr) do {                              \
-  if(!(expr)) {                                                \
-    ++errors;                                          \
-    fprintf(stderr, "%s:%d: error checking %s\n",      \
-            __FILE__, __LINE__, #expr);                        \
-  }                                                    \
-  ++tests;                                             \
-} while(0)
+void count_error(void) {
+  ++errors;
+  if(fail_first)
+    abort();
+}
 
-static const char *format(const char *s) {
+const char *format(const char *s) {
   struct dynstr d;
   int c;
   char buf[10];
@@ -69,23 +48,21 @@ static const char *format(const char *s) {
   return d.vec;
 }
 
-#define check_string(GOT, WANT) do {                           \
-  const char *g = GOT;                                         \
-  const char *w = WANT;                                                \
-                                                               \
-  if(w == 0) {                                                 \
-    fprintf(stderr, "%s:%d: %s returned 0\n",                  \
-            __FILE__, __LINE__, #GOT);                         \
-    ++errors;                                                  \
-  } else if(strcmp(w, g)) {                                    \
-    fprintf(stderr, "%s:%d: %s returned:\n%s\nexpected:\n%s\n",        \
-           __FILE__, __LINE__, #GOT, format(g), format(w));    \
-    ++errors;                                                  \
-  }                                                            \
-  ++tests;                                                     \
- } while(0)
+const char *format_utf32(const uint32_t *s) {
+  struct dynstr d;
+  uint32_t c;
+  char buf[64];
+  
+  dynstr_init(&d);
+  while((c = *s++)) {
+    sprintf(buf, " %04lX", (long)c);
+    dynstr_append_string(&d, buf);
+  }
+  dynstr_terminate(&d);
+  return d.vec;
+}
 
-static uint32_t *ucs4parse(const char *s) {
+uint32_t *ucs4parse(const char *s) {
   struct dynstr_ucs4 d;
   char *e;
 
@@ -100,313 +77,22 @@ static uint32_t *ucs4parse(const char *s) {
   return d.vec;
 }
 
-static void test_utf8(void) {
-  /* Test validutf8, convert to UCS-4, check the answer is right,
-   * convert back to UTF-8, check we got to where we started */
-#define U8(CHARS, WORDS) do {                  \
-  uint32_t *w = ucs4parse(WORDS);              \
-  uint32_t *ucs;                               \
-  char *u8;                                    \
-                                               \
-  insist(validutf8(CHARS));                    \
-  ucs = utf82ucs4(CHARS);                      \
-  insist(ucs != 0);                            \
-  insist(!ucs4cmp(w, ucs));                    \
-  u8 = ucs42utf8(ucs);                         \
-  insist(u8 != 0);                             \
-  insist(!strcmp(u8, CHARS));                  \
-} while(0)
-
-  fprintf(stderr, "test_utf8\n");
-
-  /* empty string */
-
-  U8("", "");
-  
-  /* ASCII characters */
-
-  U8(" !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~",
-     "0x20 0x21 0x22 0x23 0x24 0x25 0x26 0x27 0x28 0x29 0x2a 0x2b 0x2c 0x2d "
-     "0x2e 0x2f 0x30 0x31 0x32 0x33 0x34 0x35 0x36 0x37 0x38 0x39 0x3a "
-     "0x3b 0x3c 0x3d 0x3e 0x3f 0x40 0x41 0x42 0x43 0x44 0x45 0x46 0x47 "
-     "0x48 0x49 0x4a 0x4b 0x4c 0x4d 0x4e 0x4f 0x50 0x51 0x52 0x53 0x54 "
-     "0x55 0x56 0x57 0x58 0x59 0x5a 0x5b 0x5c 0x5d 0x5e 0x5f 0x60 0x61 "
-     "0x62 0x63 0x64 0x65 0x66 0x67 0x68 0x69 0x6a 0x6b 0x6c 0x6d 0x6e "
-     "0x6f 0x70 0x71 0x72 0x73 0x74 0x75 0x76 0x77 0x78 0x79 0x7a 0x7b "
-     "0x7c 0x7d 0x7e");
-  U8("\001\002\003\004\005\006\007\010\011\012\013\014\015\016\017\020\021\022\023\024\025\026\027\030\031\032\033\034\035\036\037\177",
-     "0x1 0x2 0x3 0x4 0x5 0x6 0x7 0x8 0x9 0xa 0xb 0xc 0xd 0xe 0xf 0x10 "
-     "0x11 0x12 0x13 0x14 0x15 0x16 0x17 0x18 0x19 0x1a 0x1b 0x1c 0x1d "
-     "0x1e 0x1f 0x7f");
-
-  /* from RFC3629 */
-
-  /* UTF8-2      = %xC2-DF UTF8-tail */
-  insist(!validutf8("\xC0\x80"));
-  insist(!validutf8("\xC1\x80"));
-  insist(!validutf8("\xC2\x7F"));
-  U8("\xC2\x80", "0x80");
-  U8("\xDF\xBF", "0x7FF");
-  insist(!validutf8("\xDF\xC0"));
-
-  /*  UTF8-3      = %xE0 %xA0-BF UTF8-tail / %xE1-EC 2( UTF8-tail ) /
-   *                %xED %x80-9F UTF8-tail / %xEE-EF 2( UTF8-tail )
-   */
-  insist(!validutf8("\xE0\x9F\x80"));
-  U8("\xE0\xA0\x80", "0x800");
-  U8("\xE0\xBF\xBF", "0xFFF");
-  insist(!validutf8("\xE0\xC0\xBF"));
-
-  insist(!validutf8("\xE1\x80\x7F"));
-  U8("\xE1\x80\x80", "0x1000");
-  U8("\xEC\xBF\xBF", "0xCFFF");
-  insist(!validutf8("\xEC\xC0\xBF"));
-  
-  U8("\xED\x80\x80", "0xD000");
-  U8("\xED\x9F\xBF", "0xD7FF");
-  insist(!validutf8("\xED\xA0\xBF"));
-
-  insist(!validutf8("\xEE\x7f\x80"));
-  U8("\xEE\x80\x80", "0xE000");
-  U8("\xEF\xBF\xBF", "0xFFFF");
-  insist(!validutf8("\xEF\xC0\xBF"));
-
-  /*  UTF8-4      = %xF0 %x90-BF 2( UTF8-tail ) / %xF1-F3 3( UTF8-tail ) /
-   *                %xF4 %x80-8F 2( UTF8-tail )
-   */
-  insist(!validutf8("\xF0\x8F\x80\x80"));
-  U8("\xF0\x90\x80\x80", "0x10000");
-  U8("\xF0\xBF\xBF\xBF", "0x3FFFF");
-  insist(!validutf8("\xF0\xC0\x80\x80"));
-
-  insist(!validutf8("\xF1\x80\x80\x7F"));
-  U8("\xF1\x80\x80\x80", "0x40000");
-  U8("\xF3\xBF\xBF\xBF", "0xFFFFF");
-  insist(!validutf8("\xF3\xC0\x80\x80"));
-
-  insist(!validutf8("\xF4\x80\x80\x7F"));
-  U8("\xF4\x80\x80\x80", "0x100000");
-  U8("\xF4\x8F\xBF\xBF", "0x10FFFF");
-  insist(!validutf8("\xF4\x90\x80\x80"));
-
-  /* miscellaneous non-UTF-8 rubbish */
-  insist(!validutf8("\x80"));
-  insist(!validutf8("\xBF"));
-  insist(!validutf8("\xC0"));
-  insist(!validutf8("\xC0\x7F"));
-  insist(!validutf8("\xC0\xC0"));
-  insist(!validutf8("\xE0"));
-  insist(!validutf8("\xE0\x7F"));
-  insist(!validutf8("\xE0\xC0"));
-  insist(!validutf8("\xE0\x80"));
-  insist(!validutf8("\xE0\x80\x7f"));
-  insist(!validutf8("\xE0\x80\xC0"));
-  insist(!validutf8("\xF0"));
-  insist(!validutf8("\xF0\x7F"));
-  insist(!validutf8("\xF0\xC0"));
-  insist(!validutf8("\xF0\x80"));
-  insist(!validutf8("\xF0\x80\x7f"));
-  insist(!validutf8("\xF0\x80\xC0"));
-  insist(!validutf8("\xF0\x80\x80\x7f"));
-  insist(!validutf8("\xF0\x80\x80\xC0"));
-  insist(!validutf8("\xF5\x80\x80\x80"));
-  insist(!validutf8("\xF8"));
-}
-
-static void test_mime(void) {
-  char *t, *n, *v;
-
-  fprintf(stderr, "test_mime\n");
-
-  t = n = v = 0;
-  insist(!mime_content_type("text/plain", &t, &n, &v));
-  insist(!strcmp(t, "text/plain"));
-  insist(n == 0);
-  insist(v == 0);
-
-  t = n = v = 0;
-  insist(!mime_content_type("TEXT ((nested) comment) /plain", &t, &n, &v));
-  insist(!strcmp(t, "text/plain"));
-  insist(n == 0);
-  insist(v == 0);
-
-  t = n = v = 0;
-  insist(!mime_content_type(" text/plain ; Charset=utf-8", &t, &n, &v));
-  insist(!strcmp(t, "text/plain"));
-  insist(!strcmp(n, "charset"));
-  insist(!strcmp(v, "utf-8"));
-
-  t = n = v = 0;
-  insist(!mime_content_type("text/plain;charset = ISO-8859-1 ", &t, &n, &v));
-  insist(!strcmp(t, "text/plain"));
-  insist(!strcmp(n, "charset"));
-  insist(!strcmp(v, "ISO-8859-1"));
-
-  /* XXX mime_parse */
-  /* XXX mime_multipart */
-  /* XXX mime_rfc2388_content_disposition */
-
-  check_string(mime_qp(""), "");
-  check_string(mime_qp("foobar"), "foobar");
-  check_string(mime_qp("foo=20bar"), "foo bar");
-  check_string(mime_qp("x \r\ny"), "x\r\ny");
-  check_string(mime_qp("x=\r\ny"), "xy");
-  check_string(mime_qp("x= \r\ny"), "xy");
-  check_string(mime_qp("x =\r\ny"), "x y");
-  check_string(mime_qp("x = \r\ny"), "x y");
-
-  /* from RFC2045 */
-  check_string(mime_qp("Now's the time =\r\n"
-"for all folk to come=\r\n"
-" to the aid of their country."),
-              "Now's the time for all folk to come to the aid of their country.");
-
-  check_string(mime_base64(""),  "");
-  check_string(mime_base64("BBBB"), "\x04\x10\x41");
-  check_string(mime_base64("////"), "\xFF\xFF\xFF");
-  check_string(mime_base64("//BB"), "\xFF\xF0\x41");
-  check_string(mime_base64("BBBB//BB////"),
-              "\x04\x10\x41" "\xFF\xF0\x41" "\xFF\xFF\xFF");
-  check_string(mime_base64("B B B B  / / B B / / / /"),
-              "\x04\x10\x41" "\xFF\xF0\x41" "\xFF\xFF\xFF");
-  check_string(mime_base64("B\r\nBBB.// B-B//~//"),
-              "\x04\x10\x41" "\xFF\xF0\x41" "\xFF\xFF\xFF");
-  check_string(mime_base64("BBBB="),
-              "\x04\x10\x41");
-  check_string(mime_base64("BBBBx="),  /* not actually valid base64 */
-              "\x04\x10\x41");
-  check_string(mime_base64("BBBB BB=="),
-              "\x04\x10\x41" "\x04");
-  check_string(mime_base64("BBBB BBB="),
-              "\x04\x10\x41" "\x04\x10");
-}
-
-static void test_hex(void) {
-  unsigned n;
-  static const unsigned char h[] = { 0x00, 0xFF, 0x80, 0x7F };
-  uint8_t *u;
-  size_t ul;
-
-  fprintf(stderr, "test_hex\n");
-
-  for(n = 0; n <= UCHAR_MAX; ++n) {
-    if(!isxdigit(n))
-      insist(unhexdigitq(n) == -1);
-  }
-  insist(unhexdigitq('0') == 0);
-  insist(unhexdigitq('1') == 1);
-  insist(unhexdigitq('2') == 2);
-  insist(unhexdigitq('3') == 3);
-  insist(unhexdigitq('4') == 4);
-  insist(unhexdigitq('5') == 5);
-  insist(unhexdigitq('6') == 6);
-  insist(unhexdigitq('7') == 7);
-  insist(unhexdigitq('8') == 8);
-  insist(unhexdigitq('9') == 9);
-  insist(unhexdigitq('a') == 10);
-  insist(unhexdigitq('b') == 11);
-  insist(unhexdigitq('c') == 12);
-  insist(unhexdigitq('d') == 13);
-  insist(unhexdigitq('e') == 14);
-  insist(unhexdigitq('f') == 15);
-  insist(unhexdigitq('A') == 10);
-  insist(unhexdigitq('B') == 11);
-  insist(unhexdigitq('C') == 12);
-  insist(unhexdigitq('D') == 13);
-  insist(unhexdigitq('E') == 14);
-  insist(unhexdigitq('F') == 15);
-  check_string(hex(h, sizeof h), "00ff807f");
-  check_string(hex(0, 0), "");
-  u = unhex("00ff807f", &ul);
-  insist(ul == 4);
-  insist(memcmp(u, h, 4) == 0);
-  u = unhex("00FF807F", &ul);
-  insist(ul == 4);
-  insist(memcmp(u, h, 4) == 0);
-  u = unhex("", &ul);
-  insist(ul == 0);
-  fprintf(stderr, "2 ERROR reports expected {\n");
-  insist(unhex("F", 0) == 0);
-  insist(unhex("az", 0) == 0);
-  fprintf(stderr, "}\n");
-}
-
-static void test_casefold(void) {
-  uint32_t c, l, u[2];
-  const char *s, *ls;
-
-  fprintf(stderr, "test_casefold\n");
-
-  for(c = 1; c < 256; ++c) {
-    u[0] = c;
-    u[1] = 0;
-    s = ucs42utf8(u);
-    ls = casefold(s);
-    switch(c) {
-    default:
-      if((c >= 'A' && c <= 'Z')
-        || (c >= 0xC0 && c <= 0xDE && c != 0xD7))
-       l = c ^ 0x20;
-      else
-       l = c;
-      break;
-#if 0
-      /* unidata-based case folding doens't support special cases */
-    case 0xB5:                         /* MICRO SIGN */
-      l = 0x39C;                       /* GREEK SMALL LETTER MU */
-      break;
-    case 0xDF:                         /* LATIN SMALL LETTER SHARP S */
-      insist(!strcmp(ls, "ss"));
-      l = 0;
-      break;
-#endif
-    }
-    if(l) {
-      u[0] = l;
-      u[1] = 0;
-      s = ucs42utf8(u);
-      if(strcmp(s, ls)) {
-       fprintf(stderr, "%s:%d: casefolding %#lx got '%s', expected '%s'\n",
-               __FILE__, __LINE__, (unsigned long)c,
-               format(ls), format(s));
-       ++errors;
-      }
-      ++tests;
-    }
-  }
-  check_string(casefold(""), "");
-}
-
-/** @brief Less-than comparison function for integer heap */
-static inline int int_lt(int a, int b) { return a < b; }
-
-/** @struct iheap
- * @brief A heap with @c int elements */
-HEAP_TYPE(iheap, int, int_lt);
-HEAP_DEFINE(iheap, int, int_lt);
-
-/** @brief Tests for @ref heap.h */
-static void test_heap(void) {
-  struct iheap h[1];
-  int n;
-  int last = -1;
-
-  fprintf(stderr, "test_heap\n");
-
-  iheap_init(h);
-  for(n = 0; n < 1000; ++n)
-    iheap_insert(h, random() % 100);
-  for(n = 0; n < 1000; ++n) {
-    const int latest = iheap_remove(h);
-    if(last > latest)
-      fprintf(stderr, "should have %d <= %d\n", last, latest);
-    insist(last <= latest);
-    last = latest;
-  }
-  putchar('\n');
+const char *do_printf(const char *fmt, ...) {
+  va_list ap;
+  char *s;
+  int rc;
+
+  va_start(ap, fmt);
+  rc = byte_vasprintf(&s, fmt, ap);
+  va_end(ap);
+  if(rc < 0)
+    return 0;
+  return s;
 }
 
 int main(void) {
+  mem_init();
+  fail_first = !!getenv("FAIL_FIRST");
   insist('\n' == 0x0A);
   insist('\r' == 0x0D);
   insist(' ' == 0x20);
@@ -417,13 +103,17 @@ int main(void) {
   insist('a' == 0x61);
   insist('z' == 0x7A);
   /* addr.c */
+  test_addr();
   /* asprintf.c */
   /* authhash.c */
   /* basen.c */
+  test_basen();
   /* charset.c */
   /* client.c */
   /* configuration.c */
   /* event.c */
+  /* filepart.c */
+  test_filepart();
   /* fprintf.c */
   /* heap.c */
   test_heap();
@@ -431,27 +121,45 @@ int main(void) {
   test_hex();
   /* inputline.c */
   /* kvp.c */
+  test_kvp();
   /* log.c */
   /* mem.c */
   /* mime.c */
   test_mime();
+  test_cookies();
   /* mixer.c */
   /* plugin.c */
   /* printf.c */
+  test_printf();
   /* queue.c */
   /* sink.c */
+  test_sink();
   /* snprintf.c */
   /* split.c */
+  test_split();
   /* syscalls.c */
   /* table.c */
+  /* unicode.c */
+  test_unicode();
   /* utf8.c */
   test_utf8();
   /* vector.c */
   /* words.c */
   test_casefold();
-  /* XXX words() */
+  test_words();
   /* wstat.c */
-  fprintf(stderr,  "%d errors out of %d tests\n", errors, tests);
+  test_wstat();
+  /* signame.c */
+  test_signame();
+  /* cache.c */
+  test_cache();
+  /* selection.c */
+  test_selection();
+  test_hash();
+  test_url();
+  test_regsub();
+  test_bits();
+  fprintf(stderr,  "%lld errors out of %lld tests\n", errors, tests);
   return !!errors;
 }
   
@@ -459,6 +167,7 @@ int main(void) {
 Local Variables:
 c-basic-offset:2
 comment-column:40
+fill-column:79
+indent-tabs-mode:nil
 End:
 */
-