| 
									
										
										
										
											2021-04-01 20:46:45 +02:00
										 |  |  | /* | 
					
						
							|  |  |  |    GoToSocial | 
					
						
							|  |  |  |    Copyright (C) 2021 GoToSocial Authors admin@gotosocial.org | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    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 media | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							|  |  |  | 	"io/ioutil" | 
					
						
							|  |  |  | 	"testing" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	"github.com/sirupsen/logrus" | 
					
						
							|  |  |  | 	"github.com/stretchr/testify/suite" | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | type MediaUtilTestSuite struct { | 
					
						
							|  |  |  | 	suite.Suite | 
					
						
							|  |  |  | 	log *logrus.Logger | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* | 
					
						
							|  |  |  | 	TEST INFRASTRUCTURE | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // SetupSuite sets some variables on the suite that we can use as consts (more or less) throughout | 
					
						
							|  |  |  | func (suite *MediaUtilTestSuite) SetupSuite() { | 
					
						
							|  |  |  | 	// some of our subsequent entities need a log so create this here | 
					
						
							|  |  |  | 	log := logrus.New() | 
					
						
							|  |  |  | 	log.SetLevel(logrus.TraceLevel) | 
					
						
							|  |  |  | 	suite.log = log | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (suite *MediaUtilTestSuite) TearDownSuite() { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // SetupTest creates a db connection and creates necessary tables before each test | 
					
						
							|  |  |  | func (suite *MediaUtilTestSuite) SetupTest() { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // TearDownTest drops tables to make sure there's no data in the db | 
					
						
							|  |  |  | func (suite *MediaUtilTestSuite) TearDownTest() { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* | 
					
						
							|  |  |  | 	ACTUAL TESTS | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (suite *MediaUtilTestSuite) TestParseContentTypeOK() { | 
					
						
							|  |  |  | 	f, err := ioutil.ReadFile("./test/test-jpeg.jpg") | 
					
						
							| 
									
										
										
										
											2021-09-23 11:13:11 +02:00
										 |  |  | 	suite.NoError(err) | 
					
						
							| 
									
										
										
										
											2021-04-01 20:46:45 +02:00
										 |  |  | 	ct, err := parseContentType(f) | 
					
						
							| 
									
										
										
										
											2021-09-23 11:13:11 +02:00
										 |  |  | 	suite.NoError(err) | 
					
						
							|  |  |  | 	suite.Equal("image/jpeg", ct) | 
					
						
							| 
									
										
										
										
											2021-04-01 20:46:45 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (suite *MediaUtilTestSuite) TestParseContentTypeNotOK() { | 
					
						
							|  |  |  | 	f, err := ioutil.ReadFile("./test/test-corrupted.jpg") | 
					
						
							| 
									
										
										
										
											2021-09-23 11:13:11 +02:00
										 |  |  | 	suite.NoError(err) | 
					
						
							| 
									
										
										
										
											2021-04-01 20:46:45 +02:00
										 |  |  | 	ct, err := parseContentType(f) | 
					
						
							| 
									
										
										
										
											2021-09-23 11:13:11 +02:00
										 |  |  | 	suite.NotNil(err) | 
					
						
							|  |  |  | 	suite.Equal("", ct) | 
					
						
							|  |  |  | 	suite.Equal("filetype unknown", err.Error()) | 
					
						
							| 
									
										
										
										
											2021-04-01 20:46:45 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (suite *MediaUtilTestSuite) TestRemoveEXIF() { | 
					
						
							|  |  |  | 	// load and validate image | 
					
						
							|  |  |  | 	b, err := ioutil.ReadFile("./test/test-with-exif.jpg") | 
					
						
							| 
									
										
										
										
											2021-09-23 11:13:11 +02:00
										 |  |  | 	suite.NoError(err) | 
					
						
							| 
									
										
										
										
											2021-04-01 20:46:45 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// clean it up and validate the clean version | 
					
						
							|  |  |  | 	clean, err := purgeExif(b) | 
					
						
							| 
									
										
										
										
											2021-09-23 11:13:11 +02:00
										 |  |  | 	suite.NoError(err) | 
					
						
							| 
									
										
										
										
											2021-04-01 20:46:45 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// compare it to our stored sample | 
					
						
							|  |  |  | 	sampleBytes, err := ioutil.ReadFile("./test/test-without-exif.jpg") | 
					
						
							| 
									
										
										
										
											2021-09-23 11:13:11 +02:00
										 |  |  | 	suite.NoError(err) | 
					
						
							|  |  |  | 	suite.EqualValues(sampleBytes, clean) | 
					
						
							| 
									
										
										
										
											2021-04-01 20:46:45 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (suite *MediaUtilTestSuite) TestDeriveImageFromJPEG() { | 
					
						
							|  |  |  | 	// load image | 
					
						
							|  |  |  | 	b, err := ioutil.ReadFile("./test/test-jpeg.jpg") | 
					
						
							| 
									
										
										
										
											2021-09-23 11:13:11 +02:00
										 |  |  | 	suite.NoError(err) | 
					
						
							| 
									
										
										
										
											2021-04-01 20:46:45 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// clean it up and validate the clean version | 
					
						
							|  |  |  | 	imageAndMeta, err := deriveImage(b, "image/jpeg") | 
					
						
							| 
									
										
										
										
											2021-09-23 11:13:11 +02:00
										 |  |  | 	suite.NoError(err) | 
					
						
							| 
									
										
										
										
											2021-04-01 20:46:45 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-23 11:13:11 +02:00
										 |  |  | 	suite.Equal(1920, imageAndMeta.width) | 
					
						
							|  |  |  | 	suite.Equal(1080, imageAndMeta.height) | 
					
						
							|  |  |  | 	suite.Equal(1.7777777777777777, imageAndMeta.aspect) | 
					
						
							|  |  |  | 	suite.Equal(2073600, imageAndMeta.size) | 
					
						
							| 
									
										
										
										
											2021-04-01 20:46:45 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// assert that the final image is what we would expect | 
					
						
							|  |  |  | 	sampleBytes, err := ioutil.ReadFile("./test/test-jpeg-processed.jpg") | 
					
						
							| 
									
										
										
										
											2021-09-23 11:13:11 +02:00
										 |  |  | 	suite.NoError(err) | 
					
						
							|  |  |  | 	suite.EqualValues(sampleBytes, imageAndMeta.image) | 
					
						
							| 
									
										
										
										
											2021-04-01 20:46:45 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (suite *MediaUtilTestSuite) TestDeriveThumbnailFromJPEG() { | 
					
						
							|  |  |  | 	// load image | 
					
						
							|  |  |  | 	b, err := ioutil.ReadFile("./test/test-jpeg.jpg") | 
					
						
							| 
									
										
										
										
											2021-09-23 11:13:11 +02:00
										 |  |  | 	suite.NoError(err) | 
					
						
							| 
									
										
										
										
											2021-04-01 20:46:45 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// clean it up and validate the clean version | 
					
						
							| 
									
										
										
										
											2021-09-23 11:13:11 +02:00
										 |  |  | 	imageAndMeta, err := deriveThumbnail(b, "image/jpeg", 512, 512) | 
					
						
							|  |  |  | 	suite.NoError(err) | 
					
						
							| 
									
										
										
										
											2021-04-01 20:46:45 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-23 11:13:11 +02:00
										 |  |  | 	suite.Equal(512, imageAndMeta.width) | 
					
						
							|  |  |  | 	suite.Equal(288, imageAndMeta.height) | 
					
						
							|  |  |  | 	suite.Equal(1.7777777777777777, imageAndMeta.aspect) | 
					
						
							|  |  |  | 	suite.Equal(147456, imageAndMeta.size) | 
					
						
							|  |  |  | 	suite.Equal("LjBzUo#6RQR._NvzRjWF?urqV@a$", imageAndMeta.blurhash) | 
					
						
							| 
									
										
										
										
											2021-04-01 20:46:45 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	sampleBytes, err := ioutil.ReadFile("./test/test-jpeg-thumbnail.jpg") | 
					
						
							| 
									
										
										
										
											2021-09-23 11:13:11 +02:00
										 |  |  | 	suite.NoError(err) | 
					
						
							|  |  |  | 	suite.EqualValues(sampleBytes, imageAndMeta.image) | 
					
						
							| 
									
										
										
										
											2021-04-01 20:46:45 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (suite *MediaUtilTestSuite) TestSupportedImageTypes() { | 
					
						
							| 
									
										
										
										
											2021-05-08 14:25:55 +02:00
										 |  |  | 	ok := SupportedImageType("image/jpeg") | 
					
						
							| 
									
										
										
										
											2021-09-23 11:13:11 +02:00
										 |  |  | 	suite.True(ok) | 
					
						
							| 
									
										
										
										
											2021-04-01 20:46:45 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-08 14:25:55 +02:00
										 |  |  | 	ok = SupportedImageType("image/bmp") | 
					
						
							| 
									
										
										
										
											2021-09-23 11:13:11 +02:00
										 |  |  | 	suite.False(ok) | 
					
						
							| 
									
										
										
										
											2021-04-01 20:46:45 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func TestMediaUtilTestSuite(t *testing.T) { | 
					
						
							|  |  |  | 	suite.Run(t, new(MediaUtilTestSuite)) | 
					
						
							|  |  |  | } |