| 
									
										
										
										
											2021-09-01 22:12:31 +02:00
										 |  |  | /* | 
					
						
							|  |  |  |    GoToSocial | 
					
						
							| 
									
										
										
										
											2023-01-05 12:43:00 +01:00
										 |  |  |    Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org | 
					
						
							| 
									
										
										
										
											2021-09-01 22:12:31 +02: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/>. | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-02 13:10:50 +01:00
										 |  |  | package middleware_test | 
					
						
							| 
									
										
										
										
											2021-09-01 22:12:31 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							|  |  |  | 	"testing" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	"github.com/stretchr/testify/suite" | 
					
						
							|  |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/config" | 
					
						
							| 
									
										
										
										
											2023-01-02 13:10:50 +01:00
										 |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/middleware" | 
					
						
							| 
									
										
										
										
											2021-12-07 13:31:39 +01:00
										 |  |  | 	"github.com/superseriousbusiness/gotosocial/testrig" | 
					
						
							| 
									
										
										
										
											2021-09-01 22:12:31 +02:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | type SessionTestSuite struct { | 
					
						
							|  |  |  | 	suite.Suite | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-07 13:31:39 +01:00
										 |  |  | func (suite *SessionTestSuite) SetupTest() { | 
					
						
							|  |  |  | 	testrig.InitTestConfig() | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-01 22:12:31 +02:00
										 |  |  | func (suite *SessionTestSuite) TestDeriveSessionNameLocalhostWithPort() { | 
					
						
							| 
									
										
										
										
											2022-05-30 13:41:24 +01:00
										 |  |  | 	config.SetProtocol("http") | 
					
						
							|  |  |  | 	config.SetHost("localhost:8080") | 
					
						
							| 
									
										
										
										
											2021-09-01 22:12:31 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-02 13:10:50 +01:00
										 |  |  | 	sessionName, err := middleware.SessionName() | 
					
						
							| 
									
										
										
										
											2021-09-01 22:12:31 +02: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 22:12:31 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-02 13:10:50 +01:00
										 |  |  | 	sessionName, err := middleware.SessionName() | 
					
						
							| 
									
										
										
										
											2021-09-01 22:12:31 +02: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 22:12:31 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-02 13:10:50 +01:00
										 |  |  | 	sessionName, err := middleware.SessionName() | 
					
						
							| 
									
										
										
										
											2021-09-01 22:12:31 +02: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 22:12:31 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-02 13:10:50 +01:00
										 |  |  | 	sessionName, err := middleware.SessionName() | 
					
						
							| 
									
										
										
										
											2021-09-01 22:12:31 +02: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 22:12:31 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-02 13:10:50 +01:00
										 |  |  | 	sessionName, err := middleware.SessionName() | 
					
						
							| 
									
										
										
										
											2021-09-01 22:12:31 +02:00
										 |  |  | 	suite.NoError(err) | 
					
						
							|  |  |  | 	suite.Equal("gotosocial-example.org", sessionName) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-16 13:09:42 +02:00
										 |  |  | func (suite *SessionTestSuite) TestDeriveSessionIDNOK() { | 
					
						
							| 
									
										
										
										
											2022-05-30 13:41:24 +01:00
										 |  |  | 	config.SetProtocol("https") | 
					
						
							|  |  |  | 	config.SetHost("fóid.org") | 
					
						
							| 
									
										
										
										
											2022-04-16 13:09:42 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-02 13:10:50 +01:00
										 |  |  | 	sessionName, err := middleware.SessionName() | 
					
						
							| 
									
										
										
										
											2022-04-16 13:09:42 +02:00
										 |  |  | 	suite.NoError(err) | 
					
						
							|  |  |  | 	suite.Equal("gotosocial-xn--fid-gna.org", sessionName) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-01 22:12:31 +02:00
										 |  |  | func TestSessionTestSuite(t *testing.T) { | 
					
						
							|  |  |  | 	suite.Run(t, &SessionTestSuite{}) | 
					
						
							|  |  |  | } |