Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes #16 : Handle null values gracefully #34

Merged
merged 1 commit into from
Mar 5, 2021

Conversation

GurtejSohi
Copy link
Collaborator

Description

Fixes #16

Serialization of NULL_VALUE (Value.newBuilder().setNullValue(NullValue.NULL_VALUE).build()) yields the string - "null", which when deserialized was previously returning the Value as null. Although, we handle null also using the isNull() method (which is why it wasn't affecting the client), we also log an error saying that it is unexpected because ideally, we shouldn't be working with null - instead we should be using the null placeholder - NULL_VALUE.

So, this change tells the JsonDeserializer to use the null placeholder (NULL_VALUE) on encountering the string - "null", which ensures that we never get null config on deserialization.

Testing

Added unit test

Checklist:

  • My changes generate no new warnings
  • I have added tests that prove my fix is effective
  • Any dependent changes have been merged and published in downstream modules

@codecov
Copy link

codecov bot commented Mar 5, 2021

Codecov Report

Merging #34 (8395426) into main (620171f) will increase coverage by 0.02%.
The diff coverage is 100.00%.

Impacted file tree graph

@@             Coverage Diff              @@
##               main      #34      +/-   ##
============================================
+ Coverage     90.50%   90.52%   +0.02%     
  Complexity      109      109              
============================================
  Files            14       14              
  Lines           400      401       +1     
  Branches         18       18              
============================================
+ Hits            362      363       +1     
  Misses           32       32              
  Partials          6        6              
Flag Coverage Δ Complexity Δ
integration 90.52% <100.00%> (+0.02%) 0.00 <0.00> (ø)
unit 88.41% <100.00%> (+0.03%) 0.00 <0.00> (ø)

Flags with carried forward coverage won't be shown. Click here to find out more.

Impacted Files Coverage Δ Complexity Δ
...ypertrace/config/service/store/ConfigDocument.java 89.47% <100.00%> (+0.28%) 13.00 <0.00> (ø)

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 620171f...8395426. Read the comment docs.

@github-actions

This comment has been minimized.

Value nullValue = Value.newBuilder().setNullValue(NullValue.NULL_VALUE).build();
ConfigDocument configDocument = new ConfigDocument(RESOURCE_NAME, RESOURCE_NAMESPACE,
TENANT_ID, DEFAULT_CONTEXT, 15, "user1", nullValue, timestamp, timestamp);
assertEquals(configDocument, ConfigDocument.fromJson(configDocument.toJson()));
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This assertion fails without the above changes in ConfigDocument as in that case, the config document - ConfigDocument.fromJson(configDocument.toJson()) would have config value as null.

@GurtejSohi GurtejSohi merged commit 527ceb4 into main Mar 5, 2021
@GurtejSohi GurtejSohi deleted the fix-inconsistent-error-log branch March 5, 2021 13:25
@github-actions
Copy link

github-actions bot commented Mar 5, 2021

Unit Test Results

10 files  ±0  10 suites  ±0   4s ⏱️ -2s
32 tests +1  32 ✔️ +1  0 💤 ±0  0 ❌ ±0 

Results for commit 527ceb4. ± Comparison against base commit 620171f.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Fix the inconsistent error log
2 participants