2023-04-25 13:48:30 -06:00
|
|
|
// Copyright 2023 The Gitea Authors. All rights reserved.
|
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
|
|
|
|
package timeutil
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2024-01-02 12:09:18 -07:00
|
|
|
"code.gitea.io/gitea/modules/test"
|
2023-04-25 13:48:30 -06:00
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestDateTime(t *testing.T) {
|
2024-01-02 12:09:18 -07:00
|
|
|
testTz, _ := time.LoadLocation("America/New_York")
|
|
|
|
defer test.MockVariableValue(&setting.DefaultUILocation, testTz)()
|
2023-04-25 13:48:30 -06:00
|
|
|
|
|
|
|
refTimeStr := "2018-01-01T00:00:00Z"
|
2024-03-12 16:37:02 -06:00
|
|
|
refDateStr := "2018-01-01"
|
2023-04-25 13:48:30 -06:00
|
|
|
refTime, _ := time.Parse(time.RFC3339, refTimeStr)
|
|
|
|
refTimeStamp := TimeStamp(refTime.Unix())
|
|
|
|
|
2023-05-02 03:54:29 -06:00
|
|
|
assert.EqualValues(t, "-", DateTime("short", nil))
|
|
|
|
assert.EqualValues(t, "-", DateTime("short", 0))
|
|
|
|
assert.EqualValues(t, "-", DateTime("short", time.Time{}))
|
|
|
|
assert.EqualValues(t, "-", DateTime("short", TimeStamp(0)))
|
2023-04-25 13:48:30 -06:00
|
|
|
|
|
|
|
actual := DateTime("short", "invalid")
|
2024-03-14 20:05:31 -06:00
|
|
|
assert.EqualValues(t, `<absolute-date weekday="" year="numeric" month="short" day="numeric" date="invalid">invalid</absolute-date>`, actual)
|
2023-04-25 13:48:30 -06:00
|
|
|
|
|
|
|
actual = DateTime("short", refTimeStr)
|
2024-03-14 20:05:31 -06:00
|
|
|
assert.EqualValues(t, `<absolute-date weekday="" year="numeric" month="short" day="numeric" date="2018-01-01T00:00:00Z">2018-01-01T00:00:00Z</absolute-date>`, actual)
|
2023-04-25 13:48:30 -06:00
|
|
|
|
|
|
|
actual = DateTime("short", refTime)
|
2024-03-14 20:05:31 -06:00
|
|
|
assert.EqualValues(t, `<absolute-date weekday="" year="numeric" month="short" day="numeric" date="2018-01-01T00:00:00Z">2018-01-01</absolute-date>`, actual)
|
2024-03-12 16:37:02 -06:00
|
|
|
|
|
|
|
actual = DateTime("short", refDateStr)
|
2024-03-14 20:05:31 -06:00
|
|
|
assert.EqualValues(t, `<absolute-date weekday="" year="numeric" month="short" day="numeric" date="2018-01-01">2018-01-01</absolute-date>`, actual)
|
2023-04-25 13:48:30 -06:00
|
|
|
|
|
|
|
actual = DateTime("short", refTimeStamp)
|
2024-03-14 20:05:31 -06:00
|
|
|
assert.EqualValues(t, `<absolute-date weekday="" year="numeric" month="short" day="numeric" date="2017-12-31T19:00:00-05:00">2017-12-31</absolute-date>`, actual)
|
2023-04-25 13:48:30 -06:00
|
|
|
|
|
|
|
actual = DateTime("full", refTimeStamp)
|
2024-03-12 16:37:02 -06:00
|
|
|
assert.EqualValues(t, `<relative-time weekday="" year="numeric" format="datetime" month="short" day="numeric" hour="numeric" minute="numeric" second="numeric" data-tooltip-content data-tooltip-interactive="true" datetime="2017-12-31T19:00:00-05:00">2017-12-31 19:00:00 -05:00</relative-time>`, actual)
|
2023-04-25 13:48:30 -06:00
|
|
|
}
|