-
Notifications
You must be signed in to change notification settings - Fork 2
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
Conversation
54de636
to
418c88c
Compare
Codecov ReportAll modified and coverable lines are covered by tests ✅
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. 🚀 New features to boost your workflow:
|
e283ee3
to
91c5501
Compare
(moved new options in comments to zalenskivolt#2 |
0d774c1
to
c5c4a4a
Compare
I'm reluctant to add tests around Tests just add an unnecessary maintenance burden when making changes to the output format of Definitely open to changing / fixing some of the 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. |
b34b1dc
to
4b8ca0e
Compare
I've updated to only test things that are actually overridden with custom code, for a lot fewer tests.
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. |
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.
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! 😉 |
// observe | ||
assertToString(Observe(Register), "Observe(value=0/Register)") | ||
assertToString(Observe(Deregister), "Observe(value=1/Deregister)") | ||
assertToString(Observe(1234567), "Observe(value=1234567)") |
There was a problem hiding this comment.
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?
There was a problem hiding this comment.
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?
There was a problem hiding this comment.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
moved to #342
Serialize more options like http headers #341 |
assertToString(Accept(ContentFormat.JSON), "Accept(JSON)") | ||
|
||
// hex | ||
assertToString(ETag("123".encodeToByteArray()), "ETag(etag=31 32 33)") |
There was a problem hiding this comment.
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
.
assertToString(ETag("123".encodeToByteArray()), "ETag(etag=31 32 33)") | |
assertToString(ETag("123".encodeToByteArray()), "ETag(31 32 33)") |
There was a problem hiding this comment.
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)") |
There was a problem hiding this comment.
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.
assertToString(Echo("echo".encodeToByteArray()), "Echo(value=65 63 68 6F)") | |
assertToString(Echo("echo".encodeToByteArray()), "Echo(0x6563686f)") |
There was a problem hiding this comment.
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… 😄
There was a problem hiding this comment.
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 |
There was a problem hiding this comment.
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() { .. }
).
// content format |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
removed
// observe | ||
assertToString(Observe(Register), "Observe(value=0/Register)") | ||
assertToString(Observe(Deregister), "Observe(value=1/Deregister)") | ||
assertToString(Observe(1234567), "Observe(value=1234567)") |
There was a problem hiding this comment.
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.
Left some comments re: changing the |
988de4c
to
c32fe8c
Compare
b768e94
to
0c618be
Compare
I think I'd prefer that! 😄 |
59f2efc
to
d0f4f68
Compare
d0f4f68
to
a0f9a5f
Compare
This reverts commit a0f9a5f.
class SerializerTest { | ||
@Test | ||
fun optionSerializesTo() { | ||
assertOptionSerializesTo(ContentFormat.PlainText, "Content-Format: text/plain; charset=utf-8") |
There was a problem hiding this comment.
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
toString
Updated this PR to only test Option So please consider if you're ok with testing the code 😄 |
There was a problem hiding this 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!
No description provided.