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

Add tests for Option toString #340

Merged
merged 3 commits into from
Apr 3, 2025

Conversation

zalenskivolt
Copy link
Contributor

No description provided.

@zalenskivolt zalenskivolt requested review from twyatt and a team as code owners March 22, 2025 23:26
@zalenskivolt zalenskivolt force-pushed the test-option-to-string branch from 54de636 to 418c88c Compare March 22, 2025 23:29
Copy link

codecov bot commented Mar 24, 2025

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 69.74%. Comparing base (e70a0a5) to head (65261d1).
Report is 1 commits behind head on main.

Additional details and impacted files
@@            Coverage Diff             @@
##             main     #340      +/-   ##
==========================================
+ Coverage   64.81%   69.74%   +4.93%     
==========================================
  Files           9        9              
  Lines         790      790              
  Branches      176      176              
==========================================
+ Hits          512      551      +39     
+ Misses        218      171      -47     
- Partials       60       68       +8     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@zalenskivolt zalenskivolt force-pushed the test-option-to-string branch 3 times, most recently from e283ee3 to 91c5501 Compare March 24, 2025 22:13
@zalenski
Copy link

(moved new options in comments to zalenskivolt#2
will update this as options gets added, or update option PRs if this gets added…)

@zalenskivolt zalenskivolt force-pushed the test-option-to-string branch 2 times, most recently from 0d774c1 to c5c4a4a Compare March 25, 2025 19:18
@twyatt
Copy link
Member

twyatt commented Mar 25, 2025

I'm reluctant to add tests around toString (despite you catching / fixing some small issues). As we don't / shouldn't provide any guarantees around the format of toString output — it is intended for debugging/logging.

Tests just add an unnecessary maintenance burden when making changes to the output format of toString. Although my statement loses a bit of weight in the wake of you finding bugs in some of the toString outputs. 🙈

Definitely open to changing / fixing some of the toString outputs, I'm just hesitant to add units tests around it.

As for the serialization support (via kotlinx serialization), your tests are exposing a lot of gaps in that support. It looks like it could use a lot of love / fixing. I feel that effort should be broken out into a separate PR, as it may warrant a bit of iteration / discussion.

@zalenskivolt zalenskivolt force-pushed the test-option-to-string branch 6 times, most recently from b34b1dc to 4b8ca0e Compare March 25, 2025 23:57
@zalenski
Copy link

I'm reluctant to add tests around toString (despite you catching / fixing some small issues). As we don't / shouldn't provide any guarantees around the format of toString output — it is intended for debugging/logging.

I've updated to only test things that are actually overridden with custom code, for a lot fewer tests.
I do think those should be tested for functionality, even if there are no guarantees around them.

Tests just add an unnecessary maintenance burden when making changes to the output format of toString. Although my statement loses a bit of weight in the wake of you finding bugs in some of the toString outputs. 🙈

now there are a lot fewer tests, and they are also not needlessly repeated for the serialization, so I think the maintenance burden is minimal. you'd only have to update if something actually changes.

@zalenski
Copy link

Definitely open to changing / fixing some of the toString outputs, I'm just hesitant to add units tests around it.

those are currently also fixed in the Oscore PR, where I found them by mistake when copy-pasting one of them.

I think most code warrant testing, and also dislike when there are obstacles to testing things (for example side effects like logging, time, file&network operations, database code, etc.) how well I follow that in general is another matter.

As for the serialization support (via kotlinx serialization), your tests are exposing a lot of gaps in that support. It looks like it could use a lot of love / fixing. I feel that effort should be broken out into a separate PR, as it may warrant a bit of iteration / discussion.

What is the wanted format for those? Should all HTTP-like options look like HTTP headers? And CoAP specific things as now, or also in a header format?

That could definitely be its own PR, with all serialization tests updated in it! 😉

Comment on lines 64 to 74
// observe
assertToString(Observe(Register), "Observe(value=0/Register)")
assertToString(Observe(Deregister), "Observe(value=1/Deregister)")
assertToString(Observe(1234567), "Observe(value=1234567)")

Choose a reason for hiding this comment

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

I think 0 and 1 could be sent in a notification response as a serial number, so they are not necessarily Register/Deregister requests. But maybe nice to see registration requests written out?

Choose a reason for hiding this comment

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

or an update for another PR?

Copy link
Member

Choose a reason for hiding this comment

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

Ya, I think it warrants being pulled out of this PR, only because I'm pretty torn on the best approach, so seems like we could discuss further rather than holding this PR up.

Choose a reason for hiding this comment

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

moved to #342

@zalenskivolt
Copy link
Contributor Author

What is the wanted format for those? Should all HTTP-like options look like HTTP headers? And CoAP specific things as now, or also in a header format?

Serialize more options like http headers #341

assertToString(Accept(ContentFormat.JSON), "Accept(JSON)")

// hex
assertToString(ETag("123".encodeToByteArray()), "ETag(etag=31 32 33)")
Copy link
Member

Choose a reason for hiding this comment

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

For objects that only have a single parameter, I think it makes sense to omit it from the toString.

Suggested change
assertToString(ETag("123".encodeToByteArray()), "ETag(etag=31 32 33)")
assertToString(ETag("123".encodeToByteArray()), "ETag(31 32 33)")

Choose a reason for hiding this comment

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

For objects that only have a single parameter, I think it makes sense to omit it from the toString.

in that case, do you want to override all one-parameter data class toString methods, since the format is based on those? there's around 12 options with a single parameter using the default implementation atm.

