-
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 NoResponse
option
#332
Conversation
8de93aa
to
de4b6b6
Compare
de4b6b6
to
57fffad
Compare
57fffad
to
8f58c1d
Compare
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 really appreciate the abundance of tests, but I'd like to move away from tests in this file.
As these tests include details about how the page is rendered, which makes these tests delicate.
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 mostly wanted to test the string rendering of the option, but maybe that could be its own much smaller test?
could add tests for all options in MessageTest.kt perhaps?
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.
could add tests for all options in MessageTest.kt perhaps?
That seems like a good home for that. 👍
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.
added in #340 for existing options
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #332 +/- ##
==========================================
+ Coverage 58.91% 59.96% +1.05%
==========================================
Files 8 8
Lines 645 662 +17
Branches 146 148 +2
==========================================
+ Hits 380 397 +17
+ Misses 228 217 -11
- Partials 37 48 +11 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
|
||
/** [RFC 7967 2.1. Granular Control over Response Suppression](https://tools.ietf.org/html/rfc7967#section-2.1) */ | ||
@Suppress("ktlint:standard:no-multi-spaces") | ||
enum class NotInterestedIn( |
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.
Although somewhat awkward naming, I went with NotInterestedIn
because Suppress
clashes with kotlin.Suppress
(and would've made usage cumbersome — potentially requiring import aliasing to use).
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 matches the RFC nomenclature as well. "Not interested in 2.xx responses.". It uses "disinterest" in 13 places, but "not interested in" is clearer.
I kind of liked having those short descriptions next to the RFC numbers, so you can spot at a glance what the RFC is about. (But nobody seems to do that anywhere. It made the long list of options much more easy to group by subject!) |
Ya, I did like it, but a lot of the time it was repeating the name (found in column 1), so it felt a little redundant. 🤷 |
I can do a separate PR and compare side-to-side 😄 I tried this, to have links of uniform length and just text for description and section number: ![]() There are only 5 options that do not share RFC with other options (Observe, OSCORE, Hop-Limit, EDHOC, No-Response), and they are even well spread out (so not too distracting).
this version is in: zalenskivolt#1 |
see IANA CoAP Option Numbers