/Godeps/_workspace/src/github.com/erikstmartin/go-testdb/testdb.go

https://bitbucket.org/localistico/services-api · Go · 158 lines · 114 code · 32 blank · 12 comment · 15 complexity · 093ec6051bc8c4a80c39082a27cf76ed MD5 · raw file

  1. package testdb
  2. import (
  3. "crypto/sha1"
  4. "database/sql"
  5. "database/sql/driver"
  6. "encoding/csv"
  7. "io"
  8. "regexp"
  9. "strings"
  10. "time"
  11. )
  12. var d *testDriver
  13. func init() {
  14. d = newDriver()
  15. sql.Register("testdb", d)
  16. }
  17. type testDriver struct {
  18. openFunc func(dsn string) (driver.Conn, error)
  19. conn *conn
  20. enableTimeParsing bool
  21. }
  22. type query struct {
  23. rows driver.Rows
  24. result *Result
  25. err error
  26. }
  27. func newDriver() *testDriver {
  28. return &testDriver{
  29. conn: newConn(),
  30. }
  31. }
  32. func EnableTimeParsing(flag bool) {
  33. d.enableTimeParsing = flag
  34. }
  35. func (d *testDriver) Open(dsn string) (driver.Conn, error) {
  36. if d.openFunc != nil {
  37. conn, err := d.openFunc(dsn)
  38. return conn, err
  39. }
  40. if d.conn == nil {
  41. d.conn = newConn()
  42. }
  43. return d.conn, nil
  44. }
  45. var whitespaceRegexp = regexp.MustCompile("\\s")
  46. func getQueryHash(query string) string {
  47. // Remove whitespace and lowercase to make stubbing less brittle
  48. query = strings.ToLower(whitespaceRegexp.ReplaceAllString(query, ""))
  49. h := sha1.New()
  50. io.WriteString(h, query)
  51. return string(h.Sum(nil))
  52. }
  53. // Set your own function to be executed when db.Query() is called. As with StubQuery() you can use the RowsFromCSVString() method to easily generate the driver.Rows, or you can return your own.
  54. func SetQueryFunc(f func(query string) (result driver.Rows, err error)) {
  55. d.conn.queryFunc = f
  56. }
  57. // Stubs the global driver.Conn to return the supplied driver.Rows when db.Query() is called, query stubbing is case insensitive, and whitespace is also ignored.
  58. func StubQuery(q string, rows driver.Rows) {
  59. d.conn.queries[getQueryHash(q)] = query{
  60. rows: rows,
  61. }
  62. }
  63. // Stubs the global driver.Conn to return the supplied error when db.Query() is called, query stubbing is case insensitive, and whitespace is also ignored.
  64. func StubQueryError(q string, err error) {
  65. d.conn.queries[getQueryHash(q)] = query{
  66. err: err,
  67. }
  68. }
  69. // Set your own function to be executed when db.Open() is called. You can either hand back a valid connection, or an error. Conn() can be used to grab the global Conn object containing stubbed queries.
  70. func SetOpenFunc(f func(dsn string) (driver.Conn, error)) {
  71. d.openFunc = f
  72. }
  73. // Set your own function to be executed when db.Exec is called. You can return an error or a Result object with the LastInsertId and RowsAffected
  74. func SetExecFunc(f func(query string, args ...interface{}) (sql.Result, error)) {
  75. d.conn.execFunc = f
  76. }
  77. // Stubs the global driver.Conn to return the supplied Result when db.Exec is called, query stubbing is case insensitive, and whitespace is also ignored.
  78. func StubExec(q string, r *Result) {
  79. d.conn.queries[getQueryHash(q)] = query{
  80. result: r,
  81. }
  82. }
  83. // Stubs the global driver.Conn to return the supplied error when db.Exec() is called, query stubbing is case insensitive, and whitespace is also ignored.
  84. func StubExecError(q string, err error) {
  85. StubQueryError(q, err)
  86. }
  87. // Clears all stubbed queries, and replaced functions.
  88. func Reset() {
  89. d.conn = newConn()
  90. d.openFunc = nil
  91. }
  92. // Returns a pointer to the global conn object associated with this driver.
  93. func Conn() driver.Conn {
  94. return d.conn
  95. }
  96. func RowsFromCSVString(columns []string, s string) driver.Rows {
  97. rs := &rows{
  98. columns: columns,
  99. closed: false,
  100. }
  101. r := strings.NewReader(strings.TrimSpace(s))
  102. csvReader := csv.NewReader(r)
  103. for {
  104. r, err := csvReader.Read()
  105. if err != nil || r == nil {
  106. break
  107. }
  108. row := make([]driver.Value, len(columns))
  109. for i, v := range r {
  110. v := strings.TrimSpace(v)
  111. // If enableTimeParsing is on, check to see if this is a
  112. // time in RFC33339 format
  113. if d.enableTimeParsing {
  114. if time, err := time.Parse(time.RFC3339, v); err == nil {
  115. row[i] = time
  116. } else {
  117. row[i] = v
  118. }
  119. } else {
  120. row[i] = v
  121. }
  122. }
  123. rs.rows = append(rs.rows, row)
  124. }
  125. return rs
  126. }