Skip to content

Commit a92c32a

Browse files
author
Danny Hermes
authored
Add two more compatibility methods with time.Time{} (#8)
1 parent aec0b50 commit a92c32a

File tree

3 files changed

+62
-0
lines changed

3 files changed

+62
-0
lines changed

README.md

+6
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,10 @@ fmt.Println(d.ISOWeek())
9595
// 2020 9
9696
fmt.Println(d.Weekday())
9797
// Saturday
98+
fmt.Println(d.YearDay())
99+
// 60
100+
fmt.Println(d.Date())
101+
// 2020 February 29
98102

99103
fmt.Println(d.IsZero())
100104
// false
@@ -218,6 +222,7 @@ There are several alternative date packages which cover wider date ranges.
218222
(These packages all use the [proleptic Gregorian calendar][6] to cover the
219223
historical date ranges.) Some existing packages:
220224

225+
- `cloud.google.com/go/civil` [package][14]
221226
- `github.com/fxtlabs/date` [package][7]
222227
- `github.com/rickb777/date` [package][5]
223228

@@ -240,3 +245,4 @@ doesn't implement a wider set of methods present on `time.Time{}` (e.g.
240245
[11]: https://pkg.go.dev/github.com/jackc/pgtype
241246
[12]: https://codecov.io/gh/hardfinhq/go-date/graph/badge.svg?token=MBWYQ3W2RM
242247
[13]: https://codecov.io/gh/hardfinhq/go-date
248+
[14]: https://pkg.go.dev/cloud.google.com/go/civil

date.go

+14
Original file line numberDiff line numberDiff line change
@@ -251,6 +251,14 @@ func (d Date) ToTime(opts ...ConvertOption) time.Time {
251251
return time.Date(d.Year, d.Month, d.Day, cc.Hour, cc.Minute, cc.Second, cc.Nanosecond, cc.Timezone)
252252
}
253253

254+
// Date returns the year, month, and day in which `d` occurs.
255+
//
256+
// This is here for parity with `time.Time{}.Date()` and is likely not
257+
// needed.
258+
func (d Date) Date() (int, time.Month, int) {
259+
return d.Year, d.Month, d.Day
260+
}
261+
254262
// ISOWeek returns the ISO 8601 year and week number in which `d` occurs.
255263
// Week ranges from 1 to 53. Jan 01 to Jan 03 of year `n` might belong to
256264
// week 52 or 53 of year `n-1`, and Dec 29 to Dec 31 might belong to week 1
@@ -264,6 +272,12 @@ func (d Date) Weekday() time.Weekday {
264272
return d.ToTime().Weekday()
265273
}
266274

275+
// YearDay returns the day of the year specified by `d`, in the range [1,365]
276+
// for non-leap years, and [1,366] in leap years.
277+
func (d Date) YearDay() int {
278+
return d.ToTime().YearDay()
279+
}
280+
267281
// MarshalText implements the encoding.TextMarshaler interface.
268282
func (d Date) MarshalText() ([]byte, error) {
269283
return []byte(d.String()), nil

date_test.go

+42
Original file line numberDiff line numberDiff line change
@@ -464,6 +464,17 @@ func TestDate_ToTime(t *testing.T) {
464464
assert.Equal(expected, converted)
465465
}
466466

467+
func TestDate_Date(t *testing.T) {
468+
t.Parallel()
469+
assert := testifyrequire.New(t)
470+
471+
d := date.Date{Year: 2006, Month: time.February, Day: 16}
472+
year, month, day := d.Date()
473+
assert.Equal(2006, year)
474+
assert.Equal(time.February, month)
475+
assert.Equal(16, day)
476+
}
477+
467478
func TestDate_ISOWeek(t *testing.T) {
468479
t.Parallel()
469480
assert := testifyrequire.New(t)
@@ -507,6 +518,37 @@ func TestDate_Weekday(base *testing.T) {
507518
}
508519
}
509520

521+
func TestDate_YearDay(base *testing.T) {
522+
base.Parallel()
523+
524+
type testCase struct {
525+
Date date.Date
526+
Expected int
527+
}
528+
529+
cases := []testCase{
530+
{Date: date.Date{Year: 2022, Month: time.December, Day: 31}, Expected: 365},
531+
{Date: date.Date{Year: 2023, Month: time.January, Day: 1}, Expected: 1},
532+
{Date: date.Date{Year: 2023, Month: time.January, Day: 5}, Expected: 5},
533+
{Date: date.Date{Year: 2023, Month: time.January, Day: 6}, Expected: 6},
534+
{Date: date.Date{Year: 2023, Month: time.January, Day: 8}, Expected: 8},
535+
{Date: date.Date{Year: 2024, Month: time.December, Day: 31}, Expected: 366},
536+
}
537+
538+
for i := range cases {
539+
// NOTE: Assign to loop-local (instead of declaring the `tc` variable in
540+
// `range`) to avoid capturing reference to loop variable.
541+
tc := cases[i]
542+
base.Run(tc.Date.String(), func(t *testing.T) {
543+
t.Parallel()
544+
assert := testifyrequire.New(t)
545+
546+
yearDay := tc.Date.YearDay()
547+
assert.Equal(tc.Expected, yearDay)
548+
})
549+
}
550+
}
551+
510552
func TestDate_MarshalText(base *testing.T) {
511553
base.Parallel()
512554

0 commit comments

Comments
 (0)