mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-10-31 06:21:11 +00:00 
			
		
		
		
	There was a question about "how to improve the datetime display for SSH/PGP/WebAuthn" https://github.com/go-gitea/gitea/pull/28262#issuecomment-1831141611 The root problem is that `DateTime` misses the "data-tooltip-content" attribute, which should be used to make the tooltip popup smoothly. Now the UI is consistent and the end users could see the detailed hour/minute/second easily by hovering the element.  
		
			
				
	
	
		
			43 lines
		
	
	
	
		
			2.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
	
		
			2.2 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"
 | |
| 	"code.gitea.io/gitea/modules/test"
 | |
| 
 | |
| 	"github.com/stretchr/testify/assert"
 | |
| )
 | |
| 
 | |
| func TestDateTime(t *testing.T) {
 | |
| 	testTz, _ := time.LoadLocation("America/New_York")
 | |
| 	defer test.MockVariableValue(&setting.DefaultUILocation, testTz)()
 | |
| 
 | |
| 	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 data-tooltip-content data-tooltip-interactive="true" format="datetime" weekday="" year="numeric" month="short" day="numeric" datetime="invalid">invalid</relative-time>`, actual)
 | |
| 
 | |
| 	actual = DateTime("short", refTimeStr)
 | |
| 	assert.EqualValues(t, `<relative-time data-tooltip-content data-tooltip-interactive="true" format="datetime" weekday="" year="numeric" month="short" day="numeric" datetime="2018-01-01T00:00:00Z">2018-01-01T00:00:00Z</relative-time>`, actual)
 | |
| 
 | |
| 	actual = DateTime("short", refTime)
 | |
| 	assert.EqualValues(t, `<relative-time data-tooltip-content data-tooltip-interactive="true" format="datetime" weekday="" year="numeric" month="short" day="numeric" datetime="2018-01-01T00:00:00Z">2018-01-01</relative-time>`, actual)
 | |
| 
 | |
| 	actual = DateTime("short", refTimeStamp)
 | |
| 	assert.EqualValues(t, `<relative-time data-tooltip-content data-tooltip-interactive="true" format="datetime" weekday="" year="numeric" month="short" day="numeric" datetime="2017-12-31T19:00:00-05:00">2017-12-31</relative-time>`, actual)
 | |
| 
 | |
| 	actual = DateTime("full", refTimeStamp)
 | |
| 	assert.EqualValues(t, `<relative-time data-tooltip-content data-tooltip-interactive="true" 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)
 | |
| }
 |