mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-12 21:16:14 +01:00
Allow mocking timeutil (#17354)
Signed-off-by: jolheiser <john.olheiser@gmail.com>
This commit is contained in:
parent
f0376b7e02
commit
c59afa752d
2 changed files with 22 additions and 0 deletions
|
@ -7,9 +7,11 @@ package models
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"testing"
|
"testing"
|
||||||
|
"time"
|
||||||
|
|
||||||
"code.gitea.io/gitea/models/db"
|
"code.gitea.io/gitea/models/db"
|
||||||
"code.gitea.io/gitea/modules/json"
|
"code.gitea.io/gitea/modules/json"
|
||||||
|
"code.gitea.io/gitea/modules/timeutil"
|
||||||
|
|
||||||
"github.com/stretchr/testify/assert"
|
"github.com/stretchr/testify/assert"
|
||||||
)
|
)
|
||||||
|
@ -39,6 +41,10 @@ func TestGetUserHeatmapDataByUser(t *testing.T) {
|
||||||
// Prepare
|
// Prepare
|
||||||
assert.NoError(t, db.PrepareTestDatabase())
|
assert.NoError(t, db.PrepareTestDatabase())
|
||||||
|
|
||||||
|
// Mock time
|
||||||
|
timeutil.Set(time.Date(2021, 1, 1, 0, 0, 0, 0, time.UTC))
|
||||||
|
defer timeutil.Unset()
|
||||||
|
|
||||||
for i, tc := range testCases {
|
for i, tc := range testCases {
|
||||||
user := db.AssertExistsAndLoadBean(t, &User{ID: tc.userID}).(*User)
|
user := db.AssertExistsAndLoadBean(t, &User{ID: tc.userID}).(*User)
|
||||||
|
|
||||||
|
|
|
@ -13,8 +13,24 @@ import (
|
||||||
// TimeStamp defines a timestamp
|
// TimeStamp defines a timestamp
|
||||||
type TimeStamp int64
|
type TimeStamp int64
|
||||||
|
|
||||||
|
// mock is NOT concurrency-safe!!
|
||||||
|
var mock time.Time
|
||||||
|
|
||||||
|
// Set sets the time to a mocked time.Time
|
||||||
|
func Set(now time.Time) {
|
||||||
|
mock = now
|
||||||
|
}
|
||||||
|
|
||||||
|
// Unset will unset the mocked time.Time
|
||||||
|
func Unset() {
|
||||||
|
mock = time.Time{}
|
||||||
|
}
|
||||||
|
|
||||||
// TimeStampNow returns now int64
|
// TimeStampNow returns now int64
|
||||||
func TimeStampNow() TimeStamp {
|
func TimeStampNow() TimeStamp {
|
||||||
|
if !mock.IsZero() {
|
||||||
|
return TimeStamp(mock.Unix())
|
||||||
|
}
|
||||||
return TimeStamp(time.Now().Unix())
|
return TimeStamp(time.Now().Unix())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue