url-parser/command/host_test.go

38 lines
779 B
Go

package command
import (
"strings"
"testing"
"github.com/thegeeklab/url-parser/config"
"github.com/urfave/cli/v2"
"github.com/zenizh/go-capturer"
)
type TestHostnameData struct {
config *config.Config
expected string
}
func TestHost(t *testing.T) {
urlString := "postgres://user:pass@host.com:5432/path/to?key=value&other=other%20value#some-fragment"
tables := []TestHostnameData{
{
config: &config.Config{URL: urlString},
expected: "host.com",
},
}
for _, table := range tables {
app := cli.NewApp()
ctx := cli.NewContext(app, nil, nil)
result := strings.TrimSpace(capturer.CaptureStdout(func() { _ = Host(table.config)(ctx) }))
if result != table.expected {
t.Fatalf("URL host `%v`, should be `%v`", result, table.expected)
}
}
}