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

NewDateTime returns a unix 0, but IsZero checks for zero time.Time #141

Closed
prashantv opened this issue Jan 10, 2025 · 1 comment · Fixed by #148
Closed

NewDateTime returns a unix 0, but IsZero checks for zero time.Time #141

prashantv opened this issue Jan 10, 2025 · 1 comment · Fixed by #148

Comments

@prashantv
Copy link
Contributor

Repro:

dt := strfmt.NewDateTime()
fmt.Println("iszero", dt.IsZero())

Output:

iszero false

Want:

iszero true

The NewDateTime documentation says:

NewDateTime is a representation of zero value for DateTime type

and IsZero says:

IsZero returns whether the date time is a zero value

Given these docs, I expected that NewDateTime() would match the zero value (e.g., var d DateTime), and that IsZero() would be true for it. However, that's not the case as NewDateTime() returns Unix(0, 0) which is different from a zero DateTime.

A couple of approaches to fix this:

Approach 1: return time.Time{} in NewDateTime
Rather than initializing using time.Unix(0, 0), NewDateTime could return time.Time{}, which would better align with the docs, as it suggests that NewDateTime() should match var 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 for IsUnixZero() in addition to checking for zero time.Time.

I would also recommend the documentation for NewDateTime is updated to indicate that it uses Unix(0, 0) rather than matching a zero DateTime.

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
Copy link
Member

fredbi commented Mar 13, 2025

@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]>
@fredbi fredbi closed this as completed in ad394bd Mar 14, 2025
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 a pull request may close this issue.

2 participants