mirror of
				https://github.com/caddyserver/caddy.git
				synced 2025-10-31 02:27:19 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			32 lines
		
	
	
		
			605 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			605 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package pprof
 | |
| 
 | |
| import (
 | |
| 	"testing"
 | |
| 
 | |
| 	"github.com/mholt/caddy"
 | |
| )
 | |
| 
 | |
| func TestSetup(t *testing.T) {
 | |
| 	tests := []struct {
 | |
| 		input     string
 | |
| 		shouldErr bool
 | |
| 	}{
 | |
| 		{`pprof`, false},
 | |
| 		{`pprof {}`, true},
 | |
| 		{`pprof /foo`, true},
 | |
| 		{`pprof {
 | |
|             a b
 | |
|         }`, true},
 | |
| 		{`pprof
 | |
|           pprof`, true},
 | |
| 	}
 | |
| 	for i, test := range tests {
 | |
| 		err := setup(caddy.NewTestController(test.input))
 | |
| 		if test.shouldErr && err == nil {
 | |
| 			t.Errorf("Test %v: Expected error but found nil", i)
 | |
| 		} else if !test.shouldErr && err != nil {
 | |
| 			t.Errorf("Test %v: Expected no error but found error: %v", i, err)
 | |
| 		}
 | |
| 	}
 | |
| }
 |