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
|
/*
Copyright (c) 2020, 2025, Oracle and/or its affiliates.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License, version 2.0,
as published by the Free Software Foundation.
This program is designed to work with certain software (including
but not limited to OpenSSL) that is licensed under separate terms,
as designated in a particular file or component or in included license
documentation. The authors of MySQL hereby grant you an additional
permission to link the program and your derivative works with the
separately licensed software that they have either included with
the program or referenced in the documentation.
This program 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 this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef _ROUTER_COMPONENT_CLUSTERSET_H_
#define _ROUTER_COMPONENT_CLUSTERSET_H_
#include <chrono>
#include <fstream>
#include <stdexcept>
#include <thread>
#ifdef RAPIDJSON_NO_SIZETYPEDEFINE
#include "my_rapidjson_size_t.h"
#endif
#include <rapidjson/document.h>
#include <rapidjson/error/en.h>
#include <rapidjson/filereadstream.h>
#include <rapidjson/prettywriter.h>
#include <rapidjson/schema.h>
#include <rapidjson/stringbuffer.h>
#include "mysqlrouter/cluster_metadata.h"
#include "rest_api_testutils.h"
#include "router_component_test.h"
using mysqlrouter::ClusterType;
namespace {
// default allocator for rapidJson (MemoryPoolAllocator) is broken for
// SparcSolaris
using JsonAllocator = rapidjson::CrtAllocator;
using JsonValue = rapidjson::GenericValue<rapidjson::UTF8<>, JsonAllocator>;
using JsonDocument =
rapidjson::GenericDocument<rapidjson::UTF8<>, JsonAllocator>;
using JsonStringBuffer =
rapidjson::GenericStringBuffer<rapidjson::UTF8<>, rapidjson::CrtAllocator>;
} // namespace
class RouterComponentClusterSetTest : public RestApiComponentTest {
protected:
struct ClusterNode {
std::string uuid;
std::string host;
uint16_t classic_port;
uint16_t x_port{0};
uint16_t http_port;
ProcessWrapper *process{nullptr};
};
struct ClusterData {
unsigned id;
std::string uuid;
std::string name;
std::string gr_uuid;
std::string role; // [PRIMARY, SECONDARY]
// cluster is marked as invalid in the metadata
bool invalid{false};
std::vector<ClusterNode> nodes;
unsigned primary_node_id;
};
struct ClusterSetData {
std::string uuid{"clusterset-uuid"};
std::vector<ClusterData> clusters;
unsigned primary_cluster_id;
auto get_all_nodes_classic_ports() const {
std::vector<uint16_t> result;
std::vector<uint16_t> secondary_clusters_nodes;
for (const auto &cluster : clusters) {
for (const auto &node : cluster.nodes) {
// PRIMARY cluster nodes first to match the metadata-servers order
// expectation
if (cluster.role == "PRIMARY")
result.push_back(node.classic_port);
else
secondary_clusters_nodes.push_back(node.classic_port);
}
}
result.insert(result.end(), secondary_clusters_nodes.begin(),
secondary_clusters_nodes.end());
return result;
}
void remove_node(const std::string &node_uuid) {
for (auto &cluster : clusters) {
unsigned i = 0;
for (const auto &node : cluster.nodes) {
if (node.uuid == node_uuid) {
cluster.nodes.erase(cluster.nodes.begin() + i);
return;
}
++i;
}
}
}
void add_node(const unsigned cluster_id, const ClusterNode &node) {
clusters[cluster_id].nodes.push_back(node);
}
};
constexpr static unsigned kClustersNumber = 3;
constexpr static unsigned kNodesPerClusterNumber = 3;
void create_clusterset(uint64_t view_id, int target_cluster_id,
int primary_cluster_id, const std::string &tracefile,
const std::string &router_options = "",
const std::string &expected_target_cluster = ".*",
bool simulate_cluster_not_found = false,
bool use_gr_notifications = false);
void change_clusterset_primary(ClusterSetData &clusterset_data,
const unsigned new_primary_id);
void add_json_str_field(JsonValue &json_doc, const std::string &field,
const std::string &value);
void add_json_int_field(JsonValue &json_doc, const std::string &field,
const int value);
void add_clusterset_data_field(JsonValue &json_doc, const std::string &field,
const ClusterSetData &clusterset_data,
const unsigned this_cluster_id);
void set_mock_metadata(
uint64_t view_id, unsigned this_cluster_id, unsigned target_cluster_id,
uint16_t http_port, const ClusterSetData &clusterset_data,
const std::string &router_options = "",
const std::string &expected_target_cluster = ".*",
const mysqlrouter::MetadataSchemaVersion &metadata_version = {2, 1, 0},
bool simulate_cluster_not_found = false);
ClusterSetData clusterset_data_;
JsonAllocator json_allocator;
};
#endif // _ROUTER_COMPONENT_CLUSTERSET_H_
|