1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
|
// Copyright 2020 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 (
"fmt"
"testing"
"github.com/stretchr/testify/assert"
"gogs.io/gogs/internal/conf"
)
func Test_parsePostgreSQLHostPort(t *testing.T) {
tests := []struct {
info string
expHost string
expPort string
}{
{info: "127.0.0.1:1234", expHost: "127.0.0.1", expPort: "1234"},
{info: "127.0.0.1", expHost: "127.0.0.1", expPort: "5432"},
{info: "[::1]:1234", expHost: "[::1]", expPort: "1234"},
{info: "[::1]", expHost: "[::1]", expPort: "5432"},
{info: "/tmp/pg.sock:1234", expHost: "/tmp/pg.sock", expPort: "1234"},
{info: "/tmp/pg.sock", expHost: "/tmp/pg.sock", expPort: "5432"},
}
for _, test := range tests {
t.Run("", func(t *testing.T) {
host, port := parsePostgreSQLHostPort(test.info)
assert.Equal(t, test.expHost, host)
assert.Equal(t, test.expPort, port)
})
}
}
func Test_parseMSSQLHostPort(t *testing.T) {
tests := []struct {
info string
expHost string
expPort string
}{
{info: "127.0.0.1:1234", expHost: "127.0.0.1", expPort: "1234"},
{info: "127.0.0.1,1234", expHost: "127.0.0.1", expPort: "1234"},
{info: "127.0.0.1", expHost: "127.0.0.1", expPort: "1433"},
}
for _, test := range tests {
t.Run("", func(t *testing.T) {
host, port := parseMSSQLHostPort(test.info)
assert.Equal(t, test.expHost, host)
assert.Equal(t, test.expPort, port)
})
}
}
func Test_parseDSN(t *testing.T) {
t.Run("bad dialect", func(t *testing.T) {
_, err := newDSN(conf.DatabaseOpts{
Type: "bad_dialect",
})
assert.Equal(t, "unrecognized dialect: bad_dialect", fmt.Sprintf("%v", err))
})
tests := []struct {
name string
opts conf.DatabaseOpts
wantDSN string
}{
{
name: "mysql: unix",
opts: conf.DatabaseOpts{
Type: "mysql",
Host: "/tmp/mysql.sock",
Name: "gogs",
User: "gogs",
Password: "pa$$word",
},
wantDSN: "gogs:pa$$word@unix(/tmp/mysql.sock)/gogs?charset=utf8mb4&parseTime=true",
},
{
name: "mysql: tcp",
opts: conf.DatabaseOpts{
Type: "mysql",
Host: "localhost:3306",
Name: "gogs",
User: "gogs",
Password: "pa$$word",
},
wantDSN: "gogs:pa$$word@tcp(localhost:3306)/gogs?charset=utf8mb4&parseTime=true",
},
{
name: "postgres: unix",
opts: conf.DatabaseOpts{
Type: "postgres",
Host: "/tmp/pg.sock",
Name: "gogs",
Schema: "test",
User: "gogs@local",
Password: "pa$$word",
SSLMode: "disable",
},
wantDSN: "user='gogs@local' password='pa$$word' host='/tmp/pg.sock' port='5432' dbname='gogs' sslmode='disable' search_path='test' application_name='gogs'",
},
{
name: "postgres: tcp",
opts: conf.DatabaseOpts{
Type: "postgres",
Host: "127.0.0.1",
Name: "gogs",
Schema: "test",
User: "gogs@local",
Password: "pa$$word",
SSLMode: "disable",
},
wantDSN: "user='gogs@local' password='pa$$word' host='127.0.0.1' port='5432' dbname='gogs' sslmode='disable' search_path='test' application_name='gogs'",
},
{
name: "mssql",
opts: conf.DatabaseOpts{
Type: "mssql",
Host: "127.0.0.1",
Name: "gogs",
User: "gogs@local",
Password: "pa$$word",
},
wantDSN: "server=127.0.0.1; port=1433; database=gogs; user id=gogs@local; password=pa$$word;",
},
{
name: "sqlite3",
opts: conf.DatabaseOpts{
Type: "sqlite3",
Path: "/tmp/gogs.db",
},
wantDSN: "file:/tmp/gogs.db?cache=shared&mode=rwc",
},
}
for _, test := range tests {
t.Run(test.name, func(t *testing.T) {
dsn, err := newDSN(test.opts)
if err != nil {
t.Fatal(err)
}
assert.Equal(t, test.wantDSN, dsn)
})
}
}
|