dsn_test.go 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287
  1. // Go MySQL Driver - A MySQL-Driver for Go's database/sql package
  2. //
  3. // Copyright 2016 The Go-MySQL-Driver Authors. All rights reserved.
  4. //
  5. // This Source Code Form is subject to the terms of the Mozilla Public
  6. // License, v. 2.0. If a copy of the MPL was not distributed with this file,
  7. // You can obtain one at http://mozilla.org/MPL/2.0/.
  8. package mysql
  9. import (
  10. "crypto/tls"
  11. "fmt"
  12. "net/url"
  13. "reflect"
  14. "testing"
  15. "time"
  16. )
  17. var testDSNs = []struct {
  18. in string
  19. out *Config
  20. }{{
  21. "username:password@protocol(address)/dbname?param=value",
  22. &Config{User: "username", Passwd: "password", Net: "protocol", Addr: "address", DBName: "dbname", Params: map[string]string{"param": "value"}, Collation: "utf8_general_ci", Loc: time.UTC, MaxAllowedPacket: defaultMaxAllowedPacket, AllowNativePasswords: true},
  23. }, {
  24. "username:password@protocol(address)/dbname?param=value&columnsWithAlias=true",
  25. &Config{User: "username", Passwd: "password", Net: "protocol", Addr: "address", DBName: "dbname", Params: map[string]string{"param": "value"}, Collation: "utf8_general_ci", Loc: time.UTC, MaxAllowedPacket: defaultMaxAllowedPacket, AllowNativePasswords: true, ColumnsWithAlias: true},
  26. }, {
  27. "username:password@protocol(address)/dbname?param=value&columnsWithAlias=true&multiStatements=true",
  28. &Config{User: "username", Passwd: "password", Net: "protocol", Addr: "address", DBName: "dbname", Params: map[string]string{"param": "value"}, Collation: "utf8_general_ci", Loc: time.UTC, MaxAllowedPacket: defaultMaxAllowedPacket, AllowNativePasswords: true, ColumnsWithAlias: true, MultiStatements: true},
  29. }, {
  30. "user@unix(/path/to/socket)/dbname?charset=utf8",
  31. &Config{User: "user", Net: "unix", Addr: "/path/to/socket", DBName: "dbname", Params: map[string]string{"charset": "utf8"}, Collation: "utf8_general_ci", Loc: time.UTC, MaxAllowedPacket: defaultMaxAllowedPacket, AllowNativePasswords: true},
  32. }, {
  33. "user:password@tcp(localhost:5555)/dbname?charset=utf8&tls=true",
  34. &Config{User: "user", Passwd: "password", Net: "tcp", Addr: "localhost:5555", DBName: "dbname", Params: map[string]string{"charset": "utf8"}, Collation: "utf8_general_ci", Loc: time.UTC, MaxAllowedPacket: defaultMaxAllowedPacket, AllowNativePasswords: true, TLSConfig: "true"},
  35. }, {
  36. "user:password@tcp(localhost:5555)/dbname?charset=utf8mb4,utf8&tls=skip-verify",
  37. &Config{User: "user", Passwd: "password", Net: "tcp", Addr: "localhost:5555", DBName: "dbname", Params: map[string]string{"charset": "utf8mb4,utf8"}, Collation: "utf8_general_ci", Loc: time.UTC, MaxAllowedPacket: defaultMaxAllowedPacket, AllowNativePasswords: true, TLSConfig: "skip-verify"},
  38. }, {
  39. "user:password@/dbname?loc=UTC&timeout=30s&readTimeout=1s&writeTimeout=1s&allowAllFiles=1&clientFoundRows=true&allowOldPasswords=TRUE&collation=utf8mb4_unicode_ci&maxAllowedPacket=16777216",
  40. &Config{User: "user", Passwd: "password", Net: "tcp", Addr: "127.0.0.1:3306", DBName: "dbname", Collation: "utf8mb4_unicode_ci", Loc: time.UTC, AllowNativePasswords: true, Timeout: 30 * time.Second, ReadTimeout: time.Second, WriteTimeout: time.Second, AllowAllFiles: true, AllowOldPasswords: true, ClientFoundRows: true, MaxAllowedPacket: 16777216},
  41. }, {
  42. "user:password@/dbname?allowNativePasswords=false&maxAllowedPacket=0",
  43. &Config{User: "user", Passwd: "password", Net: "tcp", Addr: "127.0.0.1:3306", DBName: "dbname", Collation: "utf8_general_ci", Loc: time.UTC, MaxAllowedPacket: 0, AllowNativePasswords: false},
  44. }, {
  45. "user:p@ss(word)@tcp([de:ad:be:ef::ca:fe]:80)/dbname?loc=Local",
  46. &Config{User: "user", Passwd: "p@ss(word)", Net: "tcp", Addr: "[de:ad:be:ef::ca:fe]:80", DBName: "dbname", Collation: "utf8_general_ci", Loc: time.Local, MaxAllowedPacket: defaultMaxAllowedPacket, AllowNativePasswords: true},
  47. }, {
  48. "/dbname",
  49. &Config{Net: "tcp", Addr: "127.0.0.1:3306", DBName: "dbname", Collation: "utf8_general_ci", Loc: time.UTC, MaxAllowedPacket: defaultMaxAllowedPacket, AllowNativePasswords: true},
  50. }, {
  51. "@/",
  52. &Config{Net: "tcp", Addr: "127.0.0.1:3306", Collation: "utf8_general_ci", Loc: time.UTC, MaxAllowedPacket: defaultMaxAllowedPacket, AllowNativePasswords: true},
  53. }, {
  54. "/",
  55. &Config{Net: "tcp", Addr: "127.0.0.1:3306", Collation: "utf8_general_ci", Loc: time.UTC, MaxAllowedPacket: defaultMaxAllowedPacket, AllowNativePasswords: true},
  56. }, {
  57. "",
  58. &Config{Net: "tcp", Addr: "127.0.0.1:3306", Collation: "utf8_general_ci", Loc: time.UTC, MaxAllowedPacket: defaultMaxAllowedPacket, AllowNativePasswords: true},
  59. }, {
  60. "user:p@/ssword@/",
  61. &Config{User: "user", Passwd: "p@/ssword", Net: "tcp", Addr: "127.0.0.1:3306", Collation: "utf8_general_ci", Loc: time.UTC, MaxAllowedPacket: defaultMaxAllowedPacket, AllowNativePasswords: true},
  62. }, {
  63. "unix/?arg=%2Fsome%2Fpath.ext",
  64. &Config{Net: "unix", Addr: "/tmp/mysql.sock", Params: map[string]string{"arg": "/some/path.ext"}, Collation: "utf8_general_ci", Loc: time.UTC, MaxAllowedPacket: defaultMaxAllowedPacket, AllowNativePasswords: true},
  65. }, {
  66. "tcp(127.0.0.1)/dbname",
  67. &Config{Net: "tcp", Addr: "127.0.0.1:3306", DBName: "dbname", Collation: "utf8_general_ci", Loc: time.UTC, MaxAllowedPacket: defaultMaxAllowedPacket, AllowNativePasswords: true},
  68. }, {
  69. "tcp(de:ad:be:ef::ca:fe)/dbname",
  70. &Config{Net: "tcp", Addr: "[de:ad:be:ef::ca:fe]:3306", DBName: "dbname", Collation: "utf8_general_ci", Loc: time.UTC, MaxAllowedPacket: defaultMaxAllowedPacket, AllowNativePasswords: true},
  71. },
  72. }
  73. func TestDSNParser(t *testing.T) {
  74. for i, tst := range testDSNs {
  75. cfg, err := ParseDSN(tst.in)
  76. if err != nil {
  77. t.Error(err.Error())
  78. }
  79. // pointer not static
  80. cfg.tls = nil
  81. if !reflect.DeepEqual(cfg, tst.out) {
  82. t.Errorf("%d. ParseDSN(%q) mismatch:\ngot %+v\nwant %+v", i, tst.in, cfg, tst.out)
  83. }
  84. }
  85. }
  86. func TestDSNParserInvalid(t *testing.T) {
  87. var invalidDSNs = []string{
  88. "@net(addr/", // no closing brace
  89. "@tcp(/", // no closing brace
  90. "tcp(/", // no closing brace
  91. "(/", // no closing brace
  92. "net(addr)//", // unescaped
  93. "User:pass@tcp(1.2.3.4:3306)", // no trailing slash
  94. "net()/", // unknown default addr
  95. //"/dbname?arg=/some/unescaped/path",
  96. }
  97. for i, tst := range invalidDSNs {
  98. if _, err := ParseDSN(tst); err == nil {
  99. t.Errorf("invalid DSN #%d. (%s) didn't error!", i, tst)
  100. }
  101. }
  102. }
  103. func TestDSNReformat(t *testing.T) {
  104. for i, tst := range testDSNs {
  105. dsn1 := tst.in
  106. cfg1, err := ParseDSN(dsn1)
  107. if err != nil {
  108. t.Error(err.Error())
  109. continue
  110. }
  111. cfg1.tls = nil // pointer not static
  112. res1 := fmt.Sprintf("%+v", cfg1)
  113. dsn2 := cfg1.FormatDSN()
  114. cfg2, err := ParseDSN(dsn2)
  115. if err != nil {
  116. t.Error(err.Error())
  117. continue
  118. }
  119. cfg2.tls = nil // pointer not static
  120. res2 := fmt.Sprintf("%+v", cfg2)
  121. if res1 != res2 {
  122. t.Errorf("%d. %q does not match %q", i, res2, res1)
  123. }
  124. }
  125. }
  126. func TestDSNWithCustomTLS(t *testing.T) {
  127. baseDSN := "User:password@tcp(localhost:5555)/dbname?tls="
  128. tlsCfg := tls.Config{}
  129. RegisterTLSConfig("utils_test", &tlsCfg)
  130. // Custom TLS is missing
  131. tst := baseDSN + "invalid_tls"
  132. cfg, err := ParseDSN(tst)
  133. if err == nil {
  134. t.Errorf("invalid custom TLS in DSN (%s) but did not error. Got config: %#v", tst, cfg)
  135. }
  136. tst = baseDSN + "utils_test"
  137. // Custom TLS with a server name
  138. name := "foohost"
  139. tlsCfg.ServerName = name
  140. cfg, err = ParseDSN(tst)
  141. if err != nil {
  142. t.Error(err.Error())
  143. } else if cfg.tls.ServerName != name {
  144. t.Errorf("did not get the correct TLS ServerName (%s) parsing DSN (%s).", name, tst)
  145. }
  146. // Custom TLS without a server name
  147. name = "localhost"
  148. tlsCfg.ServerName = ""
  149. cfg, err = ParseDSN(tst)
  150. if err != nil {
  151. t.Error(err.Error())
  152. } else if cfg.tls.ServerName != name {
  153. t.Errorf("did not get the correct ServerName (%s) parsing DSN (%s).", name, tst)
  154. } else if tlsCfg.ServerName != "" {
  155. t.Errorf("tlsCfg was mutated ServerName (%s) should be empty parsing DSN (%s).", name, tst)
  156. }
  157. DeregisterTLSConfig("utils_test")
  158. }
  159. func TestDSNTLSConfig(t *testing.T) {
  160. expectedServerName := "example.com"
  161. dsn := "tcp(example.com:1234)/?tls=true"
  162. cfg, err := ParseDSN(dsn)
  163. if err != nil {
  164. t.Error(err.Error())
  165. }
  166. if cfg.tls == nil {
  167. t.Error("cfg.tls should not be nil")
  168. }
  169. if cfg.tls.ServerName != expectedServerName {
  170. t.Errorf("cfg.tls.ServerName should be %q, got %q (host with port)", expectedServerName, cfg.tls.ServerName)
  171. }
  172. dsn = "tcp(example.com)/?tls=true"
  173. cfg, err = ParseDSN(dsn)
  174. if err != nil {
  175. t.Error(err.Error())
  176. }
  177. if cfg.tls == nil {
  178. t.Error("cfg.tls should not be nil")
  179. }
  180. if cfg.tls.ServerName != expectedServerName {
  181. t.Errorf("cfg.tls.ServerName should be %q, got %q (host without port)", expectedServerName, cfg.tls.ServerName)
  182. }
  183. }
  184. func TestDSNWithCustomTLSQueryEscape(t *testing.T) {
  185. const configKey = "&%!:"
  186. dsn := "User:password@tcp(localhost:5555)/dbname?tls=" + url.QueryEscape(configKey)
  187. name := "foohost"
  188. tlsCfg := tls.Config{ServerName: name}
  189. RegisterTLSConfig(configKey, &tlsCfg)
  190. cfg, err := ParseDSN(dsn)
  191. if err != nil {
  192. t.Error(err.Error())
  193. } else if cfg.tls.ServerName != name {
  194. t.Errorf("did not get the correct TLS ServerName (%s) parsing DSN (%s).", name, dsn)
  195. }
  196. }
  197. func TestDSNUnsafeCollation(t *testing.T) {
  198. _, err := ParseDSN("/dbname?collation=gbk_chinese_ci&interpolateParams=true")
  199. if err != errInvalidDSNUnsafeCollation {
  200. t.Errorf("expected %v, got %v", errInvalidDSNUnsafeCollation, err)
  201. }
  202. _, err = ParseDSN("/dbname?collation=gbk_chinese_ci&interpolateParams=false")
  203. if err != nil {
  204. t.Errorf("expected %v, got %v", nil, err)
  205. }
  206. _, err = ParseDSN("/dbname?collation=gbk_chinese_ci")
  207. if err != nil {
  208. t.Errorf("expected %v, got %v", nil, err)
  209. }
  210. _, err = ParseDSN("/dbname?collation=ascii_bin&interpolateParams=true")
  211. if err != nil {
  212. t.Errorf("expected %v, got %v", nil, err)
  213. }
  214. _, err = ParseDSN("/dbname?collation=latin1_german1_ci&interpolateParams=true")
  215. if err != nil {
  216. t.Errorf("expected %v, got %v", nil, err)
  217. }
  218. _, err = ParseDSN("/dbname?collation=utf8_general_ci&interpolateParams=true")
  219. if err != nil {
  220. t.Errorf("expected %v, got %v", nil, err)
  221. }
  222. _, err = ParseDSN("/dbname?collation=utf8mb4_general_ci&interpolateParams=true")
  223. if err != nil {
  224. t.Errorf("expected %v, got %v", nil, err)
  225. }
  226. }
  227. func TestParamsAreSorted(t *testing.T) {
  228. expected := "/dbname?interpolateParams=true&foobar=baz&quux=loo"
  229. cfg := NewConfig()
  230. cfg.DBName = "dbname"
  231. cfg.InterpolateParams = true
  232. cfg.Params = map[string]string{
  233. "quux": "loo",
  234. "foobar": "baz",
  235. }
  236. actual := cfg.FormatDSN()
  237. if actual != expected {
  238. t.Errorf("generic Config.Params were not sorted: want %#v, got %#v", expected, actual)
  239. }
  240. }
  241. func BenchmarkParseDSN(b *testing.B) {
  242. b.ReportAllocs()
  243. for i := 0; i < b.N; i++ {
  244. for _, tst := range testDSNs {
  245. if _, err := ParseDSN(tst.in); err != nil {
  246. b.Error(err.Error())
  247. }
  248. }
  249. }
  250. }