1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
* This library is free software: you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation.
*
* This library is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
* for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this library. If not, see <http://www.gnu.org/licenses/>.
*/
#include <string.h>
#include "addresses.h"
#include "camel-test.h"
void
test_address_compare (CamelInternetAddress *addr,
CamelInternetAddress *addr2)
{
const gchar *r1, *r2, *a1, *a2;
gchar *e1, *e2, *f1, *f2;
gint 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);
}
}
|