2016-06-06 11:51:56 +08:00
|
|
|
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 {
|
2016-06-21 01:44:20 +08:00
|
|
|
c := caddy.NewTestController("http", test.input)
|
|
|
|
err := setup(c)
|
2016-06-06 11:51:56 +08:00
|
|
|
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)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|