From cb439a126aa6a2728e423bcfd0d5e948337b8ddb Mon Sep 17 00:00:00 2001 From: ᴜɴᴋɴᴡᴏɴ Date: Tue, 14 Apr 2020 09:41:54 +0800 Subject: db: add tests for two factors (#6099) * Rename to TwoFactors.Create * Use GORM to execute queries * TwoFactor.GetByUserID * Add tests * Fix failing tests * Add MD5 tests * Add tests for RandomChars --- internal/db/errors/two_factor.go | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 internal/db/errors/two_factor.go (limited to 'internal/db/errors') diff --git a/internal/db/errors/two_factor.go b/internal/db/errors/two_factor.go deleted file mode 100644 index c474152d..00000000 --- a/internal/db/errors/two_factor.go +++ /dev/null @@ -1,20 +0,0 @@ -// Copyright 2017 The Gogs Authors. All rights reserved. -// Use of this source code is governed by a MIT-style -// license that can be found in the LICENSE file. - -package errors - -import "fmt" - -type TwoFactorNotFound struct { - UserID int64 -} - -func IsTwoFactorNotFound(err error) bool { - _, ok := err.(TwoFactorNotFound) - return ok -} - -func (err TwoFactorNotFound) Error() string { - return fmt.Sprintf("two-factor authentication does not found [user_id: %d]", err.UserID) -} -- cgit v1.2.3