Merge branch '2.3' into 2.4

This commit is contained in:
Esa Korhonen
2020-07-28 16:00:02 +03:00
943 changed files with 12 additions and 11 deletions

View File

@ -0,0 +1,56 @@
/**
* Bad configuration test
*/
#include <iostream>
#include <unistd.h>
#include <maxtest/testconnections.hh>
using std::string;
const char* bad_configs[] =
{
"bug359",
"bug495",
"bug526",
"bug479",
"bug493",
"bad_ssl",
"mxs710_bad_socket",
"mxs711_two_ports",
"mxs720_line_with_no_equal",
"mxs720_wierd_line",
"mxs799",
"mxs1731_empty_param",
// passwd is still supported
// "old_passwd",
"no_use_of_reserved_names",
"no_spaces_in_section_names",
NULL
};
int main(int argc, char** argv)
{
TestConnections* test = new TestConnections(argc, argv);
int rval = 0;
test->maxscales->stop_maxscale(0);
for (int i = 0; bad_configs[i]; i++)
{
string config_file_path = (string)test_dir + "/cnf/maxscale.cnf.template." + bad_configs[i];
printf("Testing %s...\n", config_file_path.c_str());
if (test->test_bad_config(0, config_file_path))
{
printf("FAILED\n");
rval++;
}
else
{
printf("SUCCESS\n");
}
}
return rval;
}