/* Copyright (c) 2015, 2019, Oracle and/or its affiliates. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License, version 2.0, as published by the Free Software Foundation. This program is also distributed with certain software (including but not limited to OpenSSL) that is licensed under separate terms, as designated in a particular file or component or in included license documentation. The authors of MySQL hereby grant you an additional permission to link the program and your derivative works with the separately licensed software that they have included with MySQL. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ #ifndef ROUTER_TESTS_TEST_HELPERS_INCLUDED #define ROUTER_TESTS_TEST_HELPERS_INCLUDED #include #include #include #include #include #define SKIP_GIT_TESTS(COND) \ if (COND) { \ std::cout << "[ SKIPPED ] Tests using Git repository skipped" \ << std::endl; \ return; \ } #define HARNESS_TEST_THROW_LIKE_(statement, expected_exception, \ expected_message, fail) \ GTEST_AMBIGUOUS_ELSE_BLOCKER_ \ if (::testing::internal::AlwaysTrue()) { \ try { \ GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement); \ fail() << "Expected exception of type " #expected_exception \ << " but got none\n"; \ } catch (const expected_exception &e) { \ if (std::string(e.what()).find(expected_message) == std::string::npos) { \ fail() << "Expected exception of type " #expected_exception \ " with message: " \ << expected_message << "\nbut got message: " << e.what() \ << "\n"; \ } \ } catch (...) { \ std::exception_ptr eptr = std::current_exception(); \ try { \ std::rethrow_exception(eptr); \ } catch (const std::exception &e) { \ fail() << "Expected exception of type " #expected_message "\nbut got " \ << typeid(e).name() << ": " << e.what() << "\n"; \ } catch (...) { \ fail() << "Expected exception of type " #expected_message "\nbut got " \ << "non-std-exception\n"; \ } \ } \ } else \ do { \ } while (0) #define ASSERT_THROW_LIKE(statement, expected_exception, expected_message) \ HARNESS_TEST_THROW_LIKE_(statement, expected_exception, expected_message, \ FAIL) #define EXPECT_THROW_LIKE(statement, expected_exception, expected_message) \ HARNESS_TEST_THROW_LIKE_(statement, expected_exception, expected_message, \ ADD_FAILURE) #include "mysql/harness/filesystem.h" constexpr auto kDefaultPortReadyTimeout = std::chrono::milliseconds(5000); /** @brief Returns the CMake source root folder * * @return mysql_harness::Path */ mysql_harness::Path get_cmake_source_dir(); /** @brief Gets environment variable as path * * Gets environment envvar and returns it as Path. When the environment * variable is not set, the alternative is tried. * * Throws runtime_error when the folder is not available. * * @param envvar Name of the environment variable * @param alternative Alternative Path when environment variable is not * available * @return mysql_harness::Path */ mysql_harness::Path get_envvar_path(const std::string &envvar, mysql_harness::Path alternative); /** @brief Returns the current working directory * * Uses `getcwd()` and returns the current working directory as as std::string. * * Throws std::runtime_error on errors. * * @return std::string */ const std::string get_cwd(); /** @brief Changes the current working directory * * Uses `chdir()` to change the current working directory. When succesfully * change to the folder, the old working directory is returned. * * Throws std::runtime_error on errors. * * @return std::string */ const std::string change_cwd(std::string &dir); /** @brief Reads a specified number of bytes from a non-blocking socket * * reads a non-blocking socket until one of three things happen: * 1. specified number of bytes have been read - returns this number * 2. timeout expires - throws, describing the error * 3. read() fails - throws, describing the error * * Returns number of bytes read (should be the number of bytes requested, * can be less on EOF). Throws std::runtime_error on I/O error or timeout; * the reason can be extracted from the thrown object with what() method. * * @param sockfd file decriptor * @param buffer to store read bytes * @param n_bytes of bytes to read * @param timeout_in_ms expressed in milliseconds * * @return number of bytes read */ size_t read_bytes_with_timeout(int sockfd, void *buffer, size_t n_bytes, uint64_t timeout_in_ms); #ifdef _WIN32 std::string get_last_error(int err_code); #endif /** @brief Checks if the given regex pattern can be found in the input string * * * @param s input string to check * @param pattern regex pattern to look for * * @return true if the given pattern could be found, false otherwise */ bool pattern_found(const std::string &s, const std::string &pattern); /** @brief Initializes Windows sockets (no-op on other OSes) * * Exits program with error upon failure. */ void init_windows_sockets(); /** @brief Probes if the selected TCP port is accepting the connections. * * @param port TCP port number to check * @param timeout maximum timeout to wait for the port * @param hostname name/IP address of the network host to check * * @returns true if the selected port accepts connections, false otherwise */ bool wait_for_port_ready( uint16_t port, std::chrono::milliseconds timeout = kDefaultPortReadyTimeout, const std::string &hostname = "127.0.0.1"); /** @brief Initializes keyring and adds keyring-related config items to * [DEFAULT] section * * @param default_section [DEFAULT] section * @param keyring_dir directory inside of which keyring files will be created * @param user Router user * @param password Router user password */ void init_keyring(std::map &default_section, const std::string &keyring_dir, const std::string &user = "mysql_router1_user", const std::string &password = "root"); /** @brief returns true if the selected file contains a string * that is true for a given predicate * * @param file_path path to the file we want to serach * @param predicate predicate to test the file * @param sleep_time max time to wait for the entry in the file */ bool find_in_file( const std::string &file_path, const std::function &predicate, std::chrono::milliseconds sleep_time = std::chrono::milliseconds(5000)); /** @brief returns the content of selected file as a string * * @param file_name name of the file * @param file_path path to the file */ std::string get_file_output(const std::string &file_name, const std::string &file_path); /** @brief returns the content of selected file as a string * * @param file_name full path and name of the file */ std::string get_file_output(const std::string &file_name); // need to return void to be able to use ASSERT_ macros void connect_client_and_query_port(unsigned router_port, std::string &out_port, bool should_fail = false); #endif // ROUTER_TESTS_TEST_HELPERS_INCLUDED