summaryrefslogtreecommitdiff
path: root/lib/tests/test-mu-msg-fields.c
blob: 27864d8d012e8be5772d7fdd454769331542f6e7 (plain)
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
/*
** Copyright (C) 2008-2013 Dirk-Jan C. Binnema <djcb@djcbsoftware.nl>
**
** 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 the
** Free Software Foundation; either version 3, or (at your option) any
** later version.
**
** This program 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 General Public License for more details.
**
** You should have received a copy of the GNU General Public License
** along with this program; if not, write to the Free Software Foundation,
** Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
**
*/

#if HAVE_CONFIG_H
#include "config.h"
#endif /*HAVE_CONFIG_H*/

#include <glib.h>
#include <stdlib.h>
#include <unistd.h>
#include <time.h>

#include <locale.h>

#include "test-mu-common.h"
#include "mu-msg-fields.h"

static void
test_mu_msg_field_body (void)
{
	MuMsgFieldId field;

	field = MU_MSG_FIELD_ID_BODY_TEXT;

	g_assert_cmpstr (mu_msg_field_name(field),==, "body");
	g_assert_cmpuint (mu_msg_field_shortcut(field),==, 'b');
	g_assert_cmpuint (mu_msg_field_xapian_prefix(field),==, 'B');

	g_assert_cmpuint (mu_msg_field_is_numeric(field), ==, FALSE);
}

static void
test_mu_msg_field_subject (void)
{
	MuMsgFieldId field;

	field = MU_MSG_FIELD_ID_SUBJECT;

	g_assert_cmpstr (mu_msg_field_name(field),==, "subject");
	g_assert_cmpuint (mu_msg_field_shortcut(field),==, 's');
	g_assert_cmpuint (mu_msg_field_xapian_prefix(field),==, 'S');

	g_assert_cmpuint (mu_msg_field_is_numeric(field), ==,FALSE);
}

static void
test_mu_msg_field_to (void)
{
	MuMsgFieldId field;

	field = MU_MSG_FIELD_ID_TO;

	g_assert_cmpstr (mu_msg_field_name(field),==, "to");
	g_assert_cmpuint (mu_msg_field_shortcut(field),==, 't');
	g_assert_cmpuint (mu_msg_field_xapian_prefix(field),==, 'T');

	g_assert_cmpuint (mu_msg_field_is_numeric(field), ==, FALSE);
}


static void
test_mu_msg_field_prio (void)
{
	MuMsgFieldId field;

	field = MU_MSG_FIELD_ID_PRIO;

	g_assert_cmpstr (mu_msg_field_name(field),==, "prio");
	g_assert_cmpuint (mu_msg_field_shortcut(field),==, 'p');
	g_assert_cmpuint (mu_msg_field_xapian_prefix(field),==, 'P');

	g_assert_cmpuint (mu_msg_field_is_numeric(field), ==, TRUE);
}

static void
test_mu_msg_field_flags (void)
{
	MuMsgFieldId field;

	field = MU_MSG_FIELD_ID_FLAGS;

	g_assert_cmpstr (mu_msg_field_name(field),==, "flag");
	g_assert_cmpuint (mu_msg_field_shortcut(field),==, 'g');
	g_assert_cmpuint (mu_msg_field_xapian_prefix(field),==, 'G');

	g_assert_cmpuint (mu_msg_field_is_numeric(field),==, TRUE);
}




int
main (int argc, char *argv[])
{
	g_test_init (&argc, &argv, NULL);

	/* mu_msg_str_date */
	g_test_add_func ("/mu-msg-fields/mu-msg-field-body",
			 test_mu_msg_field_body);
	g_test_add_func ("/mu-msg-fields/mu-msg-field-subject",
			 test_mu_msg_field_subject);
	g_test_add_func ("/mu-msg-fields/mu-msg-field-to",
			 test_mu_msg_field_to);
	g_test_add_func ("/mu-msg-fields/mu-msg-field-prio",
			 test_mu_msg_field_prio);
	g_test_add_func ("/mu-msg-fields/mu-msg-field-flags",
			 test_mu_msg_field_flags);

	/* FIXME: add tests for mu_msg_str_flags; but note the
	 * function simply calls mu_msg_field_str */

	g_log_set_handler (NULL,
			   G_LOG_LEVEL_MASK | G_LOG_FLAG_FATAL |
			   G_LOG_FLAG_RECURSION,
			   (GLogFunc)black_hole, NULL);

	return g_test_run ();
}