2020-09-21 18:24:51 +00:00
|
|
|
package command
|
2020-02-03 11:44:19 +00:00
|
|
|
|
2023-07-19 13:56:43 +00:00
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/thegeeklab/url-parser/config"
|
|
|
|
)
|
2020-02-03 11:44:19 +00:00
|
|
|
|
|
|
|
type TestParseData struct {
|
2023-07-19 13:56:43 +00:00
|
|
|
config *config.Config
|
|
|
|
expected string
|
2020-02-03 11:44:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestParseURL(t *testing.T) {
|
2023-02-08 09:13:55 +00:00
|
|
|
//nolint:goconst
|
2020-02-03 11:44:19 +00:00
|
|
|
urlString := "postgres://user:pass@host.com:5432/path/to?key=value&other=other%20value#some-fragment"
|
|
|
|
|
|
|
|
tables := []TestParseData{
|
2020-02-03 12:45:03 +00:00
|
|
|
{
|
2023-07-19 13:56:43 +00:00
|
|
|
config: &config.Config{URL: urlString},
|
|
|
|
expected: urlString,
|
2020-02-03 11:44:19 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, table := range tables {
|
|
|
|
result := parseURL(urlString)
|
|
|
|
|
|
|
|
if result.String() != table.expected {
|
|
|
|
t.Fatalf("URL `%v`, should be `%v`", result, table.expected)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|