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-05-08 13:25:55 +01:00
|
|
|
|
|
|
|
package federation_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/stretchr/testify/suite"
|
|
|
|
|
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/db"
|
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/gtsmodel"
|
2023-03-01 18:26:53 +00:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/state"
|
2022-07-03 11:08:30 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/storage"
|
2021-05-08 13:25:55 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/typeutils"
|
|
|
|
"github.com/superseriousbusiness/gotosocial/testrig"
|
|
|
|
)
|
|
|
|
|
2022-04-29 14:05:13 +01:00
|
|
|
type FederatorStandardTestSuite struct {
|
2021-05-08 13:25:55 +01:00
|
|
|
suite.Suite
|
2022-04-29 14:53:04 +01:00
|
|
|
db db.DB
|
2022-11-24 08:35:46 +00:00
|
|
|
storage *storage.Driver
|
2023-03-01 18:26:53 +00:00
|
|
|
state state.State
|
2022-04-29 14:53:04 +01:00
|
|
|
tc typeutils.TypeConverter
|
|
|
|
testAccounts map[string]*gtsmodel.Account
|
2022-05-23 10:46:50 +01:00
|
|
|
testStatuses map[string]*gtsmodel.Status
|
2022-04-29 14:53:04 +01:00
|
|
|
testActivities map[string]testrig.ActivityWithSignature
|
2022-11-11 11:18:38 +00:00
|
|
|
testTombstones map[string]*gtsmodel.Tombstone
|
2021-05-08 13:25:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// SetupSuite sets some variables on the suite that we can use as consts (more or less) throughout
|
2022-04-29 14:05:13 +01:00
|
|
|
func (suite *FederatorStandardTestSuite) SetupSuite() {
|
2021-05-08 13:25:55 +01:00
|
|
|
// setup standard items
|
2023-03-01 18:26:53 +00:00
|
|
|
testrig.StartWorkers(&suite.state)
|
2022-07-03 11:08:30 +01:00
|
|
|
suite.storage = testrig.NewInMemoryStorage()
|
2023-03-01 18:26:53 +00:00
|
|
|
suite.state.Storage = suite.storage
|
2022-04-29 14:53:04 +01:00
|
|
|
suite.testAccounts = testrig.NewTestAccounts()
|
2022-05-23 10:46:50 +01:00
|
|
|
suite.testStatuses = testrig.NewTestStatuses()
|
2022-11-11 11:18:38 +00:00
|
|
|
suite.testTombstones = testrig.NewTestTombstones()
|
2021-05-08 13:25:55 +01:00
|
|
|
}
|
|
|
|
|
2022-04-29 14:05:13 +01:00
|
|
|
func (suite *FederatorStandardTestSuite) SetupTest() {
|
2021-12-07 12:31:39 +00:00
|
|
|
testrig.InitTestConfig()
|
2022-04-29 14:05:13 +01:00
|
|
|
testrig.InitTestLog()
|
2023-03-01 18:26:53 +00:00
|
|
|
suite.state.Caches.Init()
|
|
|
|
suite.db = testrig.NewTestDB(&suite.state)
|
|
|
|
suite.tc = testrig.NewTestTypeConverter(suite.db)
|
|
|
|
suite.state.DB = suite.db
|
2022-04-29 14:53:04 +01:00
|
|
|
suite.testActivities = testrig.NewTestActivities(suite.testAccounts)
|
|
|
|
testrig.StandardDBSetup(suite.db, suite.testAccounts)
|
2021-05-08 13:25:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// TearDownTest drops tables to make sure there's no data in the db
|
2022-04-29 14:05:13 +01:00
|
|
|
func (suite *FederatorStandardTestSuite) TearDownTest() {
|
2021-05-08 13:25:55 +01:00
|
|
|
testrig.StandardDBTeardown(suite.db)
|
|
|
|
}
|