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
|
/*
* Copyright (c) 2005-2006 NFG Net Facilities Group BV support@nfg.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 2 of the License, 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., 675 Mass Ave, Cambridge, MA 02139, USA.
*
*
* $Id$
*
*
*
*
* Basic unit-test framework for dbmail (www.dbmail.org)
*
* See http://check.sf.net for details and docs.
*
*
* Run 'make check' to see some action.
*
*/
#include <check.h>
#include "check_dbmail.h"
extern char *configFile;
extern db_param_t _db_params;
extern u64_t msgbuf_idx;
extern u64_t msgbuf_buflen;
extern char *multipart_message;
extern char *multipart_message_part;
extern char *raw_lmtp_data;
/*
*
* the test fixtures
*
*/
void setup(void)
{
configure_debug(5,0);
config_read(configFile);
GetDBParams(&_db_params);
db_connect();
}
void teardown(void)
{
db_disconnect();
config_free();
}
START_TEST(test_read_config)
{
GetDBParams(&_db_params);
fail_unless(_db_params.host != NULL, "db_host is NULL");
}
END_TEST
START_TEST(test_db_connect)
{
int res;
GetDBParams(&_db_params);
db_disconnect();
res = db_connect();
fail_unless(res==0, "Unable to connect to db");
}
END_TEST
Suite *dbmail_common_suite(void)
{
Suite *s = suite_create("Dbmail Common");
TCase *tc_config = tcase_create("Config");
//TCase *tc_main = tcase_create("Main");
suite_add_tcase(s, tc_config);
//suite_add_tcase(s, tc_main);
tcase_add_checked_fixture(tc_config, setup, teardown);
tcase_add_test(tc_config, test_read_config);
tcase_add_test(tc_config, test_db_connect);
//tcase_add_checked_fixture(tc_main, setup, teardown);
return s;
}
int main(void)
{
int nf;
Suite *s = dbmail_common_suite();
SRunner *sr = srunner_create(s);
srunner_run_all(sr, CK_NORMAL);
nf = srunner_ntests_failed(sr);
srunner_free(sr);
return (nf == 0) ? EXIT_SUCCESS : EXIT_FAILURE;
}
|