/* * 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 PubSub.cpp * @brief * */ #include "PubSub.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 PUBSUB_INTEGRATION_TEST_TAG "[Integration Test - PubSub]" #define SDK_SAMPLE_TOPIC "SdkTest/TestTopic" #define K 1024 #define LARGE_PAYLOAD_SIZE 127 * K #define SDK_PUB_SUB_TEST_MSG_COUNT 5 namespace awsiotsdk { namespace tests { namespace integration { ResponseCode PubSub::RunPublish(int msg_count) { std::cout << std::endl << "******************************Entering Publish with large payload!!**************************" << std::endl; ResponseCode rc; uint16_t packet_id = 0; int itr = 1; util::String p_topic_name_str = SDK_SAMPLE_TOPIC; char c_payload[LARGE_PAYLOAD_SIZE]; for (int i = 0; i < LARGE_PAYLOAD_SIZE; i++) { c_payload[i] = 'a'; } c_payload[LARGE_PAYLOAD_SIZE - 1] = '\n'; do { util::String payload = "Hello from SDK : "; payload.append(c_payload, LARGE_PAYLOAD_SIZE); payload.append(std::to_string(itr)); std::unique_ptr p_topic_name = Utf8String::Create(p_topic_name_str); rc = p_iot_client_->PublishAsync(std::move(p_topic_name), false, false, mqtt::QoS::QOS1, payload, nullptr, packet_id); if (ResponseCode::SUCCESS == rc) { cur_pending_messages_++; total_published_messages_++; std::this_thread::sleep_for(std::chrono::milliseconds(200)); std::cout << "Publish Packet Id : " << packet_id << std::endl; } else if (ResponseCode::ACTION_QUEUE_FULL == rc) { itr--; std::this_thread::sleep_for(std::chrono::milliseconds(1000)); } } while (++itr <= msg_count && (ResponseCode::SUCCESS == rc || ResponseCode::ACTION_QUEUE_FULL == rc)); return rc; } ResponseCode PubSub::RunPublishNoQueueDelay(int msg_count) { std::cout << std::endl << "******************************Entering Publish with no queuing delay unless queue is full!!**************************" << std::endl; ResponseCode rc; uint16_t packet_id = 0; int itr = 1; util::String p_topic_name_str = SDK_SAMPLE_TOPIC; do { util::String payload = "Hello from SDK : "; payload.append(std::to_string(itr)); std::cout << "Publish Payload : " << payload << std::endl; std::unique_ptr p_topic_name = Utf8String::Create(p_topic_name_str); rc = p_iot_client_->PublishAsync(std::move(p_topic_name), false, false, mqtt::QoS::QOS1, payload, nullptr, packet_id); if (ResponseCode::SUCCESS == rc) { cur_pending_messages_++; total_published_messages_++; std::cout << "Publish Packet Id : " << packet_id << std::endl; } else if (ResponseCode::ACTION_QUEUE_FULL == rc) { itr--; std::this_thread::sleep_for(std::chrono::milliseconds(1000)); } } while (++itr <= msg_count && (ResponseCode::SUCCESS == rc || ResponseCode::ACTION_QUEUE_FULL == rc)); return rc; } ResponseCode PubSub::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 PubSub::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(&PubSub::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_->Subscribe(topic_vector, ConfigCommon::mqtt_command_timeout_); std::this_thread::sleep_for(std::chrono::seconds(3)); return rc; } ResponseCode PubSub::Unsubscribe() { uint16_t packet_id = 0; 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_->UnsubscribeAsync(std::move(topic_vector), nullptr, packet_id); std::this_thread::sleep_for(std::chrono::seconds(1)); return rc; } ResponseCode PubSub::InitializeTLS() { 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)); #elif defined USE_MBEDTLS std::shared_ptr 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 (ResponseCode::SUCCESS != rc) { rc = ResponseCode::FAILURE; } else { p_network_connection_ = std::dynamic_pointer_cast(p_network_connection); } #else std::shared_ptr 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); rc = p_network_connection->Initialize(); if (ResponseCode::SUCCESS != rc) { rc = ResponseCode::FAILURE; } else { p_network_connection_ = std::dynamic_pointer_cast(p_network_connection); } #endif return rc; } ResponseCode PubSub::RunTest() { bool ran_all_tests = false; total_published_messages_ = 0; cur_pending_messages_ = 0; ResponseCode rc = InitializeTLS(); do { if (ResponseCode::SUCCESS != rc) { AWS_LOG_ERROR(PUBSUB_INTEGRATION_TEST_TAG, "Failed to initialize TLS layer. %s", ResponseHelper::ToString(rc).c_str()); break; } p_iot_client_ = std::shared_ptr( MqttClient::Create(p_network_connection_, ConfigCommon::mqtt_command_timeout_)); if (nullptr == p_iot_client_) { AWS_LOG_ERROR(PUBSUB_INTEGRATION_TEST_TAG, "Failed to create MQTT Client Instance!!"); rc = ResponseCode::FAILURE; break; } util::String client_id_tagged = ConfigCommon::base_client_id_; client_id_tagged.append("_pub_sub_tester_"); client_id_tagged.append(std::to_string(rand())); std::unique_ptr client_id = Utf8String::Create(client_id_tagged); rc = p_iot_client_->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) { AWS_LOG_ERROR(PUBSUB_INTEGRATION_TEST_TAG, "MQTT Connect failed. %s", ResponseHelper::ToString(rc).c_str()); return rc; } rc = Subscribe(); if (ResponseCode::SUCCESS != rc) { AWS_LOG_ERROR(PUBSUB_INTEGRATION_TEST_TAG, "Subscribe failed. %s", ResponseHelper::ToString(rc).c_str()); p_iot_client_->Disconnect(ConfigCommon::mqtt_command_timeout_); break; } #ifndef USE_MBEDTLS // Test with delay between each action being queued up rc = RunPublish(SDK_PUB_SUB_TEST_MSG_COUNT); if (ResponseCode::SUCCESS != rc) { AWS_LOG_ERROR(PUBSUB_INTEGRATION_TEST_TAG, "Publish runner failed. %s", ResponseHelper::ToString(rc).c_str()); p_iot_client_->Disconnect(ConfigCommon::mqtt_command_timeout_); break; } #endif // Test with no delay between each action being queued up rc = RunPublishNoQueueDelay(SDK_PUB_SUB_TEST_MSG_COUNT); if (ResponseCode::SUCCESS != rc) { AWS_LOG_ERROR(PUBSUB_INTEGRATION_TEST_TAG, "Publish runner failed. %s", ResponseHelper::ToString(rc).c_str()); p_iot_client_->Disconnect(ConfigCommon::mqtt_command_timeout_); break; } //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(PUBSUB_INTEGRATION_TEST_TAG, "Unsubscribe failed. %s", ResponseHelper::ToString(rc).c_str()); p_iot_client_->Disconnect(ConfigCommon::mqtt_command_timeout_); break; } rc = p_iot_client_->Disconnect(ConfigCommon::mqtt_command_timeout_); if (ResponseCode::SUCCESS != rc) { AWS_LOG_ERROR(PUBSUB_INTEGRATION_TEST_TAG, "Disconnect failed. %s", ResponseHelper::ToString(rc).c_str()); break; } ran_all_tests = true; } while (false); std::cout << "Test Successful!!!!" << std::endl; std::cout << "**********************************************************" << std::endl; 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 ((ResponseCode::FAILURE == rc) || !ran_all_tests || (cur_pending_messages_ != 0 || total_published_messages_ == 0)) { std::cout << "Test Failed!!!! See above output for details!! 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; } } } }