Files
scylladb/tests/gce_snitch_test.cc
Avi Kivity 84004a2574 locator: de-inline production_snitch_base
De-inlining allows us to remove some dependencies, and those functions
are too complex to inline anyway.

A few always-throwing functions get the [[noreturn]] attribute to
avoid damaging code generation.
2018-03-11 18:22:49 +02:00

143 lines
5.6 KiB
C++

/*
* Copyright (C) 2018 ScyllaDB
*/
/*
* This file is part of Scylla.
*
* Scylla is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Scylla 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 Scylla. If not, see <http://www.gnu.org/licenses/>.
*/
/// \brief Tests the GoogleCloudSnitch.
/// Uses the dummy GCE meta server that would be listening on 127.0.0.1:80 by default.
/// To change the IP of the dummy server one can use the DUMMY_META_SERVER_IP environment macro.
/// To use the real GCE meta server (from inside the GCE VM) one should define the USE_GCE_META_SERVER environment macro.
///
/// For example:
///
/// Use the real GCE meta server
/// $ USE_GCE_META_SERVER="1" ./gce_snitch_test
///
/// Use the dummy meta server on 127.0.0.8
/// $ sudo DUMMY_META_SERVER_IP="128.0.0.8" ./gce_snitch_test
#include <boost/test/unit_test.hpp>
#include "locator/gce_snitch.hh"
#include "utils/fb_utilities.hh"
#include "tests/test-utils.hh"
#include <seastar/http/httpd.hh>
#include <seastar/net/inet_address.hh>
static boost::filesystem::path test_files_subdir("tests/snitch_property_files");
static constexpr const char* DUMMY_META_SERVER_IP = "DUMMY_META_SERVER_IP";
static constexpr const char* USE_GCE_META_SERVER = "USE_GCE_META_SERVER";
class gce_meta_get_handler : public seastar::httpd::handler_base {
virtual future<std::unique_ptr<seastar::httpd::reply>> handle(const sstring& path, std::unique_ptr<seastar::httpd::request> req, std::unique_ptr<seastar::httpd::reply> rep) override {
using namespace seastar::httpd;
if (path == locator::gce_snitch::ZONE_NAME_QUERY_REQ) {
rep->write_body(sstring("txt"), sstring("projects/431729375847/zones/us-central1-a"));
} else {
rep->set_status(reply::status_type::bad_request);
}
return make_ready_future<std::unique_ptr<reply>>(std::move(rep));
}
};
future<> one_test(const std::string& property_fname, bool exp_result) {
return seastar::async([property_fname, exp_result] () {
using namespace locator;
using namespace boost::filesystem;
path fname(test_files_subdir);
fname /= path(property_fname);
utils::fb_utilities::set_broadcast_address(gms::inet_address("localhost"));
utils::fb_utilities::set_broadcast_rpc_address(gms::inet_address("localhost"));
char* meta_url_env = std::getenv(DUMMY_META_SERVER_IP);
char* use_gce_server = std::getenv(USE_GCE_META_SERVER);
bool use_dummy_server = true;
sstring meta_url = "127.0.0.1";
if (use_gce_server != nullptr) {
meta_url = locator::gce_snitch::GCE_QUERY_SERVER_ADDR;
use_dummy_server = false;
} else if (meta_url_env != nullptr) {
meta_url = meta_url_env;
}
httpd::http_server_control http_server;
try {
if (use_dummy_server) {
http_server.start("dummy_GCE_meta_server").get();
http_server.set_routes([] (routes& r) {
r.put(seastar::httpd::operation_type::GET, locator::gce_snitch::ZONE_NAME_QUERY_REQ, new gce_meta_get_handler());
}).get();
http_server.listen(ipv4_addr(meta_url.c_str(), 80)).get();
}
i_endpoint_snitch::create_snitch<const sstring&, const unsigned&, const sstring&>("GoogleCloudSnitch", sstring(fname.string()), 0, meta_url).get();
if (!exp_result) {
BOOST_ERROR("Failed to catch an error in a malformed configuration file");
i_endpoint_snitch::stop_snitch().get();
if (use_dummy_server) {
http_server.stop().get();
}
return;
}
auto cpu0_dc = make_lw_shared<sstring>();
auto cpu0_rack = make_lw_shared<sstring>();
auto res = make_lw_shared<bool>(true);
auto my_address = utils::fb_utilities::get_broadcast_address();
i_endpoint_snitch::snitch_instance().invoke_on(0, [cpu0_dc, cpu0_rack, res, my_address] (snitch_ptr& inst) {
*cpu0_dc =inst->get_datacenter(my_address);
*cpu0_rack = inst->get_rack(my_address);
}).get();
i_endpoint_snitch::snitch_instance().invoke_on_all([cpu0_dc, cpu0_rack, res, my_address] (snitch_ptr& inst) {
if (*cpu0_dc != inst->get_datacenter(my_address) ||
*cpu0_rack != inst->get_rack(my_address)) {
*res = false;
}
}).get();
if (!*res) {
BOOST_ERROR("Data center or Rack do not match on different shards");
} else {
BOOST_CHECK(true);
}
i_endpoint_snitch::stop_snitch().get();
} catch (std::exception& e) {
BOOST_CHECK(!exp_result);
}
if (use_dummy_server) {
http_server.stop().get();
}
});
}
#define GOSSIPING_TEST_CASE(tag, exp_res) \
SEASTAR_TEST_CASE(tag) { \
return one_test(#tag".property", exp_res); \
}
////////////////////////////////////////////////////////////////////////////////
GOSSIPING_TEST_CASE(good_1, true);