Skip to content

Commit

Permalink
Fix Jobs_UpdateMsg to generate valid JSON (aws#109)
Browse files Browse the repository at this point in the history
Jobs_UpdateMsg was putting double quotes around the `statusDetails`
value resulting in the following invalid JSON:
```
{
  "status": "QUEUED",
  "statusDetails": "{
    "key": "value"
  }"
}
```

This change removes the unnecessary double quotes to generate a valid
JSON:
```
{
  "status": "QUEUED",
  "statusDetails": {
    "key": "value"
  }
}
```

This was reported here - aws#107

Signed-off-by: Gaurav Aggarwal <aggarg@amazon.com>
  • Loading branch information
aggarg authored Jul 31, 2024
1 parent 4b4d440 commit 02e343e
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 25 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,9 +109,11 @@ doxygen docs/doxygen/config.doxyfile

### Steps to build Unit Tests

1. Create build directory: `mkdir build && cd build`
1. Create build directory: `mkdir build`

1. Run _cmake_ while inside build directory: `cmake -S ../test`
1. Run _cmake_ while inside build directory: `cmake -S test/ -B build/`

1. Change to build directory: `cd build`

1. Run this command to build the library and unit tests: `make all`

Expand Down
2 changes: 1 addition & 1 deletion source/include/jobs.h
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@
#define JOBS_API_EXPECTED_VERSION "\",\"expectedVersion\":\""
#define JOBS_API_EXPECTED_VERSION_LENGTH ( sizeof( JOBS_API_EXPECTED_VERSION ) - 1U )

#define JOBS_API_STATUS_DETAILS "\",\"statusDetails\":\""
#define JOBS_API_STATUS_DETAILS "\",\"statusDetails\":"
#define JOBS_API_STATUS_DETAILS_LENGTH ( sizeof( JOBS_API_STATUS_DETAILS ) - 1U )

#define JOBS_API_COMMON_LENGTH( thingNameLength ) \
Expand Down
33 changes: 17 additions & 16 deletions source/jobs.c
Original file line number Diff line number Diff line change
Expand Up @@ -893,25 +893,26 @@ size_t Jobs_UpdateMsg( JobsUpdateRequest_t request,
{
( void ) strnAppend( buffer, &start, bufferSize, JOBS_API_STATUS, JOBS_API_STATUS_LENGTH );
( void ) strnAppend( buffer, &start, bufferSize, jobStatusString[ request.status ], strlen( jobStatusString[ request.status ] ) );
}

/* This is an optional field so do not fail if expected version is missing.*/
if( !writeFailed && ( request.expectedVersion != NULL ) && ( request.expectedVersionLength > 0U ) )
{
( void ) strnAppend( buffer, &start, bufferSize, JOBS_API_EXPECTED_VERSION, JOBS_API_EXPECTED_VERSION_LENGTH );
( void ) strnAppend( buffer, &start, bufferSize, request.expectedVersion, request.expectedVersionLength );
}
/* This is an optional field so do not fail if expected version is missing.*/
if( ( request.expectedVersion != NULL ) && ( request.expectedVersionLength > 0U ) )
{
( void ) strnAppend( buffer, &start, bufferSize, JOBS_API_EXPECTED_VERSION, JOBS_API_EXPECTED_VERSION_LENGTH );
( void ) strnAppend( buffer, &start, bufferSize, request.expectedVersion, request.expectedVersionLength );
}

/* This is an optional field so do not fail if status details is missing.*/
if( !writeFailed && ( request.statusDetails != NULL ) && ( request.statusDetailsLength > 0U ) )
{
( void ) strnAppend( buffer, &start, bufferSize, JOBS_API_STATUS_DETAILS, JOBS_API_STATUS_DETAILS_LENGTH );
( void ) strnAppend( buffer, &start, bufferSize, request.statusDetails, request.statusDetailsLength );
}
/* This is an optional field so do not fail if status details is missing.*/
if( ( request.statusDetails != NULL ) && ( request.statusDetailsLength > 0U ) )
{
( void ) strnAppend( buffer, &start, bufferSize, JOBS_API_STATUS_DETAILS, JOBS_API_STATUS_DETAILS_LENGTH );
( void ) strnAppend( buffer, &start, bufferSize, request.statusDetails, request.statusDetailsLength );

if( !writeFailed )
{
( void ) strnAppend( buffer, &start, bufferSize, "\"}", ( CONST_STRLEN( "\"}" ) ) );
( void ) strnAppend( buffer, &start, bufferSize, "}", ( CONST_STRLEN( "}" ) ) );
}
else
{
( void ) strnAppend( buffer, &start, bufferSize, "\"}", ( CONST_STRLEN( "\"}" ) ) );
}
}

return start;
Expand Down
12 changes: 6 additions & 6 deletions test/unit-test/jobs_utest.c
Original file line number Diff line number Diff line change
Expand Up @@ -891,8 +891,8 @@ void test_getUpdateJobExecutionMsg_hasNullExpectedVersion( void )

size_t result = Jobs_UpdateMsg( request, buffer, TOPIC_BUFFER_SIZE );

TEST_ASSERT_EQUAL( 54U, result );
TEST_ASSERT_EQUAL_STRING( "{\"status\":\"QUEUED\",\"statusDetails\":\"{\"key\": \"value\"}\"}", buffer );
TEST_ASSERT_EQUAL( 52U, result );
TEST_ASSERT_EQUAL_STRING( "{\"status\":\"QUEUED\",\"statusDetails\":{\"key\": \"value\"}}", buffer );
}

void test_getUpdateJobExecutionMsg_hasZeroLengthExpectedVersion( void )
Expand All @@ -909,8 +909,8 @@ void test_getUpdateJobExecutionMsg_hasZeroLengthExpectedVersion( void )

size_t result = Jobs_UpdateMsg( request, buffer, TOPIC_BUFFER_SIZE );

TEST_ASSERT_EQUAL( 54U, result );
TEST_ASSERT_EQUAL_STRING( "{\"status\":\"QUEUED\",\"statusDetails\":\"{\"key\": \"value\"}\"}", buffer );
TEST_ASSERT_EQUAL( 52U, result );
TEST_ASSERT_EQUAL_STRING( "{\"status\":\"QUEUED\",\"statusDetails\":{\"key\": \"value\"}}", buffer );
}

void test_getUpdateJobExecutionMsg_hasNullStatusDetails( void )
Expand Down Expand Up @@ -1015,8 +1015,8 @@ void test_getUpdateJobExecutionMsg_hasAllValidParameters( void )

size_t result = Jobs_UpdateMsg( request, buffer, TOPIC_BUFFER_SIZE );

TEST_ASSERT_EQUAL( 80U, result );
TEST_ASSERT_EQUAL_STRING( "{\"status\":\"QUEUED\",\"expectedVersion\":\"1.0.1\",\"statusDetails\":\"{\"key\": \"value\"}\"}", buffer );
TEST_ASSERT_EQUAL( 78U, result );
TEST_ASSERT_EQUAL_STRING( "{\"status\":\"QUEUED\",\"expectedVersion\":\"1.0.1\",\"statusDetails\":{\"key\": \"value\"}}", buffer );
}

void test_getUpdateJobExecutionMsg_hasRequiredValidParameters( void )
Expand Down

0 comments on commit 02e343e

Please sign in to comment.