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
|
/*
Copyright (c) 2019, 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 MYSQLROUTER_MOCK_SERVER_TESTUTILS_H_INCLUDED
#define MYSQLROUTER_MOCK_SERVER_TESTUTILS_H_INCLUDED
#include <chrono>
#ifdef RAPIDJSON_NO_SIZETYPEDEFINE
#include "my_rapidjson_size_t.h"
#endif
#include <rapidjson/document.h>
#include <rapidjson/pointer.h>
#include <rapidjson/prettywriter.h>
#include <rapidjson/schema.h>
#include "mysqlrouter/cluster_metadata.h"
// AddressSanitizer gets confused by the default, MemoryPoolAllocator
// Solaris sparc also gets crashes
using JsonAllocator = rapidjson::CrtAllocator;
using JsonDocument =
rapidjson::GenericDocument<rapidjson::UTF8<>, JsonAllocator>;
using JsonValue =
rapidjson::GenericValue<rapidjson::UTF8<>, JsonDocument::AllocatorType>;
using JsonStringBuffer =
rapidjson::GenericStringBuffer<rapidjson::UTF8<>, rapidjson::CrtAllocator>;
struct GRNode {
GRNode(uint32_t p_classic_port, const std::string &p_server_uuid = "",
const std::string &p_member_status = "ONLINE")
: server_uuid(p_server_uuid.empty() ? std::to_string(p_classic_port)
: p_server_uuid),
classic_port(p_classic_port),
member_status(p_member_status) {}
std::string server_uuid;
uint32_t classic_port;
std::string member_status;
};
struct ClusterNode {
ClusterNode(uint32_t p_classic_port, const std::string &p_server_uuid = "",
uint32_t p_x_port = 0, const std::string &p_attributes = "{}")
: server_uuid(p_server_uuid.empty() ? std::to_string(p_classic_port)
: p_server_uuid),
classic_port(p_classic_port),
x_port(p_x_port),
attributes(p_attributes) {}
std::string server_uuid;
uint32_t classic_port;
uint32_t x_port;
std::string attributes;
};
/**
* Converts a vector of classic port numbers to the vector of GRNode objects.
*/
std::vector<GRNode> classic_ports_to_gr_nodes(
const std::vector<uint16_t> &classic_ports);
/**
* Converts a vector of classic port numbers to the vector of Cluster Node
* objects.
*/
std::vector<ClusterNode> classic_ports_to_cluster_nodes(
const std::vector<uint16_t> &classic_ports);
/**
* Converts the GR mock data to the JSON object.
*
* @param gr_id replication group id to set
* @param gr_nodes vector with the GR nodes
* @param gr_pos this node's position in GR nodes table
* @param cluster_nodes vector with cluster nodes as defined in the metadata
* @param primary_id which node is the primary
* @param view_id metadata view id (for AR cluster)
* @param error_on_md_query if true the mock should return an error when
* handling the metadata query
* @param gr_node_host address of the host with the nodes
*
* @return JSON object with the GR mock data.
*/
JsonValue mock_GR_metadata_as_json(
const std::string &gr_id, const std::vector<GRNode> &gr_nodes,
unsigned gr_pos, const std::vector<ClusterNode> &cluster_nodes,
unsigned primary_id = 0, uint64_t view_id = 0,
bool error_on_md_query = false,
const std::string &gr_node_host = "127.0.0.1");
/**
* Sets the metadata returned by the mock server.
*
* @param http_port mock server's http port where it services the http requests
* @param gr_id replication group id to set
* @param gr_nodes vector with the GR nodes
* @param gr_pos this node's position in GR nodes table
* @param cluster_nodes vector with cluster nodes as defined in the metadata
* @param primary_id which node is the primary
* @param view_id metadata view id (for AR cluster)
* @param error_on_md_query if true the mock should return an error when
* @param gr_node_host address of the host with the nodes handling the metadata
* query
*/
void set_mock_metadata(uint16_t http_port, const std::string &gr_id,
const std::vector<GRNode> &gr_nodes, unsigned gr_pos,
const std::vector<ClusterNode> &cluster_nodes,
unsigned primary_id = 0, uint64_t view_id = 0,
bool error_on_md_query = false,
const std::string &gr_node_host = "127.0.0.1");
void set_mock_bootstrap_data(
uint16_t http_port, const std::string &cluster_name,
const std::vector<std::pair<std::string, unsigned>> &gr_members_ports,
const mysqlrouter::MetadataSchemaVersion &metadata_version,
const std::string &cluster_specific_id);
/**
* Sets the version reported by the mock server.
*
* @param http_port mock server's http port where it services the http requests
* @param version string with the version to be reported by the mock server
* query
*/
void set_mock_server_version(uint16_t http_port, const std::string &version);
/**
* Converts JSON object to string representation.
*/
std::string json_to_string(const JsonValue &json_doc);
#endif // MYSQLROUTER_MOCK_SERVER_TESTUTILS_H_INCLUDED
|