]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/journal/test-journal.c
Merge branch 'master' into journal
[thirdparty/systemd.git] / src / journal / test-journal.c
1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
3 /***
4 This file is part of systemd.
5
6 Copyright 2011 Lennart Poettering
7
8 systemd is free software; you can redistribute it and/or modify it
9 under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
12
13 systemd is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with systemd; If not, see <http://www.gnu.org/licenses/>.
20 ***/
21
22 #include <fcntl.h>
23 #include <unistd.h>
24
25 #include "journal-file.h"
26 #include "log.h"
27
28 int main(int argc, char *argv[]) {
29 dual_timestamp ts;
30 JournalFile *f;
31 struct iovec iovec;
32 static const char test[] = "test", test2[] = "test2";
33 Object *o;
34 uint64_t p;
35
36 log_set_max_level(LOG_DEBUG);
37
38 unlink("test.journal");
39
40 assert_se(journal_file_open("test.journal", O_RDWR|O_CREAT, 0666, NULL, &f) == 0);
41
42 dual_timestamp_get(&ts);
43
44 iovec.iov_base = (void*) test;
45 iovec.iov_len = strlen(test);
46 assert_se(journal_file_append_entry(f, &ts, &iovec, 1, NULL, NULL, NULL) == 0);
47
48 iovec.iov_base = (void*) test2;
49 iovec.iov_len = strlen(test2);
50 assert_se(journal_file_append_entry(f, &ts, &iovec, 1, NULL, NULL, NULL) == 0);
51
52 iovec.iov_base = (void*) test;
53 iovec.iov_len = strlen(test);
54 assert_se(journal_file_append_entry(f, &ts, &iovec, 1, NULL, NULL, NULL) == 0);
55
56 journal_file_dump(f);
57
58 assert(journal_file_next_entry(f, NULL, 0, DIRECTION_DOWN, &o, &p) == 1);
59 assert(le64toh(o->entry.seqnum) == 1);
60
61 assert(journal_file_next_entry(f, o, p, DIRECTION_DOWN, &o, &p) == 1);
62 assert(le64toh(o->entry.seqnum) == 2);
63
64 assert(journal_file_next_entry(f, o, p, DIRECTION_DOWN, &o, &p) == 1);
65 assert(le64toh(o->entry.seqnum) == 3);
66
67 assert(journal_file_next_entry(f, o, p, DIRECTION_DOWN, &o, &p) == 0);
68
69 assert(journal_file_next_entry(f, NULL, 0, DIRECTION_DOWN, &o, &p) == 1);
70 assert(le64toh(o->entry.seqnum) == 1);
71
72 assert(journal_file_skip_entry(f, o, p, 2, &o, &p) == 1);
73 assert(le64toh(o->entry.seqnum) == 3);
74
75 assert(journal_file_skip_entry(f, o, p, -2, &o, &p) == 1);
76 assert(le64toh(o->entry.seqnum) == 1);
77
78 assert(journal_file_skip_entry(f, o, p, -2, &o, &p) == 1);
79 assert(le64toh(o->entry.seqnum) == 1);
80
81 assert(journal_file_find_data_object(f, test, strlen(test), NULL, &p) == 1);
82 assert(journal_file_next_entry_for_data(f, NULL, 0, p, DIRECTION_DOWN, &o, NULL) == 1);
83 assert(le64toh(o->entry.seqnum) == 1);
84
85 assert(journal_file_next_entry_for_data(f, NULL, 0, p, DIRECTION_UP, &o, NULL) == 1);
86 assert(le64toh(o->entry.seqnum) == 3);
87
88 assert(journal_file_find_data_object(f, test2, strlen(test2), NULL, &p) == 1);
89 assert(journal_file_next_entry_for_data(f, NULL, 0, p, DIRECTION_UP, &o, NULL) == 1);
90 assert(le64toh(o->entry.seqnum) == 2);
91
92 assert(journal_file_next_entry_for_data(f, NULL, 0, p, DIRECTION_DOWN, &o, NULL) == 1);
93 assert(le64toh(o->entry.seqnum) == 2);
94
95 assert(journal_file_find_data_object(f, "quux", 4, NULL, &p) == 0);
96
97 assert(journal_file_move_to_entry_by_seqnum(f, 1, DIRECTION_DOWN, &o, NULL) == 1);
98 assert(le64toh(o->entry.seqnum) == 1);
99
100 assert(journal_file_move_to_entry_by_seqnum(f, 3, DIRECTION_DOWN, &o, NULL) == 1);
101 assert(le64toh(o->entry.seqnum) == 3);
102
103 assert(journal_file_move_to_entry_by_seqnum(f, 2, DIRECTION_DOWN, &o, NULL) == 1);
104 assert(le64toh(o->entry.seqnum) == 2);
105
106 assert(journal_file_move_to_entry_by_seqnum(f, 10, DIRECTION_DOWN, &o, NULL) == 0);
107
108 journal_file_rotate(&f);
109 journal_file_rotate(&f);
110
111 journal_file_close(f);
112
113 journal_directory_vacuum(".", 3000000, 0);
114
115 return 0;
116 }