Files
MaxScale/maxscale-system-test/maxtest/include/maxtest/test_binlog_fnc.h
Esa Korhonen 96ba2da40c MXS-2900 Move testcore library files to a dedicated directory
The library is now named "maxtest". The related include-files are, for
now, usable without designating the full include path. This may be changed
later, but would require modifying every test.
2020-03-02 11:17:30 +02:00

28 lines
781 B
C++

#pragma once
#include <iostream>
#include "testconnections.h"
#include "maxadmin_operations.h"
#include "sql_t1.h"
/**
* @brief check_sha1 Check that checksum of binlog files on Maxscale machines and all backends are equal
* @param Test TestConnections object
* @return 0 if binlog files checksums are identical
*/
int check_sha1(TestConnections* Test);
/**
* @brief start_transaction Template for test transaction (used by test_binlog()
* @param Test TestConnections object
* @return 0 in case of success
*/
int start_transaction(TestConnections* Test);
/**
* @brief test_binlog Execute a number of tests for check if binlog router is ok
* (see test description in setup_binlog.cpp)
* @param Test TestConnections object
*/
void test_binlog(TestConnections* Test);