
The latter are more explicit and easier to understand at the call site. Also removed the redundant crash checks via the log files.
115 lines
3.8 KiB
C++
115 lines
3.8 KiB
C++
/**
|
|
* @file sql_queries.cpp Execute long sql queries as well as "use" command (also used for bug648 "use
|
|
* database is sent forever with tee filter to a readwrite split service")
|
|
* - also used for 'sql_queries_pers1' and 'sql_queries_pers10' tests (with 'persistpoolmax=1' and
|
|
*'persistpoolmax=10' for all servers)
|
|
* - for bug648:
|
|
* @verbatim
|
|
* [RW Split Router]
|
|
* type=service
|
|
* router= readwritesplit
|
|
* servers=server1, server2, server3,server4
|
|
* user=skysql
|
|
* passwd=skysql
|
|
* filters=TEE
|
|
*
|
|
* [TEE]
|
|
* type=filter
|
|
* module=tee
|
|
* service=RW Split Router
|
|
* @endverbatim
|
|
*
|
|
* - create t1 table and INSERT a lot of date into it
|
|
* @verbatim
|
|
* INSERT INTO t1 (x1, fl) VALUES (0, 0), (1, 0), ...(15, 0);
|
|
* INSERT INTO t1 (x1, fl) VALUES (0, 1), (1, 1), ...(255, 1);
|
|
* INSERT INTO t1 (x1, fl) VALUES (0, 2), (1, 2), ...(4095, 2);
|
|
* INSERT INTO t1 (x1, fl) VALUES (0, 3), (1, 3), ...(65535, 3);
|
|
* @endverbatim
|
|
* - check date in t1 using all Maxscale services and direct connections to backend nodes
|
|
* - using RWSplit connections:
|
|
* + DROP TABLE t1
|
|
* + DROP DATABASE IF EXISTS test1;
|
|
* + CREATE DATABASE test1;
|
|
* - execute USE test1 for all Maxscale service and backend nodes
|
|
* - create t1 table and INSERT a lot of date into it
|
|
* - check that 't1' exists in 'test1' DB and does not exist in 'test'
|
|
* - executes queries with syntax error against all Maxscale services
|
|
* + "DROP DATABASE I EXISTS test1;"
|
|
* + "CREATE TABLE "
|
|
* - check if Maxscale is alive
|
|
*/
|
|
|
|
#include <iostream>
|
|
#include "testconnections.h"
|
|
#include "sql_t1.h"
|
|
|
|
using namespace std;
|
|
|
|
|
|
int main(int argc, char* argv[])
|
|
{
|
|
TestConnections* Test = new TestConnections(argc, argv);
|
|
int i, j;
|
|
int N = 4;
|
|
int iterations = 4;
|
|
|
|
if (Test->smoke)
|
|
{
|
|
iterations = 1;
|
|
N = 2;
|
|
}
|
|
|
|
Test->tprintf("Starting test\n");
|
|
for (i = 0; i < iterations; i++)
|
|
{
|
|
|
|
Test->tprintf("Connection to backend\n");
|
|
Test->repl->connect();
|
|
Test->tprintf("Connection to Maxscale\n");
|
|
if (Test->maxscales->connect_maxscale(0) != 0)
|
|
{
|
|
Test->add_result(1, "Error connecting to MaxScale");
|
|
break;
|
|
}
|
|
|
|
Test->tprintf("Filling t1 with data\n");
|
|
Test->add_result(Test->insert_select(0, N), "insert-select check failed\n");
|
|
|
|
Test->tprintf("Creating database test1\n");
|
|
Test->try_query(Test->maxscales->conn_rwsplit[0], "DROP TABLE t1");
|
|
Test->try_query(Test->maxscales->conn_rwsplit[0], "DROP DATABASE IF EXISTS test1;");
|
|
Test->try_query(Test->maxscales->conn_rwsplit[0], "CREATE DATABASE test1;");
|
|
Test->repl->sync_slaves();
|
|
|
|
Test->tprintf("Testing with database 'test1'\n");
|
|
Test->add_result(Test->use_db(0, (char*) "test1"), "use_db failed\n");
|
|
Test->add_result(Test->insert_select(0, N), "insert-select check failed\n");
|
|
|
|
Test->add_result(Test->check_t1_table(0, false, (char*) "test"), "t1 is found in 'test'\n");
|
|
Test->add_result(Test->check_t1_table(0, true, (char*) "test1"), "t1 is not found in 'test1'\n");
|
|
|
|
Test->tprintf("Trying queries with syntax errors\n");
|
|
for (j = 0; j < 3; j++)
|
|
{
|
|
execute_query(Test->maxscales->routers[0][j], "DROP DATABASE I EXISTS test1;");
|
|
execute_query(Test->maxscales->routers[0][j], "CREATE TABLE ");
|
|
}
|
|
|
|
// close connections
|
|
Test->maxscales->close_maxscale_connections(0);
|
|
Test->repl->close_connections();
|
|
}
|
|
|
|
Test->stop_timeout();
|
|
Test->log_excludes(0, "Length (0) is 0");
|
|
Test->log_excludes(0, "Unable to parse query");
|
|
Test->log_excludes(0, "query string allocation failed");
|
|
|
|
Test->check_maxscale_alive(0);
|
|
|
|
int rval = Test->global_result;
|
|
delete Test;
|
|
return rval;
|
|
}
|