diff options
author | Joe Chen <jc@unknwon.io> | 2022-06-25 18:07:39 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-25 18:07:39 +0800 |
commit | 083c3ee659c6c5542687f3bafae68cbc24dbc90f (patch) | |
tree | 0103bf3b5c5ebfccd368a7cb6a425a521fd669d9 /internal/db/two_factors_test.go | |
parent | 9df4e3ae3c555a86f691f0d78a43834842e77d8b (diff) |
db: refactor "action" table to use GORM (#7054)
Co-authored-by: deepsource-autofix[bot] <62050782+deepsource-autofix[bot]@users.noreply.github.com>
Diffstat (limited to 'internal/db/two_factors_test.go')
-rw-r--r-- | internal/db/two_factors_test.go | 26 |
1 files changed, 25 insertions, 1 deletions
diff --git a/internal/db/two_factors_test.go b/internal/db/two_factors_test.go index 935844d4..386e96ca 100644 --- a/internal/db/two_factors_test.go +++ b/internal/db/two_factors_test.go @@ -11,16 +11,40 @@ import ( "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" + "gorm.io/gorm" "gogs.io/gogs/internal/dbtest" "gogs.io/gogs/internal/errutil" ) +func TestTwoFactor_BeforeCreate(t *testing.T) { + now := time.Now() + db := &gorm.DB{ + Config: &gorm.Config{ + SkipDefaultTransaction: true, + NowFunc: func() time.Time { + return now + }, + }, + } + + t.Run("CreatedUnix has been set", func(t *testing.T) { + tf := &TwoFactor{CreatedUnix: 1} + _ = tf.BeforeCreate(db) + assert.Equal(t, int64(1), tf.CreatedUnix) + }) + + t.Run("CreatedUnix has not been set", func(t *testing.T) { + tf := &TwoFactor{} + _ = tf.BeforeCreate(db) + assert.Equal(t, db.NowFunc().Unix(), tf.CreatedUnix) + }) +} + func TestTwoFactors(t *testing.T) { if testing.Short() { t.Skip() } - t.Parallel() tables := []interface{}{new(TwoFactor), new(TwoFactorRecoveryCode)} |