2023-03-12 15:00:57 +00:00
|
|
|
// GoToSocial
|
|
|
|
// Copyright (C) GoToSocial Authors admin@gotosocial.org
|
|
|
|
// SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
//
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Affero General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2021-10-14 13:26:04 +01:00
|
|
|
|
|
|
|
package user_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/stretchr/testify/suite"
|
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/db"
|
2021-10-31 14:46:23 +00:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/email"
|
2021-10-14 13:26:04 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/gtsmodel"
|
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/processing/user"
|
2023-03-01 18:26:53 +00:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/state"
|
2021-10-14 13:26:04 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/testrig"
|
|
|
|
)
|
|
|
|
|
|
|
|
type UserStandardTestSuite struct {
|
|
|
|
suite.Suite
|
2021-10-31 14:46:23 +00:00
|
|
|
emailSender email.Sender
|
|
|
|
db db.DB
|
2023-03-01 18:26:53 +00:00
|
|
|
state state.State
|
2021-10-14 13:26:04 +01:00
|
|
|
|
|
|
|
testUsers map[string]*gtsmodel.User
|
|
|
|
|
2021-10-31 14:46:23 +00:00
|
|
|
sentEmails map[string]string
|
|
|
|
|
2021-10-14 13:26:04 +01:00
|
|
|
user user.Processor
|
|
|
|
}
|
|
|
|
|
|
|
|
func (suite *UserStandardTestSuite) SetupTest() {
|
2023-03-01 18:26:53 +00:00
|
|
|
suite.state.Caches.Init()
|
|
|
|
|
2021-12-07 12:31:39 +00:00
|
|
|
testrig.InitTestConfig()
|
2022-08-15 11:35:05 +01:00
|
|
|
testrig.InitTestLog()
|
2021-12-07 12:31:39 +00:00
|
|
|
|
2023-03-01 18:26:53 +00:00
|
|
|
suite.db = testrig.NewTestDB(&suite.state)
|
|
|
|
suite.state.DB = suite.db
|
|
|
|
|
2021-10-31 14:46:23 +00:00
|
|
|
suite.sentEmails = make(map[string]string)
|
|
|
|
suite.emailSender = testrig.NewEmailSender("../../../web/template/", suite.sentEmails)
|
2021-10-14 13:26:04 +01:00
|
|
|
suite.testUsers = testrig.NewTestUsers()
|
2021-10-31 14:46:23 +00:00
|
|
|
|
2023-03-01 18:26:53 +00:00
|
|
|
suite.user = user.New(&suite.state, suite.emailSender)
|
2021-10-14 13:26:04 +01:00
|
|
|
|
|
|
|
testrig.StandardDBSetup(suite.db, nil)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (suite *UserStandardTestSuite) TearDownTest() {
|
|
|
|
testrig.StandardDBTeardown(suite.db)
|
|
|
|
}
|