Платформа ЦРНП "Мирокод" для разработки проектов
https://git.mirocod.ru
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
728 B
25 lines
728 B
// 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" |
|
|
|
"github.com/stretchr/testify/assert" |
|
) |
|
|
|
func Test_parsePostgreSQLHostPort(t *testing.T) { |
|
test := func (input, expectedHost, expectedPort string) { |
|
host, port := parsePostgreSQLHostPort(input) |
|
assert.Equal(t, expectedHost, host) |
|
assert.Equal(t, expectedPort, port) |
|
} |
|
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") |
|
}
|
|
|