-
Notifications
You must be signed in to change notification settings - Fork 65
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
NewDateTime returns a unix 0, but IsZero checks for zero time.Time #141
Comments
fredbi
added a commit
to fredbi/strfmt
that referenced
this issue
Mar 13, 2025
* fixed the documentation for NewDateTime() to state explicitly that it does not yield the zero value. This value is checked against IsUNIXZero(). * introduced a new method MakeDateTime() for users who want a zero value that checks against IsZero(). * fixes go-openapi#141 Signed-off-by: Frederic BIDON <[email protected]>
@prashantv I am proposing a PR which adds a new method to initialize with the "true" zero value and fixes the documentation of NewDateTime. |
fredbi
added a commit
to fredbi/strfmt
that referenced
this issue
Mar 13, 2025
* fixed the documentation for NewDateTime() to state explicitly that it does not yield the zero value. This value is checked against IsUNIXZero(). * introduced a new method MakeDateTime() for users who want a zero value that checks against IsZero(). * fixes go-openapi#141 Signed-off-by: Frederic BIDON <[email protected]>
fredbi
added a commit
to fredbi/strfmt
that referenced
this issue
Mar 14, 2025
* fixed the documentation for NewDateTime() to state explicitly that it does not yield the zero value. This value is checked against IsUNIXZero(). * introduced a new method MakeDateTime() for users who want a zero value that checks against IsZero(). * fixes go-openapi#141 Signed-off-by: Frederic BIDON <[email protected]>
fredbi
added a commit
to fredbi/strfmt
that referenced
this issue
Mar 14, 2025
* fixed the documentation for NewDateTime() to state explicitly that it does not yield the zero value. This value is checked against IsUNIXZero(). * introduced a new method MakeDateTime() for users who want a zero value that checks against IsZero(). * fixes go-openapi#141 Signed-off-by: Frederic BIDON <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Repro:
Output:
Want:
The
NewDateTime
documentation says:and
IsZero
says:Given these docs, I expected that
NewDateTime()
would match the zero value (e.g.,var d DateTime
), and thatIsZero()
would be true for it. However, that's not the case asNewDateTime()
returnsUnix(0, 0)
which is different from a zeroDateTime
.A couple of approaches to fix this:
Approach 1: return
time.Time{}
inNewDateTime
Rather than initializing using
time.Unix(0, 0)
,NewDateTime
could returntime.Time{}
, which would better align with the docs, as it suggests thatNewDateTime()
should matchvar d strfmt.DateTime
which it doesn't currently.However, this likely has a larger impact for users of
NewDateTime
since the value returned is changing.IMO this is the more correct fix.
Approach 2: Update
IsZero
IsZero
could be updated to check forIsUnixZero()
in addition to checking for zerotime.Time
.I would also recommend the documentation for
NewDateTime
is updated to indicate that it usesUnix(0, 0)
rather than matching a zeroDateTime
.The text was updated successfully, but these errors were encountered: