mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-11-04 08:21:11 +00:00 
			
		
		
		
	PR #17997 means that urls with terminal '/' are no longer immediately mapped to the url without a terminal slash. However, it has revealed that the NotFound handler appears to have been lost. This PR adds back in a NotFound handler that simply redirects to a path without the terminal slash or runs the NotFound handler. Fix #18060 Signed-off-by: Andrew Thornton <art27@cantab.net>
		
			
				
	
	
		
			26 lines
		
	
	
	
		
			649 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
	
		
			649 B
		
	
	
	
		
			Go
		
	
	
	
	
	
// Copyright 2017 The Gitea Authors. All rights reserved.
 | 
						|
// Use of this source code is governed by a MIT-style
 | 
						|
// license that can be found in the LICENSE file.
 | 
						|
 | 
						|
package integrations
 | 
						|
 | 
						|
import (
 | 
						|
	"net/http"
 | 
						|
	"testing"
 | 
						|
)
 | 
						|
 | 
						|
func TestSignOut(t *testing.T) {
 | 
						|
	defer prepareTestEnv(t)()
 | 
						|
 | 
						|
	session := loginUser(t, "user2")
 | 
						|
 | 
						|
	req := NewRequest(t, "POST", "/user/logout")
 | 
						|
	session.MakeRequest(t, req, http.StatusFound)
 | 
						|
 | 
						|
	// try to view a private repo, should fail
 | 
						|
	req = NewRequest(t, "GET", "/user2/repo2")
 | 
						|
	session.MakeRequest(t, req, http.StatusNotFound)
 | 
						|
 | 
						|
	// invalidate cached cookies for user2, for subsequent tests
 | 
						|
	delete(loginSessionCache, "user2")
 | 
						|
}
 |