2013-04-16 23:59:00 -04:00
|
|
|
/* -*- mode: C; c-basic-offset: 4 -*- */
|
2013-04-16 23:59:44 -04:00
|
|
|
#ident "$Id$"
|
2013-04-16 23:59:00 -04:00
|
|
|
#ident "Copyright (c) 2007, 2008 Tokutek Inc. All rights reserved."
|
|
|
|
|
|
|
|
#include "test.h"
|
|
|
|
|
|
|
|
#include "includes.h"
|
|
|
|
|
|
|
|
const int N = 2;
|
|
|
|
|
2013-04-17 00:00:30 -04:00
|
|
|
#define dname __SRCFILE__ ".dir"
|
2013-04-16 23:59:00 -04:00
|
|
|
#define rmrf "rm -rf " dname "/"
|
|
|
|
|
|
|
|
int
|
|
|
|
test_main (int argc, const char *argv[]) {
|
|
|
|
default_parse_args(argc, argv);
|
|
|
|
|
|
|
|
int r;
|
2013-04-16 23:59:07 -04:00
|
|
|
r = system(rmrf);
|
|
|
|
CKERR(r);
|
2013-04-16 23:59:00 -04:00
|
|
|
r = toku_os_mkdir(dname, S_IRWXU); assert(r==0);
|
|
|
|
TOKULOGGER logger;
|
|
|
|
LSN lsn = ZERO_LSN;
|
|
|
|
|
|
|
|
int helloseq = 0;
|
|
|
|
|
|
|
|
// create N log files with a hello message
|
|
|
|
for (int i=0; i<N; i++) {
|
|
|
|
r = toku_logger_create(&logger);
|
|
|
|
assert(r == 0);
|
|
|
|
|
|
|
|
r = toku_logger_open(dname, logger);
|
|
|
|
assert(r == 0);
|
|
|
|
|
|
|
|
char str[32];
|
|
|
|
sprintf(str, "hello%d", helloseq++);
|
|
|
|
BYTESTRING bs0 = { .data = str, .len = strlen(str) };
|
|
|
|
r = toku_log_comment(logger, &lsn, 0, 0, bs0);
|
|
|
|
assert(r == 0);
|
|
|
|
|
|
|
|
r = toku_logger_close(&logger);
|
|
|
|
assert(r == 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
// create N empty log files
|
|
|
|
for (int i=0; i<N; i++) {
|
|
|
|
r = toku_logger_create(&logger);
|
|
|
|
assert(r == 0);
|
|
|
|
|
|
|
|
r = toku_logger_open(dname, logger);
|
|
|
|
assert(r == 0);
|
|
|
|
|
|
|
|
r = toku_logger_close(&logger);
|
|
|
|
assert(r == 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
// CREATE AN EMPTY FILE (tests [t:2384])
|
|
|
|
{
|
|
|
|
long long nexti;
|
|
|
|
r = toku_logger_find_next_unused_log_file(dname, &nexti);
|
|
|
|
assert(r == 0);
|
|
|
|
char mt_fname[128];
|
2013-04-16 23:59:17 -04:00
|
|
|
snprintf(mt_fname, 128, "%s/log%012lld.tokulog%d", dname, nexti, TOKU_LOG_VERSION);
|
2013-04-16 23:59:00 -04:00
|
|
|
int mt_fd = open(mt_fname, O_CREAT+O_WRONLY+O_TRUNC+O_EXCL+O_BINARY, S_IRWXU);
|
|
|
|
assert(mt_fd != -1);
|
|
|
|
r = close(mt_fd);
|
|
|
|
}
|
|
|
|
|
|
|
|
// create N log files with a hello message
|
|
|
|
for (int i=0; i<N; i++) {
|
|
|
|
r = toku_logger_create(&logger);
|
|
|
|
assert(r == 0);
|
|
|
|
|
|
|
|
r = toku_logger_open(dname, logger);
|
|
|
|
assert(r == 0);
|
|
|
|
|
|
|
|
char str[32];
|
|
|
|
sprintf(str, "hello%d", helloseq++);
|
|
|
|
BYTESTRING bs0 = { .data = str, .len = strlen(str) };
|
|
|
|
r = toku_log_comment(logger, &lsn, 0, 0, bs0);
|
|
|
|
assert(r == 0);
|
|
|
|
|
|
|
|
r = toku_logger_close(&logger);
|
|
|
|
assert(r == 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
// CREATE AN EMPTY FILE (tests [t:2384])
|
|
|
|
{
|
|
|
|
long long nexti;
|
|
|
|
r = toku_logger_find_next_unused_log_file(dname, &nexti);
|
|
|
|
assert(r == 0);
|
|
|
|
char mt_fname[128];
|
2013-04-16 23:59:17 -04:00
|
|
|
snprintf(mt_fname, 128, "%s/log%012lld.tokulog%d", dname, nexti, TOKU_LOG_VERSION);
|
2013-04-16 23:59:00 -04:00
|
|
|
int mt_fd = open(mt_fname, O_CREAT+O_WRONLY+O_TRUNC+O_EXCL+O_BINARY, S_IRWXU);
|
|
|
|
assert(mt_fd != -1);
|
|
|
|
r = close(mt_fd);
|
|
|
|
}
|
|
|
|
|
|
|
|
// verify the log forwards
|
|
|
|
TOKULOGCURSOR lc = NULL;
|
|
|
|
struct log_entry *le;
|
|
|
|
|
|
|
|
r = toku_logcursor_create(&lc, dname);
|
|
|
|
assert(r == 0 && lc != NULL);
|
|
|
|
|
|
|
|
helloseq = 0;
|
|
|
|
for (int i=0; i<2*N; i++) {
|
|
|
|
|
|
|
|
r = toku_logcursor_next(lc, &le);
|
|
|
|
assert(r == 0 && le->cmd == LT_comment);
|
|
|
|
char expect[32];
|
|
|
|
sprintf(expect, "hello%d", helloseq++);
|
|
|
|
assert(le->u.comment.comment.len == strlen(expect) && memcmp(le->u.comment.comment.data, expect, le->u.comment.comment.len) == 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
r = toku_logcursor_next(lc, &le);
|
|
|
|
assert(r != 0);
|
|
|
|
|
|
|
|
r = toku_logcursor_destroy(&lc);
|
|
|
|
assert(r == 0 && lc == NULL);
|
|
|
|
|
|
|
|
// verify the log backwards
|
|
|
|
r = toku_logcursor_create(&lc, dname);
|
|
|
|
assert(r == 0 && lc != NULL);
|
|
|
|
|
|
|
|
helloseq = 2*N;
|
|
|
|
for (int i=0; i<2*N; i++) {
|
|
|
|
|
|
|
|
r = toku_logcursor_prev(lc, &le);
|
|
|
|
assert(r == 0 && le->cmd == LT_comment);
|
|
|
|
char expect[32];
|
|
|
|
sprintf(expect, "hello%d", --helloseq);
|
|
|
|
assert(le->u.comment.comment.len == strlen(expect) && memcmp(le->u.comment.comment.data, expect, le->u.comment.comment.len) == 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
r = toku_logcursor_prev(lc, &le);
|
|
|
|
assert(r != 0);
|
|
|
|
|
|
|
|
r = toku_logcursor_destroy(&lc);
|
|
|
|
assert(r == 0 && lc == NULL);
|
|
|
|
|
|
|
|
// VERIFY TRIM WORKS WITH ZERO LENGTH FILE [t:2384]
|
|
|
|
{
|
|
|
|
LSN trim_lsn;
|
|
|
|
trim_lsn.lsn = (2*N)-1;
|
|
|
|
r = toku_logger_create(&logger); assert(r==0);
|
|
|
|
r = toku_logger_open(dname, logger); assert(r==0);
|
|
|
|
|
|
|
|
r = toku_logger_maybe_trim_log(logger, trim_lsn);
|
2013-04-16 23:59:37 -04:00
|
|
|
assert( toku_logfilemgr_num_logfiles(logger->logfilemgr) == 4 ); // untrimmed log, empty log, plus newly openned log
|
2013-04-16 23:59:00 -04:00
|
|
|
|
|
|
|
r = toku_logger_close(&logger);
|
|
|
|
}
|
2013-04-16 23:59:21 -04:00
|
|
|
|
|
|
|
r = system(rmrf);
|
|
|
|
CKERR(r);
|
|
|
|
|
2013-04-16 23:59:00 -04:00
|
|
|
return 0;
|
|
|
|
}
|