diff options
author | ᴜɴᴋɴᴡᴏɴ <u@gogs.io> | 2020-04-10 22:51:24 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-10 22:51:24 +0800 |
commit | e186a3d2c95aee3c652b010c2c08ed771590b86b (patch) | |
tree | 5b4f5637cef8a76cac979f2d225f540b141facea /internal/db/models_test.go | |
parent | 9a5b227f3ee2b2a3854d3aec022cc9a0cf0868b3 (diff) |
db: add tests for helper functions (#6084)
Diffstat (limited to 'internal/db/models_test.go')
-rw-r--r-- | internal/db/models_test.go | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/internal/db/models_test.go b/internal/db/models_test.go deleted file mode 100644 index 53f8b4f0..00000000 --- a/internal/db/models_test.go +++ /dev/null @@ -1,33 +0,0 @@ -// 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 db - -import ( - "testing" - - . "github.com/smartystreets/goconvey/convey" -) - -func Test_parsePostgreSQLHostPort(t *testing.T) { - testSuites := []struct { - input string - host, port string - }{ - {"127.0.0.1:1234", "127.0.0.1", "1234"}, - {"127.0.0.1", "127.0.0.1", "5432"}, - {"[::1]:1234", "[::1]", "1234"}, - {"[::1]", "[::1]", "5432"}, - {"/tmp/pg.sock:1234", "/tmp/pg.sock", "1234"}, - {"/tmp/pg.sock", "/tmp/pg.sock", "5432"}, - } - - Convey("Parse PostgreSQL host and port", t, func() { - for _, suite := range testSuites { - host, port := parsePostgreSQLHostPort(suite.input) - So(host, ShouldEqual, suite.host) - So(port, ShouldEqual, suite.port) - } - }) -} |