See script directory for method. The script to run in the top level MaxScale directory is called maxscale-uncrustify.sh, which uses another script, list-src, from the same directory (so you need to set your PATH). The uncrustify version was 0.66.
		
			
				
	
	
		
			100 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			100 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
/**
 | 
						|
 * @file mxs922_server.cpp MXS-922: Server creation test
 | 
						|
 *
 | 
						|
 */
 | 
						|
 | 
						|
#include "testconnections.h"
 | 
						|
#include "config_operations.h"
 | 
						|
 | 
						|
int check_server_id(TestConnections* test, int idx)
 | 
						|
{
 | 
						|
    test->maxscales->close_maxscale_connections(0);
 | 
						|
    test->maxscales->connect_maxscale(0);
 | 
						|
 | 
						|
    int a = test->repl->get_server_id(idx);
 | 
						|
    int b = -1;
 | 
						|
    char str[1024];
 | 
						|
 | 
						|
    if (find_field(test->maxscales->conn_rwsplit[0], "SELECT @@server_id", "@@server_id", str) == 0)
 | 
						|
    {
 | 
						|
        b = atoi(str);
 | 
						|
    }
 | 
						|
 | 
						|
    return a - b;
 | 
						|
}
 | 
						|
 | 
						|
int main(int argc, char* argv[])
 | 
						|
{
 | 
						|
    TestConnections* test = new TestConnections(argc, argv);
 | 
						|
    Config config(test);
 | 
						|
 | 
						|
    config.create_all_listeners();
 | 
						|
    config.create_monitor("mysql-monitor", "mysqlmon", 500);
 | 
						|
 | 
						|
    test->tprintf("Testing server creation and destruction");
 | 
						|
 | 
						|
    config.create_server(1);
 | 
						|
    config.create_server(1);
 | 
						|
    config.check_server_count(1);
 | 
						|
    config.destroy_server(1);
 | 
						|
    config.destroy_server(1);
 | 
						|
    config.check_server_count(0);
 | 
						|
    test->check_maxscale_processes(0, 1);
 | 
						|
 | 
						|
    test->tprintf("Testing adding of server to service");
 | 
						|
 | 
						|
    config.create_server(1);
 | 
						|
    config.add_server(1);
 | 
						|
    config.check_server_count(1);
 | 
						|
    sleep(1);
 | 
						|
    test->check_maxscale_alive(0);
 | 
						|
    config.remove_server(1);
 | 
						|
    config.destroy_server(1);
 | 
						|
    config.check_server_count(0);
 | 
						|
 | 
						|
    test->tprintf("Testing altering of server");
 | 
						|
 | 
						|
    config.create_server(1);
 | 
						|
    config.add_server(1);
 | 
						|
    config.alter_server(1, "address", test->repl->IP[1]);
 | 
						|
    sleep(1);
 | 
						|
    test->check_maxscale_alive(0);
 | 
						|
    config.alter_server(1, "address", "This-is-not-the-address-you-are-looking-for");
 | 
						|
    config.alter_server(1, "port", 12345);
 | 
						|
    test->maxscales->connect_maxscale(0);
 | 
						|
    test->add_result(execute_query_silent(test->maxscales->conn_rwsplit[0], "SELECT 1") == 0,
 | 
						|
                     "Query with bad address should fail");
 | 
						|
 | 
						|
    config.remove_server(1);
 | 
						|
    config.destroy_server(1);
 | 
						|
 | 
						|
 | 
						|
    test->tprintf("Testing server weights");
 | 
						|
 | 
						|
    config.reset();
 | 
						|
    sleep(1);
 | 
						|
    test->repl->connect();
 | 
						|
 | 
						|
    config.alter_server(1, "weight", 1);
 | 
						|
    config.alter_server(2, "weight", 1);
 | 
						|
    config.alter_server(3, "weight", 1000);
 | 
						|
    test->add_result(check_server_id(test, 3), "The server_id values don't match");
 | 
						|
 | 
						|
    config.alter_server(1, "weight", 1);
 | 
						|
    config.alter_server(2, "weight", 1000);
 | 
						|
    config.alter_server(3, "weight", 1);
 | 
						|
    test->add_result(check_server_id(test, 2), "The server_id values don't match");
 | 
						|
 | 
						|
    config.alter_server(1, "weight", 1000);
 | 
						|
    config.alter_server(2, "weight", 1);
 | 
						|
    config.alter_server(3, "weight", 1);
 | 
						|
    test->add_result(check_server_id(test, 1), "The server_id values don't match");
 | 
						|
 | 
						|
    config.reset();
 | 
						|
    sleep(1);
 | 
						|
    test->check_maxscale_alive(0);
 | 
						|
    int rval = test->global_result;
 | 
						|
    delete test;
 | 
						|
    return rval;
 | 
						|
}
 |