]> Pileus Git - lackey/blob - src/test.c
Add Exchange Web Services calendar
[lackey] / src / test.c
1 /*
2  * Copyright (C) 2012-2013 Andy Spencer <andy753421@gmail.com>
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17
18 #include "date.h"
19 #include "cal.h"
20 #include "conf.h"
21 #include "util.h"
22
23 void date_test(void);
24 void conf_test(void);
25 void ical_test(void *path);
26 void ews_test(char *url, char *user, char *pass);
27 void daemon_test();
28
29 int main(int argc, char **argv)
30 {
31         for (int i = 1; i < argc; i++) {
32                 if (match(argv[i], "date")) {
33                         date_test();
34                 }
35                 if (match(argv[i], "conf")) {
36                         conf_test();
37                 }
38                 if (match(argv[i], "ical")) {
39                         char *path = argv[++i];
40                         ical_test(path);
41                 }
42                 if (match(argv[i], "ews")) {
43                         char *url  = argv[++i];
44                         char *user = argv[++i];
45                         char *pass = argv[++i];
46                         ews_test(url, user, pass);
47                 }
48                 if (match(argv[i], "daemon")) {
49                         daemon_test();
50                 }
51         }
52         return 0;
53 }