MaxScale/maxscale-system-test/fwf_duplicate_rules.cpp
Timofey Turenko 8c6ca38a8a add tests
2017-05-23 21:09:30 +03:00

37 lines
983 B
C++

/**
* Dbfwfilter duplicate rule test
*
* Check if duplicate rules are detected.
*/
#include "testconnections.h"
const char *rules = "rule test1 deny no_where_clause\n"
"rule test1 deny columns a b c\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);
test.ssh_maxscale(true, "mkdir -p /home/vagrant/rules/; chown -R vagrant:vagrant /home/vagrant/rules/");
test.copy_to_maxscale((char*)"rules.txt", (char*)"~/rules/rules.txt");
test.ssh_maxscale(true, "chmod a+r /home/vagrant/rules/rules.txt;");
int rc = 0;
if (test.restart_maxscale() == 0)
{
test.tprintf("Restarting MaxScale succeeded when it should've failed!");
rc = 1;
}
return rc;
}