|
| 1 | +// Copyright 2024 Hardfin, Inc. |
| 2 | +// |
| 3 | +// Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | +// you may not use this file except in compliance with the License. |
| 5 | +// You may obtain a copy of the License at |
| 6 | +// |
| 7 | +// https://www.apache.org/licenses/LICENSE-2.0 |
| 8 | +// |
| 9 | +// Unless required by applicable law or agreed to in writing, software |
| 10 | +// distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | +// See the License for the specific language governing permissions and |
| 13 | +// limitations under the License. |
| 14 | + |
| 15 | +package date_test |
| 16 | + |
| 17 | +import ( |
| 18 | + "database/sql" |
| 19 | + "fmt" |
| 20 | + "testing" |
| 21 | + "time" |
| 22 | + |
| 23 | + testifyrequire "github.com/stretchr/testify/require" |
| 24 | + |
| 25 | + date "github.com/hardfinhq/go-date" |
| 26 | +) |
| 27 | + |
| 28 | +func TestNullDateFromPtr(t *testing.T) { |
| 29 | + t.Parallel() |
| 30 | + assert := testifyrequire.New(t) |
| 31 | + |
| 32 | + d1 := &date.Date{Year: 2000, Month: time.January, Day: 1} |
| 33 | + nd1 := date.NullDateFromPtr(d1) |
| 34 | + expected := date.NullDate{Date: *d1, Valid: true} |
| 35 | + assert.Equal(expected, nd1) |
| 36 | + |
| 37 | + var d2 *date.Date |
| 38 | + nd2 := date.NullDateFromPtr(d2) |
| 39 | + expected = date.NullDate{Valid: false} |
| 40 | + assert.Equal(expected, nd2) |
| 41 | +} |
| 42 | + |
| 43 | +func TestNullTimeFromPtr(t *testing.T) { |
| 44 | + t.Parallel() |
| 45 | + assert := testifyrequire.New(t) |
| 46 | + |
| 47 | + var d *date.Date |
| 48 | + nt := date.NullTimeFromPtr(d) |
| 49 | + expected := sql.NullTime{Valid: false} |
| 50 | + assert.Equal(expected, nt) |
| 51 | + |
| 52 | + d = &date.Date{Year: 2000, Month: time.January, Day: 1} |
| 53 | + nt = date.NullTimeFromPtr(d) |
| 54 | + expected = sql.NullTime{Time: time.Date(2000, time.January, 1, 0, 0, 0, 0, time.UTC), Valid: true} |
| 55 | + assert.Equal(expected, nt) |
| 56 | + |
| 57 | + tz, err := time.LoadLocation("America/Chicago") |
| 58 | + assert.Nil(err) |
| 59 | + nt = date.NullTimeFromPtr(d, date.OptConvertTimezone(tz)) |
| 60 | + expected = sql.NullTime{Time: time.Date(2000, time.January, 1, 0, 0, 0, 0, tz), Valid: true} |
| 61 | + assert.Equal(expected, nt) |
| 62 | +} |
| 63 | + |
| 64 | +func TestFromTime(base *testing.T) { |
| 65 | + base.Parallel() |
| 66 | + |
| 67 | + type testCase struct { |
| 68 | + Time string |
| 69 | + Date date.Date |
| 70 | + Error string |
| 71 | + } |
| 72 | + |
| 73 | + cases := []testCase{ |
| 74 | + { |
| 75 | + Time: "2020-05-11T07:10:55.209309302Z", |
| 76 | + Error: "timestamp contains more than just date information; 2020-05-11T07:10:55.209309302Z", |
| 77 | + }, |
| 78 | + { |
| 79 | + Time: "2022-01-31T00:00:00.000Z", |
| 80 | + Date: date.Date{Year: 2022, Month: time.January, Day: 31}, |
| 81 | + }, |
| 82 | + { |
| 83 | + Time: "2022-01-31T00:00:00.000-05:00", |
| 84 | + Error: "timestamp contains more than just date information; 2022-01-31T00:00:00-05:00", |
| 85 | + }, |
| 86 | + } |
| 87 | + |
| 88 | + for i := range cases { |
| 89 | + // NOTE: Assign to loop-local (instead of declaring the `tc` variable in |
| 90 | + // `range`) to avoid capturing reference to loop variable. |
| 91 | + tc := cases[i] |
| 92 | + base.Run(tc.Time, func(t *testing.T) { |
| 93 | + t.Parallel() |
| 94 | + assert := testifyrequire.New(t) |
| 95 | + |
| 96 | + timestamp, err := time.Parse(time.RFC3339Nano, tc.Time) |
| 97 | + assert.Nil(err) |
| 98 | + |
| 99 | + d, err := date.FromTime(timestamp) |
| 100 | + if tc.Error == "" { |
| 101 | + assert.Nil(err) |
| 102 | + assert.Equal(tc.Date, d) |
| 103 | + } else { |
| 104 | + assert.Equal(tc.Error, fmt.Sprintf("%v", err)) |
| 105 | + assert.Equal(date.Date{}, d) |
| 106 | + } |
| 107 | + }) |
| 108 | + } |
| 109 | +} |
| 110 | + |
| 111 | +func TestInTimezone(base *testing.T) { |
| 112 | + base.Parallel() |
| 113 | + |
| 114 | + type testCase struct { |
| 115 | + Time string |
| 116 | + Timezone string |
| 117 | + Date string |
| 118 | + } |
| 119 | + |
| 120 | + cases := []testCase{ |
| 121 | + {Time: "2024-02-01T06:41:35.540349Z", Timezone: "America/Los_Angeles", Date: "2024-01-31"}, |
| 122 | + {Time: "2024-02-01T06:41:35.540349Z", Timezone: "America/Denver", Date: "2024-01-31"}, |
| 123 | + {Time: "2024-02-01T06:41:35.540349Z", Timezone: "America/Chicago", Date: "2024-02-01"}, |
| 124 | + {Time: "2024-02-01T06:41:35.540349Z", Timezone: "America/New_York", Date: "2024-02-01"}, |
| 125 | + {Time: "2024-02-01T06:41:35.540349Z", Timezone: "UTC", Date: "2024-02-01"}, |
| 126 | + } |
| 127 | + |
| 128 | + for i := range cases { |
| 129 | + // NOTE: Assign to loop-local (instead of declaring the `tc` variable in |
| 130 | + // `range`) to avoid capturing reference to loop variable. |
| 131 | + tc := cases[i] |
| 132 | + description := fmt.Sprintf("%s::%s", tc.Time, tc.Timezone) |
| 133 | + base.Run(description, func(t *testing.T) { |
| 134 | + t.Parallel() |
| 135 | + assert := testifyrequire.New(t) |
| 136 | + |
| 137 | + timestamp, err := time.Parse(time.RFC3339Nano, tc.Time) |
| 138 | + assert.Nil(err) |
| 139 | + |
| 140 | + tz, err := time.LoadLocation(tc.Timezone) |
| 141 | + assert.Nil(err) |
| 142 | + |
| 143 | + expected, err := date.FromString(tc.Date) |
| 144 | + assert.Nil(err) |
| 145 | + |
| 146 | + d := date.InTimezone(timestamp, tz) |
| 147 | + assert.Equal(expected, d) |
| 148 | + }) |
| 149 | + } |
| 150 | +} |
0 commit comments