1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
4 This file is part of systemd.
6 Copyright 2011 Lennart Poettering
8 systemd is free software; you can redistribute it and/or modify it
9 under the terms of the GNU Lesser General Public License as published by
10 the Free Software Foundation; either version 2.1 of the License, or
11 (at your option) any later version.
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 Lesser General Public License for more details.
18 You should have received a copy of the GNU Lesser General Public License
19 along with systemd; If not, see <http://www.gnu.org/licenses/>.
25 #include "systemd/sd-journal.h"
28 #include "journal-file.h"
29 #include "journal-authenticate.h"
30 #include "journal-vacuum.h"
32 static bool arg_keep = false;
34 static void test_non_empty(void) {
38 static const char test[] = "TEST1=1", test2[] = "TEST2=2";
41 char t[] = "/tmp/journal-XXXXXX";
43 log_set_max_level(LOG_DEBUG);
45 assert_se(mkdtemp(t));
46 assert_se(chdir(t) >= 0);
48 assert_se(journal_file_open("test.journal", O_RDWR|O_CREAT, 0666, true, true, NULL, NULL, NULL, &f) == 0);
50 dual_timestamp_get(&ts);
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);
56 iovec.iov_base = (void*) test2;
57 iovec.iov_len = strlen(test2);
58 assert_se(journal_file_append_entry(f, &ts, &iovec, 1, NULL, NULL, NULL) == 0);
60 iovec.iov_base = (void*) test;
61 iovec.iov_len = strlen(test);
62 assert_se(journal_file_append_entry(f, &ts, &iovec, 1, NULL, NULL, NULL) == 0);
65 journal_file_append_tag(f);
69 assert(journal_file_next_entry(f, NULL, 0, DIRECTION_DOWN, &o, &p) == 1);
70 assert(le64toh(o->entry.seqnum) == 1);
72 assert(journal_file_next_entry(f, o, p, DIRECTION_DOWN, &o, &p) == 1);
73 assert(le64toh(o->entry.seqnum) == 2);
75 assert(journal_file_next_entry(f, o, p, DIRECTION_DOWN, &o, &p) == 1);
76 assert(le64toh(o->entry.seqnum) == 3);
78 assert(journal_file_next_entry(f, o, p, DIRECTION_DOWN, &o, &p) == 0);
80 assert(journal_file_next_entry(f, NULL, 0, DIRECTION_DOWN, &o, &p) == 1);
81 assert(le64toh(o->entry.seqnum) == 1);
83 assert(journal_file_skip_entry(f, o, p, 2, &o, &p) == 1);
84 assert(le64toh(o->entry.seqnum) == 3);
86 assert(journal_file_skip_entry(f, o, p, -2, &o, &p) == 1);
87 assert(le64toh(o->entry.seqnum) == 1);
89 assert(journal_file_skip_entry(f, o, p, -2, &o, &p) == 1);
90 assert(le64toh(o->entry.seqnum) == 1);
92 assert(journal_file_find_data_object(f, test, strlen(test), NULL, &p) == 1);
93 assert(journal_file_next_entry_for_data(f, NULL, 0, p, DIRECTION_DOWN, &o, NULL) == 1);
94 assert(le64toh(o->entry.seqnum) == 1);
96 assert(journal_file_next_entry_for_data(f, NULL, 0, p, DIRECTION_UP, &o, NULL) == 1);
97 assert(le64toh(o->entry.seqnum) == 3);
99 assert(journal_file_find_data_object(f, test2, strlen(test2), NULL, &p) == 1);
100 assert(journal_file_next_entry_for_data(f, NULL, 0, p, DIRECTION_UP, &o, NULL) == 1);
101 assert(le64toh(o->entry.seqnum) == 2);
103 assert(journal_file_next_entry_for_data(f, NULL, 0, p, DIRECTION_DOWN, &o, NULL) == 1);
104 assert(le64toh(o->entry.seqnum) == 2);
106 assert(journal_file_find_data_object(f, "quux", 4, NULL, &p) == 0);
108 assert(journal_file_move_to_entry_by_seqnum(f, 1, DIRECTION_DOWN, &o, NULL) == 1);
109 assert(le64toh(o->entry.seqnum) == 1);
111 assert(journal_file_move_to_entry_by_seqnum(f, 3, DIRECTION_DOWN, &o, NULL) == 1);
112 assert(le64toh(o->entry.seqnum) == 3);
114 assert(journal_file_move_to_entry_by_seqnum(f, 2, DIRECTION_DOWN, &o, NULL) == 1);
115 assert(le64toh(o->entry.seqnum) == 2);
117 assert(journal_file_move_to_entry_by_seqnum(f, 10, DIRECTION_DOWN, &o, NULL) == 0);
119 journal_file_rotate(&f, true, true);
120 journal_file_rotate(&f, true, true);
122 journal_file_close(f);
127 log_info("Not removing %s", t);
129 journal_directory_vacuum(".", 3000000, 0, NULL);
131 assert_se(rm_rf_dangerous(t, false, true, false) >= 0);
134 puts("------------------------------------------------------------");
137 static void test_empty(void) {
138 JournalFile *f1, *f2, *f3, *f4;
139 char t[] = "/tmp/journal-XXXXXX";
141 log_set_max_level(LOG_DEBUG);
143 assert_se(mkdtemp(t));
144 assert_se(chdir(t) >= 0);
146 assert_se(journal_file_open("test.journal", O_RDWR|O_CREAT, 0666, false, false, NULL, NULL, NULL, &f1) == 0);
148 assert_se(journal_file_open("test-compress.journal", O_RDWR|O_CREAT, 0666, true, false, NULL, NULL, NULL, &f2) == 0);
150 assert_se(journal_file_open("test-seal.journal", O_RDWR|O_CREAT, 0666, false, true, NULL, NULL, NULL, &f3) == 0);
152 assert_se(journal_file_open("test-seal-compress.journal", O_RDWR|O_CREAT, 0666, true, true, NULL, NULL, NULL, &f4) == 0);
154 journal_file_print_header(f1);
156 journal_file_print_header(f2);
158 journal_file_print_header(f3);
160 journal_file_print_header(f4);
166 log_info("Not removing %s", t);
168 journal_directory_vacuum(".", 3000000, 0, NULL);
170 assert_se(rm_rf_dangerous(t, false, true, false) >= 0);
173 journal_file_close(f1);
174 journal_file_close(f2);
175 journal_file_close(f3);
176 journal_file_close(f4);
179 int main(int argc, char *argv[]) {
182 /* journal_file_open requires a valid machine id */
183 if (access("/etc/machine-id", F_OK) != 0)
184 return EXIT_TEST_SKIP;