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 with no data directory
40 
41 #include "test.h"
42 
43 static int
run_test(void)44 run_test(void) {
45     int r;
46     toku_os_recursive_delete(TOKU_TEST_FILENAME);
47     r = toku_os_mkdir(TOKU_TEST_FILENAME, S_IRWXU);
48     assert_zero(r);
49 
50     char testdir[TOKU_PATH_MAX+1];
51     char testfile[TOKU_PATH_MAX+1];
52     toku_path_join(testdir, 2, TOKU_TEST_FILENAME, "dir");
53     toku_path_join(testfile, 2, TOKU_TEST_FILENAME, "file");
54 
55     // setup the test dir
56     toku_os_recursive_delete(TOKU_TEST_FILENAME);
57     r = toku_os_mkdir(TOKU_TEST_FILENAME, S_IRWXU); assert(r == 0);
58     r = toku_os_mkdir(testdir, S_IRWXU); assert(r == 0);
59 
60     // create the log
61     TOKULOGGER logger;
62     r = toku_logger_create(&logger); assert(r == 0);
63     r = toku_logger_open(testdir, logger); assert(r == 0);
64     BYTESTRING hello  = { (uint32_t) strlen("hello"), (char *) "hello" };
65     toku_log_comment(logger, NULL, true, 0, hello);
66     r = toku_logger_close(&logger); assert(r == 0);
67 
68     // redirect stderr
69     int devnul = open(DEV_NULL_FILE, O_WRONLY);
70     assert(devnul>=0);
71     r = toku_dup2(devnul, fileno(stderr)); 	    assert(r==fileno(stderr));
72     r = close(devnul);                      assert(r==0);
73 
74     // run recovery
75     {
76         char buf[TOKU_PATH_MAX+sizeof("touch ")];
77         strcpy(buf, "touch ");
78         strncat(buf, testfile, TOKU_PATH_MAX);
79         r = system(buf); CKERR(r);
80     }
81     r = tokuft_recover(NULL,
82 		       NULL_prepared_txn_callback,
83 		       NULL_keep_cachetable_callback,
84 		       NULL_logger,
85 		       testfile, testdir, 0, 0, 0, NULL, 0);
86     assert(r != 0);
87 
88     toku_os_recursive_delete(TOKU_TEST_FILENAME);
89 
90     return 0;
91 }
92 
93 int
test_main(int UU (argc),const char * UU (argv[]))94 test_main(int UU(argc), const char *UU(argv[])) {
95     int r;
96     r = run_test();
97     return r;
98 }
99