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
52 lines
1.4 KiB
C
52 lines
1.4 KiB
C
|
|
#include "addresses.h"
|
|
#include "camel-test.h"
|
|
|
|
void
|
|
test_address_compare(CamelInternetAddress *addr, CamelInternetAddress *addr2)
|
|
{
|
|
const char *r1, *r2, *a1, *a2;
|
|
char *e1, *e2, *f1, *f2;
|
|
int j;
|
|
|
|
check(camel_address_length(CAMEL_ADDRESS(addr)) == camel_address_length(CAMEL_ADDRESS(addr2)));
|
|
for (j=0;j<camel_address_length(CAMEL_ADDRESS(addr));j++) {
|
|
|
|
check(camel_internet_address_get(addr, j, &r1, &a1) == TRUE);
|
|
check(camel_internet_address_get(addr2, j, &r2, &a2) == TRUE);
|
|
|
|
check(string_equal(r1, r2));
|
|
check(strcmp(a1, a2) == 0);
|
|
}
|
|
check(camel_internet_address_get(addr, j, &r1, &a1) == FALSE);
|
|
check(camel_internet_address_get(addr2, j, &r2, &a2) == FALSE);
|
|
|
|
e1 = camel_address_encode(CAMEL_ADDRESS(addr));
|
|
e2 = camel_address_encode(CAMEL_ADDRESS(addr2));
|
|
|
|
if (camel_address_length(CAMEL_ADDRESS(addr)) == 0)
|
|
check(e1 == NULL && e2 == NULL);
|
|
else
|
|
check(e1 != NULL && e2 != NULL);
|
|
|
|
if (e1 != NULL) {
|
|
check_msg(string_equal(e1, e2), "e1 = '%s' e2 = '%s'", e1, e2);
|
|
test_free(e1);
|
|
test_free(e2);
|
|
}
|
|
|
|
f1 = camel_address_format(CAMEL_ADDRESS(addr));
|
|
f2 = camel_address_format(CAMEL_ADDRESS(addr2));
|
|
|
|
if (camel_address_length(CAMEL_ADDRESS(addr)) == 0)
|
|
check(f1 == NULL && f2 == NULL);
|
|
else
|
|
check(f1 != NULL && f2 != NULL);
|
|
|
|
if (f1 != NULL) {
|
|
check_msg(string_equal(f1, f2), "f1 = '%s' f2 = '%s'", f1, f2);
|
|
test_free(f1);
|
|
test_free(f2);
|
|
}
|
|
}
|