add unit test, fix interceptor bug
parent
e7d46aa6e2
commit
33a9db85c8
@ -0,0 +1,31 @@
|
|||||||
|
package mapping
|
||||||
|
|
||||||
|
import (
|
||||||
|
"reflect"
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
"github.com/stretchr/testify/assert"
|
||||||
|
)
|
||||||
|
|
||||||
|
type Bar struct {
|
||||||
|
Val string `json:"val"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestFieldOptionOptionalDep(t *testing.T) {
|
||||||
|
var bar Bar
|
||||||
|
rt := reflect.TypeOf(bar)
|
||||||
|
for i := 0; i < rt.NumField(); i++ {
|
||||||
|
field := rt.Field(i)
|
||||||
|
val, opt, err := parseKeyAndOptions(jsonTagKey, field)
|
||||||
|
assert.Equal(t, "val", val)
|
||||||
|
assert.Nil(t, opt)
|
||||||
|
assert.Nil(t, err)
|
||||||
|
}
|
||||||
|
|
||||||
|
// check nil working
|
||||||
|
var o *fieldOptions
|
||||||
|
check := func(o *fieldOptions) {
|
||||||
|
assert.Equal(t, 0, len(o.optionalDep()))
|
||||||
|
}
|
||||||
|
check(o)
|
||||||
|
}
|
@ -0,0 +1,16 @@
|
|||||||
|
package proc
|
||||||
|
|
||||||
|
import (
|
||||||
|
"log"
|
||||||
|
"strings"
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
"github.com/stretchr/testify/assert"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestDumpGoroutines(t *testing.T) {
|
||||||
|
var buf strings.Builder
|
||||||
|
log.SetOutput(&buf)
|
||||||
|
dumpGoroutines()
|
||||||
|
assert.True(t, strings.Contains(buf.String(), ".dump"))
|
||||||
|
}
|
@ -0,0 +1,21 @@
|
|||||||
|
package proc
|
||||||
|
|
||||||
|
import (
|
||||||
|
"log"
|
||||||
|
"strings"
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
"github.com/stretchr/testify/assert"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestProfile(t *testing.T) {
|
||||||
|
var buf strings.Builder
|
||||||
|
log.SetOutput(&buf)
|
||||||
|
profiler := StartProfile()
|
||||||
|
// start again should not work
|
||||||
|
assert.NotNil(t, StartProfile())
|
||||||
|
profiler.Stop()
|
||||||
|
// stop twice
|
||||||
|
profiler.Stop()
|
||||||
|
assert.True(t, strings.Contains(buf.String(), ".pprof"))
|
||||||
|
}
|
Loading…
Reference in New Issue