#include #include #include #include #include #include "mysql.h" #include "tap.h" #include "command_line.h" #include "utils.h" std::vector params = { 100, 1234, 2356, 129645, 345123, 412317 }; int main(int argc, char** argv) { /* * 1. Read and command line parameters */ // Define comman line parser CommandLine cl; // Initialize tests parameters from environment variables // Test parameters are similar to the mysql command line parameters but // additionally they include admin interface username/password, host and port, // working directory for test files. if(cl.getEnv()) return exit_status(); /* * Prepare TAP framework to run tests */ // Initialize TAP with planned number of checks and print the name of the test plan(params.size()); diag("Testing query rules fast routing"); /* * Initialize connections to the servers and prepare data for test. * Also initialize additional libraries. */ // Initialize connection to the proxysql admin interface MYSQL* mysqlAdmin = mysql_init(NULL); if (!mysqlAdmin) return exit_status(); if (!mysql_real_connect(mysqlAdmin, cl.host, cl.admin_username, cl.admin_password, NULL, cl.admin_port, NULL, 0)) return exit_status(); /* * Execute test performing required checks during execution */ char query[1024] = {0}; std::string queryS = ""; for (auto i=0; i