aboutsummaryrefslogtreecommitdiff
path: root/plugin/trace/trace_test.go
blob: b006009c344a7eec8b42cbd6a141617ae904fc29 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package trace

import (
	"testing"

	"github.com/mholt/caddy"
)

// createTestTrace creates a trace plugin 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 plugin: %s", err)
		return
	}
	if m.Tracer() == nil {
		t.Errorf("Error, no tracer created")
	}
}