| 
									
										
										
										
											2021-08-15 18:43:08 +02:00
										 |  |  | /* | 
					
						
							|  |  |  |    GoToSocial | 
					
						
							| 
									
										
										
										
											2021-12-20 18:42:19 +01:00
										 |  |  |    Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org | 
					
						
							| 
									
										
										
										
											2021-08-15 18:43:08 +02: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 timeline_test | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							| 
									
										
										
										
											2021-08-25 15:34:33 +02:00
										 |  |  | 	"context" | 
					
						
							| 
									
										
										
										
											2021-08-15 18:43:08 +02:00
										 |  |  | 	"testing" | 
					
						
							|  |  |  | 	"time" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	"github.com/stretchr/testify/suite" | 
					
						
							| 
									
										
										
										
											2022-02-05 12:47:38 +01:00
										 |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/processing" | 
					
						
							| 
									
										
										
										
											2021-08-15 18:43:08 +02:00
										 |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/timeline" | 
					
						
							| 
									
										
										
										
											2022-02-05 12:47:38 +01:00
										 |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/visibility" | 
					
						
							| 
									
										
										
										
											2021-08-15 18:43:08 +02:00
										 |  |  | 	"github.com/superseriousbusiness/gotosocial/testrig" | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | type GetTestSuite struct { | 
					
						
							|  |  |  | 	TimelineStandardTestSuite | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (suite *GetTestSuite) SetupSuite() { | 
					
						
							|  |  |  | 	suite.testAccounts = testrig.NewTestAccounts() | 
					
						
							|  |  |  | 	suite.testStatuses = testrig.NewTestStatuses() | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (suite *GetTestSuite) SetupTest() { | 
					
						
							| 
									
										
										
										
											2021-10-11 05:37:33 -07:00
										 |  |  | 	testrig.InitTestLog() | 
					
						
							| 
									
										
										
										
											2021-12-07 13:31:39 +01:00
										 |  |  | 	testrig.InitTestConfig() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	suite.db = testrig.NewTestDB() | 
					
						
							| 
									
										
										
										
											2021-08-15 18:43:08 +02:00
										 |  |  | 	suite.tc = testrig.NewTestTypeConverter(suite.db) | 
					
						
							| 
									
										
										
										
											2022-02-05 12:47:38 +01:00
										 |  |  | 	suite.filter = visibility.NewFilter(suite.db) | 
					
						
							| 
									
										
										
										
											2021-08-15 18:43:08 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	testrig.StandardDBSetup(suite.db, nil) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// let's take local_account_1 as the timeline owner | 
					
						
							| 
									
										
										
										
											2022-02-05 12:47:38 +01:00
										 |  |  | 	tl, err := timeline.NewTimeline( | 
					
						
							|  |  |  | 		context.Background(), | 
					
						
							|  |  |  | 		suite.testAccounts["local_account_1"].ID, | 
					
						
							|  |  |  | 		processing.StatusGrabFunction(suite.db), | 
					
						
							|  |  |  | 		processing.StatusFilterFunction(suite.db, suite.filter), | 
					
						
							|  |  |  | 		processing.StatusPrepareFunction(suite.db, suite.tc), | 
					
						
							|  |  |  | 		processing.StatusSkipInsertFunction(), | 
					
						
							|  |  |  | 	) | 
					
						
							| 
									
										
										
										
											2021-08-15 18:43:08 +02:00
										 |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		suite.FailNow(err.Error()) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// prepare the timeline by just shoving all test statuses in it -- let's not be fussy about who sees what | 
					
						
							|  |  |  | 	for _, s := range suite.testStatuses { | 
					
						
							| 
									
										
										
										
											2022-02-05 12:47:38 +01:00
										 |  |  | 		_, err := tl.IndexAndPrepareOne(context.Background(), s.GetID(), s.BoostOfID, s.AccountID, s.BoostOfAccountID) | 
					
						
							| 
									
										
										
										
											2021-08-15 18:43:08 +02:00
										 |  |  | 		if err != nil { | 
					
						
							|  |  |  | 			suite.FailNow(err.Error()) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	suite.timeline = tl | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (suite *GetTestSuite) TearDownTest() { | 
					
						
							|  |  |  | 	testrig.StandardDBTeardown(suite.db) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (suite *GetTestSuite) TestGetDefault() { | 
					
						
							|  |  |  | 	// get 10 20 the top and don't prepare the next query | 
					
						
							| 
									
										
										
										
											2021-08-25 15:34:33 +02:00
										 |  |  | 	statuses, err := suite.timeline.Get(context.Background(), 20, "", "", "", false) | 
					
						
							| 
									
										
										
										
											2021-08-15 18:43:08 +02:00
										 |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		suite.FailNow(err.Error()) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-07 11:08:26 +01:00
										 |  |  | 	// we only have 15 statuses in the test suite | 
					
						
							|  |  |  | 	suite.Len(statuses, 15) | 
					
						
							| 
									
										
										
										
											2021-08-15 18:43:08 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// statuses should be sorted highest to lowest ID | 
					
						
							|  |  |  | 	var highest string | 
					
						
							|  |  |  | 	for i, s := range statuses { | 
					
						
							|  |  |  | 		if i == 0 { | 
					
						
							| 
									
										
										
										
											2022-02-05 12:47:38 +01:00
										 |  |  | 			highest = s.GetID() | 
					
						
							| 
									
										
										
										
											2021-08-15 18:43:08 +02:00
										 |  |  | 		} else { | 
					
						
							| 
									
										
										
										
											2022-02-05 12:47:38 +01:00
										 |  |  | 			suite.Less(s.GetID(), highest) | 
					
						
							|  |  |  | 			highest = s.GetID() | 
					
						
							| 
									
										
										
										
											2021-08-15 18:43:08 +02:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (suite *GetTestSuite) TestGetDefaultPrepareNext() { | 
					
						
							|  |  |  | 	// get 10 from the top and prepare the next query | 
					
						
							| 
									
										
										
										
											2021-08-25 15:34:33 +02:00
										 |  |  | 	statuses, err := suite.timeline.Get(context.Background(), 10, "", "", "", true) | 
					
						
							| 
									
										
										
										
											2021-08-15 18:43:08 +02:00
										 |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		suite.FailNow(err.Error()) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	suite.Len(statuses, 10) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// statuses should be sorted highest to lowest ID | 
					
						
							|  |  |  | 	var highest string | 
					
						
							|  |  |  | 	for i, s := range statuses { | 
					
						
							|  |  |  | 		if i == 0 { | 
					
						
							| 
									
										
										
										
											2022-02-05 12:47:38 +01:00
										 |  |  | 			highest = s.GetID() | 
					
						
							| 
									
										
										
										
											2021-08-15 18:43:08 +02:00
										 |  |  | 		} else { | 
					
						
							| 
									
										
										
										
											2022-02-05 12:47:38 +01:00
										 |  |  | 			suite.Less(s.GetID(), highest) | 
					
						
							|  |  |  | 			highest = s.GetID() | 
					
						
							| 
									
										
										
										
											2021-08-15 18:43:08 +02:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// sleep a second so the next query can run | 
					
						
							|  |  |  | 	time.Sleep(1 * time.Second) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (suite *GetTestSuite) TestGetMaxID() { | 
					
						
							|  |  |  | 	// ask for 10 with a max ID somewhere in the middle of the stack | 
					
						
							| 
									
										
										
										
											2021-08-25 15:34:33 +02:00
										 |  |  | 	statuses, err := suite.timeline.Get(context.Background(), 10, "01F8MHBQCBTDKN6X5VHGMMN4MA", "", "", false) | 
					
						
							| 
									
										
										
										
											2021-08-15 18:43:08 +02:00
										 |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		suite.FailNow(err.Error()) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// we should only get 6 statuses back, since we asked for a max ID that excludes some of our entries | 
					
						
							|  |  |  | 	suite.Len(statuses, 6) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// statuses should be sorted highest to lowest ID | 
					
						
							|  |  |  | 	var highest string | 
					
						
							|  |  |  | 	for i, s := range statuses { | 
					
						
							|  |  |  | 		if i == 0 { | 
					
						
							| 
									
										
										
										
											2022-02-05 12:47:38 +01:00
										 |  |  | 			highest = s.GetID() | 
					
						
							| 
									
										
										
										
											2021-08-15 18:43:08 +02:00
										 |  |  | 		} else { | 
					
						
							| 
									
										
										
										
											2022-02-05 12:47:38 +01:00
										 |  |  | 			suite.Less(s.GetID(), highest) | 
					
						
							|  |  |  | 			highest = s.GetID() | 
					
						
							| 
									
										
										
										
											2021-08-15 18:43:08 +02:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (suite *GetTestSuite) TestGetMaxIDPrepareNext() { | 
					
						
							|  |  |  | 	// ask for 10 with a max ID somewhere in the middle of the stack | 
					
						
							| 
									
										
										
										
											2021-08-25 15:34:33 +02:00
										 |  |  | 	statuses, err := suite.timeline.Get(context.Background(), 10, "01F8MHBQCBTDKN6X5VHGMMN4MA", "", "", true) | 
					
						
							| 
									
										
										
										
											2021-08-15 18:43:08 +02:00
										 |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		suite.FailNow(err.Error()) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// we should only get 6 statuses back, since we asked for a max ID that excludes some of our entries | 
					
						
							|  |  |  | 	suite.Len(statuses, 6) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// statuses should be sorted highest to lowest ID | 
					
						
							|  |  |  | 	var highest string | 
					
						
							|  |  |  | 	for i, s := range statuses { | 
					
						
							|  |  |  | 		if i == 0 { | 
					
						
							| 
									
										
										
										
											2022-02-05 12:47:38 +01:00
										 |  |  | 			highest = s.GetID() | 
					
						
							| 
									
										
										
										
											2021-08-15 18:43:08 +02:00
										 |  |  | 		} else { | 
					
						
							| 
									
										
										
										
											2022-02-05 12:47:38 +01:00
										 |  |  | 			suite.Less(s.GetID(), highest) | 
					
						
							|  |  |  | 			highest = s.GetID() | 
					
						
							| 
									
										
										
										
											2021-08-15 18:43:08 +02:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// sleep a second so the next query can run | 
					
						
							|  |  |  | 	time.Sleep(1 * time.Second) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (suite *GetTestSuite) TestGetMinID() { | 
					
						
							|  |  |  | 	// ask for 10 with a min ID somewhere in the middle of the stack | 
					
						
							| 
									
										
										
										
											2021-08-25 15:34:33 +02:00
										 |  |  | 	statuses, err := suite.timeline.Get(context.Background(), 10, "", "01F8MHBQCBTDKN6X5VHGMMN4MA", "", false) | 
					
						
							| 
									
										
										
										
											2021-08-15 18:43:08 +02:00
										 |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		suite.FailNow(err.Error()) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-07 11:08:26 +01:00
										 |  |  | 	// we should only get 8 statuses back, since we asked for a min ID that excludes some of our entries | 
					
						
							|  |  |  | 	suite.Len(statuses, 8) | 
					
						
							| 
									
										
										
										
											2021-08-15 18:43:08 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// statuses should be sorted highest to lowest ID | 
					
						
							|  |  |  | 	var highest string | 
					
						
							|  |  |  | 	for i, s := range statuses { | 
					
						
							|  |  |  | 		if i == 0 { | 
					
						
							| 
									
										
										
										
											2022-02-05 12:47:38 +01:00
										 |  |  | 			highest = s.GetID() | 
					
						
							| 
									
										
										
										
											2021-08-15 18:43:08 +02:00
										 |  |  | 		} else { | 
					
						
							| 
									
										
										
										
											2022-02-05 12:47:38 +01:00
										 |  |  | 			suite.Less(s.GetID(), highest) | 
					
						
							|  |  |  | 			highest = s.GetID() | 
					
						
							| 
									
										
										
										
											2021-08-15 18:43:08 +02:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (suite *GetTestSuite) TestGetSinceID() { | 
					
						
							|  |  |  | 	// ask for 10 with a since ID somewhere in the middle of the stack | 
					
						
							| 
									
										
										
										
											2021-08-25 15:34:33 +02:00
										 |  |  | 	statuses, err := suite.timeline.Get(context.Background(), 10, "", "", "01F8MHBQCBTDKN6X5VHGMMN4MA", false) | 
					
						
							| 
									
										
										
										
											2021-08-15 18:43:08 +02:00
										 |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		suite.FailNow(err.Error()) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-07 11:08:26 +01:00
										 |  |  | 	// we should only get 8 statuses back, since we asked for a since ID that excludes some of our entries | 
					
						
							|  |  |  | 	suite.Len(statuses, 8) | 
					
						
							| 
									
										
										
										
											2021-08-15 18:43:08 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// statuses should be sorted highest to lowest ID | 
					
						
							|  |  |  | 	var highest string | 
					
						
							|  |  |  | 	for i, s := range statuses { | 
					
						
							|  |  |  | 		if i == 0 { | 
					
						
							| 
									
										
										
										
											2022-02-05 12:47:38 +01:00
										 |  |  | 			highest = s.GetID() | 
					
						
							| 
									
										
										
										
											2021-08-15 18:43:08 +02:00
										 |  |  | 		} else { | 
					
						
							| 
									
										
										
										
											2022-02-05 12:47:38 +01:00
										 |  |  | 			suite.Less(s.GetID(), highest) | 
					
						
							|  |  |  | 			highest = s.GetID() | 
					
						
							| 
									
										
										
										
											2021-08-15 18:43:08 +02:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (suite *GetTestSuite) TestGetSinceIDPrepareNext() { | 
					
						
							|  |  |  | 	// ask for 10 with a since ID somewhere in the middle of the stack | 
					
						
							| 
									
										
										
										
											2021-08-25 15:34:33 +02:00
										 |  |  | 	statuses, err := suite.timeline.Get(context.Background(), 10, "", "", "01F8MHBQCBTDKN6X5VHGMMN4MA", true) | 
					
						
							| 
									
										
										
										
											2021-08-15 18:43:08 +02:00
										 |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		suite.FailNow(err.Error()) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-07 11:08:26 +01:00
										 |  |  | 	// we should only get 8 statuses back, since we asked for a since ID that excludes some of our entries | 
					
						
							|  |  |  | 	suite.Len(statuses, 8) | 
					
						
							| 
									
										
										
										
											2021-08-15 18:43:08 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// statuses should be sorted highest to lowest ID | 
					
						
							|  |  |  | 	var highest string | 
					
						
							|  |  |  | 	for i, s := range statuses { | 
					
						
							|  |  |  | 		if i == 0 { | 
					
						
							| 
									
										
										
										
											2022-02-05 12:47:38 +01:00
										 |  |  | 			highest = s.GetID() | 
					
						
							| 
									
										
										
										
											2021-08-15 18:43:08 +02:00
										 |  |  | 		} else { | 
					
						
							| 
									
										
										
										
											2022-02-05 12:47:38 +01:00
										 |  |  | 			suite.Less(s.GetID(), highest) | 
					
						
							|  |  |  | 			highest = s.GetID() | 
					
						
							| 
									
										
										
										
											2021-08-15 18:43:08 +02:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// sleep a second so the next query can run | 
					
						
							|  |  |  | 	time.Sleep(1 * time.Second) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (suite *GetTestSuite) TestGetBetweenID() { | 
					
						
							|  |  |  | 	// ask for 10 between these two IDs | 
					
						
							| 
									
										
										
										
											2021-08-25 15:34:33 +02:00
										 |  |  | 	statuses, err := suite.timeline.Get(context.Background(), 10, "01F8MHCP5P2NWYQ416SBA0XSEV", "", "01F8MHBQCBTDKN6X5VHGMMN4MA", false) | 
					
						
							| 
									
										
										
										
											2021-08-15 18:43:08 +02:00
										 |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		suite.FailNow(err.Error()) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// we should only get 2 statuses back, since there are only two statuses between the given IDs | 
					
						
							|  |  |  | 	suite.Len(statuses, 2) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// statuses should be sorted highest to lowest ID | 
					
						
							|  |  |  | 	var highest string | 
					
						
							|  |  |  | 	for i, s := range statuses { | 
					
						
							|  |  |  | 		if i == 0 { | 
					
						
							| 
									
										
										
										
											2022-02-05 12:47:38 +01:00
										 |  |  | 			highest = s.GetID() | 
					
						
							| 
									
										
										
										
											2021-08-15 18:43:08 +02:00
										 |  |  | 		} else { | 
					
						
							| 
									
										
										
										
											2022-02-05 12:47:38 +01:00
										 |  |  | 			suite.Less(s.GetID(), highest) | 
					
						
							|  |  |  | 			highest = s.GetID() | 
					
						
							| 
									
										
										
										
											2021-08-15 18:43:08 +02:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (suite *GetTestSuite) TestGetBetweenIDPrepareNext() { | 
					
						
							|  |  |  | 	// ask for 10 between these two IDs | 
					
						
							| 
									
										
										
										
											2021-08-25 15:34:33 +02:00
										 |  |  | 	statuses, err := suite.timeline.Get(context.Background(), 10, "01F8MHCP5P2NWYQ416SBA0XSEV", "", "01F8MHBQCBTDKN6X5VHGMMN4MA", true) | 
					
						
							| 
									
										
										
										
											2021-08-15 18:43:08 +02:00
										 |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		suite.FailNow(err.Error()) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// we should only get 2 statuses back, since there are only two statuses between the given IDs | 
					
						
							|  |  |  | 	suite.Len(statuses, 2) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// statuses should be sorted highest to lowest ID | 
					
						
							|  |  |  | 	var highest string | 
					
						
							|  |  |  | 	for i, s := range statuses { | 
					
						
							|  |  |  | 		if i == 0 { | 
					
						
							| 
									
										
										
										
											2022-02-05 12:47:38 +01:00
										 |  |  | 			highest = s.GetID() | 
					
						
							| 
									
										
										
										
											2021-08-15 18:43:08 +02:00
										 |  |  | 		} else { | 
					
						
							| 
									
										
										
										
											2022-02-05 12:47:38 +01:00
										 |  |  | 			suite.Less(s.GetID(), highest) | 
					
						
							|  |  |  | 			highest = s.GetID() | 
					
						
							| 
									
										
										
										
											2021-08-15 18:43:08 +02:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// sleep a second so the next query can run | 
					
						
							|  |  |  | 	time.Sleep(1 * time.Second) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (suite *GetTestSuite) TestGetXFromTop() { | 
					
						
							|  |  |  | 	// get 5 from the top | 
					
						
							| 
									
										
										
										
											2021-08-25 15:34:33 +02:00
										 |  |  | 	statuses, err := suite.timeline.GetXFromTop(context.Background(), 5) | 
					
						
							| 
									
										
										
										
											2021-08-15 18:43:08 +02:00
										 |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		suite.FailNow(err.Error()) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	suite.Len(statuses, 5) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// statuses should be sorted highest to lowest ID | 
					
						
							|  |  |  | 	var highest string | 
					
						
							|  |  |  | 	for i, s := range statuses { | 
					
						
							|  |  |  | 		if i == 0 { | 
					
						
							| 
									
										
										
										
											2022-02-05 12:47:38 +01:00
										 |  |  | 			highest = s.GetID() | 
					
						
							| 
									
										
										
										
											2021-08-15 18:43:08 +02:00
										 |  |  | 		} else { | 
					
						
							| 
									
										
										
										
											2022-02-05 12:47:38 +01:00
										 |  |  | 			suite.Less(s.GetID(), highest) | 
					
						
							|  |  |  | 			highest = s.GetID() | 
					
						
							| 
									
										
										
										
											2021-08-15 18:43:08 +02:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (suite *GetTestSuite) TestGetXBehindID() { | 
					
						
							|  |  |  | 	// get 3 behind the 'middle' id | 
					
						
							|  |  |  | 	var attempts *int | 
					
						
							|  |  |  | 	a := 0 | 
					
						
							|  |  |  | 	attempts = &a | 
					
						
							| 
									
										
										
										
											2021-08-25 15:34:33 +02:00
										 |  |  | 	statuses, err := suite.timeline.GetXBehindID(context.Background(), 3, "01F8MHBQCBTDKN6X5VHGMMN4MA", attempts) | 
					
						
							| 
									
										
										
										
											2021-08-15 18:43:08 +02:00
										 |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		suite.FailNow(err.Error()) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	suite.Len(statuses, 3) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// statuses should be sorted highest to lowest ID | 
					
						
							|  |  |  | 	// all status IDs should be less than the behindID | 
					
						
							|  |  |  | 	var highest string | 
					
						
							|  |  |  | 	for i, s := range statuses { | 
					
						
							|  |  |  | 		if i == 0 { | 
					
						
							| 
									
										
										
										
											2022-02-05 12:47:38 +01:00
										 |  |  | 			highest = s.GetID() | 
					
						
							| 
									
										
										
										
											2021-08-15 18:43:08 +02:00
										 |  |  | 		} else { | 
					
						
							| 
									
										
										
										
											2022-02-05 12:47:38 +01:00
										 |  |  | 			suite.Less(s.GetID(), highest) | 
					
						
							|  |  |  | 			highest = s.GetID() | 
					
						
							| 
									
										
										
										
											2021-08-15 18:43:08 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2022-02-05 12:47:38 +01:00
										 |  |  | 		suite.Less(s.GetID(), "01F8MHBQCBTDKN6X5VHGMMN4MA") | 
					
						
							| 
									
										
										
										
											2021-08-15 18:43:08 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (suite *GetTestSuite) TestGetXBehindID0() { | 
					
						
							|  |  |  | 	// try to get behind 0, the lowest possible ID | 
					
						
							|  |  |  | 	var attempts *int | 
					
						
							|  |  |  | 	a := 0 | 
					
						
							|  |  |  | 	attempts = &a | 
					
						
							| 
									
										
										
										
											2021-08-25 15:34:33 +02:00
										 |  |  | 	statuses, err := suite.timeline.GetXBehindID(context.Background(), 3, "0", attempts) | 
					
						
							| 
									
										
										
										
											2021-08-15 18:43:08 +02:00
										 |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		suite.FailNow(err.Error()) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// there's nothing beyond it so len should be 0 | 
					
						
							|  |  |  | 	suite.Len(statuses, 0) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (suite *GetTestSuite) TestGetXBehindNonexistentReasonableID() { | 
					
						
							|  |  |  | 	// try to get behind an id that doesn't exist, but is close to one that does so we should still get statuses back | 
					
						
							|  |  |  | 	var attempts *int | 
					
						
							|  |  |  | 	a := 0 | 
					
						
							|  |  |  | 	attempts = &a | 
					
						
							| 
									
										
										
										
											2021-08-25 15:34:33 +02:00
										 |  |  | 	statuses, err := suite.timeline.GetXBehindID(context.Background(), 3, "01F8MHBQCBTDKN6X5VHGMMN4MB", attempts) // change the last A to a B | 
					
						
							| 
									
										
										
										
											2021-08-15 18:43:08 +02:00
										 |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		suite.FailNow(err.Error()) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	suite.Len(statuses, 3) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// statuses should be sorted highest to lowest ID | 
					
						
							|  |  |  | 	// all status IDs should be less than the behindID | 
					
						
							|  |  |  | 	var highest string | 
					
						
							|  |  |  | 	for i, s := range statuses { | 
					
						
							|  |  |  | 		if i == 0 { | 
					
						
							| 
									
										
										
										
											2022-02-05 12:47:38 +01:00
										 |  |  | 			highest = s.GetID() | 
					
						
							| 
									
										
										
										
											2021-08-15 18:43:08 +02:00
										 |  |  | 		} else { | 
					
						
							| 
									
										
										
										
											2022-02-05 12:47:38 +01:00
										 |  |  | 			suite.Less(s.GetID(), highest) | 
					
						
							|  |  |  | 			highest = s.GetID() | 
					
						
							| 
									
										
										
										
											2021-08-15 18:43:08 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2022-02-05 12:47:38 +01:00
										 |  |  | 		suite.Less(s.GetID(), "01F8MHBCN8120SYH7D5S050MGK") | 
					
						
							| 
									
										
										
										
											2021-08-15 18:43:08 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (suite *GetTestSuite) TestGetXBehindVeryHighID() { | 
					
						
							|  |  |  | 	// try to get behind an id that doesn't exist, and is higher than any other ID we could possibly have | 
					
						
							|  |  |  | 	var attempts *int | 
					
						
							|  |  |  | 	a := 0 | 
					
						
							|  |  |  | 	attempts = &a | 
					
						
							| 
									
										
										
										
											2021-08-25 15:34:33 +02:00
										 |  |  | 	statuses, err := suite.timeline.GetXBehindID(context.Background(), 7, "9998MHBQCBTDKN6X5VHGMMN4MA", attempts) | 
					
						
							| 
									
										
										
										
											2021-08-15 18:43:08 +02:00
										 |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		suite.FailNow(err.Error()) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// we should get all 7 statuses we asked for because they all have lower IDs than the very high ID given in the query | 
					
						
							|  |  |  | 	suite.Len(statuses, 7) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// statuses should be sorted highest to lowest ID | 
					
						
							|  |  |  | 	// all status IDs should be less than the behindID | 
					
						
							|  |  |  | 	var highest string | 
					
						
							|  |  |  | 	for i, s := range statuses { | 
					
						
							|  |  |  | 		if i == 0 { | 
					
						
							| 
									
										
										
										
											2022-02-05 12:47:38 +01:00
										 |  |  | 			highest = s.GetID() | 
					
						
							| 
									
										
										
										
											2021-08-15 18:43:08 +02:00
										 |  |  | 		} else { | 
					
						
							| 
									
										
										
										
											2022-02-05 12:47:38 +01:00
										 |  |  | 			suite.Less(s.GetID(), highest) | 
					
						
							|  |  |  | 			highest = s.GetID() | 
					
						
							| 
									
										
										
										
											2021-08-15 18:43:08 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2022-02-05 12:47:38 +01:00
										 |  |  | 		suite.Less(s.GetID(), "9998MHBQCBTDKN6X5VHGMMN4MA") | 
					
						
							| 
									
										
										
										
											2021-08-15 18:43:08 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (suite *GetTestSuite) TestGetXBeforeID() { | 
					
						
							|  |  |  | 	// get 3 before the 'middle' id | 
					
						
							| 
									
										
										
										
											2021-08-25 15:34:33 +02:00
										 |  |  | 	statuses, err := suite.timeline.GetXBeforeID(context.Background(), 3, "01F8MHBQCBTDKN6X5VHGMMN4MA", true) | 
					
						
							| 
									
										
										
										
											2021-08-15 18:43:08 +02:00
										 |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		suite.FailNow(err.Error()) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	suite.Len(statuses, 3) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// statuses should be sorted highest to lowest ID | 
					
						
							|  |  |  | 	// all status IDs should be greater than the beforeID | 
					
						
							|  |  |  | 	var highest string | 
					
						
							|  |  |  | 	for i, s := range statuses { | 
					
						
							|  |  |  | 		if i == 0 { | 
					
						
							| 
									
										
										
										
											2022-02-05 12:47:38 +01:00
										 |  |  | 			highest = s.GetID() | 
					
						
							| 
									
										
										
										
											2021-08-15 18:43:08 +02:00
										 |  |  | 		} else { | 
					
						
							| 
									
										
										
										
											2022-02-05 12:47:38 +01:00
										 |  |  | 			suite.Less(s.GetID(), highest) | 
					
						
							|  |  |  | 			highest = s.GetID() | 
					
						
							| 
									
										
										
										
											2021-08-15 18:43:08 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2022-02-05 12:47:38 +01:00
										 |  |  | 		suite.Greater(s.GetID(), "01F8MHBQCBTDKN6X5VHGMMN4MA") | 
					
						
							| 
									
										
										
										
											2021-08-15 18:43:08 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (suite *GetTestSuite) TestGetXBeforeIDNoStartFromTop() { | 
					
						
							|  |  |  | 	// get 3 before the 'middle' id | 
					
						
							| 
									
										
										
										
											2021-08-25 15:34:33 +02:00
										 |  |  | 	statuses, err := suite.timeline.GetXBeforeID(context.Background(), 3, "01F8MHBQCBTDKN6X5VHGMMN4MA", false) | 
					
						
							| 
									
										
										
										
											2021-08-15 18:43:08 +02:00
										 |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		suite.FailNow(err.Error()) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	suite.Len(statuses, 3) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// statuses should be sorted lowest to highest ID | 
					
						
							|  |  |  | 	// all status IDs should be greater than the beforeID | 
					
						
							|  |  |  | 	var lowest string | 
					
						
							|  |  |  | 	for i, s := range statuses { | 
					
						
							|  |  |  | 		if i == 0 { | 
					
						
							| 
									
										
										
										
											2022-02-05 12:47:38 +01:00
										 |  |  | 			lowest = s.GetID() | 
					
						
							| 
									
										
										
										
											2021-08-15 18:43:08 +02:00
										 |  |  | 		} else { | 
					
						
							| 
									
										
										
										
											2022-02-05 12:47:38 +01:00
										 |  |  | 			suite.Greater(s.GetID(), lowest) | 
					
						
							|  |  |  | 			lowest = s.GetID() | 
					
						
							| 
									
										
										
										
											2021-08-15 18:43:08 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2022-02-05 12:47:38 +01:00
										 |  |  | 		suite.Greater(s.GetID(), "01F8MHBQCBTDKN6X5VHGMMN4MA") | 
					
						
							| 
									
										
										
										
											2021-08-15 18:43:08 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestGetTestSuite(t *testing.T) { | 
					
						
							|  |  |  | 	suite.Run(t, new(GetTestSuite)) | 
					
						
							|  |  |  | } |