1 /* -*- mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
2 // vim: ft=cpp:expandtab:ts=8:sw=4:softtabstop=4:
3 #ident "$Id$"
4 /*======
5 This file is part of PerconaFT.
6 
7 
8 Copyright (c) 2006, 2015, Percona and/or its affiliates. All rights reserved.
9 
10     PerconaFT is free software: you can redistribute it and/or modify
11     it under the terms of the GNU General Public License, version 2,
12     as published by the Free Software Foundation.
13 
14     PerconaFT is distributed in the hope that it will be useful,
15     but WITHOUT ANY WARRANTY; without even the implied warranty of
16     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17     GNU General Public License for more details.
18 
19     You should have received a copy of the GNU General Public License
20     along with PerconaFT.  If not, see <http://www.gnu.org/licenses/>.
21 
22 ----------------------------------------
23 
24     PerconaFT is free software: you can redistribute it and/or modify
25     it under the terms of the GNU Affero General Public License, version 3,
26     as published by the Free Software Foundation.
27 
28     PerconaFT is distributed in the hope that it will be useful,
29     but WITHOUT ANY WARRANTY; without even the implied warranty of
30     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
31     GNU Affero General Public License for more details.
32 
33     You should have received a copy of the GNU Affero General Public License
34     along with PerconaFT.  If not, see <http://www.gnu.org/licenses/>.
35 ======= */
36 
37 #ident "Copyright (c) 2006, 2015, Percona and/or its affiliates. All rights reserved."
38 
39 // test recovery of "hello" comments
40 
41 #include "test.h"
42 
43 
44 static int
run_test(void)45 run_test(void) {
46     int r;
47 
48     // setup the test dir
49     toku_os_recursive_delete(TOKU_TEST_FILENAME);
50     r = toku_os_mkdir(TOKU_TEST_FILENAME, S_IRWXU); assert(r == 0);
51 
52     // create the log
53     TOKULOGGER logger;
54     r = toku_logger_create(&logger); assert(r == 0);
55     r = toku_logger_open(TOKU_TEST_FILENAME, logger); assert(r == 0);
56     BYTESTRING hello  = { (uint32_t) strlen("hello"), (char *) "hello" };
57     toku_log_comment(logger, NULL, true, 0, hello);
58     LSN beginlsn;
59     toku_log_begin_checkpoint(logger, &beginlsn, true, 0, 0);
60     toku_log_end_checkpoint(logger, NULL, true, beginlsn, 0, 0, 0);
61     toku_log_comment(logger, NULL, true, 0, hello);
62     BYTESTRING there  = { (uint32_t) strlen("there"), (char *) "there" };
63     toku_log_comment(logger, NULL, true, 0, there);
64     r = toku_logger_close(&logger); assert(r == 0);
65 
66     // redirect stderr
67     int devnul = open(DEV_NULL_FILE, O_WRONLY);
68     assert(devnul>=0);
69     r = toku_dup2(devnul, fileno(stderr)); 	    assert(r==fileno(stderr));
70     r = close(devnul);                      assert(r==0);
71 
72     // run recovery
73     r = tokuft_recover(NULL,
74 		       NULL_prepared_txn_callback,
75 		       NULL_keep_cachetable_callback,
76 		       NULL_logger, TOKU_TEST_FILENAME, TOKU_TEST_FILENAME, 0, 0, 0, NULL, 0);
77     assert(r == 0);
78 
79     toku_os_recursive_delete(TOKU_TEST_FILENAME);
80 
81     return 0;
82 }
83 
84 int
test_main(int UU (argc),const char * UU (argv[]))85 test_main(int UU(argc), const char *UU(argv[])) {
86     int r;
87     r = run_test();
88     return r;
89 }
90