mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
Merge pull request #2617
7dbf76d0
Fix an object lifetime bug in net load tests (moneromooo-monero)
This commit is contained in:
commit
9317c9c57e
10 changed files with 45 additions and 16 deletions
|
@ -193,7 +193,7 @@ namespace
|
|||
{
|
||||
m_thread_count = (std::max)(min_thread_count, boost::thread::hardware_concurrency() / 2);
|
||||
|
||||
m_tcp_server.get_config_object().m_pcommands_handler = &m_commands_handler;
|
||||
m_tcp_server.get_config_object().set_handler(&m_commands_handler);
|
||||
m_tcp_server.get_config_object().m_invoke_timeout = CONNECTION_TIMEOUT;
|
||||
|
||||
ASSERT_TRUE(m_tcp_server.init_server(clt_port, "127.0.0.1"));
|
||||
|
@ -238,9 +238,10 @@ namespace
|
|||
static void TearDownTestCase()
|
||||
{
|
||||
// Stop server
|
||||
test_levin_commands_handler commands_handler;
|
||||
test_tcp_server tcp_server(epee::net_utils::e_connection_type_NET);
|
||||
tcp_server.get_config_object().m_pcommands_handler = &commands_handler;
|
||||
test_levin_commands_handler *commands_handler_ptr = new test_levin_commands_handler();
|
||||
test_levin_commands_handler &commands_handler = *commands_handler_ptr;
|
||||
test_tcp_server tcp_server(epee::net_utils::e_connection_type_RPC);
|
||||
tcp_server.get_config_object().set_handler(commands_handler_ptr, [](epee::levin::levin_commands_handler<test_connection_context> *handler)->void { delete handler; });
|
||||
tcp_server.get_config_object().m_invoke_timeout = CONNECTION_TIMEOUT;
|
||||
|
||||
if (!tcp_server.init_server(clt_port, "127.0.0.1")) return;
|
||||
|
|
|
@ -151,6 +151,11 @@ namespace net_load_tests
|
|||
bool handle_new_connection(const boost::uuids::uuid& connection_id, bool ignore_close_fails = false)
|
||||
{
|
||||
size_t idx = m_next_opened_conn_idx.fetch_add(1, std::memory_order_relaxed);
|
||||
if (idx >= m_connections.size())
|
||||
{
|
||||
LOG_PRINT_L0("ERROR: connections overflow");
|
||||
exit(1);
|
||||
}
|
||||
m_connections[idx] = connection_id;
|
||||
|
||||
size_t prev_connection_count = m_opened_connection_count.fetch_add(1, std::memory_order_relaxed);
|
||||
|
|
|
@ -224,8 +224,8 @@ int main(int argc, char** argv)
|
|||
if (!tcp_server.init_server(srv_port, "127.0.0.1"))
|
||||
return 1;
|
||||
|
||||
srv_levin_commands_handler commands_handler(tcp_server);
|
||||
tcp_server.get_config_object().m_pcommands_handler = &commands_handler;
|
||||
srv_levin_commands_handler *commands_handler = new srv_levin_commands_handler(tcp_server);
|
||||
tcp_server.get_config_object().set_handler(commands_handler, [](epee::levin::levin_commands_handler<test_connection_context> *handler) { delete handler; });
|
||||
tcp_server.get_config_object().m_invoke_timeout = 10000;
|
||||
//tcp_server.get_config_object().m_max_packet_size = max_packet_size;
|
||||
|
||||
|
|
|
@ -187,9 +187,11 @@ namespace
|
|||
|
||||
typedef std::unique_ptr<test_connection> test_connection_ptr;
|
||||
|
||||
async_protocol_handler_test()
|
||||
async_protocol_handler_test():
|
||||
m_pcommands_handler(new test_levin_commands_handler()),
|
||||
m_commands_handler(*m_pcommands_handler)
|
||||
{
|
||||
m_handler_config.m_pcommands_handler = &m_commands_handler;
|
||||
m_handler_config.set_handler(m_pcommands_handler, [](epee::levin::levin_commands_handler<test_levin_connection_context> *handler) { delete handler; });
|
||||
m_handler_config.m_invoke_timeout = invoke_timeout;
|
||||
m_handler_config.m_max_packet_size = max_packet_size;
|
||||
}
|
||||
|
@ -212,7 +214,7 @@ namespace
|
|||
protected:
|
||||
boost::asio::io_service m_io_service;
|
||||
test_levin_protocol_handler_config m_handler_config;
|
||||
test_levin_commands_handler m_commands_handler;
|
||||
test_levin_commands_handler *m_pcommands_handler, &m_commands_handler;
|
||||
};
|
||||
|
||||
class positive_test_connection_to_levin_protocol_handler_calls : public async_protocol_handler_test
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue