| 
									
										
										
										
											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-20 12:26:56 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-25 15:34:33 +02:00
										 |  |  | package bundb_test | 
					
						
							| 
									
										
										
										
											2021-08-20 12:26:56 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							| 
									
										
										
										
											2025-04-26 15:34:10 +02:00
										 |  |  | 	"code.superseriousbusiness.org/gotosocial/internal/db" | 
					
						
							|  |  |  | 	"code.superseriousbusiness.org/gotosocial/internal/gtsmodel" | 
					
						
							|  |  |  | 	"code.superseriousbusiness.org/gotosocial/internal/state" | 
					
						
							|  |  |  | 	"code.superseriousbusiness.org/gotosocial/testrig" | 
					
						
							| 
									
										
										
										
											2021-08-20 12:26:56 +02:00
										 |  |  | 	"github.com/stretchr/testify/suite" | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-25 15:34:33 +02:00
										 |  |  | type BunDBStandardTestSuite struct { | 
					
						
							| 
									
										
										
										
											2021-08-20 12:26:56 +02:00
										 |  |  | 	// standard suite interfaces | 
					
						
							|  |  |  | 	suite.Suite | 
					
						
							| 
									
										
										
										
											2023-03-01 18:26:53 +00:00
										 |  |  | 	db    db.DB | 
					
						
							|  |  |  | 	state state.State | 
					
						
							| 
									
										
										
										
											2021-08-20 12:26:56 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// standard suite models | 
					
						
							| 
									
										
										
										
											2024-08-24 11:49:37 +02:00
										 |  |  | 	testTokens              map[string]*gtsmodel.Token | 
					
						
							|  |  |  | 	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 | 
					
						
							|  |  |  | 	testFollows             map[string]*gtsmodel.Follow | 
					
						
							|  |  |  | 	testEmojis              map[string]*gtsmodel.Emoji | 
					
						
							|  |  |  | 	testReports             map[string]*gtsmodel.Report | 
					
						
							|  |  |  | 	testBookmarks           map[string]*gtsmodel.StatusBookmark | 
					
						
							|  |  |  | 	testFaves               map[string]*gtsmodel.StatusFave | 
					
						
							|  |  |  | 	testLists               map[string]*gtsmodel.List | 
					
						
							|  |  |  | 	testListEntries         map[string]*gtsmodel.ListEntry | 
					
						
							|  |  |  | 	testAccountNotes        map[string]*gtsmodel.AccountNote | 
					
						
							|  |  |  | 	testMarkers             map[string]*gtsmodel.Marker | 
					
						
							|  |  |  | 	testRules               map[string]*gtsmodel.Rule | 
					
						
							|  |  |  | 	testThreads             map[string]*gtsmodel.Thread | 
					
						
							|  |  |  | 	testPolls               map[string]*gtsmodel.Poll | 
					
						
							|  |  |  | 	testPollVotes           map[string]*gtsmodel.PollVote | 
					
						
							|  |  |  | 	testInteractionRequests map[string]*gtsmodel.InteractionRequest | 
					
						
							| 
									
										
										
										
											2024-12-05 13:35:07 +00:00
										 |  |  | 	testStatusEdits         map[string]*gtsmodel.StatusEdit | 
					
						
							| 
									
										
										
										
											2021-08-20 12:26:56 +02:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2021-09-04 13:29:56 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | func (suite *BunDBStandardTestSuite) SetupSuite() { | 
					
						
							|  |  |  | 	suite.testTokens = testrig.NewTestTokens() | 
					
						
							|  |  |  | 	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 13:50:48 +02:00
										 |  |  | 	suite.testFollows = testrig.NewTestFollows() | 
					
						
							| 
									
										
										
										
											2022-10-14 17:30:04 +02:00
										 |  |  | 	suite.testEmojis = testrig.NewTestEmojis() | 
					
						
							| 
									
										
										
										
											2023-01-10 15:19:05 +01:00
										 |  |  | 	suite.testReports = testrig.NewTestReports() | 
					
						
							| 
									
										
										
										
											2023-03-20 19:10:08 +01:00
										 |  |  | 	suite.testBookmarks = testrig.NewTestBookmarks() | 
					
						
							|  |  |  | 	suite.testFaves = testrig.NewTestFaves() | 
					
						
							| 
									
										
										
										
											2023-05-25 10:37:38 +02:00
										 |  |  | 	suite.testLists = testrig.NewTestLists() | 
					
						
							|  |  |  | 	suite.testListEntries = testrig.NewTestListEntries() | 
					
						
							| 
									
										
										
										
											2023-07-27 01:30:39 -07:00
										 |  |  | 	suite.testAccountNotes = testrig.NewTestAccountNotes() | 
					
						
							| 
									
										
										
										
											2023-07-29 03:49:14 -07:00
										 |  |  | 	suite.testMarkers = testrig.NewTestMarkers() | 
					
						
							| 
									
										
										
										
											2023-08-19 14:33:15 +02:00
										 |  |  | 	suite.testRules = testrig.NewTestRules() | 
					
						
							| 
									
										
										
										
											2023-10-25 16:04:53 +02:00
										 |  |  | 	suite.testThreads = testrig.NewTestThreads() | 
					
						
							| 
									
										
										
										
											2023-11-08 14:32:17 +00:00
										 |  |  | 	suite.testPolls = testrig.NewTestPolls() | 
					
						
							|  |  |  | 	suite.testPollVotes = testrig.NewTestPollVotes() | 
					
						
							| 
									
										
										
										
											2024-08-24 11:49:37 +02:00
										 |  |  | 	suite.testInteractionRequests = testrig.NewTestInteractionRequests() | 
					
						
							| 
									
										
										
										
											2024-12-05 13:35:07 +00:00
										 |  |  | 	suite.testStatusEdits = testrig.NewTestStatusEdits() | 
					
						
							| 
									
										
										
										
											2021-09-04 13:29:56 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (suite *BunDBStandardTestSuite) SetupTest() { | 
					
						
							| 
									
										
										
										
											2021-12-07 13:31:39 +01:00
										 |  |  | 	testrig.InitTestConfig() | 
					
						
							| 
									
										
										
										
											2022-03-07 11:08:26 +01: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) | 
					
						
							| 
									
										
										
										
											2021-09-04 13:29:56 +02:00
										 |  |  | 	testrig.StandardDBSetup(suite.db, suite.testAccounts) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (suite *BunDBStandardTestSuite) TearDownTest() { | 
					
						
							| 
									
										
										
										
											2023-07-31 15:47:35 +02:00
										 |  |  | 	if suite.db != nil { | 
					
						
							|  |  |  | 		testrig.StandardDBTeardown(suite.db) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2021-09-04 13:29:56 +02:00
										 |  |  | } |