mirror of
https://github.com/go-gitea/gitea.git
synced 2026-02-19 21:17:38 +01:00
`<relative-time>` can render absolute dates when passed [`threshold="P0Y"`](https://github.com/github/relative-time-element#threshold-string-default-p30d) and `prefix=""`, so remove the previously used `<absolute-date>` element in its favor. Devtest before: <img width="324" height="210" alt="Screenshot 2025-12-23 at 20 22 44" src="https://github.com/user-attachments/assets/cf78e0e7-f480-415f-98d5-09b25f9d5a8b" /> Devtest after: <img width="274" height="184" alt="Screenshot 2025-12-23 at 20 22 49" src="https://github.com/user-attachments/assets/5e7d25f6-eea1-4a8c-ba71-02b570804b95" /> Repo activity (rendering unchanged): <img width="1023" height="67" alt="image" src="https://github.com/user-attachments/assets/2c4fd6cb-14ab-43c6-ae4b-f86946b28288" /> --------- Signed-off-by: silverwind <me@silverwind.io> Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
65 lines
2.9 KiB
Go
65 lines
2.9 KiB
Go
// Copyright 2023 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package templates
|
|
|
|
import (
|
|
"testing"
|
|
"time"
|
|
|
|
"code.gitea.io/gitea/modules/setting"
|
|
"code.gitea.io/gitea/modules/test"
|
|
"code.gitea.io/gitea/modules/timeutil"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestDateTime(t *testing.T) {
|
|
testTz, _ := time.LoadLocation("America/New_York")
|
|
defer test.MockVariableValue(&setting.DefaultUILocation, testTz)()
|
|
defer test.MockVariableValue(&setting.IsProd, true)()
|
|
defer test.MockVariableValue(&setting.IsInTesting, false)()
|
|
|
|
du := NewDateUtils()
|
|
|
|
refTimeStr := "2018-01-01T00:00:00Z"
|
|
refTime, _ := time.Parse(time.RFC3339, refTimeStr)
|
|
refTimeStamp := timeutil.TimeStamp(refTime.Unix())
|
|
|
|
assert.EqualValues(t, "-", du.AbsoluteShort(nil))
|
|
assert.EqualValues(t, "-", du.AbsoluteShort(0))
|
|
assert.EqualValues(t, "-", du.AbsoluteShort(time.Time{}))
|
|
assert.EqualValues(t, "-", du.AbsoluteShort(timeutil.TimeStamp(0)))
|
|
|
|
actual := du.AbsoluteShort(refTime)
|
|
assert.EqualValues(t, `<relative-time weekday="" year="numeric" threshold="P0Y" month="short" day="numeric" prefix="" datetime="2018-01-01T00:00:00Z">2018-01-01</relative-time>`, actual)
|
|
|
|
actual = du.AbsoluteShort(refTimeStamp)
|
|
assert.EqualValues(t, `<relative-time weekday="" year="numeric" threshold="P0Y" month="short" day="numeric" prefix="" datetime="2017-12-31T19:00:00-05:00">2017-12-31</relative-time>`, actual)
|
|
|
|
actual = du.FullTime(refTimeStamp)
|
|
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)
|
|
}
|
|
|
|
func TestTimeSince(t *testing.T) {
|
|
testTz, _ := time.LoadLocation("America/New_York")
|
|
defer test.MockVariableValue(&setting.DefaultUILocation, testTz)()
|
|
defer test.MockVariableValue(&setting.IsProd, true)()
|
|
defer test.MockVariableValue(&setting.IsInTesting, false)()
|
|
|
|
du := NewDateUtils()
|
|
assert.EqualValues(t, "-", du.TimeSince(nil))
|
|
|
|
refTimeStr := "2018-01-01T00:00:00Z"
|
|
refTime, _ := time.Parse(time.RFC3339, refTimeStr)
|
|
|
|
actual := du.TimeSince(refTime)
|
|
assert.EqualValues(t, `<relative-time prefix="" tense="past" datetime="2018-01-01T00:00:00Z" data-tooltip-content data-tooltip-interactive="true">2018-01-01 00:00:00 +00:00</relative-time>`, actual)
|
|
|
|
actual = timeSinceTo(&refTime, time.Time{})
|
|
assert.EqualValues(t, `<relative-time prefix="" tense="future" datetime="2018-01-01T00:00:00Z" data-tooltip-content data-tooltip-interactive="true">2018-01-01 00:00:00 +00:00</relative-time>`, actual)
|
|
|
|
actual = du.TimeSince(timeutil.TimeStampNano(refTime.UnixNano()))
|
|
assert.EqualValues(t, `<relative-time prefix="" tense="past" datetime="2017-12-31T19:00:00-05:00" data-tooltip-content data-tooltip-interactive="true">2017-12-31 19:00:00 -05:00</relative-time>`, actual)
|
|
}
|