2020-09-21 18:24:51 +00:00
|
|
|
package command
|
2020-02-03 11:44:19 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"strings"
|
|
|
|
"testing"
|
|
|
|
|
2023-07-19 13:56:43 +00:00
|
|
|
"github.com/thegeeklab/url-parser/config"
|
2020-02-03 11:44:19 +00:00
|
|
|
"github.com/urfave/cli/v2"
|
2021-12-22 14:20:11 +00:00
|
|
|
"github.com/zenizh/go-capturer"
|
2020-02-03 11:44:19 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type TestPathData struct {
|
2023-07-19 13:56:43 +00:00
|
|
|
config *config.Config
|
|
|
|
expected string
|
2020-02-03 11:44:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestPath(t *testing.T) {
|
|
|
|
urlString := "postgres://user:pass@host.com:5432/path/to?key=value&other=other%20value#some-fragment"
|
|
|
|
|
|
|
|
tables := []TestPathData{
|
2020-02-03 12:45:03 +00:00
|
|
|
{
|
2023-07-19 13:56:43 +00:00
|
|
|
config: &config.Config{URL: urlString, PathIndex: -1},
|
|
|
|
expected: "/path/to",
|
2020-02-03 11:44:19 +00:00
|
|
|
},
|
2020-02-03 12:45:03 +00:00
|
|
|
{
|
2023-07-19 13:56:43 +00:00
|
|
|
config: &config.Config{URL: urlString, PathIndex: 0},
|
|
|
|
expected: "path",
|
2020-02-03 11:44:19 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, table := range tables {
|
|
|
|
app := cli.NewApp()
|
2023-07-19 13:56:43 +00:00
|
|
|
ctx := cli.NewContext(app, nil, nil)
|
2020-02-03 11:44:19 +00:00
|
|
|
|
2023-07-19 13:56:43 +00:00
|
|
|
result := strings.TrimSpace(capturer.CaptureStdout(func() { _ = Path(table.config)(ctx) }))
|
2020-02-03 11:44:19 +00:00
|
|
|
|
|
|
|
if result != table.expected {
|
|
|
|
t.Fatalf("URL path `%v`, should be `%v`", result, table.expected)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|