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 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267
|
#ifndef TARANTOOL_SWIM_TEST_UTILS_H_INCLUDED
#define TARANTOOL_SWIM_TEST_UTILS_H_INCLUDED
/*
* Copyright 2010-2019, Tarantool AUTHORS, please see AUTHORS file.
*
* Redistribution and use in source and binary forms, with or
* without modification, are permitted provided that the following
* conditions are met:
*
* 1. Redistributions of source code must retain the above
* copyright notice, this list of conditions and the
* following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials
* provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY <COPYRIGHT HOLDER> ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
* <COPYRIGHT HOLDER> OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
* THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
#include <stdbool.h>
#include "uuid/tt_uuid.h"
#include "unit.h"
#include "fiber.h"
#include "uri/uri.h"
#include "swim/swim.h"
#include "swim/swim_ev.h"
#include "swim/swim_proto.h"
#include "swim_test_transport.h"
#include "swim_test_ev.h"
struct swim_cluster;
/**
* Create a new cluster of SWIM instances. Instances are assigned
* URIs like '127.0.0.1:[1 - size]' and UUIDs like
* '00...00[1 - size]'. Instances can be got by their ordinal
* numbers equal to their port and to last part of UUID.
*/
struct swim_cluster *
swim_cluster_new(int size);
/** Change ACK timeout of all the instances in the cluster. */
void
swim_cluster_set_ack_timeout(struct swim_cluster *cluster, double ack_timeout);
/**
* Set an encryption algorithm and a key for each instance in
* @a cluster.
*/
void
swim_cluster_set_codec(struct swim_cluster *cluster, enum crypto_algo algo,
enum crypto_mode mode, const char *key, int key_size);
/**
* Change number of unacknowledged pings to delete a dead member
* of all the instances in the cluster.
*/
void
swim_cluster_set_gc(struct swim_cluster *cluster, enum swim_gc_mode gc_mode);
/** Delete all the SWIM instances, and the cluster itself. */
void
swim_cluster_delete(struct swim_cluster *cluster);
/** Update UUID of a SWIM instance with id @a i. */
int
swim_cluster_update_uuid(struct swim_cluster *cluster, int i,
const struct tt_uuid *new_uuid);
/** Check that an error in diag contains @a msg. */
bool
swim_error_check_match(const char *msg);
/** Get a SWIM instance by its ordinal number. */
struct swim *
swim_cluster_member(struct swim_cluster *cluster, int i);
/** Quit a member with id @a id. */
void
swim_cluster_quit_node(struct swim_cluster *cluster, int i);
/** Drop and create again a SWIM instance with id @a i. */
void
swim_cluster_restart_node(struct swim_cluster *cluster, int i);
/** Block IO on a SWIM instance with id @a i. */
void
swim_cluster_block_io(struct swim_cluster *cluster, int i);
/** Unblock IO on a SWIM instance with id @a i. */
void
swim_cluster_unblock_io(struct swim_cluster *cluster, int i);
/**
* Set drop rate of incoming and outgoing packets for a node with
* id @a i. Note, that even if a packet is dropped on send, the
* node still thinks, that the packet is sent. It is not a
* sender-visible error.
*/
void
swim_cluster_set_drop(struct swim_cluster *cluster, int i, double value);
/**
* The same as simple drop, but applied to outgoing packets only.
*/
void
swim_cluster_set_drop_out(struct swim_cluster *cluster, int i, double value);
/**
* The same as simple drop, but applied to incoming packets only.
*/
void
swim_cluster_set_drop_in(struct swim_cluster *cluster, int i, double value);
/**
* When @a value is true, break a one direction network link
* between @a to_id and @a from_id SWIM instances. It is a pure
* network block, the member tables are not touched. All the
* packets trying to go directly from @a from_id to @a to_id are
* dropped. When @a value is false, the channel is restored.
*/
void
swim_cluster_set_drop_channel(struct swim_cluster *cluster, int from_id,
int to_id, bool value);
/**
* Explicitly add a member of id @a from_id to a member of id
* @a to_id.
*/
int
swim_cluster_add_link(struct swim_cluster *cluster, int to_id, int from_id);
/** Add a bidirectional link between two SWIM instances. */
static inline void
swim_cluster_interconnect(struct swim_cluster *cluster, int to_id, int from_id)
{
swim_cluster_add_link(cluster, to_id, from_id);
swim_cluster_add_link(cluster, from_id, to_id);
}
enum swim_member_status
swim_cluster_member_status(struct swim_cluster *cluster, int node_id,
int member_id);
struct swim_incarnation
swim_cluster_member_incarnation(struct swim_cluster *cluster, int node_id,
int member_id);
const char *
swim_cluster_member_payload(struct swim_cluster *cluster, int node_id,
int member_id, int *size);
int
swim_cluster_member_set_payload(struct swim_cluster *cluster, int i,
const char *payload, int size);
/**
* Get a member object stored in a SWIM node @a node_id and
* showing a known state of a SWIM node @a member_id.
*/
const struct swim_member *
swim_cluster_member_view(struct swim_cluster *cluster, int node_id,
int member_id);
/**
* Check if in the cluster every instance knowns the about other
* instances.
*/
bool
swim_cluster_is_fullmesh(struct swim_cluster *cluster);
/** Wait for fullmesh at most @a timeout fake seconds. */
int
swim_cluster_wait_fullmesh(struct swim_cluster *cluster, double timeout);
/**
* Wait until a member with id @a member_id is seen with @a status
* in the membership table of a member with id @a node_id. At most
* @a timeout seconds.
*/
int
swim_cluster_wait_status(struct swim_cluster *cluster, int node_id,
int member_id, enum swim_member_status status,
double timeout);
/**
* Wait until a member with id @a member_id is seen with @a status
* in the membership table of any instance in @a cluster. At most
* @a timeout seconds.
*/
int
swim_cluster_wait_status_anywhere(struct swim_cluster *cluster, int member_id,
enum swim_member_status status,
double timeout);
/**
* Wait until a member with id @a member_id is seen with @a status
* in the membership table of every instance in @a cluster. At
* most @a timeout seconds.
*/
int
swim_cluster_wait_status_everywhere(struct swim_cluster *cluster, int member_id,
enum swim_member_status status,
double timeout);
/**
* Wait until a member with id @a member_id is seen with needed
* incarnation in the membership table of a member with id @a
* node_id. At most @a timeout seconds.
*/
int
swim_cluster_wait_incarnation(struct swim_cluster *cluster, int node_id,
int member_id, uint64_t generation,
uint64_t version, double timeout);
/**
* Wait until a member with id @a member_id is seen with
* @a payload of size @a payload_size in the membership table of
* every instance in @a cluster. At most @a timeout seconds.
*/
int
swim_cluster_wait_payload_everywhere(struct swim_cluster *cluster,
int member_id, const char *payload,
int payload_size, double timeout);
/** Run all pending triggers in the cluster. */
void
swim_cluster_run_triggers(struct swim_cluster *cluster);
/** Process SWIM events for @a duration fake seconds. */
void
swim_run_for(double duration);
/**
* A helper to initialize all the necessary subsystems before a
* test, and free them afterwards.
*/
void
swim_run_test(const char *log_file, fiber_func test);
#define swim_start_test(n) { \
header(); \
say_verbose("-------- SWIM start test %s --------", __func__); \
plan(n); \
}
#define swim_finish_test() { \
say_verbose("-------- SWIM end test %s --------", __func__); \
swim_test_ev_reset(); \
check_plan(); \
footer(); \
}
#endif /* TARANTOOL_SWIM_TEST_UTILS_H_INCLUDED */
|