Merge branch '2.3' into 2.4
This commit is contained in:
35
system-test/fwf_duplicate_rules.cpp
Normal file
35
system-test/fwf_duplicate_rules.cpp
Normal file
@ -0,0 +1,35 @@
|
||||
/**
|
||||
* Dbfwfilter duplicate rule test
|
||||
*
|
||||
* Check if duplicate rules are detected.
|
||||
*/
|
||||
|
||||
#include <maxtest/testconnections.hh>
|
||||
#include <maxtest/fw_copy_rules.hh>
|
||||
|
||||
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);
|
||||
|
||||
copy_rules(&test, (char*) "rules.txt", (char*) ".");
|
||||
|
||||
int rc = 0;
|
||||
|
||||
if (test.maxscales->restart_maxscale(0) == 0)
|
||||
{
|
||||
test.tprintf("Restarting MaxScale succeeded when it should've failed!");
|
||||
rc = 1;
|
||||
}
|
||||
|
||||
return rc;
|
||||
}
|
Reference in New Issue
Block a user