mirror of
https://github.com/thegeeklab/url-parser.git
synced 2024-11-05 21:00:53 +00:00
28 lines
511 B
Go
28 lines
511 B
Go
package commands
|
|
|
|
import "testing"
|
|
|
|
type TestParseData struct {
|
|
urlString string
|
|
expected string
|
|
}
|
|
|
|
func TestParseURL(t *testing.T) {
|
|
urlString := "postgres://user:pass@host.com:5432/path/to?key=value&other=other%20value#some-fragment"
|
|
|
|
tables := []TestParseData{
|
|
{
|
|
urlString: urlString,
|
|
expected: urlString,
|
|
},
|
|
}
|
|
|
|
for _, table := range tables {
|
|
result := parseURL(urlString)
|
|
|
|
if result.String() != table.expected {
|
|
t.Fatalf("URL `%v`, should be `%v`", result, table.expected)
|
|
}
|
|
}
|
|
}
|