| 
									
										
										
										
											2021-04-19 19:42:19 +02:00
										 |  |  | /* | 
					
						
							|  |  |  |    GoToSocial | 
					
						
							| 
									
										
										
										
											2021-12-20 18:42:19 +01:00
										 |  |  |    Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org | 
					
						
							| 
									
										
										
										
											2021-04-19 19:42:19 +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/>. | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-08 14:25:55 +02:00
										 |  |  | package fileserver_test | 
					
						
							| 
									
										
										
										
											2021-04-19 19:42:19 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							|  |  |  | 	"context" | 
					
						
							|  |  |  | 	"fmt" | 
					
						
							|  |  |  | 	"io/ioutil" | 
					
						
							|  |  |  | 	"net/http" | 
					
						
							|  |  |  | 	"net/http/httptest" | 
					
						
							|  |  |  | 	"testing" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	"github.com/gin-gonic/gin" | 
					
						
							|  |  |  | 	"github.com/stretchr/testify/suite" | 
					
						
							| 
									
										
										
										
											2021-05-08 14:25:55 +02:00
										 |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/api/client/fileserver" | 
					
						
							| 
									
										
										
										
											2022-05-15 10:16:43 +01:00
										 |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/concurrency" | 
					
						
							| 
									
										
										
										
											2021-04-19 19:42:19 +02:00
										 |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/db" | 
					
						
							| 
									
										
										
										
											2021-10-31 15:46:23 +01:00
										 |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/email" | 
					
						
							| 
									
										
										
										
											2021-05-08 14:25:55 +02:00
										 |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/federation" | 
					
						
							|  |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/gtsmodel" | 
					
						
							| 
									
										
										
										
											2022-07-19 09:47:55 +01:00
										 |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/log" | 
					
						
							| 
									
										
										
										
											2021-04-19 19:42:19 +02:00
										 |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/media" | 
					
						
							| 
									
										
										
										
											2022-04-28 13:23:11 +01:00
										 |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/messages" | 
					
						
							| 
									
										
										
										
											2021-04-19 19:42:19 +02:00
										 |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/oauth" | 
					
						
							| 
									
										
										
										
											2021-05-30 13:12:00 +02:00
										 |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/processing" | 
					
						
							| 
									
										
										
										
											2022-07-03 12:08:30 +02:00
										 |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/storage" | 
					
						
							| 
									
										
										
										
											2021-05-08 14:25:55 +02:00
										 |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/typeutils" | 
					
						
							| 
									
										
										
										
											2021-04-19 19:42:19 +02:00
										 |  |  | 	"github.com/superseriousbusiness/gotosocial/testrig" | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | type ServeFileTestSuite struct { | 
					
						
							|  |  |  | 	// standard suite interfaces | 
					
						
							|  |  |  | 	suite.Suite | 
					
						
							| 
									
										
										
										
											2021-05-08 14:25:55 +02:00
										 |  |  | 	db           db.DB | 
					
						
							| 
									
										
										
										
											2022-07-03 12:08:30 +02:00
										 |  |  | 	storage      storage.Driver | 
					
						
							| 
									
										
										
										
											2021-05-08 14:25:55 +02:00
										 |  |  | 	federator    federation.Federator | 
					
						
							|  |  |  | 	tc           typeutils.TypeConverter | 
					
						
							| 
									
										
										
										
											2021-05-30 13:12:00 +02:00
										 |  |  | 	processor    processing.Processor | 
					
						
							| 
									
										
										
										
											2021-12-28 16:36:00 +01:00
										 |  |  | 	mediaManager media.Manager | 
					
						
							| 
									
										
										
										
											2021-05-08 14:25:55 +02:00
										 |  |  | 	oauthServer  oauth.Server | 
					
						
							| 
									
										
										
										
											2021-10-31 15:46:23 +01:00
										 |  |  | 	emailSender  email.Sender | 
					
						
							| 
									
										
										
										
											2021-04-19 19:42:19 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// standard suite models | 
					
						
							| 
									
										
										
										
											2021-09-01 11:45:01 +02:00
										 |  |  | 	testTokens       map[string]*gtsmodel.Token | 
					
						
							|  |  |  | 	testClients      map[string]*gtsmodel.Client | 
					
						
							| 
									
										
										
										
											2021-04-19 19:42:19 +02:00
										 |  |  | 	testApplications map[string]*gtsmodel.Application | 
					
						
							|  |  |  | 	testUsers        map[string]*gtsmodel.User | 
					
						
							|  |  |  | 	testAccounts     map[string]*gtsmodel.Account | 
					
						
							|  |  |  | 	testAttachments  map[string]*gtsmodel.MediaAttachment | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// item being tested | 
					
						
							|  |  |  | 	fileServer *fileserver.FileServer | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* | 
					
						
							|  |  |  | 	TEST INFRASTRUCTURE | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (suite *ServeFileTestSuite) SetupSuite() { | 
					
						
							|  |  |  | 	// setup standard items | 
					
						
							| 
									
										
										
										
											2021-12-07 13:31:39 +01:00
										 |  |  | 	testrig.InitTestConfig() | 
					
						
							| 
									
										
										
										
											2021-10-11 05:37:33 -07:00
										 |  |  | 	testrig.InitTestLog() | 
					
						
							| 
									
										
										
										
											2022-04-28 13:23:11 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-15 10:16:43 +01:00
										 |  |  | 	fedWorker := concurrency.NewWorkerPool[messages.FromFederator](-1, -1) | 
					
						
							|  |  |  | 	clientWorker := concurrency.NewWorkerPool[messages.FromClientAPI](-1, -1) | 
					
						
							| 
									
										
										
										
											2022-04-28 13:23:11 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-07 13:31:39 +01:00
										 |  |  | 	suite.db = testrig.NewTestDB() | 
					
						
							| 
									
										
										
										
											2022-07-03 12:08:30 +02:00
										 |  |  | 	suite.storage = testrig.NewInMemoryStorage() | 
					
						
							| 
									
										
										
										
											2022-06-11 11:01:34 +02:00
										 |  |  | 	suite.federator = testrig.NewTestFederator(suite.db, testrig.NewTestTransportController(testrig.NewMockHTTPClient(nil, "../../../../testrig/media"), suite.db, fedWorker), suite.storage, suite.mediaManager, fedWorker) | 
					
						
							| 
									
										
										
										
											2021-10-31 15:46:23 +01:00
										 |  |  | 	suite.emailSender = testrig.NewEmailSender("../../../../web/template/", nil) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-28 13:23:11 +01:00
										 |  |  | 	suite.processor = testrig.NewTestProcessor(suite.db, suite.storage, suite.federator, suite.emailSender, testrig.NewTestMediaManager(suite.db, suite.storage), clientWorker, fedWorker) | 
					
						
							| 
									
										
										
										
											2021-05-08 14:25:55 +02:00
										 |  |  | 	suite.tc = testrig.NewTestTypeConverter(suite.db) | 
					
						
							| 
									
										
										
										
											2021-12-28 16:36:00 +01:00
										 |  |  | 	suite.mediaManager = testrig.NewTestMediaManager(suite.db, suite.storage) | 
					
						
							| 
									
										
										
										
											2021-04-19 19:42:19 +02:00
										 |  |  | 	suite.oauthServer = testrig.NewTestOauthServer(suite.db) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// setup module being tested | 
					
						
							| 
									
										
										
										
											2021-12-07 13:31:39 +01:00
										 |  |  | 	suite.fileServer = fileserver.New(suite.processor).(*fileserver.FileServer) | 
					
						
							| 
									
										
										
										
											2021-04-19 19:42:19 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (suite *ServeFileTestSuite) TearDownSuite() { | 
					
						
							|  |  |  | 	if err := suite.db.Stop(context.Background()); err != nil { | 
					
						
							| 
									
										
										
										
											2022-07-19 09:47:55 +01:00
										 |  |  | 		log.Panicf("error closing db connection: %s", err) | 
					
						
							| 
									
										
										
										
											2021-04-19 19:42:19 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (suite *ServeFileTestSuite) SetupTest() { | 
					
						
							| 
									
										
										
										
											2021-08-10 13:32:39 +02:00
										 |  |  | 	testrig.StandardDBSetup(suite.db, nil) | 
					
						
							| 
									
										
										
										
											2021-05-08 14:25:23 +02:00
										 |  |  | 	testrig.StandardStorageSetup(suite.storage, "../../../../testrig/media") | 
					
						
							| 
									
										
										
										
											2021-04-19 19:42:19 +02:00
										 |  |  | 	suite.testTokens = testrig.NewTestTokens() | 
					
						
							|  |  |  | 	suite.testClients = testrig.NewTestClients() | 
					
						
							|  |  |  | 	suite.testApplications = testrig.NewTestApplications() | 
					
						
							|  |  |  | 	suite.testUsers = testrig.NewTestUsers() | 
					
						
							|  |  |  | 	suite.testAccounts = testrig.NewTestAccounts() | 
					
						
							|  |  |  | 	suite.testAttachments = testrig.NewTestAttachments() | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (suite *ServeFileTestSuite) TearDownTest() { | 
					
						
							|  |  |  | 	testrig.StandardDBTeardown(suite.db) | 
					
						
							|  |  |  | 	testrig.StandardStorageTeardown(suite.storage) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* | 
					
						
							|  |  |  | 	ACTUAL TESTS | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (suite *ServeFileTestSuite) TestServeOriginalFileSuccessful() { | 
					
						
							|  |  |  | 	targetAttachment, ok := suite.testAttachments["admin_account_status_1_attachment_1"] | 
					
						
							| 
									
										
										
										
											2022-02-21 11:26:26 +01:00
										 |  |  | 	suite.True(ok) | 
					
						
							|  |  |  | 	suite.NotNil(targetAttachment) | 
					
						
							| 
									
										
										
										
											2021-04-19 19:42:19 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	recorder := httptest.NewRecorder() | 
					
						
							| 
									
										
										
										
											2022-07-12 08:32:20 +01:00
										 |  |  | 	ctx, _ := testrig.CreateGinTestContext(recorder, nil) | 
					
						
							| 
									
										
										
										
											2021-04-19 19:42:19 +02:00
										 |  |  | 	ctx.Request = httptest.NewRequest(http.MethodGet, targetAttachment.URL, nil) | 
					
						
							| 
									
										
										
										
											2021-12-11 17:50:00 +01:00
										 |  |  | 	ctx.Request.Header.Set("accept", "*/*") | 
					
						
							| 
									
										
										
										
											2021-04-19 19:42:19 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// normally the router would populate these params from the path values, | 
					
						
							|  |  |  | 	// but because we're calling the ServeFile function directly, we need to set them manually. | 
					
						
							|  |  |  | 	ctx.Params = gin.Params{ | 
					
						
							|  |  |  | 		gin.Param{ | 
					
						
							|  |  |  | 			Key:   fileserver.AccountIDKey, | 
					
						
							|  |  |  | 			Value: targetAttachment.AccountID, | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 		gin.Param{ | 
					
						
							|  |  |  | 			Key:   fileserver.MediaTypeKey, | 
					
						
							| 
									
										
										
										
											2021-12-20 15:19:53 +01:00
										 |  |  | 			Value: string(media.TypeAttachment), | 
					
						
							| 
									
										
										
										
											2021-04-19 19:42:19 +02:00
										 |  |  | 		}, | 
					
						
							|  |  |  | 		gin.Param{ | 
					
						
							|  |  |  | 			Key:   fileserver.MediaSizeKey, | 
					
						
							| 
									
										
										
										
											2021-12-20 15:19:53 +01:00
										 |  |  | 			Value: string(media.SizeOriginal), | 
					
						
							| 
									
										
										
										
											2021-04-19 19:42:19 +02:00
										 |  |  | 		}, | 
					
						
							|  |  |  | 		gin.Param{ | 
					
						
							|  |  |  | 			Key:   fileserver.FileNameKey, | 
					
						
							|  |  |  | 			Value: fmt.Sprintf("%s.jpeg", targetAttachment.ID), | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// call the function we're testing and check status code | 
					
						
							|  |  |  | 	suite.fileServer.ServeFile(ctx) | 
					
						
							|  |  |  | 	suite.EqualValues(http.StatusOK, recorder.Code) | 
					
						
							| 
									
										
										
										
											2022-02-21 11:26:26 +01:00
										 |  |  | 	suite.EqualValues("image/jpeg", recorder.Header().Get("content-type")) | 
					
						
							| 
									
										
										
										
											2021-04-19 19:42:19 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	b, err := ioutil.ReadAll(recorder.Body) | 
					
						
							| 
									
										
										
										
											2022-02-21 11:26:26 +01:00
										 |  |  | 	suite.NoError(err) | 
					
						
							|  |  |  | 	suite.NotNil(b) | 
					
						
							| 
									
										
										
										
											2021-04-19 19:42:19 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-07-03 12:08:30 +02:00
										 |  |  | 	fileInStorage, err := suite.storage.Get(ctx, targetAttachment.File.Path) | 
					
						
							| 
									
										
										
										
											2022-02-21 11:26:26 +01:00
										 |  |  | 	suite.NoError(err) | 
					
						
							|  |  |  | 	suite.NotNil(fileInStorage) | 
					
						
							|  |  |  | 	suite.Equal(b, fileInStorage) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (suite *ServeFileTestSuite) TestServeSmallFileSuccessful() { | 
					
						
							|  |  |  | 	targetAttachment, ok := suite.testAttachments["admin_account_status_1_attachment_1"] | 
					
						
							|  |  |  | 	suite.True(ok) | 
					
						
							|  |  |  | 	suite.NotNil(targetAttachment) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	recorder := httptest.NewRecorder() | 
					
						
							| 
									
										
										
										
											2022-07-12 08:32:20 +01:00
										 |  |  | 	ctx, _ := testrig.CreateGinTestContext(recorder, nil) | 
					
						
							| 
									
										
										
										
											2022-02-21 11:26:26 +01:00
										 |  |  | 	ctx.Request = httptest.NewRequest(http.MethodGet, targetAttachment.Thumbnail.URL, nil) | 
					
						
							|  |  |  | 	ctx.Request.Header.Set("accept", "*/*") | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// normally the router would populate these params from the path values, | 
					
						
							|  |  |  | 	// but because we're calling the ServeFile function directly, we need to set them manually. | 
					
						
							|  |  |  | 	ctx.Params = gin.Params{ | 
					
						
							|  |  |  | 		gin.Param{ | 
					
						
							|  |  |  | 			Key:   fileserver.AccountIDKey, | 
					
						
							|  |  |  | 			Value: targetAttachment.AccountID, | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 		gin.Param{ | 
					
						
							|  |  |  | 			Key:   fileserver.MediaTypeKey, | 
					
						
							|  |  |  | 			Value: string(media.TypeAttachment), | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 		gin.Param{ | 
					
						
							|  |  |  | 			Key:   fileserver.MediaSizeKey, | 
					
						
							|  |  |  | 			Value: string(media.SizeSmall), | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 		gin.Param{ | 
					
						
							|  |  |  | 			Key:   fileserver.FileNameKey, | 
					
						
							|  |  |  | 			Value: fmt.Sprintf("%s.jpeg", targetAttachment.ID), | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// call the function we're testing and check status code | 
					
						
							|  |  |  | 	suite.fileServer.ServeFile(ctx) | 
					
						
							|  |  |  | 	suite.EqualValues(http.StatusOK, recorder.Code) | 
					
						
							|  |  |  | 	suite.EqualValues("image/jpeg", recorder.Header().Get("content-type")) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	b, err := ioutil.ReadAll(recorder.Body) | 
					
						
							|  |  |  | 	suite.NoError(err) | 
					
						
							|  |  |  | 	suite.NotNil(b) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-07-03 12:08:30 +02:00
										 |  |  | 	fileInStorage, err := suite.storage.Get(ctx, targetAttachment.Thumbnail.Path) | 
					
						
							| 
									
										
										
										
											2022-02-21 11:26:26 +01:00
										 |  |  | 	suite.NoError(err) | 
					
						
							|  |  |  | 	suite.NotNil(fileInStorage) | 
					
						
							|  |  |  | 	suite.Equal(b, fileInStorage) | 
					
						
							| 
									
										
										
										
											2021-04-19 19:42:19 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestServeFileTestSuite(t *testing.T) { | 
					
						
							|  |  |  | 	suite.Run(t, new(ServeFileTestSuite)) | 
					
						
							|  |  |  | } |