URL encode username/password fields

Fixes #188.
This commit is contained in:
Adam Harrison 2018-05-22 11:19:28 +01:00 committed by Will Rouesnel
parent 9eff17a257
commit 3f905289a2
4 changed files with 5 additions and 4 deletions

View File

@ -1086,8 +1086,9 @@ func getDataSource() string {
pass = os.Getenv("DATA_SOURCE_PASS")
}
ui := url.UserPassword(user, pass).String()
uri := os.Getenv("DATA_SOURCE_URI")
dsn = "postgresql://" + user + ":" + pass + "@" + uri
dsn = "postgresql://" + ui + "@" + uri
}
return dsn

View File

@ -105,7 +105,7 @@ func (s *FunctionalSuite) TestEnvironmentSettingWithSecretsFiles(c *C) {
c.Assert(err, IsNil)
defer UnsetEnvironment(c, "DATA_SOURCE_URI")
var expected = "postgresql://custom_username:custom_password@localhost:5432/?sslmode=disable"
var expected = "postgresql://custom_username$&+,%2F%3A;=%3F%40:custom_password$&+,%2F%3A;=%3F%40@localhost:5432/?sslmode=disable"
dsn := getDataSource()
if dsn != expected {

View File

@ -1 +1 @@
custom_username
custom_username$&+,/:;=?@

View File

@ -1 +1 @@
custom_password
custom_password$&+,/:;=?@