You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
proxysql/test/tap/tests/reg_test_3591-restapi_num_f...

95 lines
2.5 KiB

/**
* @file reg_test_3591-restapi_num_fds-t.cpp
* @brief This is a regression test for issue #3591. The test checks that
* ProxySQL metrics endpoint can be enabled and it's functional when
* '2047' connections are oppened against it.
*
* @details The tests creates a higher number of connections than the default
* maximum number of file descriptors determined by `FD_SETSIZE` (1024).
* After doing this, it tries to enable the 'RESTAPI' and checks that the
* endpoint is functional.
*/
#include <cstring>
#include <vector>
#include <string>
#include <stdio.h>
#include <unistd.h>
#include <mysql.h>
#include "tap.h"
#include "command_line.h"
#include "utils.h"
#include "json.hpp"
#include <sys/time.h>
#include <sys/resource.h>
using nlohmann::json;
using std::string;
const int NUM_CONNECTIONS = 2047;
int main(int argc, char** argv) {
CommandLine cl;
if (cl.getEnv()) {
diag("Failed to get the required environmental variables.");
return -1;
}
struct rlimit limits { 0, 0 };
getrlimit(RLIMIT_NOFILE, &limits);
diag("Old process limits: { %ld, %ld }", limits.rlim_cur, limits.rlim_max);
limits.rlim_cur = NUM_CONNECTIONS * 2;
setrlimit(RLIMIT_NOFILE, &limits);
diag("New process limits: { %ld, %ld }", limits.rlim_cur, limits.rlim_max);
MYSQL* admin = mysql_init(NULL);
// Initialize connections
if (!admin) {
fprintf(stderr, "File %s, line %d, Error: %s\n", __FILE__, __LINE__, mysql_error(admin));
return -1;
}
if (!mysql_real_connect(admin, cl.host, cl.admin_username, cl.admin_password, NULL, cl.admin_port, NULL, 0)) {
fprintf(stderr, "File %s, line %d, Error: %s\n", __FILE__, __LINE__, mysql_error(admin));
return -1;
}
// Enable 'RESTAPI'
MYSQL_QUERY(admin, "SET admin-restapi_enabled='true'");
MYSQL_QUERY(admin, "SET admin-restapi_port=6070");
MYSQL_QUERY(admin, "LOAD ADMIN VARIABLES TO RUNTIME");
std::vector<MYSQL*> mysql_connections {};
for (int i = 0; i < NUM_CONNECTIONS; i++) {
MYSQL* proxy = mysql_init(NULL);
if (
!mysql_real_connect(
proxy, cl.host, cl.username, cl.password, NULL, cl.port, NULL, 0
)
) {
fprintf(
stderr, "File %s, line %d, Error: %s\n", __FILE__, __LINE__,
mysql_error(proxy)
);
return EXIT_FAILURE;
}
mysql_connections.push_back(proxy);
}
int endpoint_timeout = wait_get_enpoint_ready("http://localhost:6070/metrics/", 1000, 100);
ok(endpoint_timeout == 0, "The endpoint should be available instead of timing out.");
for (int i = 0; i < NUM_CONNECTIONS; i++) {
mysql_close(mysql_connections[i]);
}
mysql_close(admin);
return exit_status();
}