many of these have a http-like serialization suggested in #341 anyway, so I'm not sure of the benefit in making special toString for all of them. my suggestion would be to leave the toString format to look like a data class, with just the overrides for hex strings as needed?

assertToString(ETag("123".encodeToByteArray()), "ETag(etag=31 32 33)")
assertToString(IfMatch("123".encodeToByteArray()), "IfMatch(etag=31 32 33)")
assertToString(IfMatch("".encodeToByteArray()), "IfMatch(etag=)")
assertToString(Echo("echo".encodeToByteArray()), "Echo(value=65 63 68 6F)")
Copy link
Member

Choose a reason for hiding this comment

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

It may be easier to copy/paste if the hex format was w/o spaces.
The default HexFormat is lowercase as well, I think that is sensible and we should probably update to align with that.
Perhaps an 0x prefix would be helpful to identify it as hex while still making copy/paste easy.

Suggested change
assertToString(Echo("echo".encodeToByteArray()), "Echo(value=65 63 68 6F)")
assertToString(Echo("echo".encodeToByteArray()), "Echo(0x6563686f)")

Choose a reason for hiding this comment

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

this just uses ByteArray.toHexString() from Debug.kt.
in #341, it actually uses @ExperimentalStdlibApi, which also implements toHexString() but without spaces, which I also think might be better here.

default HexFormat is lowercase as well

I've come to like uppercase hex more and more for readability. from old c there's no real default, since you choose %x or %X in printf:s yourself… 😄

Choose a reason for hiding this comment

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

I'll let you decide how to resolve this, with the Debug.kt method using the same name as the new stdlib api. should Debug.kt be updated to something like toHexStringUppercaseWithSpaces or toDebugHexString?
I think that version is still wanted for formatting message payloads.

The new HexFormat can do both byteSeparator = " ", upperCase = true or false and prefix = "0x", so maybe @ExperimentalStdlibApi is good to use for all of Message.kt and EncoderTest.kt where Debug.kt is used now?

import kotlin.test.Test
import kotlin.test.assertEquals

class MessageTest {

@Test
fun optionToStringOverrides() {
// content format
Copy link
Member

Choose a reason for hiding this comment

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

IMHO, these comments don't add any value.
If for organization, I think separate test functions would be a better alternative (e.g. fun contentFormatOptionsToString() { .. }).

Suggested change
// content format

Choose a reason for hiding this comment

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

removed

Comment on lines 64 to 74
// observe
assertToString(Observe(Register), "Observe(value=0/Register)")
assertToString(Observe(Deregister), "Observe(value=1/Deregister)")
assertToString(Observe(1234567), "Observe(value=1234567)")
Copy link
Member

Choose a reason for hiding this comment

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

Ya, I think it warrants being pulled out of this PR, only because I'm pretty torn on the best approach, so seems like we could discuss further rather than holding this PR up.

@twyatt
Copy link
Member

twyatt commented Mar 28, 2025

Left some comments re: changing the toString implementations. If preferred, I'm fine w/ deferring those changes if we just want to get these tests in and then make changes in other PRs.

@zalenskivolt zalenskivolt force-pushed the test-option-to-string branch 4 times, most recently from 988de4c to c32fe8c Compare March 31, 2025 14:29
@zalenskivolt zalenskivolt force-pushed the test-option-to-string branch from b768e94 to 0c618be Compare March 31, 2025 19:32
@zalenski
Copy link

Left some comments re: changing the toString implementations. If preferred, I'm fine w/ deferring those changes if we just want to get these tests in and then make changes in other PRs.

I think I'd prefer that! 😄

@zalenskivolt zalenskivolt force-pushed the test-option-to-string branch from 59f2efc to d0f4f68 Compare March 31, 2025 20:28
@zalenskivolt zalenskivolt force-pushed the test-option-to-string branch from d0f4f68 to a0f9a5f Compare April 1, 2025 09:07
Comment on lines 18 to 21
class SerializerTest {
@Test
fun optionSerializesTo() {
assertOptionSerializesTo(ContentFormat.PlainText, "Content-Format: text/plain; charset=utf-8")
Copy link

Choose a reason for hiding this comment

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

moving serializer test to #341 only, where plenty of more special serializations are added

@zalenskivolt zalenskivolt changed the title Add tests for option toString and OptionSerializer Add tests for Option toString Apr 1, 2025
@zalenski
Copy link

zalenski commented Apr 1, 2025

Left some comments re: changing the toString implementations. If preferred, I'm fine w/ deferring those changes if we just want to get these tests in and then make changes in other PRs.

I think I'd prefer that! 😄

Updated this PR to only test Option toString overrides, just like methods and responses are tested. Moved all serialization tests to #341 where a lot more of those are added. No extra comments, no changes to implementations in this PR…

So please consider if you're ok with testing the code 😄

Copy link
Member

@twyatt twyatt left a comment

Choose a reason for hiding this comment

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

I'd like to tweak the output of these toString implementations, but as discussed, that can be saved for a later PR. For now, this looks great!

@twyatt twyatt added maintenance General maintenance that doesn't effect the public API. patch Changes that should bump the PATCH version number and removed maintenance General maintenance that doesn't effect the public API. labels Apr 3, 2025
@twyatt twyatt merged commit e426dfd into JuulLabs:main Apr 3, 2025
4 of 5 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
patch Changes that should bump the PATCH version number
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants