mirror of
https://github.com/boostorg/mqtt5.git
synced 2025-08-01 05:24:50 +02:00
Add op cancellation tests
Summary: related to T12015 Reviewers: ivica Reviewed By: ivica Subscribers: miljen, iljazovic Differential Revision: https://repo.mireo.local/D27459
This commit is contained in:
@@ -126,7 +126,7 @@ public:
|
|||||||
|
|
||||||
_svc_ptr->async_wait_reply(
|
_svc_ptr->async_wait_reply(
|
||||||
control_code_e::unsuback, packet_id,
|
control_code_e::unsuback, packet_id,
|
||||||
asio::prepend(std::move(*this), on_unsuback{}, std::move(packet))
|
asio::prepend(std::move(*this), on_unsuback {}, std::move(packet))
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -1,6 +1,8 @@
|
|||||||
#include <boost/test/unit_test.hpp>
|
#include <boost/test/unit_test.hpp>
|
||||||
|
|
||||||
#include <boost/asio/as_tuple.hpp>
|
#include <boost/asio/as_tuple.hpp>
|
||||||
|
#include <boost/asio/bind_cancellation_slot.hpp>
|
||||||
|
#include <boost/asio/cancellation_signal.hpp>
|
||||||
#include <boost/asio/co_spawn.hpp>
|
#include <boost/asio/co_spawn.hpp>
|
||||||
#include <boost/asio/detached.hpp>
|
#include <boost/asio/detached.hpp>
|
||||||
#include <boost/asio/io_context.hpp>
|
#include <boost/asio/io_context.hpp>
|
||||||
@@ -9,10 +11,22 @@
|
|||||||
|
|
||||||
#include <async_mqtt5.hpp>
|
#include <async_mqtt5.hpp>
|
||||||
|
|
||||||
|
#include "test_common/message_exchange.hpp"
|
||||||
|
#include "test_common/test_service.hpp"
|
||||||
|
#include "test_common/test_stream.hpp"
|
||||||
|
|
||||||
using namespace async_mqtt5;
|
using namespace async_mqtt5;
|
||||||
|
|
||||||
namespace async_mqtt5::test {
|
namespace async_mqtt5::test {
|
||||||
|
|
||||||
|
enum operation_type {
|
||||||
|
async_run = 1,
|
||||||
|
publish,
|
||||||
|
receive,
|
||||||
|
subscribe,
|
||||||
|
unsubscribe
|
||||||
|
};
|
||||||
|
|
||||||
enum cancel_type {
|
enum cancel_type {
|
||||||
ioc_stop = 1,
|
ioc_stop = 1,
|
||||||
client_cancel,
|
client_cancel,
|
||||||
@@ -21,178 +35,227 @@ enum cancel_type {
|
|||||||
|
|
||||||
} // end namespace async_mqtt5::test
|
} // end namespace async_mqtt5::test
|
||||||
|
|
||||||
template <test::cancel_type type>
|
using stream_type = asio::ip::tcp::socket;
|
||||||
void cancel_async_receive() {
|
using client_type = mqtt_client<stream_type>;
|
||||||
using namespace test;
|
|
||||||
|
|
||||||
constexpr int num_handlers = 3;
|
template <
|
||||||
constexpr int expected_handlers_called = type == ioc_stop ? 0 : num_handlers;
|
test::operation_type op_type,
|
||||||
int handlers_called = 0;
|
std::enable_if_t<op_type == test::operation_type::async_run, bool> = true
|
||||||
|
>
|
||||||
asio::io_context ioc;
|
void setup_cancel_op_test_case(
|
||||||
|
client_type& c, asio::cancellation_signal& signal, int& handlers_called
|
||||||
using stream_type = asio::ip::tcp::socket;
|
) {
|
||||||
using client_type = mqtt_client<stream_type>;
|
c.async_run(
|
||||||
client_type c(ioc, "");
|
asio::bind_cancellation_slot(
|
||||||
|
signal.slot(),
|
||||||
c.brokers("127.0.0.1", 1883)
|
[&handlers_called](error_code ec) {
|
||||||
.credentials("test-cli", "", "")
|
handlers_called++;
|
||||||
.async_run(asio::detached);
|
BOOST_CHECK_EQUAL(ec, asio::error::operation_aborted);
|
||||||
|
}
|
||||||
auto handler = [&handlers_called](
|
)
|
||||||
error_code ec, std::string, std::string, publish_props
|
);
|
||||||
) {
|
|
||||||
BOOST_CHECK_EQUAL(ec, asio::error::operation_aborted);
|
|
||||||
handlers_called++;
|
|
||||||
};
|
|
||||||
|
|
||||||
std::vector<asio::cancellation_signal> signals(3);
|
|
||||||
|
|
||||||
for (auto i = 0; i < num_handlers; ++i)
|
|
||||||
c.async_receive(asio::bind_cancellation_slot(
|
|
||||||
signals[i].slot(),
|
|
||||||
std::move(handler)
|
|
||||||
));
|
|
||||||
|
|
||||||
asio::steady_timer timer(c.get_executor());
|
|
||||||
timer.expires_after(std::chrono::milliseconds(10));
|
|
||||||
timer.async_wait([&](auto) {
|
|
||||||
if constexpr (type == ioc_stop)
|
|
||||||
ioc.stop();
|
|
||||||
else if constexpr (type == client_cancel)
|
|
||||||
c.cancel();
|
|
||||||
else if constexpr (type == signal_emit)
|
|
||||||
std::for_each(
|
|
||||||
signals.begin(), signals.end(),
|
|
||||||
[](auto& signal) {
|
|
||||||
signal.emit(asio::cancellation_type_t::terminal);
|
|
||||||
}
|
|
||||||
);
|
|
||||||
});
|
|
||||||
|
|
||||||
ioc.run_for(std::chrono::milliseconds(20));
|
|
||||||
BOOST_CHECK_EQUAL(handlers_called, expected_handlers_called);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
template <test::cancel_type type>
|
template <
|
||||||
void cancel_async_publish() {
|
test::operation_type op_type,
|
||||||
|
std::enable_if_t<op_type == test::operation_type::publish, bool> = true
|
||||||
|
>
|
||||||
|
void setup_cancel_op_test_case(
|
||||||
|
client_type& c, asio::cancellation_signal& signal, int& handlers_called
|
||||||
|
) {
|
||||||
|
c.async_run(asio::detached);
|
||||||
|
c.async_publish<qos_e::at_most_once>("topic", "payload", retain_e::no, publish_props {},
|
||||||
|
asio::bind_cancellation_slot(
|
||||||
|
signal.slot(),
|
||||||
|
[&handlers_called](error_code ec) {
|
||||||
|
handlers_called++;
|
||||||
|
BOOST_CHECK_EQUAL(ec, asio::error::operation_aborted);
|
||||||
|
}
|
||||||
|
)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <
|
||||||
|
test::operation_type op_type,
|
||||||
|
std::enable_if_t<op_type == test::operation_type::receive, bool> = true
|
||||||
|
>
|
||||||
|
void setup_cancel_op_test_case(
|
||||||
|
client_type& c, asio::cancellation_signal& signal, int& handlers_called
|
||||||
|
) {
|
||||||
|
c.async_run(asio::detached);
|
||||||
|
c.async_receive(
|
||||||
|
asio::bind_cancellation_slot(
|
||||||
|
signal.slot(),
|
||||||
|
[&handlers_called](
|
||||||
|
error_code ec, std::string t, std::string p, publish_props
|
||||||
|
) {
|
||||||
|
handlers_called++;
|
||||||
|
BOOST_CHECK_EQUAL(ec, asio::error::operation_aborted);
|
||||||
|
BOOST_CHECK_EQUAL(t, "");
|
||||||
|
BOOST_CHECK_EQUAL(p, "");
|
||||||
|
}
|
||||||
|
)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <
|
||||||
|
test::operation_type op_type,
|
||||||
|
std::enable_if_t<op_type == test::operation_type::subscribe, bool > = true
|
||||||
|
>
|
||||||
|
void setup_cancel_op_test_case(
|
||||||
|
client_type& c, asio::cancellation_signal& signal, int& handlers_called
|
||||||
|
) {
|
||||||
|
c.async_run(asio::detached);
|
||||||
|
c.async_unsubscribe(
|
||||||
|
"topic" ,unsubscribe_props {},
|
||||||
|
asio::bind_cancellation_slot(
|
||||||
|
signal.slot(),
|
||||||
|
[&handlers_called](
|
||||||
|
error_code ec, std::vector<reason_code> rcs, unsuback_props
|
||||||
|
) {
|
||||||
|
handlers_called++;
|
||||||
|
BOOST_CHECK_EQUAL(ec, asio::error::operation_aborted);
|
||||||
|
// TODO: be consistent with complete_post
|
||||||
|
//BOOST_ASSERT(rcs.size() == 1);
|
||||||
|
//BOOST_CHECK(rcs[0] == reason_codes::empty);
|
||||||
|
}
|
||||||
|
)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <
|
||||||
|
test::operation_type op_type,
|
||||||
|
std::enable_if_t<op_type == test::operation_type::unsubscribe, bool> = true
|
||||||
|
>
|
||||||
|
void setup_cancel_op_test_case(
|
||||||
|
client_type& c, asio::cancellation_signal& signal, int& handlers_called
|
||||||
|
) {
|
||||||
|
c.async_run(asio::detached);
|
||||||
|
c.async_subscribe(
|
||||||
|
subscribe_topic { "topic", subscribe_options {} }, subscribe_props {},
|
||||||
|
asio::bind_cancellation_slot(
|
||||||
|
signal.slot(),
|
||||||
|
[&handlers_called](
|
||||||
|
error_code ec, std::vector<reason_code> rcs, suback_props
|
||||||
|
) {
|
||||||
|
handlers_called++;
|
||||||
|
BOOST_CHECK_EQUAL(ec, asio::error::operation_aborted);
|
||||||
|
// TODO: be consistent with complete_post
|
||||||
|
//BOOST_ASSERT(rcs.size() == 1);
|
||||||
|
//BOOST_CHECK(rcs[0] == reason_codes::empty);
|
||||||
|
}
|
||||||
|
)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
template<test::cancel_type c_type, test::operation_type op_type>
|
||||||
|
void run_cancel_op_test() {
|
||||||
using namespace test;
|
using namespace test;
|
||||||
|
|
||||||
constexpr int expected_handlers_called = type == ioc_stop ? 0 : 3;
|
constexpr int expected_handlers_called = c_type == ioc_stop ? 0 : 1;
|
||||||
int handlers_called = 0;
|
int handlers_called = 0;
|
||||||
|
|
||||||
asio::io_context ioc;
|
asio::io_context ioc;
|
||||||
|
|
||||||
using stream_type = asio::ip::tcp::socket;
|
|
||||||
using client_type = mqtt_client<stream_type>;
|
|
||||||
client_type c(ioc, "");
|
client_type c(ioc, "");
|
||||||
|
c.brokers("127.0.0.1");
|
||||||
|
|
||||||
c.brokers("127.0.0.1", 1883)
|
asio::cancellation_signal signal;
|
||||||
.credentials("test-cli", "", "")
|
setup_cancel_op_test_case<op_type>(c, signal, handlers_called);
|
||||||
.async_run(asio::detached);
|
|
||||||
|
|
||||||
std::vector<asio::cancellation_signal> signals(3);
|
|
||||||
|
|
||||||
c.async_publish<qos_e::at_most_once>(
|
|
||||||
"topic", "payload", retain_e::yes, {},
|
|
||||||
asio::bind_cancellation_slot(
|
|
||||||
signals[0].slot(),
|
|
||||||
[&handlers_called](error_code ec) {
|
|
||||||
BOOST_CHECK_EQUAL(ec, asio::error::operation_aborted);
|
|
||||||
handlers_called++;
|
|
||||||
}
|
|
||||||
)
|
|
||||||
);
|
|
||||||
|
|
||||||
c.async_publish<qos_e::at_least_once>(
|
|
||||||
"topic", "payload", retain_e::yes, {},
|
|
||||||
asio::bind_cancellation_slot(
|
|
||||||
signals[1].slot(),
|
|
||||||
[&handlers_called](error_code ec, reason_code rc, puback_props) {
|
|
||||||
BOOST_CHECK_EQUAL(ec, asio::error::operation_aborted);
|
|
||||||
BOOST_CHECK_EQUAL(rc, reason_codes::empty);
|
|
||||||
handlers_called++;
|
|
||||||
}
|
|
||||||
)
|
|
||||||
);
|
|
||||||
|
|
||||||
|
|
||||||
c.async_publish<qos_e::exactly_once>(
|
|
||||||
"topic", "payload", retain_e::yes, {},
|
|
||||||
asio::bind_cancellation_slot(
|
|
||||||
signals[2].slot(),
|
|
||||||
[&handlers_called](error_code ec, reason_code rc, pubcomp_props) {
|
|
||||||
BOOST_CHECK_EQUAL(ec, asio::error::operation_aborted);
|
|
||||||
BOOST_CHECK_EQUAL(rc, reason_codes::empty);
|
|
||||||
handlers_called++;
|
|
||||||
}
|
|
||||||
)
|
|
||||||
);
|
|
||||||
|
|
||||||
asio::steady_timer timer(c.get_executor());
|
asio::steady_timer timer(c.get_executor());
|
||||||
timer.expires_after(std::chrono::milliseconds(10));
|
timer.expires_after(std::chrono::milliseconds(10));
|
||||||
timer.async_wait([&](auto) {
|
timer.async_wait([&](auto) {
|
||||||
if constexpr (type == ioc_stop)
|
if constexpr (c_type == ioc_stop)
|
||||||
ioc.stop();
|
ioc.stop();
|
||||||
else if constexpr (type == client_cancel)
|
else if constexpr (c_type == client_cancel)
|
||||||
c.cancel();
|
c.cancel();
|
||||||
else if constexpr (type == signal_emit)
|
else if constexpr (c_type == signal_emit)
|
||||||
std::for_each(
|
signal.emit(asio::cancellation_type_t::terminal);
|
||||||
signals.begin(), signals.end(),
|
|
||||||
[](auto& signal) {
|
|
||||||
signal.emit(asio::cancellation_type_t::terminal);
|
|
||||||
}
|
|
||||||
);
|
|
||||||
});
|
});
|
||||||
|
|
||||||
ioc.run();
|
|
||||||
|
ioc.run_for(20ms);
|
||||||
BOOST_CHECK_EQUAL(handlers_called, expected_handlers_called);
|
BOOST_CHECK_EQUAL(handlers_called, expected_handlers_called);
|
||||||
}
|
}
|
||||||
|
|
||||||
BOOST_AUTO_TEST_SUITE(cancellation/*, *boost::unit_test::disabled()*/)
|
BOOST_AUTO_TEST_SUITE(cancellation/*, *boost::unit_test::disabled()*/)
|
||||||
|
|
||||||
|
// hangs
|
||||||
BOOST_AUTO_TEST_CASE(ioc_stop_async_receive) {
|
BOOST_AUTO_TEST_CASE(ioc_stop_async_run, *boost::unit_test::disabled()) {
|
||||||
cancel_async_receive<test::cancel_type::ioc_stop>();
|
run_cancel_op_test<test::ioc_stop, test::async_run>();
|
||||||
}
|
}
|
||||||
|
|
||||||
BOOST_AUTO_TEST_CASE(client_cancel_async_receive) {
|
BOOST_AUTO_TEST_CASE(client_cancel_async_run) {
|
||||||
cancel_async_receive<test::cancel_type::client_cancel>();
|
run_cancel_op_test<test::client_cancel, test::async_run>();
|
||||||
}
|
|
||||||
|
|
||||||
BOOST_AUTO_TEST_CASE(signal_emit_async_receive) {
|
|
||||||
cancel_async_receive<test::cancel_type::signal_emit>();
|
|
||||||
}
|
|
||||||
|
|
||||||
// passes on debian, hangs on windows in io_context destructor
|
|
||||||
BOOST_AUTO_TEST_CASE(ioc_stop_async_publish, *boost::unit_test::disabled() ) {
|
|
||||||
cancel_async_publish<test::cancel_type::ioc_stop>();
|
|
||||||
}
|
|
||||||
|
|
||||||
BOOST_AUTO_TEST_CASE(client_cancel_async_publish) {
|
|
||||||
cancel_async_publish<test::cancel_type::client_cancel>();
|
|
||||||
}
|
|
||||||
|
|
||||||
BOOST_AUTO_TEST_CASE(signal_emit_async_publish) {
|
|
||||||
cancel_async_publish<test::cancel_type::signal_emit>();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
BOOST_AUTO_TEST_CASE(signal_emit_async_run) {
|
BOOST_AUTO_TEST_CASE(signal_emit_async_run) {
|
||||||
|
run_cancel_op_test<test::signal_emit, test::async_run>();
|
||||||
|
}
|
||||||
|
|
||||||
|
// hangs
|
||||||
|
BOOST_AUTO_TEST_CASE(ioc_stop_async_publish, *boost::unit_test::disabled() ) {
|
||||||
|
run_cancel_op_test<test::ioc_stop, test::publish>();
|
||||||
|
}
|
||||||
|
|
||||||
|
BOOST_AUTO_TEST_CASE(client_cancel_async_publish) {
|
||||||
|
run_cancel_op_test<test::client_cancel, test::publish>();
|
||||||
|
}
|
||||||
|
|
||||||
|
BOOST_AUTO_TEST_CASE(signal_emit_async_publish) {
|
||||||
|
run_cancel_op_test<test::signal_emit, test::publish>();
|
||||||
|
}
|
||||||
|
|
||||||
|
BOOST_AUTO_TEST_CASE(ioc_stop_async_receive) {
|
||||||
|
run_cancel_op_test<test::ioc_stop, test::receive>();
|
||||||
|
}
|
||||||
|
|
||||||
|
BOOST_AUTO_TEST_CASE(client_cancel_async_receive) {
|
||||||
|
run_cancel_op_test<test::client_cancel, test::receive>();
|
||||||
|
}
|
||||||
|
|
||||||
|
BOOST_AUTO_TEST_CASE(signal_emit_async_receive) {
|
||||||
|
run_cancel_op_test<test::signal_emit, test::receive>();
|
||||||
|
}
|
||||||
|
|
||||||
|
// hangs
|
||||||
|
BOOST_AUTO_TEST_CASE(ioc_stop_async_subscribe, *boost::unit_test::disabled()) {
|
||||||
|
run_cancel_op_test<test::ioc_stop, test::subscribe>();
|
||||||
|
}
|
||||||
|
|
||||||
|
BOOST_AUTO_TEST_CASE(client_cancel_async_subscribe) {
|
||||||
|
run_cancel_op_test<test::client_cancel, test::subscribe>();
|
||||||
|
}
|
||||||
|
|
||||||
|
BOOST_AUTO_TEST_CASE(signal_emit_async_subscribe) {
|
||||||
|
run_cancel_op_test<test::signal_emit, test::subscribe>();
|
||||||
|
}
|
||||||
|
|
||||||
|
// hangs
|
||||||
|
BOOST_AUTO_TEST_CASE(ioc_stop_async_unsubscribe, *boost::unit_test::disabled()) {
|
||||||
|
run_cancel_op_test<test::ioc_stop, test::unsubscribe>();
|
||||||
|
}
|
||||||
|
|
||||||
|
BOOST_AUTO_TEST_CASE(client_cancel_async_unsubscribe) {
|
||||||
|
run_cancel_op_test<test::client_cancel, test::unsubscribe>();
|
||||||
|
}
|
||||||
|
|
||||||
|
BOOST_AUTO_TEST_CASE(signal_emit_async_unsubscribe) {
|
||||||
|
run_cancel_op_test<test::signal_emit, test::unsubscribe>();
|
||||||
|
}
|
||||||
|
|
||||||
|
BOOST_AUTO_TEST_CASE(signal_emit_async_run_cancels_client) {
|
||||||
using namespace test;
|
using namespace test;
|
||||||
|
|
||||||
constexpr int expected_handlers_called = 2;
|
constexpr int expected_handlers_called = 2;
|
||||||
int handlers_called = 0;
|
int handlers_called = 0;
|
||||||
|
|
||||||
asio::io_context ioc;
|
asio::io_context ioc;
|
||||||
|
|
||||||
using stream_type = asio::ip::tcp::socket;
|
|
||||||
using client_type = mqtt_client<stream_type>;
|
|
||||||
client_type c(ioc, "");
|
client_type c(ioc, "");
|
||||||
|
|
||||||
asio::cancellation_signal signal;
|
asio::cancellation_signal signal;
|
||||||
|
|
||||||
c.brokers("127.0.0.1", 1883)
|
c.brokers("127.0.0.1", 1883)
|
||||||
.credentials("test-cli", "", "")
|
|
||||||
.async_run(
|
.async_run(
|
||||||
asio::bind_cancellation_slot(
|
asio::bind_cancellation_slot(
|
||||||
signal.slot(),
|
signal.slot(),
|
||||||
@@ -221,40 +284,83 @@ BOOST_AUTO_TEST_CASE(signal_emit_async_run) {
|
|||||||
BOOST_CHECK_EQUAL(handlers_called, expected_handlers_called);
|
BOOST_CHECK_EQUAL(handlers_called, expected_handlers_called);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
struct shared_test_data {
|
||||||
|
error_code success {};
|
||||||
|
error_code fail = asio::error::not_connected;
|
||||||
|
|
||||||
|
const std::string connect = encoders::encode_connect(
|
||||||
|
"", std::nullopt, std::nullopt, 10, false, {}, std::nullopt
|
||||||
|
);
|
||||||
|
const std::string connack = encoders::encode_connack(
|
||||||
|
false, reason_codes::success.value(), {}
|
||||||
|
);
|
||||||
|
|
||||||
|
const std::string topic = "topic";
|
||||||
|
const std::string payload = "payload";
|
||||||
|
|
||||||
|
const std::string publish_qos1 = encoders::encode_publish(
|
||||||
|
1, topic, payload, qos_e::at_least_once, retain_e::no, dup_e::no, {}
|
||||||
|
);
|
||||||
|
|
||||||
|
const std::string puback = encoders::encode_puback(1, uint8_t(0x00), {});
|
||||||
|
};
|
||||||
|
|
||||||
|
using test::after;
|
||||||
|
using namespace std::chrono;
|
||||||
|
|
||||||
#ifdef BOOST_ASIO_HAS_CO_AWAIT
|
#ifdef BOOST_ASIO_HAS_CO_AWAIT
|
||||||
|
|
||||||
constexpr auto use_nothrow_awaitable = asio::as_tuple(asio::use_awaitable);
|
constexpr auto use_nothrow_awaitable = asio::as_tuple(asio::use_awaitable);
|
||||||
|
|
||||||
BOOST_AUTO_TEST_CASE(rerunning_the_client) {
|
BOOST_FIXTURE_TEST_CASE(rerunning_the_client, shared_test_data) {
|
||||||
|
test::msg_exchange broker_side;
|
||||||
|
broker_side
|
||||||
|
.expect(connect)
|
||||||
|
.complete_with(success, after(1ms))
|
||||||
|
.reply_with(connack, after(2ms))
|
||||||
|
.expect(publish_qos1)
|
||||||
|
.complete_with(success, after(1ms))
|
||||||
|
.reply_with(puback, after(2ms))
|
||||||
|
.expect(connect)
|
||||||
|
.complete_with(success, after(1ms))
|
||||||
|
.reply_with(connack, after(2ms))
|
||||||
|
.expect(publish_qos1)
|
||||||
|
.complete_with(success, after(1ms))
|
||||||
|
.reply_with(puback, after(2ms));
|
||||||
|
|
||||||
asio::io_context ioc;
|
asio::io_context ioc;
|
||||||
|
auto executor = ioc.get_executor();
|
||||||
|
auto& broker = asio::make_service<test::test_broker>(
|
||||||
|
ioc, executor, std::move(broker_side)
|
||||||
|
);
|
||||||
|
|
||||||
co_spawn(ioc,
|
co_spawn(ioc,
|
||||||
[&ioc]() -> asio::awaitable<void> {
|
[&]() -> asio::awaitable<void> {
|
||||||
using stream_type = asio::ip::tcp::socket;
|
mqtt_client<test::test_stream> c(ioc, "");
|
||||||
using client_type = mqtt_client<stream_type>;
|
c.brokers("127.0.0.1,127.0.0.1", 1883) // to avoid reconnect backoff
|
||||||
client_type c(ioc, "");
|
|
||||||
|
|
||||||
c.brokers("broker.hivemq.com,broker.hivemq.com", 1883) // to avoid reconnect backoff
|
|
||||||
.async_run(asio::detached);
|
.async_run(asio::detached);
|
||||||
|
|
||||||
auto [ec] = co_await c.async_publish<qos_e::at_most_once>(
|
auto [ec, rc, props] = co_await c.async_publish<qos_e::at_least_once>(
|
||||||
"t", "p", retain_e::yes, publish_props {}, use_nothrow_awaitable
|
topic, payload, retain_e::no, publish_props {}, use_nothrow_awaitable
|
||||||
);
|
);
|
||||||
BOOST_CHECK(!ec);
|
BOOST_CHECK(!ec);
|
||||||
|
BOOST_CHECK(!rc);
|
||||||
|
|
||||||
c.cancel();
|
c.cancel();
|
||||||
|
|
||||||
auto [cec] = co_await c.async_publish<qos_e::at_most_once>(
|
auto [cec, crc, cprops] = co_await c.async_publish<qos_e::at_least_once>(
|
||||||
"ct", "cp", retain_e::yes, publish_props {}, use_nothrow_awaitable
|
topic, payload, retain_e::no, publish_props {}, use_nothrow_awaitable
|
||||||
);
|
);
|
||||||
BOOST_CHECK(cec == asio::error::operation_aborted);
|
BOOST_CHECK_EQUAL(cec, asio::error::operation_aborted);
|
||||||
|
BOOST_CHECK_EQUAL(crc, reason_codes::empty);
|
||||||
|
|
||||||
c.async_run(asio::detached);
|
c.async_run(asio::detached);
|
||||||
|
|
||||||
auto [rec] = co_await c.async_publish<qos_e::at_most_once>(
|
auto [rec, rrc, rprops] = co_await c.async_publish<qos_e::at_least_once>(
|
||||||
"ct", "cp", retain_e::yes, publish_props {}, use_nothrow_awaitable
|
topic, payload, retain_e::no, publish_props {}, use_nothrow_awaitable
|
||||||
);
|
);
|
||||||
BOOST_CHECK(!rec);
|
BOOST_CHECK(!rec);
|
||||||
|
BOOST_CHECK(!rrc);
|
||||||
|
|
||||||
co_await c.async_disconnect(use_nothrow_awaitable);
|
co_await c.async_disconnect(use_nothrow_awaitable);
|
||||||
co_return;
|
co_return;
|
||||||
@@ -263,6 +369,7 @@ BOOST_AUTO_TEST_CASE(rerunning_the_client) {
|
|||||||
);
|
);
|
||||||
|
|
||||||
ioc.run();
|
ioc.run();
|
||||||
|
BOOST_CHECK(broker.received_all_expected());
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@@ -46,7 +46,7 @@ struct shared_test_data {
|
|||||||
};
|
};
|
||||||
|
|
||||||
using test::after;
|
using test::after;
|
||||||
using std::chrono_literals::operator ""ms;
|
using namespace std::chrono;
|
||||||
|
|
||||||
void run_test(test::msg_exchange broker_side) {
|
void run_test(test::msg_exchange broker_side) {
|
||||||
constexpr int expected_handlers_called = 1;
|
constexpr int expected_handlers_called = 1;
|
||||||
@@ -125,7 +125,6 @@ BOOST_FIXTURE_TEST_CASE(test_receive_publish_qos2, shared_test_data) {
|
|||||||
run_test(std::move(broker_side));
|
run_test(std::move(broker_side));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
BOOST_FIXTURE_TEST_CASE(fail_to_send_pubrec, shared_test_data) {
|
BOOST_FIXTURE_TEST_CASE(fail_to_send_pubrec, shared_test_data) {
|
||||||
auto publish_dup = encoders::encode_publish(
|
auto publish_dup = encoders::encode_publish(
|
||||||
1, topic, payload, qos_e::exactly_once, retain_e::no, dup_e::yes, {}
|
1, topic, payload, qos_e::exactly_once, retain_e::no, dup_e::yes, {}
|
||||||
|
@@ -264,42 +264,4 @@ BOOST_AUTO_TEST_CASE(test_topic_alias_maximum) {
|
|||||||
BOOST_CHECK_EQUAL(handlers_called, expected_handlers_called);
|
BOOST_CHECK_EQUAL(handlers_called, expected_handlers_called);
|
||||||
}
|
}
|
||||||
|
|
||||||
BOOST_AUTO_TEST_CASE(test_publish_cancellation) {
|
|
||||||
constexpr int expected_handlers_called = 1;
|
|
||||||
int handlers_called = 0;
|
|
||||||
|
|
||||||
asio::io_context ioc;
|
|
||||||
using client_service_type = test::test_service<asio::ip::tcp::socket>;
|
|
||||||
auto svc_ptr = std::make_shared<client_service_type>(ioc.get_executor());
|
|
||||||
svc_ptr->run([](error_code){});
|
|
||||||
asio::cancellation_signal cancel_signal;
|
|
||||||
|
|
||||||
auto h = [&handlers_called](error_code ec, reason_code rc, puback_props) {
|
|
||||||
++handlers_called;
|
|
||||||
BOOST_CHECK(ec == asio::error::operation_aborted);
|
|
||||||
BOOST_CHECK_EQUAL(rc, reason_codes::empty);
|
|
||||||
};
|
|
||||||
|
|
||||||
auto handler = asio::bind_cancellation_slot(cancel_signal.slot(), std::move(h));
|
|
||||||
|
|
||||||
asio::steady_timer timer(ioc.get_executor());
|
|
||||||
timer.expires_after(std::chrono::milliseconds(60));
|
|
||||||
timer.async_wait(
|
|
||||||
[&cancel_signal](error_code) {
|
|
||||||
cancel_signal.emit(asio::cancellation_type::terminal);
|
|
||||||
}
|
|
||||||
);
|
|
||||||
|
|
||||||
detail::publish_send_op<
|
|
||||||
client_service_type, decltype(handler), qos_e::at_least_once
|
|
||||||
> { svc_ptr, std::move(handler) }
|
|
||||||
.perform(
|
|
||||||
"test", "payload", retain_e::no, {}
|
|
||||||
);
|
|
||||||
|
|
||||||
ioc.run_for(std::chrono::milliseconds(500));
|
|
||||||
BOOST_CHECK_EQUAL(handlers_called, expected_handlers_called);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
BOOST_AUTO_TEST_SUITE_END()
|
BOOST_AUTO_TEST_SUITE_END()
|
||||||
|
Reference in New Issue
Block a user