wifictld-analyzer/web/webserver_test.go

29 lines
371 B
Go

package web
import (
"testing"
"time"
"github.com/stretchr/testify/assert"
)
func TestWebserver(t *testing.T) {
assert := assert.New(t)
srv := New(&Config{
Bind: ":12345",
Webroot: "/tmp",
})
assert.NotNil(srv)
go Start(srv)
time.Sleep(time.Millisecond * 200)
assert.Panics(func() {
Start(srv)
}, "not allowed to listen twice")
srv.Close()
}