cdc33b29a0
- Resolves https://github.com/go-gitea/gitea/issues/22493 - Related to https://github.com/go-gitea/gitea/issues/4520 Some admins prefer all timestamps to display the full date instead of relative time. They can do that now by setting ```ini [ui] PREFERRED_TIMESTAMP_TENSE = absolute ``` This setting is set to `mixed` by default, allowing dates to render as "5 hours ago". Here are some screenshots of the UI with this setting set to `absolute`: ![image](https://github.com/go-gitea/gitea/assets/20454870/f496457f-6afa-44be-a1e7-249ee5fe0706) ![image](https://github.com/go-gitea/gitea/assets/20454870/c03b14f5-063d-4e13-9780-76ab002d76a9) ![image](https://github.com/go-gitea/gitea/assets/20454870/f4b34e28-1546-4374-9199-c43348844edd) --------- Signed-off-by: Yarden Shoham <git@yardenshoham.com> Co-authored-by: delvh <dev.lh@web.de>
45 lines
1.9 KiB
Go
45 lines
1.9 KiB
Go
// Copyright 2023 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package timeutil
|
|
|
|
import (
|
|
"testing"
|
|
"time"
|
|
|
|
"code.gitea.io/gitea/modules/setting"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestDateTime(t *testing.T) {
|
|
oldTz := setting.DefaultUILocation
|
|
setting.DefaultUILocation, _ = time.LoadLocation("America/New_York")
|
|
defer func() {
|
|
setting.DefaultUILocation = oldTz
|
|
}()
|
|
|
|
refTimeStr := "2018-01-01T00:00:00Z"
|
|
refTime, _ := time.Parse(time.RFC3339, refTimeStr)
|
|
refTimeStamp := TimeStamp(refTime.Unix())
|
|
|
|
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)))
|
|
|
|
actual := DateTime("short", "invalid")
|
|
assert.EqualValues(t, `<relative-time format="datetime" year="numeric" month="short" day="numeric" weekday="" datetime="invalid">invalid</relative-time>`, actual)
|
|
|
|
actual = DateTime("short", refTimeStr)
|
|
assert.EqualValues(t, `<relative-time format="datetime" year="numeric" month="short" day="numeric" weekday="" datetime="2018-01-01T00:00:00Z">2018-01-01T00:00:00Z</relative-time>`, actual)
|
|
|
|
actual = DateTime("short", refTime)
|
|
assert.EqualValues(t, `<relative-time format="datetime" year="numeric" month="short" day="numeric" weekday="" datetime="2018-01-01T00:00:00Z">2018-01-01</relative-time>`, actual)
|
|
|
|
actual = DateTime("short", refTimeStamp)
|
|
assert.EqualValues(t, `<relative-time format="datetime" year="numeric" month="short" day="numeric" weekday="" datetime="2017-12-31T19:00:00-05:00">2017-12-31</relative-time>`, actual)
|
|
|
|
actual = DateTime("full", refTimeStamp)
|
|
assert.EqualValues(t, `<relative-time format="datetime" weekday="" year="numeric" month="short" day="numeric" hour="numeric" minute="numeric" second="numeric" datetime="2017-12-31T19:00:00-05:00">2017-12-31 19:00:00 -05:00</relative-time>`, actual)
|
|
}
|