This fix updates the Makefile to add the `go lint` check for the build. This fix also fixes several go lint issues. NOTE: This fix does not enforce `go lint` (suggestion only). This fix also ignores the `go lint` error: ``` middleware/middleware.go:72:1: context.Context should be the first parameter of a function ``` as it requires too many changes in API. Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
33 lines
698 B
Go
33 lines
698 B
Go
package trace
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/mholt/caddy"
|
|
)
|
|
|
|
// createTestTrace creates a trace middleware to be used in tests
|
|
func createTestTrace(config string) (*caddy.Controller, *trace, error) {
|
|
c := caddy.NewTestController("dns", config)
|
|
m, err := traceParse(c)
|
|
return c, m, err
|
|
}
|
|
|
|
func TestTrace(t *testing.T) {
|
|
_, m, err := createTestTrace(`trace`)
|
|
if err != nil {
|
|
t.Errorf("Error parsing test input: %s", err)
|
|
return
|
|
}
|
|
if m.Name() != "trace" {
|
|
t.Errorf("Wrong name from GetName: %s", m.Name())
|
|
}
|
|
err = m.OnStartup()
|
|
if err != nil {
|
|
t.Errorf("Error starting tracing middleware: %s", err)
|
|
return
|
|
}
|
|
if m.Tracer() == nil {
|
|
t.Errorf("Error, no tracer created")
|
|
}
|
|
}
|