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-08-20 11:26:56 +01:00
|
|
|
|
2021-08-25 14:34:33 +01:00
|
|
|
package bundb_test
|
2021-08-20 11:26:56 +01:00
|
|
|
|
|
|
|
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"
|
2023-05-25 09:37:38 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/visibility"
|
2021-09-04 12:29:56 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/testrig"
|
2021-08-20 11:26:56 +01:00
|
|
|
)
|
|
|
|
|
2021-08-25 14:34:33 +01:00
|
|
|
type BunDBStandardTestSuite struct {
|
2021-08-20 11:26:56 +01:00
|
|
|
// standard suite interfaces
|
|
|
|
suite.Suite
|
2023-03-01 18:26:53 +00:00
|
|
|
db db.DB
|
|
|
|
state state.State
|
2021-08-20 11:26:56 +01:00
|
|
|
|
|
|
|
// standard suite models
|
2021-09-01 10:45:01 +01:00
|
|
|
testTokens map[string]*gtsmodel.Token
|
|
|
|
testClients map[string]*gtsmodel.Client
|
2021-08-20 11:26:56 +01:00
|
|
|
testApplications map[string]*gtsmodel.Application
|
|
|
|
testUsers map[string]*gtsmodel.User
|
|
|
|
testAccounts map[string]*gtsmodel.Account
|
|
|
|
testAttachments map[string]*gtsmodel.MediaAttachment
|
|
|
|
testStatuses map[string]*gtsmodel.Status
|
|
|
|
testTags map[string]*gtsmodel.Tag
|
|
|
|
testMentions map[string]*gtsmodel.Mention
|
2022-10-08 12:50:48 +01:00
|
|
|
testFollows map[string]*gtsmodel.Follow
|
2022-10-14 16:30:04 +01:00
|
|
|
testEmojis map[string]*gtsmodel.Emoji
|
2023-01-10 14:19:05 +00:00
|
|
|
testReports map[string]*gtsmodel.Report
|
2023-03-20 18:10:08 +00:00
|
|
|
testBookmarks map[string]*gtsmodel.StatusBookmark
|
|
|
|
testFaves map[string]*gtsmodel.StatusFave
|
2023-05-25 09:37:38 +01:00
|
|
|
testLists map[string]*gtsmodel.List
|
|
|
|
testListEntries map[string]*gtsmodel.ListEntry
|
2023-07-27 09:30:39 +01:00
|
|
|
testAccountNotes map[string]*gtsmodel.AccountNote
|
2023-07-29 11:49:14 +01:00
|
|
|
testMarkers map[string]*gtsmodel.Marker
|
2021-08-20 11:26:56 +01:00
|
|
|
}
|
2021-09-04 12:29:56 +01:00
|
|
|
|
|
|
|
func (suite *BunDBStandardTestSuite) SetupSuite() {
|
|
|
|
suite.testTokens = testrig.NewTestTokens()
|
|
|
|
suite.testClients = testrig.NewTestClients()
|
|
|
|
suite.testApplications = testrig.NewTestApplications()
|
|
|
|
suite.testUsers = testrig.NewTestUsers()
|
|
|
|
suite.testAccounts = testrig.NewTestAccounts()
|
|
|
|
suite.testAttachments = testrig.NewTestAttachments()
|
|
|
|
suite.testStatuses = testrig.NewTestStatuses()
|
|
|
|
suite.testTags = testrig.NewTestTags()
|
|
|
|
suite.testMentions = testrig.NewTestMentions()
|
2022-10-08 12:50:48 +01:00
|
|
|
suite.testFollows = testrig.NewTestFollows()
|
2022-10-14 16:30:04 +01:00
|
|
|
suite.testEmojis = testrig.NewTestEmojis()
|
2023-01-10 14:19:05 +00:00
|
|
|
suite.testReports = testrig.NewTestReports()
|
2023-03-20 18:10:08 +00:00
|
|
|
suite.testBookmarks = testrig.NewTestBookmarks()
|
|
|
|
suite.testFaves = testrig.NewTestFaves()
|
2023-05-25 09:37:38 +01:00
|
|
|
suite.testLists = testrig.NewTestLists()
|
|
|
|
suite.testListEntries = testrig.NewTestListEntries()
|
2023-07-27 09:30:39 +01:00
|
|
|
suite.testAccountNotes = testrig.NewTestAccountNotes()
|
2023-07-29 11:49:14 +01:00
|
|
|
suite.testMarkers = testrig.NewTestMarkers()
|
2021-09-04 12:29:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func (suite *BunDBStandardTestSuite) SetupTest() {
|
2021-12-07 12:31:39 +00:00
|
|
|
testrig.InitTestConfig()
|
2022-03-07 10:08:26 +00:00
|
|
|
testrig.InitTestLog()
|
2023-05-12 10:15:54 +01:00
|
|
|
suite.state.Caches.Init()
|
2023-03-01 18:26:53 +00:00
|
|
|
suite.db = testrig.NewTestDB(&suite.state)
|
2023-05-25 09:37:38 +01:00
|
|
|
testrig.StartTimelines(&suite.state, visibility.NewFilter(&suite.state), testrig.NewTestTypeConverter(suite.db))
|
2021-09-04 12:29:56 +01:00
|
|
|
testrig.StandardDBSetup(suite.db, suite.testAccounts)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (suite *BunDBStandardTestSuite) TearDownTest() {
|
2023-07-31 14:47:35 +01:00
|
|
|
if suite.db != nil {
|
|
|
|
testrig.StandardDBTeardown(suite.db)
|
|
|
|
}
|
2021-09-04 12:29:56 +01:00
|
|
|
}
|