2021-09-01 21:12:31 +01:00
|
|
|
/*
|
|
|
|
GoToSocial
|
2021-12-20 17:42:19 +00:00
|
|
|
Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
|
2021-09-01 21:12:31 +01: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-12-07 12:31:39 +00:00
|
|
|
package router_test
|
2021-09-01 21:12:31 +01:00
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2021-12-07 12:31:39 +00:00
|
|
|
"github.com/spf13/viper"
|
2021-09-01 21:12:31 +01:00
|
|
|
"github.com/stretchr/testify/suite"
|
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/config"
|
2021-12-07 12:31:39 +00:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/router"
|
|
|
|
"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() {
|
2021-12-07 12:31:39 +00:00
|
|
|
viper.Set(config.Keys.Protocol, "http")
|
|
|
|
viper.Set(config.Keys.Host, "localhost:8080")
|
2021-09-01 21:12:31 +01:00
|
|
|
|
2021-12-07 12:31:39 +00:00
|
|
|
sessionName, err := router.SessionName()
|
2021-09-01 21:12:31 +01:00
|
|
|
suite.NoError(err)
|
|
|
|
suite.Equal("gotosocial-localhost", sessionName)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (suite *SessionTestSuite) TestDeriveSessionNameLocalhost() {
|
2021-12-07 12:31:39 +00:00
|
|
|
viper.Set(config.Keys.Protocol, "http")
|
|
|
|
viper.Set(config.Keys.Host, "localhost")
|
2021-09-01 21:12:31 +01:00
|
|
|
|
2021-12-07 12:31:39 +00:00
|
|
|
sessionName, err := router.SessionName()
|
2021-09-01 21:12:31 +01:00
|
|
|
suite.NoError(err)
|
|
|
|
suite.Equal("gotosocial-localhost", sessionName)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (suite *SessionTestSuite) TestDeriveSessionNoProtocol() {
|
2021-12-07 12:31:39 +00:00
|
|
|
viper.Set(config.Keys.Protocol, "")
|
|
|
|
viper.Set(config.Keys.Host, "localhost")
|
2021-09-01 21:12:31 +01:00
|
|
|
|
2021-12-07 12:31:39 +00:00
|
|
|
sessionName, err := router.SessionName()
|
2021-09-01 21:12:31 +01:00
|
|
|
suite.EqualError(err, "parse \"://localhost\": missing protocol scheme")
|
|
|
|
suite.Equal("", sessionName)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (suite *SessionTestSuite) TestDeriveSessionNoHost() {
|
2021-12-07 12:31:39 +00:00
|
|
|
viper.Set(config.Keys.Protocol, "https")
|
|
|
|
viper.Set(config.Keys.Host, "")
|
|
|
|
viper.Set(config.Keys.Port, 0)
|
2021-09-01 21:12:31 +01:00
|
|
|
|
2021-12-07 12:31:39 +00:00
|
|
|
sessionName, err := router.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() {
|
2021-12-07 12:31:39 +00:00
|
|
|
viper.Set(config.Keys.Protocol, "https")
|
|
|
|
viper.Set(config.Keys.Host, "example.org")
|
2021-09-01 21:12:31 +01:00
|
|
|
|
2021-12-07 12:31:39 +00:00
|
|
|
sessionName, err := router.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() {
|
|
|
|
viper.Set(config.Keys.Protocol, "https")
|
|
|
|
viper.Set(config.Keys.Host, "fóid.org")
|
|
|
|
|
|
|
|
sessionName, err := router.SessionName()
|
|
|
|
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{})
|
|
|
|
}
|