/* * Copyright 2010-2016 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /** * @file MultipleClients.cpp * @brief * */ #include "MultipleClients.hpp" #include "util/logging/LogMacros.hpp" #include #include #ifdef USE_WEBSOCKETS #include "WebSocketConnection.hpp" #elif defined USE_MBEDTLS #include "MbedTLSConnection.hpp" #else #include "OpenSSLConnection.hpp" #endif #include "ConfigCommon.hpp" #define MULTIPLE_CLIENTS_INTEGRATION_TEST_TAG "[Integration Test - Multiple Clients]" #define SDK_SAMPLE_TOPIC "SdkTest/TestTopic" #define MESSAGE_COUNT 5 namespace awsiotsdk { namespace tests { namespace integration { ResponseCode MultipleClients::RunPublish(int msg_count) { std::cout << std::endl << "******************************Entering Publish!**************************" << std::endl; ResponseCode rc; uint16_t packet_id = 0; int itr = 1; util::String p_topic_name_str = SDK_SAMPLE_TOPIC; std::unique_ptr p_topic_name = nullptr; do { util::String payload2 = "[Client 2] Hello from SDK : "; payload2.append(std::to_string(itr)); std::cout << "Publish Payload : " << payload2 << std::endl; p_topic_name = Utf8String::Create(p_topic_name_str); rc = p_iot_client_2_->PublishAsync(std::move(p_topic_name), false, false, mqtt::QoS::QOS1, payload2, nullptr, packet_id); if (ResponseCode::SUCCESS == rc) { cur_pending_messages_++; total_published_messages_++; std::this_thread::sleep_for(std::chrono::milliseconds(200)); std::cout << "[Client 2] Publish Packet Id : " << packet_id << std::endl; itr++; } else if (ResponseCode::ACTION_QUEUE_FULL == rc) { std::this_thread::sleep_for(std::chrono::milliseconds(1000)); } util::String payload3 = "[Client 3] Hello from SDK : "; payload3.append(std::to_string(itr)); std::cout << "Publish Payload : " << payload3 << std::endl; p_topic_name = Utf8String::Create(p_topic_name_str); rc = p_iot_client_3_->PublishAsync(std::move(p_topic_name), false, false, mqtt::QoS::QOS1, payload3, nullptr, packet_id); if (ResponseCode::SUCCESS == rc) { cur_pending_messages_++; total_published_messages_++; std::this_thread::sleep_for(std::chrono::milliseconds(200)); std::cout << "[Client 3] Publish Packet Id : " << packet_id << std::endl; itr++; } else if (ResponseCode::ACTION_QUEUE_FULL == rc) { std::this_thread::sleep_for(std::chrono::milliseconds(1000)); } } while (itr <= 2 * msg_count && (ResponseCode::SUCCESS == rc || ResponseCode::ACTION_QUEUE_FULL == rc)); return rc; } ResponseCode MultipleClients::SubscribeCallback(util::String topic_name, util::String payload, std::shared_ptr p_app_handler_data) { std::cout << std::endl << "************" << std::endl; std::cout << "Received message on topic : " << topic_name << std::endl; std::cout << "Payload Length : " << payload.length() << std::endl; if (payload.length() < 50) { std::cout << "Payload : " << payload << std::endl; } std::cout << std::endl << "************" << std::endl; cur_pending_messages_--; return ResponseCode::SUCCESS; } ResponseCode MultipleClients::Subscribe() { util::String p_topic_name_str = SDK_SAMPLE_TOPIC; std::unique_ptr p_topic_name = Utf8String::Create(p_topic_name_str); mqtt::Subscription::ApplicationCallbackHandlerPtr p_sub_handler = std::bind(&MultipleClients::SubscribeCallback, this, std::placeholders::_1, std::placeholders::_2, std::placeholders::_3); std::shared_ptr p_subscription = mqtt::Subscription::Create(std::move(p_topic_name), mqtt::QoS::QOS0, p_sub_handler, nullptr); util::Vector> topic_vector; topic_vector.push_back(p_subscription); ResponseCode rc = p_iot_client_1_->Subscribe(topic_vector, ConfigCommon::mqtt_command_timeout_); std::this_thread::sleep_for(std::chrono::seconds(3)); return rc; } ResponseCode MultipleClients::Unsubscribe() { util::String p_topic_name_str = SDK_SAMPLE_TOPIC; std::unique_ptr p_topic_name = Utf8String::Create(p_topic_name_str); util::Vector> topic_vector; topic_vector.push_back(std::move(p_topic_name)); ResponseCode rc = p_iot_client_1_->Unsubscribe(std::move(topic_vector), ConfigCommon::mqtt_command_timeout_); std::this_thread::sleep_for(std::chrono::seconds(1)); return rc; } ResponseCode MultipleClients::InitializeTLS(std::shared_ptr &p_network_connection) { ResponseCode rc = ResponseCode::SUCCESS; #ifdef USE_WEBSOCKETS p_network_connection = std::shared_ptr( new network::WebSocketConnection(ConfigCommon::endpoint_, ConfigCommon::endpoint_https_port_, ConfigCommon::root_ca_path_, ConfigCommon::aws_region_, ConfigCommon::aws_access_key_id_, ConfigCommon::aws_secret_access_key_, ConfigCommon::aws_session_token_, ConfigCommon::tls_handshake_timeout_, ConfigCommon::tls_read_timeout_, ConfigCommon::tls_write_timeout_, true)); if (nullptr == p_network_connection) { AWS_LOG_ERROR(MULTIPLE_CLIENTS_INTEGRATION_TEST_TAG, "Failed to initialize Network Connection. %s", ResponseHelper::ToString(rc).c_str()); rc = ResponseCode::FAILURE; } #elif defined USE_MBEDTLS p_network_connection = std::make_shared(ConfigCommon::endpoint_, ConfigCommon::endpoint_mqtt_port_, ConfigCommon::root_ca_path_, ConfigCommon::client_cert_path_, ConfigCommon::client_key_path_, ConfigCommon::tls_handshake_timeout_, ConfigCommon::tls_read_timeout_, ConfigCommon::tls_write_timeout_, true); if (nullptr == p_network_connection) { AWS_LOG_ERROR(MULTIPLE_CLIENTS_INTEGRATION_TEST_TAG, "Failed to initialize Network Connection. %s", ResponseHelper::ToString(rc).c_str()); rc = ResponseCode::FAILURE; } #else std::shared_ptr p_openssl_connection = std::make_shared(ConfigCommon::endpoint_, ConfigCommon::endpoint_mqtt_port_, ConfigCommon::root_ca_path_, ConfigCommon::client_cert_path_, ConfigCommon::client_key_path_, ConfigCommon::tls_handshake_timeout_, ConfigCommon::tls_read_timeout_, ConfigCommon::tls_write_timeout_, true); rc = p_openssl_connection->Initialize(); if (ResponseCode::SUCCESS != rc) { AWS_LOG_ERROR(MULTIPLE_CLIENTS_INTEGRATION_TEST_TAG, "Failed to initialize Network Connection. %s", ResponseHelper::ToString(rc).c_str()); rc = ResponseCode::FAILURE; } else { p_network_connection = std::dynamic_pointer_cast(p_openssl_connection); } #endif return rc; } ResponseCode MultipleClients::RunTest() { total_published_messages_ = 0; cur_pending_messages_ = 0; // First client ResponseCode rc = InitializeTLS(p_network_connection_1_); if (ResponseCode::SUCCESS != rc) { return rc; } p_iot_client_1_ = MqttClient::Create(p_network_connection_1_, ConfigCommon::mqtt_command_timeout_); util::String client_id_1_tagged = ConfigCommon::base_client_id_; client_id_1_tagged.append("_multiple_clients_tester_"); client_id_1_tagged.append(std::to_string(rand())); std::unique_ptr client_id = Utf8String::Create(client_id_1_tagged); rc = p_iot_client_1_->Connect(ConfigCommon::mqtt_command_timeout_, ConfigCommon::is_clean_session_, mqtt::Version::MQTT_3_1_1, ConfigCommon::keep_alive_timeout_secs_, std::move(client_id), nullptr, nullptr, nullptr); if (ResponseCode::MQTT_CONNACK_CONNECTION_ACCEPTED != rc) { return rc; } // Second client rc = InitializeTLS(p_network_connection_2_); if (ResponseCode::SUCCESS != rc) { return rc; } p_iot_client_2_ = MqttClient::Create(p_network_connection_2_, ConfigCommon::mqtt_command_timeout_); util::String client_id_2_tagged = ConfigCommon::base_client_id_; client_id_2_tagged.append("_multiple_clients_tester_"); client_id_2_tagged.append(std::to_string(rand())); std::unique_ptr client_id_2 = Utf8String::Create(client_id_2_tagged); rc = p_iot_client_2_->Connect(ConfigCommon::mqtt_command_timeout_, ConfigCommon::is_clean_session_, mqtt::Version::MQTT_3_1_1, ConfigCommon::keep_alive_timeout_secs_, std::move(client_id_2), nullptr, nullptr, nullptr); if (ResponseCode::MQTT_CONNACK_CONNECTION_ACCEPTED != rc) { return rc; } // Third Client rc = InitializeTLS(p_network_connection_3_); if (ResponseCode::SUCCESS != rc) { return rc; } p_iot_client_3_ = MqttClient::Create(p_network_connection_3_, ConfigCommon::mqtt_command_timeout_); util::String client_id_3_tagged = ConfigCommon::base_client_id_; client_id_3_tagged.append("_multiple_clients_tester_"); client_id_3_tagged.append(std::to_string(rand())); std::unique_ptr client_id_3 = Utf8String::Create(client_id_3_tagged); rc = p_iot_client_3_->Connect(ConfigCommon::mqtt_command_timeout_, ConfigCommon::is_clean_session_, mqtt::Version::MQTT_3_1_1, ConfigCommon::keep_alive_timeout_secs_, std::move(client_id_3), nullptr, nullptr, nullptr); if (ResponseCode::MQTT_CONNACK_CONNECTION_ACCEPTED != rc) { return rc; } rc = Subscribe(); if (ResponseCode::SUCCESS != rc) { AWS_LOG_ERROR(MULTIPLE_CLIENTS_INTEGRATION_TEST_TAG, "Subscribe failed. %s", ResponseHelper::ToString(rc).c_str()); } else { // Test with delay between each action being queued up rc = RunPublish(MESSAGE_COUNT); if (ResponseCode::SUCCESS != rc) { std::cout << std::endl << "Publish runner failed with return code : " << static_cast(rc) << std::endl; AWS_LOG_ERROR(MULTIPLE_CLIENTS_INTEGRATION_TEST_TAG, "Publish runner failed. %s", ResponseHelper::ToString(rc).c_str()); p_iot_client_1_->Disconnect(ConfigCommon::mqtt_command_timeout_); p_iot_client_2_->Disconnect(ConfigCommon::mqtt_command_timeout_); p_iot_client_3_->Disconnect(ConfigCommon::mqtt_command_timeout_); } std::cout << "RC: " << static_cast(rc) << std::endl; if (ResponseCode::SUCCESS == rc) { //Sleep for 10 seconds and wait for all messages to be received int cur_sleep_sec_count = 0; do { std::this_thread::sleep_for(std::chrono::milliseconds(100)); if (0 == cur_pending_messages_) { break; } cur_sleep_sec_count++; std::cout << "Waiting!!! " << cur_sleep_sec_count << std::endl; } while (cur_sleep_sec_count < 100); } do { rc = Unsubscribe(); if (ResponseCode::ACTION_QUEUE_FULL == rc) { std::cout << "Message queue full on Unsub, waiting!!!" << std::endl; std::this_thread::sleep_for(std::chrono::milliseconds(1000)); } } while (ResponseCode::ACTION_QUEUE_FULL == rc); if (ResponseCode::SUCCESS != rc) { AWS_LOG_ERROR(MULTIPLE_CLIENTS_INTEGRATION_TEST_TAG, "Unsubscribe failed. %s", ResponseHelper::ToString(rc).c_str()); } } rc = p_iot_client_1_->Disconnect(ConfigCommon::mqtt_command_timeout_); if (ResponseCode::SUCCESS != rc) { AWS_LOG_ERROR(MULTIPLE_CLIENTS_INTEGRATION_TEST_TAG, "Disconnect failed. %s", ResponseHelper::ToString(rc).c_str()); } rc = p_iot_client_2_->Disconnect(ConfigCommon::mqtt_command_timeout_); if (ResponseCode::SUCCESS != rc) { AWS_LOG_ERROR(MULTIPLE_CLIENTS_INTEGRATION_TEST_TAG, "Disconnect failed. %s", ResponseHelper::ToString(rc).c_str()); } rc = p_iot_client_3_->Disconnect(ConfigCommon::mqtt_command_timeout_); if (ResponseCode::SUCCESS != rc) { AWS_LOG_ERROR(MULTIPLE_CLIENTS_INTEGRATION_TEST_TAG, "Disconnect failed. %s", ResponseHelper::ToString(rc).c_str()); } std::cout << std::endl << "*************************Results**************************" << std::endl; std::cout << "Pending published messages : " << cur_pending_messages_ << std::endl; std::cout << "Total published messages : " << total_published_messages_ << std::endl; if (cur_pending_messages_ > 0) { std::cout << "Test Failed!!!! Please be aware that this test may fail if an Autoreconnect event " << "occurred in between this run" << std::endl; std::cout << "**********************************************************" << std::endl; return ResponseCode::FAILURE; } std::cout << "Test Successful!!!!" << std::endl; std::cout << "**********************************************************" << std::endl; return ResponseCode::SUCCESS; } } } }