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-29 11:03:08 +01:00
|
|
|
|
|
|
|
package dereferencing_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/stretchr/testify/suite"
|
2021-11-13 16:29:43 +00:00
|
|
|
"github.com/superseriousbusiness/activity/streams/vocab"
|
2021-08-29 11:03:08 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/db"
|
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/federation/dereferencing"
|
|
|
|
"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"
|
2023-09-23 17:44:11 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/typeutils"
|
2023-05-25 09:37:38 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/visibility"
|
2021-09-04 13:02:01 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/testrig"
|
2021-08-29 11:03:08 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
type DereferencerStandardTestSuite struct {
|
|
|
|
suite.Suite
|
2021-09-04 13:02:01 +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
|
2021-08-29 11:03:08 +01:00
|
|
|
|
2021-09-04 13:02:01 +01:00
|
|
|
testRemoteStatuses map[string]vocab.ActivityStreamsNote
|
2021-09-30 11:27:42 +01:00
|
|
|
testRemotePeople map[string]vocab.ActivityStreamsPerson
|
|
|
|
testRemoteGroups map[string]vocab.ActivityStreamsGroup
|
2022-05-27 15:35:35 +01:00
|
|
|
testRemoteServices map[string]vocab.ActivityStreamsService
|
2021-09-04 13:02:01 +01:00
|
|
|
testRemoteAttachments map[string]testrig.RemoteAttachmentFile
|
|
|
|
testAccounts map[string]*gtsmodel.Account
|
2022-09-26 10:56:01 +01:00
|
|
|
testEmojis map[string]*gtsmodel.Emoji
|
2021-08-29 11:03:08 +01:00
|
|
|
|
|
|
|
dereferencer dereferencing.Dereferencer
|
|
|
|
}
|
2021-09-04 13:02:01 +01:00
|
|
|
|
2022-03-21 18:46:51 +00:00
|
|
|
func (suite *DereferencerStandardTestSuite) SetupTest() {
|
|
|
|
testrig.InitTestConfig()
|
|
|
|
testrig.InitTestLog()
|
|
|
|
|
2021-09-04 13:02:01 +01:00
|
|
|
suite.testAccounts = testrig.NewTestAccounts()
|
|
|
|
suite.testRemoteStatuses = testrig.NewTestFediStatuses()
|
2021-09-30 11:27:42 +01:00
|
|
|
suite.testRemotePeople = testrig.NewTestFediPeople()
|
|
|
|
suite.testRemoteGroups = testrig.NewTestFediGroups()
|
2022-05-27 15:35:35 +01:00
|
|
|
suite.testRemoteServices = testrig.NewTestFediServices()
|
2021-09-04 13:02:01 +01:00
|
|
|
suite.testRemoteAttachments = testrig.NewTestFediAttachments("../../../testrig/media")
|
2022-09-26 10:56:01 +01:00
|
|
|
suite.testEmojis = testrig.NewTestEmojis()
|
2021-12-07 12:31:39 +00:00
|
|
|
|
2023-03-01 18:26:53 +00:00
|
|
|
suite.state.Caches.Init()
|
2023-11-14 14:57:25 +00:00
|
|
|
testrig.StartNoopWorkers(&suite.state)
|
2023-03-01 18:26:53 +00:00
|
|
|
|
|
|
|
suite.db = testrig.NewTestDB(&suite.state)
|
2023-05-25 09:37:38 +01:00
|
|
|
|
2023-09-23 17:44:11 +01:00
|
|
|
converter := typeutils.NewConverter(&suite.state)
|
|
|
|
|
2023-05-25 09:37:38 +01:00
|
|
|
testrig.StartTimelines(
|
|
|
|
&suite.state,
|
|
|
|
visibility.NewFilter(&suite.state),
|
2023-09-23 17:44:11 +01:00
|
|
|
converter,
|
2023-05-25 09:37:38 +01:00
|
|
|
)
|
|
|
|
|
2022-07-03 11:08:30 +01:00
|
|
|
suite.storage = testrig.NewInMemoryStorage()
|
2023-03-01 18:26:53 +00:00
|
|
|
suite.state.DB = suite.db
|
|
|
|
suite.state.Storage = suite.storage
|
|
|
|
media := testrig.NewTestMediaManager(&suite.state)
|
2023-09-23 17:44:11 +01:00
|
|
|
suite.dereferencer = dereferencing.NewDereferencer(&suite.state, converter, testrig.NewTestTransportController(&suite.state, testrig.NewMockHTTPClient(nil, "../../../testrig/media")), media)
|
2021-09-04 13:02:01 +01:00
|
|
|
testrig.StandardDBSetup(suite.db, nil)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (suite *DereferencerStandardTestSuite) TearDownTest() {
|
|
|
|
testrig.StandardDBTeardown(suite.db)
|
2023-03-01 18:26:53 +00:00
|
|
|
testrig.StopWorkers(&suite.state)
|
2021-09-04 13:02:01 +01:00
|
|
|
}
|