summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/test/cppsuite/src/common/api_const.h
blob: 8c0038fdee5fc3ff4e2f65d81b22b28634da66ea (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
/*-
 * Public Domain 2014-present MongoDB, Inc.
 * Public Domain 2008-2014 WiredTiger, Inc.
 *
 * This is free and unencumbered software released into the public domain.
 *
 * Anyone is free to copy, modify, publish, use, compile, sell, or
 * distribute this software, either in source code form or as a compiled
 * binary, for any purpose, commercial or non-commercial, and by any
 * means.
 *
 * In jurisdictions that recognize copyright laws, the author or authors
 * of this software dedicate any and all copyright interest in the
 * software to the public domain. We make this dedication for the benefit
 * of the public at large and to the detriment of our heirs and
 * successors. We intend this dedication to be an overt act of
 * relinquishment in perpetuity of all present and future rights to this
 * software under copyright law.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
 * IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
 * OTHER DEALINGS IN THE SOFTWARE.
 */

#ifndef API_CONST_H
#define API_CONST_H

#include <string>

/* Define all constants related to WiredTiger APIs and testing. */
namespace test_harness {

/* Component names. */
extern const std::string CHECKPOINT_MANAGER;
extern const std::string RUNTIME_MONITOR;
extern const std::string TIMESTAMP_MANAGER;
extern const std::string WORKLOAD_GENERATOR;
extern const std::string WORKLOAD_TRACKING;

/* Configuration API consts. */
extern const std::string CACHE_HS_INSERT;
extern const std::string CACHE_MAX_WAIT_MS;
extern const std::string CACHE_SIZE_MB;
extern const std::string CC_PAGES_REMOVED;
extern const std::string COLLECTION_COUNT;
extern const std::string COMPRESSION_ENABLED;
extern const std::string CUSTOM_OP_CONFIG;
extern const std::string DURATION_SECONDS;
extern const std::string ENABLED;
extern const std::string ENABLE_LOGGING;
extern const std::string INSERT_OP_CONFIG;
extern const std::string KEY_COUNT_PER_COLLECTION;
extern const std::string KEY_SIZE;
extern const std::string LIMIT;
extern const std::string MAX;
extern const std::string MIN;
extern const std::string OLDEST_LAG;
extern const std::string OP_RATE;
extern const std::string OPS_PER_TRANSACTION;
extern const std::string POPULATE_CONFIG;
extern const std::string POSTRUN_STATISTICS;
extern const std::string READ_OP_CONFIG;
extern const std::string REMOVE_OP_CONFIG;
extern const std::string REVERSE_COLLATOR;
extern const std::string RUNTIME_STATISTICS;
extern const std::string SAVE;
extern const std::string STABLE_LAG;
extern const std::string STAT_CACHE_SIZE;
extern const std::string STAT_DB_SIZE;
extern const std::string STATISTICS_CONFIG;
extern const std::string THREAD_COUNT;
extern const std::string TRACKING_KEY_FORMAT;
extern const std::string TRACKING_VALUE_FORMAT;
extern const std::string TYPE;
extern const std::string UPDATE_OP_CONFIG;
extern const std::string VALUE_SIZE;

/* WiredTiger API consts. */
extern const std::string COMMIT_TS;
extern const std::string CONNECTION_CREATE;
extern const std::string OLDEST_TS;
extern const std::string STABLE_TS;
extern const std::string STATISTICS_LOG;

/*
 * Use the Snappy compressor for stress testing to avoid excessive disk space usage. Our builds can
 * pre-specify 'EXTSUBPATH' to indicate any special sub-directories the module is located. If unset
 * we fallback to the '.libs' sub-directory used by autoconf.
 */
#define BLKCMP_PFX "block_compressor="
#define SNAPPY_BLK BLKCMP_PFX "snappy"
#define EXTPATH "../../ext/"
#ifndef EXTSUBPATH
#define EXTSUBPATH ".libs/"
#endif

/* Use reverse collator to test changes that deal different table sorting orders. */
#define REVERSE_COL_CFG "collator=reverse"

#define SNAPPY_PATH EXTPATH "compressors/snappy/" EXTSUBPATH "libwiredtiger_snappy.so"
#define REVERSE_COLLATOR_PATH \
    EXTPATH "collators/reverse/" EXTSUBPATH "libwiredtiger_reverse_collator.so"

/* Test harness consts. */
extern const std::string DEFAULT_FRAMEWORK_SCHEMA;
extern const std::string TABLE_OPERATION_TRACKING;
extern const std::string TABLE_SCHEMA_TRACKING;
extern const std::string STATISTICS_URI;

} // namespace test_harness

#endif