Files
MaxScale/system-test/fwf_com_ping.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
989 B
C++

/**
* MXS-1111: Dbfwfilter COM_PING test
*
* Check that COM_PING is allowed with `action=allow`
*/
#include "testconnections.h"
#include "fw_copy_rules.h"
const char* rules = "rule test1 deny regex '.*'\n"
"users %@% match any rules test1\n";
int main(int argc, char** argv)
{
/** Create the rule file */
FILE* file = fopen("rules.txt", "w");
fwrite(rules, 1, strlen(rules), file);
fclose(file);
TestConnections::skip_maxscale_start(true);
TestConnections test(argc, argv);
copy_rules(&test, (char*) "rules.txt", (char*) ".");
test.maxscales->restart_maxscale(0);
test.maxscales->connect_maxscale(0);
test.tprintf("Pinging MaxScale, expecting success");
test.add_result(mysql_ping(test.maxscales->conn_rwsplit[0]),
"Ping should not fail: %s",
mysql_error(test.maxscales->conn_rwsplit[0]));
test.maxscales->close_maxscale_connections(0);
return test.global_result;
}