Files
MaxScale/maxscale-system-test/bug634.cpp
Niclas Antti c447e5cf15 Uncrustify maxscale
See script directory for method. The script to run in the top level
MaxScale directory is called maxscale-uncrustify.sh, which uses
another script, list-src, from the same directory (so you need to set
your PATH). The uncrustify version was 0.66.
2018-09-09 22:26:19 +03:00

47 lines
1.5 KiB
C++

/**
* @file bug634.cpp regression case for bug 634 ("SHOW SLAVE STATUS in RW SPLITTER is send to master")
*
* - execute SHOW SLAVE STATUS and check resut
*/
/*
*
* Description Stephane VAROQUI 2014-12-03 10:41:30 UTC
* SHOW SLAVE STATUS in RW SPLITTER is send to master ? That could break some monitoring scripts for generic
* proxy abstraction .
* Comment 1 Vilho Raatikka 2014-12-03 11:10:12 UTC
* COM_SHOW_SLAVE_STAT was unknown to query classifier. Being fixed.
* Comment 2 Vilho Raatikka 2014-12-03 11:26:17 UTC
* COM_SHOW_SLAVE_STAT wasn't classified but it was treated as 'unknown' and thus routed to master.
*/
#include <iostream>
#include "testconnections.h"
int main(int argc, char* argv[])
{
TestConnections* Test = new TestConnections(argc, argv);
Test->set_timeout(5);
char master_ip[100];
Test->maxscales->connect_maxscale(0);
for (int i = 0; i < 100; i++)
{
Test->set_timeout(5);
Test->add_result(find_field(Test->maxscales->conn_rwsplit[0],
(char*) "SHOW SLAVE STATUS",
(char*) "Master_Host",
master_ip),
"Master_host files is not found in the SHOW SLAVE STATUS reply, probably query went to master\n");
Test->add_result(strcmp(master_ip, Test->repl->IP_private[0]), "Master IP is wrong\n");
}
Test->maxscales->close_maxscale_connections(0);
int rval = Test->global_result;
delete Test;
return rval;
}