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