2016-08-12 15:26:50 +05:30
|
|
|
// Copyright 2016 The Gogs Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package models
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2017-02-08 11:59:07 +05:30
|
|
|
"github.com/stretchr/testify/assert"
|
2016-08-12 15:26:50 +05:30
|
|
|
)
|
|
|
|
|
|
|
|
func Test_parsePostgreSQLHostPort(t *testing.T) {
|
2017-02-14 07:42:03 +05:30
|
|
|
test := func(input, expectedHost, expectedPort string) {
|
2017-02-08 11:59:07 +05:30
|
|
|
host, port := parsePostgreSQLHostPort(input)
|
|
|
|
assert.Equal(t, expectedHost, host)
|
|
|
|
assert.Equal(t, expectedPort, port)
|
2016-08-12 15:26:50 +05:30
|
|
|
}
|
2017-02-08 11:59:07 +05:30
|
|
|
test("127.0.0.1:1234", "127.0.0.1", "1234")
|
|
|
|
test("127.0.0.1", "127.0.0.1", "5432")
|
|
|
|
test("[::1]:1234", "[::1]", "1234")
|
|
|
|
test("[::1]", "[::1]", "5432")
|
|
|
|
test("/tmp/pg.sock:1234", "/tmp/pg.sock", "1234")
|
|
|
|
test("/tmp/pg.sock", "/tmp/pg.sock", "5432")
|
2016-08-12 15:26:50 +05:30
|
|
|
}
|