mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 08:30:25 +08:00 
			
		
		
		
	* Add configuration flag SSH_EXPOSE_ANONYMOUS If this flag (default True) is set to false, the SSH clone URL will only be exposed if the current user is signed in. * Default SSH exposure set to false To match GitHub and for security reasons, SSH URL exposure is disabled by default. In addition to that. minor code changes have been applied. Signed-off-by: Stefan Kalscheuer <stefan@stklcode.de> * Add integration tests * Hide clone button neither HTTP and SSH is enabled Signed-off-by: Stefan Kalscheuer <stefan@stklcode.de>
		
			
				
	
	
		
			77 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			77 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			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 (
 | 
						|
	"fmt"
 | 
						|
	"net/http"
 | 
						|
	"testing"
 | 
						|
 | 
						|
	"code.gitea.io/gitea/modules/setting"
 | 
						|
 | 
						|
	"github.com/stretchr/testify/assert"
 | 
						|
)
 | 
						|
 | 
						|
func TestViewRepo(t *testing.T) {
 | 
						|
	prepareTestEnv(t)
 | 
						|
 | 
						|
	req := NewRequest(t, "GET", "/user2/repo1")
 | 
						|
	MakeRequest(t, req, http.StatusOK)
 | 
						|
 | 
						|
	req = NewRequest(t, "GET", "/user3/repo3")
 | 
						|
	MakeRequest(t, req, http.StatusNotFound)
 | 
						|
 | 
						|
	session := loginUser(t, "user1")
 | 
						|
	session.MakeRequest(t, req, http.StatusNotFound)
 | 
						|
}
 | 
						|
 | 
						|
func TestViewRepo2(t *testing.T) {
 | 
						|
	prepareTestEnv(t)
 | 
						|
 | 
						|
	req := NewRequest(t, "GET", "/user3/repo3")
 | 
						|
	session := loginUser(t, "user2")
 | 
						|
	session.MakeRequest(t, req, http.StatusOK)
 | 
						|
}
 | 
						|
 | 
						|
func TestViewRepo3(t *testing.T) {
 | 
						|
	prepareTestEnv(t)
 | 
						|
 | 
						|
	req := NewRequest(t, "GET", "/user3/repo3")
 | 
						|
	session := loginUser(t, "user3")
 | 
						|
	session.MakeRequest(t, req, http.StatusOK)
 | 
						|
}
 | 
						|
 | 
						|
func TestViewRepo1CloneLinkAnonymous(t *testing.T) {
 | 
						|
	prepareTestEnv(t)
 | 
						|
 | 
						|
	req := NewRequest(t, "GET", "/user2/repo1")
 | 
						|
	resp := MakeRequest(t, req, http.StatusOK)
 | 
						|
 | 
						|
	htmlDoc := NewHTMLParser(t, resp.Body)
 | 
						|
	link, exists := htmlDoc.doc.Find("#repo-clone-https").Attr("data-link")
 | 
						|
	assert.True(t, exists, "The template has changed")
 | 
						|
	assert.Equal(t, setting.AppURL+"user2/repo1.git", link)
 | 
						|
	_, exists = htmlDoc.doc.Find("#repo-clone-ssh").Attr("data-link")
 | 
						|
	assert.False(t, exists)
 | 
						|
}
 | 
						|
 | 
						|
func TestViewRepo1CloneLinkAuthorized(t *testing.T) {
 | 
						|
	prepareTestEnv(t)
 | 
						|
 | 
						|
	session := loginUser(t, "user2")
 | 
						|
 | 
						|
	req := NewRequest(t, "GET", "/user2/repo1")
 | 
						|
	resp := session.MakeRequest(t, req, http.StatusOK)
 | 
						|
 | 
						|
	htmlDoc := NewHTMLParser(t, resp.Body)
 | 
						|
	link, exists := htmlDoc.doc.Find("#repo-clone-https").Attr("data-link")
 | 
						|
	assert.True(t, exists, "The template has changed")
 | 
						|
	assert.Equal(t, setting.AppURL+"user2/repo1.git", link)
 | 
						|
	link, exists = htmlDoc.doc.Find("#repo-clone-ssh").Attr("data-link")
 | 
						|
	assert.True(t, exists, "The template has changed")
 | 
						|
	sshURL := fmt.Sprintf("%s@%s:user2/repo1.git", setting.RunUser, setting.SSH.Domain)
 | 
						|
	assert.Equal(t, sshURL, link)
 | 
						|
}
 |