2021-08-29 11:03:08 +01:00
|
|
|
/*
|
|
|
|
GoToSocial
|
2023-01-05 11:43:00 +00:00
|
|
|
Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
|
2021-08-29 11:03:08 +01:00
|
|
|
|
|
|
|
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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package dereferencing_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/stretchr/testify/suite"
|
2021-11-13 16:29:43 +00:00
|
|
|
"github.com/superseriousbusiness/activity/streams/vocab"
|
2022-05-15 10:16:43 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/concurrency"
|
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"
|
2022-04-28 13:23:11 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/messages"
|
2022-07-03 11:08:30 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/storage"
|
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
|
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
|
|
|
|
|
|
|
suite.db = testrig.NewTestDB()
|
2022-07-03 11:08:30 +01:00
|
|
|
suite.storage = testrig.NewInMemoryStorage()
|
2022-06-11 10:01:34 +01:00
|
|
|
suite.dereferencer = dereferencing.NewDereferencer(suite.db, testrig.NewTestTypeConverter(suite.db), testrig.NewTestTransportController(testrig.NewMockHTTPClient(nil, "../../../testrig/media"), suite.db, concurrency.NewWorkerPool[messages.FromFederator](-1, -1)), testrig.NewTestMediaManager(suite.db, suite.storage))
|
2021-09-04 13:02:01 +01:00
|
|
|
testrig.StandardDBSetup(suite.db, nil)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (suite *DereferencerStandardTestSuite) TearDownTest() {
|
|
|
|
testrig.StandardDBTeardown(suite.db)
|
|
|
|
}
|