gtsocial-umbx

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

media_test.go (3651B)


      1 // GoToSocial
      2 // Copyright (C) GoToSocial Authors admin@gotosocial.org
      3 // SPDX-License-Identifier: AGPL-3.0-or-later
      4 //
      5 // This program is free software: you can redistribute it and/or modify
      6 // it under the terms of the GNU Affero General Public License as published by
      7 // the Free Software Foundation, either version 3 of the License, or
      8 // (at your option) any later version.
      9 //
     10 // This program is distributed in the hope that it will be useful,
     11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
     12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     13 // GNU Affero General Public License for more details.
     14 //
     15 // You should have received a copy of the GNU Affero General Public License
     16 // along with this program.  If not, see <http://www.gnu.org/licenses/>.
     17 
     18 package media_test
     19 
     20 import (
     21 	"github.com/stretchr/testify/suite"
     22 	"github.com/superseriousbusiness/gotosocial/internal/db"
     23 	"github.com/superseriousbusiness/gotosocial/internal/gtsmodel"
     24 	"github.com/superseriousbusiness/gotosocial/internal/media"
     25 	mediaprocessing "github.com/superseriousbusiness/gotosocial/internal/processing/media"
     26 	"github.com/superseriousbusiness/gotosocial/internal/state"
     27 	"github.com/superseriousbusiness/gotosocial/internal/storage"
     28 	"github.com/superseriousbusiness/gotosocial/internal/transport"
     29 	"github.com/superseriousbusiness/gotosocial/internal/typeutils"
     30 	"github.com/superseriousbusiness/gotosocial/testrig"
     31 )
     32 
     33 type MediaStandardTestSuite struct {
     34 	// standard suite interfaces
     35 	suite.Suite
     36 	db                  db.DB
     37 	tc                  typeutils.TypeConverter
     38 	storage             *storage.Driver
     39 	state               state.State
     40 	mediaManager        *media.Manager
     41 	transportController transport.Controller
     42 
     43 	// standard suite models
     44 	testTokens            map[string]*gtsmodel.Token
     45 	testClients           map[string]*gtsmodel.Client
     46 	testApplications      map[string]*gtsmodel.Application
     47 	testUsers             map[string]*gtsmodel.User
     48 	testAccounts          map[string]*gtsmodel.Account
     49 	testAttachments       map[string]*gtsmodel.MediaAttachment
     50 	testStatuses          map[string]*gtsmodel.Status
     51 	testRemoteAttachments map[string]testrig.RemoteAttachmentFile
     52 
     53 	// module being tested
     54 	mediaProcessor mediaprocessing.Processor
     55 }
     56 
     57 func (suite *MediaStandardTestSuite) SetupSuite() {
     58 	suite.testTokens = testrig.NewTestTokens()
     59 	suite.testClients = testrig.NewTestClients()
     60 	suite.testApplications = testrig.NewTestApplications()
     61 	suite.testUsers = testrig.NewTestUsers()
     62 	suite.testAccounts = testrig.NewTestAccounts()
     63 	suite.testAttachments = testrig.NewTestAttachments()
     64 	suite.testStatuses = testrig.NewTestStatuses()
     65 	suite.testRemoteAttachments = testrig.NewTestFediAttachments("../../../testrig/media")
     66 }
     67 
     68 func (suite *MediaStandardTestSuite) SetupTest() {
     69 	suite.state.Caches.Init()
     70 
     71 	testrig.InitTestConfig()
     72 	testrig.InitTestLog()
     73 
     74 	suite.db = testrig.NewTestDB(&suite.state)
     75 	suite.state.DB = suite.db
     76 	suite.tc = testrig.NewTestTypeConverter(suite.db)
     77 	suite.storage = testrig.NewInMemoryStorage()
     78 	suite.state.Storage = suite.storage
     79 	suite.mediaManager = testrig.NewTestMediaManager(&suite.state)
     80 	suite.transportController = testrig.NewTestTransportController(&suite.state, testrig.NewMockHTTPClient(nil, "../../../testrig/media"))
     81 	suite.mediaProcessor = mediaprocessing.New(&suite.state, suite.tc, suite.mediaManager, suite.transportController)
     82 	testrig.StandardDBSetup(suite.db, nil)
     83 	testrig.StandardStorageSetup(suite.storage, "../../../testrig/media")
     84 }
     85 
     86 func (suite *MediaStandardTestSuite) TearDownTest() {
     87 	testrig.StandardDBTeardown(suite.db)
     88 	testrig.StandardStorageTeardown(suite.storage)
     89 }