pgweb/pkg/connection/connection_string_test.go

167 lines
4.1 KiB
Go
Raw Normal View History

2015-04-30 19:47:07 +03:00
package connection
2014-12-18 06:32:50 +03:00
import (
"fmt"
"os/user"
"testing"
2015-04-30 20:09:29 +03:00
"github.com/sosedoff/pgweb/pkg/command"
2014-12-18 06:32:50 +03:00
"github.com/stretchr/testify/assert"
)
func Test_Invalid_Url(t *testing.T) {
2015-04-30 20:09:29 +03:00
opts := command.Options{}
2014-12-18 06:32:50 +03:00
examples := []string{
"postgre://foobar",
2014-12-18 06:32:50 +03:00
"foobar",
}
for _, val := range examples {
opts.Url = val
2015-04-30 20:09:29 +03:00
str, err := BuildString(opts)
2014-12-18 06:32:50 +03:00
assert.Equal(t, "", str)
assert.Error(t, err)
assert.Equal(t, "Invalid URL. Valid format: postgres://user:password@host:port/db?sslmode=mode", err.Error())
}
}
func Test_Valid_Url(t *testing.T) {
url := "postgres://myhost/database"
2015-04-30 20:09:29 +03:00
str, err := BuildString(command.Options{Url: url})
2014-12-18 06:32:50 +03:00
assert.Equal(t, nil, err)
assert.Equal(t, url, str)
}
func Test_Url_And_Ssl_Flag(t *testing.T) {
2015-04-30 20:09:29 +03:00
str, err := BuildString(command.Options{
2014-12-18 06:32:50 +03:00
Url: "postgres://myhost/database",
Ssl: "disable",
})
assert.Equal(t, nil, err)
assert.Equal(t, "postgres://myhost/database?sslmode=disable", str)
}
func Test_Localhost_Url_And_No_Ssl_Flag(t *testing.T) {
2015-04-30 20:09:29 +03:00
str, err := BuildString(command.Options{
2014-12-18 06:32:50 +03:00
Url: "postgres://localhost/database",
})
assert.Equal(t, nil, err)
assert.Equal(t, "postgres://localhost/database?sslmode=disable", str)
2015-04-30 20:09:29 +03:00
str, err = BuildString(command.Options{
2014-12-18 06:32:50 +03:00
Url: "postgres://127.0.0.1/database",
})
assert.Equal(t, nil, err)
assert.Equal(t, "postgres://127.0.0.1/database?sslmode=disable", str)
}
func Test_Localhost_Url_And_Ssl_Flag(t *testing.T) {
2015-04-30 20:09:29 +03:00
str, err := BuildString(command.Options{
2014-12-18 06:32:50 +03:00
Url: "postgres://localhost/database",
Ssl: "require",
})
assert.Equal(t, nil, err)
assert.Equal(t, "postgres://localhost/database?sslmode=require", str)
2015-04-30 20:09:29 +03:00
str, err = BuildString(command.Options{
2014-12-18 06:32:50 +03:00
Url: "postgres://127.0.0.1/database",
Ssl: "require",
})
assert.Equal(t, nil, err)
assert.Equal(t, "postgres://127.0.0.1/database?sslmode=require", str)
}
func Test_Localhost_Url_And_Ssl_Arg(t *testing.T) {
2015-04-30 20:09:29 +03:00
str, err := BuildString(command.Options{
2014-12-18 06:32:50 +03:00
Url: "postgres://localhost/database?sslmode=require",
})
assert.Equal(t, nil, err)
assert.Equal(t, "postgres://localhost/database?sslmode=require", str)
2015-04-30 20:09:29 +03:00
str, err = BuildString(command.Options{
2014-12-18 06:32:50 +03:00
Url: "postgres://127.0.0.1/database?sslmode=require",
})
assert.Equal(t, nil, err)
assert.Equal(t, "postgres://127.0.0.1/database?sslmode=require", str)
}
func Test_Flag_Args(t *testing.T) {
2015-04-30 20:09:29 +03:00
str, err := BuildString(command.Options{
2014-12-18 06:32:50 +03:00
Host: "host",
Port: 5432,
User: "user",
Pass: "password",
DbName: "db",
})
assert.Equal(t, nil, err)
assert.Equal(t, "postgres://user:password@host:5432/db", str)
}
func Test_Localhost(t *testing.T) {
2015-04-30 20:09:29 +03:00
opts := command.Options{
2014-12-18 06:32:50 +03:00
Host: "localhost",
Port: 5432,
User: "user",
Pass: "password",
DbName: "db",
}
2015-04-30 20:09:29 +03:00
str, err := BuildString(opts)
2014-12-18 06:32:50 +03:00
assert.Equal(t, nil, err)
assert.Equal(t, "postgres://user:password@localhost:5432/db?sslmode=disable", str)
opts.Host = "127.0.0.1"
2015-04-30 20:09:29 +03:00
str, err = BuildString(opts)
2014-12-18 06:32:50 +03:00
assert.Equal(t, nil, err)
assert.Equal(t, "postgres://user:password@127.0.0.1:5432/db?sslmode=disable", str)
}
func Test_Localhost_And_Ssl(t *testing.T) {
2015-04-30 20:09:29 +03:00
opts := command.Options{
2014-12-18 06:32:50 +03:00
Host: "localhost",
Port: 5432,
User: "user",
Pass: "password",
DbName: "db",
Ssl: "require",
}
2015-04-30 20:09:29 +03:00
str, err := BuildString(opts)
2014-12-18 06:32:50 +03:00
assert.Equal(t, nil, err)
assert.Equal(t, "postgres://user:password@localhost:5432/db?sslmode=require", str)
}
func Test_No_User(t *testing.T) {
2015-04-30 20:09:29 +03:00
opts := command.Options{Host: "host", Port: 5432, DbName: "db"}
2014-12-18 06:32:50 +03:00
u, _ := user.Current()
2015-04-30 20:09:29 +03:00
str, err := BuildString(opts)
2014-12-18 06:32:50 +03:00
assert.Equal(t, nil, err)
assert.Equal(t, fmt.Sprintf("postgres://%s@host:5432/db", u.Username), str)
}
func Test_Port(t *testing.T) {
2015-04-30 20:09:29 +03:00
opts := command.Options{Host: "host", User: "user", Port: 5000, DbName: "db"}
str, err := BuildString(opts)
2014-12-18 06:32:50 +03:00
assert.Equal(t, nil, err)
assert.Equal(t, "postgres://user@host:5000/db", str)
}
2014-12-18 06:56:15 +03:00
func Test_Blank(t *testing.T) {
2015-04-30 20:09:29 +03:00
assert.Equal(t, true, IsBlank(command.Options{}))
assert.Equal(t, false, IsBlank(command.Options{Host: "host", User: "user"}))
assert.Equal(t, false, IsBlank(command.Options{Host: "host", User: "user", DbName: "db"}))
assert.Equal(t, false, IsBlank(command.Options{Url: "url"}))
2014-12-18 06:56:15 +03:00
}