mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-11-04 09:44:21 +00:00 
			
		
		
		
	Add tests for CurrentUsername() (#88)
This commit is contained in:
		
				
					committed by
					
						
						Sandro Santilli
					
				
			
			
				
	
			
			
			
						parent
						
							1cb5b0e2f6
						
					
				
				
					commit
					d318f612a9
				
			@@ -4,9 +4,7 @@
 | 
			
		||||
 | 
			
		||||
package user
 | 
			
		||||
 | 
			
		||||
import (
 | 
			
		||||
	"os"
 | 
			
		||||
)
 | 
			
		||||
import "os"
 | 
			
		||||
 | 
			
		||||
func CurrentUsername() string {
 | 
			
		||||
	curUserName := os.Getenv("USER")
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										22
									
								
								modules/user/user_test.go
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										22
									
								
								modules/user/user_test.go
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,22 @@
 | 
			
		||||
package user
 | 
			
		||||
 | 
			
		||||
import (
 | 
			
		||||
	"os"
 | 
			
		||||
	"testing"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
func TestCurrentUsername(t *testing.T) {
 | 
			
		||||
	os.Setenv("USER", "")
 | 
			
		||||
	os.Setenv("USERNAME", "foobar")
 | 
			
		||||
 | 
			
		||||
	user := CurrentUsername()
 | 
			
		||||
	if user != "foobar" {
 | 
			
		||||
		t.Errorf("expected foobar as user, got: %s", user)
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	os.Setenv("USER", "gitea")
 | 
			
		||||
	user = CurrentUsername()
 | 
			
		||||
	if user != "gitea" {
 | 
			
		||||
		t.Errorf("expected gitea as user, got: %s", user)
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
		Reference in New Issue
	
	Block a user