You've already forked prometheus-fail2ban-exporter
							
							
		
			All checks were successful
		
		
	
	continuous-integration/drone/push Build is passing
				
			
		
			
				
	
	
		
			37 lines
		
	
	
		
			820 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			820 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package auth
 | |
| 
 | |
| import (
 | |
| 	"net/http"
 | |
| 	"net/http/httptest"
 | |
| 	"testing"
 | |
| )
 | |
| 
 | |
| func Test_GIVEN_EmptyAuth_WHEN_CallingIsAllowedWithoutAuth_THEN_TrueReturned(t *testing.T) {
 | |
| 	// assemble
 | |
| 	request := httptest.NewRequest(http.MethodGet, "http://example.com", nil)
 | |
| 	provider := NewEmptyAuthProvider()
 | |
| 
 | |
| 	// act
 | |
| 	response := provider.IsAllowed(request)
 | |
| 
 | |
| 	// assert
 | |
| 	if !response {
 | |
| 		t.Errorf("expected request to be allowed, but failed")
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func Test_GIVEN_EmptyAuth_WHEN_CallingIsAllowedWithAuth_THEN_TrueReturned(t *testing.T) {
 | |
| 	// assemble
 | |
| 	request := httptest.NewRequest(http.MethodGet, "http://example.com", nil)
 | |
| 	request.SetBasicAuth("user", "pass")
 | |
| 	provider := NewEmptyAuthProvider()
 | |
| 
 | |
| 	// act
 | |
| 	response := provider.IsAllowed(request)
 | |
| 
 | |
| 	// assert
 | |
| 	if !response {
 | |
| 		t.Errorf("expected request to be allowed, but failed")
 | |
| 	}
 | |
| }
 |