2023-03-12 15:00:57 +00: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-10-04 14:24:19 +01:00
|
|
|
|
2023-02-22 15:05:26 +00:00
|
|
|
package stream_test
|
2021-10-04 14:24:19 +01:00
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/stretchr/testify/suite"
|
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/db"
|
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/gtsmodel"
|
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/oauth"
|
2023-02-22 15:05:26 +00:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/processing/stream"
|
2023-03-01 18:26:53 +00:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/state"
|
2021-10-04 14:24:19 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/testrig"
|
|
|
|
)
|
|
|
|
|
2023-02-22 15:05:26 +00:00
|
|
|
type StreamTestSuite struct {
|
2021-10-04 14:24:19 +01:00
|
|
|
suite.Suite
|
|
|
|
testAccounts map[string]*gtsmodel.Account
|
|
|
|
testTokens map[string]*gtsmodel.Token
|
|
|
|
db db.DB
|
|
|
|
oauthServer oauth.Server
|
2023-03-01 18:26:53 +00:00
|
|
|
state state.State
|
2021-10-04 14:24:19 +01:00
|
|
|
|
2023-02-22 15:05:26 +00:00
|
|
|
streamProcessor stream.Processor
|
2021-10-04 14:24:19 +01:00
|
|
|
}
|
|
|
|
|
2023-02-22 15:05:26 +00:00
|
|
|
func (suite *StreamTestSuite) SetupTest() {
|
2023-03-01 18:26:53 +00:00
|
|
|
suite.state.Caches.Init()
|
|
|
|
|
2021-12-07 12:31:39 +00:00
|
|
|
testrig.InitTestLog()
|
|
|
|
testrig.InitTestConfig()
|
|
|
|
|
2021-10-04 14:24:19 +01:00
|
|
|
suite.testAccounts = testrig.NewTestAccounts()
|
|
|
|
suite.testTokens = testrig.NewTestTokens()
|
2023-03-01 18:26:53 +00:00
|
|
|
suite.db = testrig.NewTestDB(&suite.state)
|
|
|
|
suite.state.DB = suite.db
|
2021-10-04 14:24:19 +01:00
|
|
|
suite.oauthServer = testrig.NewTestOauthServer(suite.db)
|
2023-03-01 18:26:53 +00:00
|
|
|
suite.streamProcessor = stream.New(&suite.state, suite.oauthServer)
|
2021-10-04 14:24:19 +01:00
|
|
|
|
|
|
|
testrig.StandardDBSetup(suite.db, suite.testAccounts)
|
|
|
|
}
|
|
|
|
|
2023-02-22 15:05:26 +00:00
|
|
|
func (suite *StreamTestSuite) TearDownTest() {
|
2021-10-04 14:24:19 +01:00
|
|
|
testrig.StandardDBTeardown(suite.db)
|
|
|
|
}
|