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-09-01 21:12:31 +01:00
|
|
|
|
2023-01-02 12:10:50 +00:00
|
|
|
package middleware_test
|
2021-09-01 21:12:31 +01:00
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/suite"
|
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/config"
|
2023-01-02 12:10:50 +00:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/middleware"
|
2021-12-07 12:31:39 +00:00
|
|
|
"github.com/superseriousbusiness/gotosocial/testrig"
|
2021-09-01 21:12:31 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
type SessionTestSuite struct {
|
|
|
|
suite.Suite
|
|
|
|
}
|
|
|
|
|
2021-12-07 12:31:39 +00:00
|
|
|
func (suite *SessionTestSuite) SetupTest() {
|
|
|
|
testrig.InitTestConfig()
|
|
|
|
}
|
|
|
|
|
2021-09-01 21:12:31 +01:00
|
|
|
func (suite *SessionTestSuite) TestDeriveSessionNameLocalhostWithPort() {
|
2022-05-30 13:41:24 +01:00
|
|
|
config.SetProtocol("http")
|
|
|
|
config.SetHost("localhost:8080")
|
2021-09-01 21:12:31 +01:00
|
|
|
|
2023-01-02 12:10:50 +00:00
|
|
|
sessionName, err := middleware.SessionName()
|
2021-09-01 21:12:31 +01:00
|
|
|
suite.NoError(err)
|
|
|
|
suite.Equal("gotosocial-localhost", sessionName)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (suite *SessionTestSuite) TestDeriveSessionNameLocalhost() {
|
2022-05-30 13:41:24 +01:00
|
|
|
config.SetProtocol("http")
|
|
|
|
config.SetHost("localhost")
|
2021-09-01 21:12:31 +01:00
|
|
|
|
2023-01-02 12:10:50 +00:00
|
|
|
sessionName, err := middleware.SessionName()
|
2021-09-01 21:12:31 +01:00
|
|
|
suite.NoError(err)
|
|
|
|
suite.Equal("gotosocial-localhost", sessionName)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (suite *SessionTestSuite) TestDeriveSessionNoProtocol() {
|
2022-05-30 13:41:24 +01:00
|
|
|
config.SetProtocol("")
|
|
|
|
config.SetHost("localhost")
|
2021-09-01 21:12:31 +01:00
|
|
|
|
2023-01-02 12:10:50 +00:00
|
|
|
sessionName, err := middleware.SessionName()
|
2021-09-01 21:12:31 +01:00
|
|
|
suite.EqualError(err, "parse \"://localhost\": missing protocol scheme")
|
|
|
|
suite.Equal("", sessionName)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (suite *SessionTestSuite) TestDeriveSessionNoHost() {
|
2022-05-30 13:41:24 +01:00
|
|
|
config.SetProtocol("https")
|
|
|
|
config.SetHost("")
|
|
|
|
config.SetPort(0)
|
2021-09-01 21:12:31 +01:00
|
|
|
|
2023-01-02 12:10:50 +00:00
|
|
|
sessionName, err := middleware.SessionName()
|
2021-09-01 21:12:31 +01:00
|
|
|
suite.EqualError(err, "could not derive hostname without port from https://")
|
|
|
|
suite.Equal("", sessionName)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (suite *SessionTestSuite) TestDeriveSessionOK() {
|
2022-05-30 13:41:24 +01:00
|
|
|
config.SetProtocol("https")
|
|
|
|
config.SetHost("example.org")
|
2021-09-01 21:12:31 +01:00
|
|
|
|
2023-01-02 12:10:50 +00:00
|
|
|
sessionName, err := middleware.SessionName()
|
2021-09-01 21:12:31 +01:00
|
|
|
suite.NoError(err)
|
|
|
|
suite.Equal("gotosocial-example.org", sessionName)
|
|
|
|
}
|
|
|
|
|
2022-04-16 12:09:42 +01:00
|
|
|
func (suite *SessionTestSuite) TestDeriveSessionIDNOK() {
|
2022-05-30 13:41:24 +01:00
|
|
|
config.SetProtocol("https")
|
|
|
|
config.SetHost("fóid.org")
|
2022-04-16 12:09:42 +01:00
|
|
|
|
2023-01-02 12:10:50 +00:00
|
|
|
sessionName, err := middleware.SessionName()
|
2022-04-16 12:09:42 +01:00
|
|
|
suite.NoError(err)
|
|
|
|
suite.Equal("gotosocial-xn--fid-gna.org", sessionName)
|
|
|
|
}
|
|
|
|
|
2021-09-01 21:12:31 +01:00
|
|
|
func TestSessionTestSuite(t *testing.T) {
|
|
|
|
suite.Run(t, &SessionTestSuite{})
|
|
|
|
}
|