#include #include #include #include "test_common/message_exchange.hpp" #include "test_common/packet_util.hpp" #include "test_common/test_service.hpp" #include "test_common/test_stream.hpp" using namespace async_mqtt5; BOOST_AUTO_TEST_SUITE(send_publish/*, *boost::unit_test::disabled()*/) 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, 60, 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_qos0 = encoders::encode_publish( 0, topic, payload, qos_e::at_most_once, retain_e::no, dup_e::no, {} ); 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 publish_qos2 = encoders::encode_publish( 1, topic, payload, qos_e::exactly_once, retain_e::no, dup_e::no, {} ); const std::string puback = encoders::encode_puback(1, uint8_t(0x00), {}); const std::string pubrec = encoders::encode_pubrec(1, uint8_t(0x00), {}); const std::string pubrel = encoders::encode_pubrel(1, uint8_t(0x00), {}); const std::string pubcomp = encoders::encode_pubcomp(1, uint8_t(0x00), {}); }; using test::after; using namespace std::chrono; template void run_test( test::msg_exchange broker_side, asio::any_completion_handler> op_handler ) { constexpr int expected_handlers_called = 1; int handlers_called = 0; asio::io_context ioc; auto executor = ioc.get_executor(); auto& broker = asio::make_service( ioc, executor, std::move(broker_side) ); using client_type = mqtt_client; client_type c(executor, ""); c.brokers("127.0.0.1,127.0.0.1") // to avoid reconnect backoff .async_run(asio::detached); auto shared_data = shared_test_data(); if constexpr (qos == qos_e::at_most_once) c.async_publish( shared_data.topic, shared_data.payload, retain_e::no, publish_props {}, [&handlers_called, &c, h = std::move(op_handler)](error_code ec) mutable { ++handlers_called; std::move(h)(ec); c.cancel(); } ); else c.async_publish( shared_data.topic, shared_data.payload, retain_e::no, publish_props {}, [&handlers_called, &c, h = std::move(op_handler)] (error_code ec, reason_code rc, detail::on_publish_props_type props) mutable { ++handlers_called; std::move(h)(ec, rc, props); c.cancel(); } ); ioc.run_for(2s); BOOST_CHECK_EQUAL(handlers_called, expected_handlers_called); BOOST_CHECK(broker.received_all_expected()); } BOOST_FIXTURE_TEST_CASE(send_publish_qos0, shared_test_data) { test::msg_exchange broker_side; broker_side .expect(connect) .complete_with(success, after(1ms)) .reply_with(connack, after(2ms)) .expect(publish_qos0) .complete_with(success, after(1ms)); run_test( std::move(broker_side), [](error_code ec) { BOOST_TEST(!ec); } ); } BOOST_FIXTURE_TEST_CASE(send_publish_qos1, 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)); run_test( std::move(broker_side), [](error_code ec, reason_code rc, puback_props) { BOOST_TEST(!ec); BOOST_TEST(rc == reason_codes::success); } ); } BOOST_FIXTURE_TEST_CASE(send_publish_qos2, shared_test_data) { test::msg_exchange broker_side; broker_side .expect(connect) .complete_with(success, after(1ms)) .reply_with(connack, after(2ms)) .expect(publish_qos2) .complete_with(success, after(1ms)) .reply_with(pubrec, after(2ms)) .expect(pubrel) .complete_with(success, after(1ms)) .reply_with(pubcomp, after(2ms)); run_test( std::move(broker_side), [](error_code ec, reason_code rc, pubcomp_props) { BOOST_TEST(!ec); BOOST_TEST(rc == reason_codes::success); } ); } BOOST_FIXTURE_TEST_CASE(fail_to_send_publish, 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(fail, after(1ms)) .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)); run_test( std::move(broker_side), [](error_code ec, reason_code rc, puback_props) { BOOST_TEST(!ec); BOOST_TEST(rc == reason_codes::success); } ); } BOOST_FIXTURE_TEST_CASE(fail_to_send_pubrel, shared_test_data) { test::msg_exchange broker_side; broker_side .expect(connect) .complete_with(success, after(1ms)) .reply_with(connack, after(2ms)) .expect(publish_qos2) .complete_with(success, after(1ms)) .reply_with(pubrec, after(2ms)) .expect(pubrel) .complete_with(fail, after(1ms)) .expect(connect) .complete_with(success, after(1ms)) .reply_with(connack, after(2ms)) .expect(pubrel) .complete_with(success, after(1ms)) .reply_with(pubcomp, after(2ms)); run_test( std::move(broker_side), [](error_code ec, reason_code rc, pubcomp_props) { BOOST_TEST(!ec); BOOST_TEST(rc == reason_codes::success); } ); } BOOST_FIXTURE_TEST_CASE(receive_malformed_puback, shared_test_data) { // packets auto publish_qos1_dup = encoders::encode_publish( 1, topic, payload, qos_e::at_least_once, retain_e::no, dup_e::yes, {} ); auto malformed_puback = encoders::encode_puback(1, uint8_t(0x04), {}); auto disconnect = encoders::encode_disconnect( reason_codes::malformed_packet.value(), test::dprops_with_reason_string("Malformed PUBACK: invalid Reason Code") ); 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(malformed_puback, after(2ms)) .expect(disconnect) .complete_with(success, after(1ms)) .expect(connect) .complete_with(success, after(1ms)) .reply_with(connack, after(2ms)) .expect(publish_qos1_dup) .complete_with(success, after(1ms)) .reply_with(puback, after(2ms)); run_test( std::move(broker_side), [](error_code ec, reason_code rc, puback_props) { BOOST_TEST(!ec); BOOST_TEST(rc == reason_codes::success); } ); } BOOST_FIXTURE_TEST_CASE(receive_malformed_pubrec, shared_test_data) { // packets auto publish_qos2_dup = encoders::encode_publish( 1, topic, payload, qos_e::exactly_once, retain_e::no, dup_e::yes, {} ); auto malformed_pubrec = encoders::encode_pubrec(1, uint8_t(0x04), {}); auto disconnect = encoders::encode_disconnect( reason_codes::malformed_packet.value(), test::dprops_with_reason_string("Malformed PUBREC: invalid Reason Code") ); test::msg_exchange broker_side; broker_side .expect(connect) .complete_with(success, after(1ms)) .reply_with(connack, after(2ms)) .expect(publish_qos2) .complete_with(success, after(1ms)) .reply_with(malformed_pubrec, after(2ms)) .expect(disconnect) .complete_with(success, after(1ms)) .expect(connect) .complete_with(success, after(1ms)) .reply_with(connack, after(2ms)) .expect(publish_qos2_dup) .complete_with(success, after(1ms)) .reply_with(pubrec, after(2ms)) .expect(pubrel) .complete_with(success, after(1ms)) .reply_with(pubcomp, after(2ms)); run_test( std::move(broker_side), [](error_code ec, reason_code rc, pubcomp_props) { BOOST_TEST(!ec); BOOST_TEST(rc == reason_codes::success); } ); } BOOST_FIXTURE_TEST_CASE(receive_malformed_pubcomp, shared_test_data) { // packets auto malformed_pubcomp = encoders::encode_pubcomp(1, uint8_t(0x04), {}); auto disconnect = encoders::encode_disconnect( reason_codes::malformed_packet.value(), test::dprops_with_reason_string("Malformed PUBCOMP: invalid Reason Code") ); test::msg_exchange broker_side; broker_side .expect(connect) .complete_with(success, after(1ms)) .reply_with(connack, after(2ms)) .expect(publish_qos2) .complete_with(success, after(1ms)) .reply_with(pubrec, after(2ms)) .expect(pubrel) .complete_with(success, after(1ms)) .reply_with(malformed_pubcomp, after(2ms)) .expect(disconnect) .complete_with(success, after(1ms)) .expect(connect) .complete_with(success, after(1ms)) .reply_with(connack, after(2ms)) .expect(pubrel) .complete_with(success, after(1ms)) .reply_with(pubcomp, after(2ms)); run_test( std::move(broker_side), [](error_code ec, reason_code rc, pubcomp_props) { BOOST_TEST(!ec); BOOST_TEST(rc == reason_codes::success); } ); } BOOST_FIXTURE_TEST_CASE(receive_pubrec_with_rc, shared_test_data) { // packets auto pubrec_with_rc = encoders::encode_pubrec( 1, reason_codes::unspecified_error.value(), {} ); test::msg_exchange broker_side; broker_side .expect(connect) .complete_with(success, after(0ms)) .reply_with(connack, after(0ms)) .expect(publish_qos2) .complete_with(success, after(0ms)) .reply_with(pubrec_with_rc, after(0ms)); run_test( std::move(broker_side), [](error_code ec, reason_code rc, pubcomp_props) { BOOST_TEST(!ec); BOOST_TEST(rc == reason_codes::unspecified_error); } ); } BOOST_FIXTURE_TEST_CASE(cancel_resending_publish, shared_test_data) { constexpr int expected_handlers_called = 1; int handlers_called = 0; test::msg_exchange broker_side; broker_side .expect(connect) .complete_with(success, after(1ms)) .reply_with(connack, after(2ms)); asio::io_context ioc; auto executor = ioc.get_executor(); auto& broker = asio::make_service( ioc, executor, std::move(broker_side) ); using client_type = mqtt_client; client_type c(executor, ""); c.brokers("127.0.0.1,127.0.0.1") // to avoid reconnect backoff .async_run(asio::detached); asio::cancellation_signal cancel_signal; c.async_publish( topic, payload, retain_e::no, publish_props{}, asio::bind_cancellation_slot( cancel_signal.slot(), [&handlers_called, &c](error_code ec, reason_code rc, puback_props) { ++handlers_called; BOOST_TEST(ec = asio::error::operation_aborted); BOOST_TEST(rc == reason_codes::empty); c.cancel(); } ) ); cancel_signal.emit(asio::cancellation_type::total); ioc.run_for(1s); BOOST_TEST(handlers_called == expected_handlers_called); BOOST_TEST(broker.received_all_expected()); } BOOST_FIXTURE_TEST_CASE(send_big_publish, shared_test_data) { // currently broken in test environment constexpr int expected_handlers_called = 1; int handlers_called = 0; // data connack_props cprops; cprops[prop::maximum_packet_size] = 10'000'000; const std::string big_topic = std::string(65534, 't'); const std::string big_payload = std::string(65534, 'p'); publish_props big_props; for (int i = 0; i < 1; i++) big_props[prop::user_property].push_back(std::string(65534, 'u')); // packets auto allow_big_connack = encoders::encode_connack(false, uint8_t(0x00), cprops); auto big_publish = encoders::encode_publish( 1, big_topic, big_payload, qos_e::at_least_once, retain_e::no, dup_e::no, big_props ); auto pingreq = encoders::encode_pingreq(); auto pingresp = encoders::encode_pingresp(); std::vector buffers; for (size_t i = 0; i < big_publish.size(); i += 65536) buffers.push_back(big_publish.substr(i, 65536)); BOOST_TEST_REQUIRE(buffers.size() == 3u); // this single async_send will result in 3 calls to async_write_some in our stream test::msg_exchange broker_side; broker_side .expect(connect) .complete_with(success, after(1ms)) .reply_with(allow_big_connack, after(2ms)) .expect(buffers[0]) .complete_with(success, after(1ms)) .expect(buffers[1]) .complete_with(success, after(1ms)) .expect(buffers[2]) .complete_with(success, after(1ms)) .reply_with(puback, after(2ms)); asio::io_context ioc; auto executor = ioc.get_executor(); auto& broker = asio::make_service( ioc, executor, std::move(broker_side) ); using client_type = mqtt_client; client_type c(executor, ""); c.brokers("127.0.0.1") // to avoid reconnect backoff .async_run(asio::detached); c.async_publish( big_topic, big_payload, retain_e::no, big_props, [&handlers_called, &c](error_code ec, reason_code rc, puback_props) { ++handlers_called; BOOST_TEST(!ec); BOOST_TEST(rc == reason_codes::success); c.cancel(); } ); ioc.run_for(2s); BOOST_TEST(handlers_called == expected_handlers_called); BOOST_TEST(broker.received_all_expected()); } BOOST_AUTO_TEST_SUITE_END();