photoprism/pkg/time/tz/local_test.go
Michael Mayer 5cd2c25489 Metadata: Move timezone related functions to /pkg/time/tz #4622 #4946
Signed-off-by: Michael Mayer <michael@photoprism.app>
2025-04-23 12:50:12 +02:00

36 lines
764 B
Go

package tz
import (
"testing"
"time"
"github.com/stretchr/testify/assert"
)
func TestIsLocal(t *testing.T) {
t.Run("True", func(t *testing.T) {
assert.True(t, IsLocal(Unknown))
assert.True(t, IsLocal(Local))
assert.True(t, IsLocal("local"))
assert.True(t, IsLocal("LOCAL"))
})
t.Run("False", func(t *testing.T) {
assert.False(t, IsLocal("utc"))
assert.False(t, IsLocal(UTC))
assert.False(t, IsLocal(GMT))
assert.False(t, IsLocal(Zulu))
})
}
func TestTruncateLocal(t *testing.T) {
now := time.Now().In(TimeLocal)
ns := now.Nanosecond()
result := TruncateLocal(now)
timeZone, _ := result.Zone()
assert.Equal(t, Local, timeZone)
assert.Equal(t, 0, result.Nanosecond())
if ns > 0 {
assert.NotEqual(t, ns, result.Nanosecond())
}
}