url-parser/internal/command/user_test.go

40 lines
774 B
Go
Raw Normal View History

2020-09-21 20:24:51 +02:00
package command
2020-02-03 12:44:19 +01:00
import (
"flag"
"strings"
"testing"
"github.com/urfave/cli/v2"
"github.com/zenizh/go-capturer"
2020-02-03 12:44:19 +01:00
)
type TestUserData struct {
urlString string
expected string
}
func TestUser(t *testing.T) {
urlString := "postgres://user:pass@host.com:5432/path/to?key=value&other=other%20value#some-fragment"
tables := []TestUserData{
2020-02-03 13:45:03 +01:00
{
2020-02-03 12:44:19 +01:00
urlString: urlString,
expected: "user",
},
}
for _, table := range tables {
app := cli.NewApp()
set := flag.NewFlagSet("test", 0)
set.String("url", table.urlString, "test url")
c := cli.NewContext(app, set, nil)
result := strings.TrimSpace(capturer.CaptureStdout(func() { _ = User(c) }))
2020-02-03 12:44:19 +01:00
if result != table.expected {
t.Fatalf("URL user `%v`, should be `%v`", result, table.expected)
}
}
}