Files
MaxScale/system-test/mxs2520_master_read_reconnect.cpp
Esa Korhonen 08f5174915 MXS-2900 Rename maxscale-system-test directory to system-test
A link with the old directory name is provided.
2020-07-28 15:24:27 +03:00

35 lines
959 B
C++

/**
* MXS-2520: Allow master reconnection on reads
* https://jira.mariadb.org/browse/MXS-2520
*/
#include "testconnections.h"
int main(int argc, char* argv[])
{
TestConnections test(argc, argv);
test.maxscales->connect();
std::thread thr([&]() {
sleep(5);
test.tprintf("block node 0");
test.repl->block_node(0);
test.tprintf("wait for monitor");
test.maxscales->wait_for_monitor(2);
test.tprintf("unblock node 0");
test.repl->unblock_node(0);
});
test.set_timeout(60);
test.tprintf("SELECT SLEEP(10)");
test.try_query(test.maxscales->conn_rwsplit[0], "SELECT SLEEP(10)");
test.stop_timeout();
test.tprintf("disconnect");
test.maxscales->disconnect();
test.tprintf("join");
thr.join();
return test.global_result;
}