Files
MaxScale/maxscale-system-test/bug673.cpp
Markus Mäkelä 6b0c6ffa64 Update bug673 with new maxadmin behavior
Both the old and new style object names must work with MaxAdmin.
2017-12-21 10:48:07 +02:00

29 lines
1.0 KiB
C++

/**
* @file bug673.cpp regression case for bug673 ("MaxScale crashes if "Users table data" is empty and "show dbusers" is executed in maxadmin")
*
* - Configure wrong IP for all backends
* - Execute maxadmin command show dbusers "RW Split Router"
* - Check MaxScale is alive by executing maxadmin again
* - Check that only new style object names in maxadmin commands are accepted
*/
#include "testconnections.h"
#include "maxadmin_operations.h"
int main(int argc, char *argv[])
{
TestConnections test(argc, argv);
test.set_timeout(60);
for (int i = 0; i < 2; i++)
{
char result[1024];
test.add_result(test.maxscales->get_maxadmin_param(0, "show dbusers \"RW Split Router\"", "User names:", result),
"Old style objects in maxadmin commands should succeed");
test.add_result(test.maxscales->get_maxadmin_param(0, "show dbusers RW-Split-Router", "User names:", result),
"New style objects in maxadmin commands should succeed");
}
return test.global_result;
}