~ubuntu-branches/ubuntu/trusty/mariadb-5.5/trusty-proposed

« back to all changes in this revision

Viewing changes to storage/tokudb/ft-index/ft/tests/minicron-test.cc

  • Committer: Package Import Robot
  • Author(s): James Page, Otto Kekäläinen
  • Date: 2014-02-17 16:51:52 UTC
  • mfrom: (2.1.1 sid)
  • Revision ID: package-import@ubuntu.com-20140217165152-k315d3175g865kkx
Tags: 5.5.35-1
[ Otto Kekäläinen ]
* New upstream release, fixing the following security issues:
  - Buffer overflow in client/mysql.cc (Closes: #737597).
    - CVE-2014-0001
  - http://www.oracle.com/technetwork/topics/security/cpujan2014-1972949.html
    - CVE-2013-5891
    - CVE-2013-5908
    - CVE-2014-0386
    - CVE-2014-0393
    - CVE-2014-0401
    - CVE-2014-0402
    - CVE-2014-0412
    - CVE-2014-0420
    - CVE-2014-0437
* Upstream https://mariadb.atlassian.net/browse/MDEV-4902
  fixes compatibility with Bison 3.0 (Closes: #733002)
* Updated Russian debconf translation (Closes: #734426)
* Updated Japanese debconf translation (Closes: #735284)
* Updated French debconf translation (Closes: #736480)
* Renamed SONAME properly (Closes: #732967)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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
COPYING CONDITIONS NOTICE:
 
6
 
 
7
  This program is free software; you can redistribute it and/or modify
 
8
  it under the terms of version 2 of the GNU General Public License as
 
9
  published by the Free Software Foundation, and provided that the
 
10
  following conditions are met:
 
11
 
 
12
      * Redistributions of source code must retain this COPYING
 
13
        CONDITIONS NOTICE, the COPYRIGHT NOTICE (below), the
 
14
        DISCLAIMER (below), the UNIVERSITY PATENT NOTICE (below), the
 
15
        PATENT MARKING NOTICE (below), and the PATENT RIGHTS
 
16
        GRANT (below).
 
17
 
 
18
      * Redistributions in binary form must reproduce this COPYING
 
19
        CONDITIONS NOTICE, the COPYRIGHT NOTICE (below), the
 
20
        DISCLAIMER (below), the UNIVERSITY PATENT NOTICE (below), the
 
21
        PATENT MARKING NOTICE (below), and the PATENT RIGHTS
 
22
        GRANT (below) in the documentation and/or other materials
 
23
        provided with the distribution.
 
24
 
 
25
  You should have received a copy of the GNU General Public License
 
26
  along with this program; if not, write to the Free Software
 
27
  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
 
28
  02110-1301, USA.
 
29
 
 
30
COPYRIGHT NOTICE:
 
31
 
 
32
  TokuDB, Tokutek Fractal Tree Indexing Library.
 
33
  Copyright (C) 2007-2013 Tokutek, Inc.
 
34
 
 
35
DISCLAIMER:
 
36
 
 
37
  This program is distributed in the hope that it will be useful, but
 
38
  WITHOUT ANY WARRANTY; without even the implied warranty of
 
39
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
40
  General Public License for more details.
 
41
 
 
42
UNIVERSITY PATENT NOTICE:
 
43
 
 
44
  The technology is licensed by the Massachusetts Institute of
 
45
  Technology, Rutgers State University of New Jersey, and the Research
 
46
  Foundation of State University of New York at Stony Brook under
 
47
  United States of America Serial No. 11/760379 and to the patents
 
48
  and/or patent applications resulting from it.
 
49
 
 
50
PATENT MARKING NOTICE:
 
51
 
 
52
  This software is covered by US Patent No. 8,185,551.
 
53
  This software is covered by US Patent No. 8,489,638.
 
54
 
 
55
PATENT RIGHTS GRANT:
 
56
 
 
57
  "THIS IMPLEMENTATION" means the copyrightable works distributed by
 
58
  Tokutek as part of the Fractal Tree project.
 
59
 
 
60
  "PATENT CLAIMS" means the claims of patents that are owned or
 
61
  licensable by Tokutek, both currently or in the future; and that in
 
62
  the absence of this license would be infringed by THIS
 
63
  IMPLEMENTATION or by using or running THIS IMPLEMENTATION.
 
64
 
 
65
  "PATENT CHALLENGE" shall mean a challenge to the validity,
 
66
  patentability, enforceability and/or non-infringement of any of the
 
67
  PATENT CLAIMS or otherwise opposing any of the PATENT CLAIMS.
 
68
 
 
69
  Tokutek hereby grants to you, for the term and geographical scope of
 
70
  the PATENT CLAIMS, a non-exclusive, no-charge, royalty-free,
 
71
  irrevocable (except as stated in this section) patent license to
 
72
  make, have made, use, offer to sell, sell, import, transfer, and
 
73
  otherwise run, modify, and propagate the contents of THIS
 
74
  IMPLEMENTATION, where such license applies only to the PATENT
 
75
  CLAIMS.  This grant does not include claims that would be infringed
 
76
  only as a consequence of further modifications of THIS
 
77
  IMPLEMENTATION.  If you or your agent or licensee institute or order
 
78
  or agree to the institution of patent litigation against any entity
 
79
  (including a cross-claim or counterclaim in a lawsuit) alleging that
 
80
  THIS IMPLEMENTATION constitutes direct or contributory patent
 
81
  infringement, or inducement of patent infringement, then any rights
 
82
  granted to you under this License shall terminate as of the date
 
83
  such litigation is filed.  If you or your agent or exclusive
 
84
  licensee institute or order or agree to the institution of a PATENT
 
85
  CHALLENGE, then Tokutek may terminate any rights granted to you
 
86
  under this License.
 
87
*/
 
88
 
 
89
#ident "Copyright (c) 2007-2013 Tokutek Inc.  All rights reserved."
 
90
#ident "The technology is licensed by the Massachusetts Institute of Technology, Rutgers State University of New Jersey, and the Research Foundation of State University of New York at Stony Brook under United States of America Serial No. 11/760379 and to the patents and/or patent applications resulting from it."
 
91
#include <toku_portability.h>
 
92
#include "test.h"
 
93
#include "minicron.h"
 
94
#include <unistd.h>
 
95
 
 
96
#include <string.h>
 
97
#include <stdlib.h>
 
98
 
 
99
static double
 
100
tdiff (struct timeval *a, struct timeval *b) {
 
101
    return (a->tv_sec-b->tv_sec) + (a->tv_usec-b->tv_usec)*1e-6;
 
102
}
 
103
 
 
104
struct timeval starttime;
 
105
static double elapsed (void) {
 
106
    struct timeval now;
 
107
    gettimeofday(&now, 0);
 
108
    return tdiff(&now, &starttime);
 
109
}
 
110
 
 
111
static int 
 
112
#ifndef GCOV
 
113
__attribute__((__noreturn__))
 
114
#endif
 
115
never_run (void *a) {
 
116
    assert(a==0);
 
117
    assert(0);
 
118
#if TOKU_WINDOWS || defined(GCOV)
 
119
    return 0; //ICC ignores the noreturn attribute.
 
120
#endif
 
121
}
 
122
 
 
123
// Can we start something with period=0 (the function should never run) and shut it down.
 
124
static void*
 
125
test1 (void* v)
 
126
{
 
127
    struct minicron m;
 
128
    ZERO_STRUCT(m);
 
129
    int r = toku_minicron_setup(&m, 0, never_run, 0);   assert(r==0);
 
130
    sleep(1);
 
131
    r = toku_minicron_shutdown(&m);                     assert(r==0);
 
132
    return v;
 
133
}
 
134
 
 
135
// Can we start something with period=10 and shut it down after 2 seconds (the function should never run) .
 
136
static void*
 
137
test2 (void* v)
 
138
{
 
139
    struct minicron m;
 
140
    ZERO_STRUCT(m);
 
141
    int r = toku_minicron_setup(&m, 10000, never_run, 0);   assert(r==0);
 
142
    sleep(2);
 
143
    r = toku_minicron_shutdown(&m);                     assert(r==0);
 
144
    return v;
 
145
}
 
146
 
 
147
struct tenx {
 
148
    struct timeval tv;
 
149
    int counter;
 
150
};
 
151
 
 
152
static int
 
153
run_5x (void *v) {
 
154
    struct tenx *CAST_FROM_VOIDP(tx, v);
 
155
    struct timeval now;
 
156
    gettimeofday(&now, 0);
 
157
    double diff = tdiff(&now, &tx->tv);
 
158
    if (verbose) printf("T=%f tx->counter=%d\n", diff, tx->counter);
 
159
    // We only verify that the timer was not premature.  
 
160
    // Sometimes it will be delayed, but there's no good way to test it and nothing we can do about it.
 
161
    if (!(diff>0.5 + tx->counter)) {
 
162
      printf("T=%f tx->counter=%d\n", diff, tx->counter);
 
163
      assert(0);
 
164
    }
 
165
    tx->counter++;
 
166
    return 0;
 
167
}
 
168
 
 
169
// Start something with period=1 and run it a few times
 
170
static void*
 
171
test3 (void* v)
 
172
{
 
173
    struct minicron m;
 
174
    struct tenx tx;
 
175
    gettimeofday(&tx.tv, 0);
 
176
    tx.counter=0;
 
177
    ZERO_STRUCT(m);
 
178
    int r = toku_minicron_setup(&m, 1000, run_5x, &tx);   assert(r==0);
 
179
    sleep(5);
 
180
    r = toku_minicron_shutdown(&m);                     assert(r==0);
 
181
    assert(tx.counter>=4 && tx.counter<=5); // after 5 seconds it could have run 4 or 5 times.
 
182
    return v;
 
183
}
 
184
 
 
185
static int
 
186
run_3sec (void *v) {
 
187
    if (verbose) printf("start3sec at %.6f\n", elapsed());
 
188
    int *CAST_FROM_VOIDP(counter, v);
 
189
    (*counter)++;
 
190
    sleep(3);
 
191
    if (verbose) printf("end3sec at %.6f\n", elapsed());
 
192
    return 0;
 
193
}
 
194
 
 
195
// make sure that if f is really slow that it doesn't run too many times
 
196
static void*
 
197
test4 (void *v) {
 
198
    struct minicron m;
 
199
    int counter = 0;
 
200
    ZERO_STRUCT(m);
 
201
    int r = toku_minicron_setup(&m, 2000, run_3sec, &counter); assert(r==0);
 
202
    sleep(10);
 
203
    r = toku_minicron_shutdown(&m);                     assert(r==0);
 
204
    assert(counter==3);
 
205
    return v;
 
206
}
 
207
 
 
208
static void*
 
209
test5 (void *v) {
 
210
    struct minicron m;
 
211
    int counter = 0;
 
212
    ZERO_STRUCT(m);
 
213
    int r = toku_minicron_setup(&m, 10000, run_3sec, &counter); assert(r==0);
 
214
    toku_minicron_change_period(&m, 2000);
 
215
    sleep(10);
 
216
    r = toku_minicron_shutdown(&m);                     assert(r==0);
 
217
    assert(counter==3);
 
218
    return v;
 
219
}
 
220
 
 
221
static void*
 
222
test6 (void *v) {
 
223
    struct minicron m;
 
224
    ZERO_STRUCT(m);
 
225
    int r = toku_minicron_setup(&m, 5000, never_run, 0); assert(r==0);
 
226
    toku_minicron_change_period(&m, 0);
 
227
    sleep(7);
 
228
    r = toku_minicron_shutdown(&m);                          assert(r==0);
 
229
    return v;
 
230
}
 
231
 
 
232
// test that we actually run once per period, even if the execution is long
 
233
static void*
 
234
test7 (void *v) {
 
235
    struct minicron m;
 
236
    int counter = 0;
 
237
    ZERO_STRUCT(m);
 
238
    int r = toku_minicron_setup(&m, 5000, run_3sec, &counter); assert(r==0);
 
239
    sleep(17);
 
240
    r = toku_minicron_shutdown(&m);                     assert(r==0);
 
241
    assert(counter==3);
 
242
    return v;
 
243
}
 
244
 
 
245
typedef void*(*ptf)(void*);
 
246
int
 
247
test_main (int argc, const char *argv[]) {
 
248
    default_parse_args(argc,argv);
 
249
    gettimeofday(&starttime, 0);
 
250
 
 
251
    ptf testfuns[] = {test1, test2, test3,
 
252
                      test4,
 
253
                      test5,
 
254
                      test6,
 
255
                      test7
 
256
    };
 
257
#define N (sizeof(testfuns)/sizeof(testfuns[0]))
 
258
    toku_pthread_t tests[N];
 
259
 
 
260
    unsigned int i;
 
261
    for (i=0; i<N; i++) {
 
262
        int r=toku_pthread_create(tests+i, 0, testfuns[i], 0);
 
263
        assert(r==0);
 
264
    }
 
265
    for (i=0; i<N; i++) {
 
266
        void *v;
 
267
        int r=toku_pthread_join(tests[i], &v);
 
268
        assert(r==0);
 
269
        assert(v==0);
 
270
    }
 
271
    return 0;
 
272
}