Skip to content

Commit

Permalink
Fix MQTT_Status_strerror to return correct error on NeedMoreBytes err…
Browse files Browse the repository at this point in the history
…or (#255)

* Fix timeout calculation to account for overflow

* Add unit tests to check for overflow

* Update timeout value in UT

* Fix formatting

* Update core_mqtt_utest.c

* Add one more unit test to check for one corner case

* Make unit-test more robust

* Fix MQTT_Status_strerror to return correct error on NeedMoreBytes error.
  • Loading branch information
AniruddhaKanhere committed Jun 26, 2023
1 parent 0df6f49 commit c5a1efe
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
4 changes: 4 additions & 0 deletions source/core_mqtt.c
Original file line number Diff line number Diff line change
Expand Up @@ -3373,6 +3373,10 @@ const char * MQTT_Status_strerror( MQTTStatus_t status )
str = "MQTTKeepAliveTimeout";
break;

case MQTTNeedMoreBytes:
str = "MQTTNeedMoreBytes";
break;

default:
str = "Invalid MQTT Status code";
break;
Expand Down
6 changes: 5 additions & 1 deletion test/unit-test/core_mqtt_utest.c
Original file line number Diff line number Diff line change
Expand Up @@ -5842,7 +5842,11 @@ void test_MQTT_Status_strerror( void )
str = MQTT_Status_strerror( status );
TEST_ASSERT_EQUAL_STRING( "MQTTKeepAliveTimeout", str );

status = MQTTKeepAliveTimeout + 1;
status = MQTTNeedMoreBytes;
str = MQTT_Status_strerror( status );
TEST_ASSERT_EQUAL_STRING( "MQTTNeedMoreBytes", str );

status = MQTTNeedMoreBytes + 1;
str = MQTT_Status_strerror( status );
TEST_ASSERT_EQUAL_STRING( "Invalid MQTT Status code", str );
}
Expand Down

0 comments on commit c5a1efe

Please sign in to comment.