summaryrefslogtreecommitdiffstats
path: root/storage/tokudb/PerconaFT/src/tests/test_insert_unique.cc
blob: d6913ee60953ecca5ec8f35c614baf94bf2f9689 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
/* -*- mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
// vim: ft=cpp:expandtab:ts=8:sw=4:softtabstop=4:
#ident "$Id$"
/*======
This file is part of PerconaFT.


Copyright (c) 2006, 2015, Percona and/or its affiliates. All rights reserved.

    PerconaFT is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License, version 2,
    as published by the Free Software Foundation.

    PerconaFT is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with PerconaFT.  If not, see <http://www.gnu.org/licenses/>.

----------------------------------------

    PerconaFT is free software: you can redistribute it and/or modify
    it under the terms of the GNU Affero General Public License, version 3,
    as published by the Free Software Foundation.

    PerconaFT is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU Affero General Public License for more details.

    You should have received a copy of the GNU Affero General Public License
    along with PerconaFT.  If not, see <http://www.gnu.org/licenses/>.
======= */

#ident "Copyright (c) 2006, 2015, Percona and/or its affiliates. All rights reserved."

/**
 * Test that unique inserts work correctly. This exercises the rightmost leaf inject optimization.
 */

#include <portability/toku_random.h>

#include "test.h"

static char random_buf[8];
static struct random_data random_data;

static void test_simple_unique_insert(DB_ENV *env) {
    int r;
    DB *db;
    r = db_create(&db, env, 0); CKERR(r);
    r = db->open(db, NULL, "db", NULL, DB_BTREE, DB_CREATE, 0644); CKERR(r);

    DBT key1, key2, key3;
    dbt_init(&key1, "a", sizeof("a"));
    dbt_init(&key2, "b", sizeof("b"));
    dbt_init(&key3, "c", sizeof("c"));
    r = db->put(db, NULL, &key1, &key1, DB_NOOVERWRITE); CKERR(r);
    r = db->put(db, NULL, &key1, &key1, DB_NOOVERWRITE); CKERR2(r, DB_KEYEXIST);
    r = db->put(db, NULL, &key3, &key3, DB_NOOVERWRITE); CKERR(r);
    r = db->put(db, NULL, &key3, &key3, DB_NOOVERWRITE); CKERR2(r, DB_KEYEXIST);
    r = db->put(db, NULL, &key2, &key2, DB_NOOVERWRITE); CKERR(r);
    r = db->put(db, NULL, &key2, &key2, DB_NOOVERWRITE); CKERR2(r, DB_KEYEXIST);
    // sanity check
    r = db->put(db, NULL, &key1, &key1, DB_NOOVERWRITE); CKERR2(r, DB_KEYEXIST);
    r = db->put(db, NULL, &key1, &key3, DB_NOOVERWRITE); CKERR2(r, DB_KEYEXIST);

    r = db->close(db, 0); CKERR(r);
    r = env->dbremove(env, NULL, "db", NULL, 0); CKERR(r);
}

static void test_large_sequential_insert_unique(DB_ENV *env) {
    int r;
    DB *db;
    r = db_create(&db, env, 0); CKERR(r);

    // very small nodes/basements to make a taller tree
    r = db->set_pagesize(db, 8 * 1024); CKERR(r);
    r = db->set_readpagesize(db, 2 * 1024); CKERR(r);
    r = db->open(db, NULL, "db", NULL, DB_BTREE, DB_CREATE, 0644); CKERR(r);

    const int val_size = 8;
    char *XMALLOC_N(val_size, val_buf);
    memset(val_buf, 'k', val_size);
    DBT val;
    dbt_init(&val, val_buf, val_size);

    // grow a tree to about depth 3, taking sanity checks along the way
    const int start_num_rows = (64 * 1024 * 1024) / val_size;
    for (int i = 0; i < start_num_rows; i++) {
        DBT key;
        int k = toku_htonl(i);
        dbt_init(&key, &k, sizeof(k));
        r = db->put(db, NULL, &key, &val, DB_NOOVERWRITE); CKERR(r);
        if (i % 50 == 0) {
            // sanity check - should not be able to insert this key twice in a row
            r = db->put(db, NULL, &key, &val, DB_NOOVERWRITE); CKERR2(r, DB_KEYEXIST);

            // .. but re-inserting is okay, if we provisionally deleted the row
            DB_TXN *txn;
            r = env->txn_begin(env, NULL, &txn, 0); CKERR(r);
            r = db->del(db, txn, &key, DB_DELETE_ANY); CKERR(r);
            r = db->put(db, txn, &key, &val, DB_NOOVERWRITE); CKERR(r);
            r = txn->commit(txn, 0); CKERR(r);

            // re-inserting is also ok if we actually delete the row, for some key < k
            if (i > 0) {
                DBT other_key;
                int other_k = toku_htonl(i - 10);
                dbt_init(&other_key, &other_k, sizeof(other_k));
                r = db->del(db, NULL, &other_key, DB_DELETE_ANY); CKERR(r);
                r = db->put(db, NULL, &other_key, &val, DB_NOOVERWRITE); CKERR(r);
            }
        }
        if (i > 0 && i % 250 == 0) {
            // sanity check - unique checks on random keys we already inserted should
            //                fail (exercises middle-of-the-tree checks)
            for (int check_i = 0; check_i < 4; check_i++) {
                DBT rand_key;
                int rand_k = toku_htonl(myrandom_r(&random_data) % i);
                dbt_init(&rand_key, &rand_k, sizeof(rand_k));
                r = db->put(db, NULL, &rand_key, &val, DB_NOOVERWRITE); CKERR2(r, DB_KEYEXIST);
            }
        }
    }

    toku_free(val_buf);
    r = db->close(db, 0); CKERR(r);
    r = env->dbremove(env, NULL, "db", NULL, 0); CKERR(r);
}


int test_main(int argc, char * const argv[]) {
    default_parse_args(argc, argv);

    int r;
    const int envflags = DB_INIT_MPOOL | DB_CREATE | DB_THREAD |
                         DB_INIT_LOCK | DB_INIT_LOG | DB_INIT_TXN | DB_PRIVATE;

    // startup
    DB_ENV *env;
    toku_os_recursive_delete(TOKU_TEST_FILENAME);
    r = toku_os_mkdir(TOKU_TEST_FILENAME, 0755); CKERR(r);
    r = db_env_create(&env, 0); CKERR(r);
    r = env->open(env, TOKU_TEST_FILENAME, envflags, 0755);

    r = myinitstate_r(random(), random_buf, 8, &random_data); CKERR(r);

    test_simple_unique_insert(env);
    test_large_sequential_insert_unique(env);

    // cleanup
    r = env->close(env, 0); CKERR(r);

    return 0;
}