2016-04-13 15:51:58 +02:00
|
|
|
package boil
|
2016-04-19 07:31:07 +02:00
|
|
|
|
|
|
|
import (
|
2016-06-07 08:45:06 +02:00
|
|
|
"bytes"
|
2016-04-20 14:51:04 +02:00
|
|
|
"database/sql"
|
2016-04-19 07:31:07 +02:00
|
|
|
"flag"
|
|
|
|
"fmt"
|
|
|
|
"io/ioutil"
|
|
|
|
"path/filepath"
|
|
|
|
"reflect"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/davecgh/go-spew/spew"
|
|
|
|
)
|
|
|
|
|
|
|
|
var writeGoldenFiles = flag.Bool(
|
2016-08-01 04:21:06 +02:00
|
|
|
"test.golden",
|
2016-04-19 07:31:07 +02:00
|
|
|
false,
|
|
|
|
"Write golden files.",
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestBuildQuery(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
|
|
|
|
tests := []struct {
|
|
|
|
q *Query
|
|
|
|
args []interface{}
|
|
|
|
}{
|
2016-08-04 06:50:26 +02:00
|
|
|
{&Query{from: []string{"t"}}, nil},
|
|
|
|
{&Query{from: []string{"q"}, limit: 5, offset: 6}, nil},
|
|
|
|
{&Query{from: []string{"q"}, orderBy: []string{"a ASC", "b DESC"}}, nil},
|
|
|
|
{&Query{from: []string{"t"}, selectCols: []string{"count(*) as ab, thing as bd", `"stuff"`}}, nil},
|
|
|
|
{&Query{from: []string{"a", "b"}, selectCols: []string{"count(*) as ab, thing as bd", `"stuff"`}}, nil},
|
2016-04-19 07:31:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
for i, test := range tests {
|
|
|
|
filename := filepath.Join("_fixtures", fmt.Sprintf("%02d.sql", i))
|
|
|
|
out, args := buildQuery(test.q)
|
|
|
|
|
|
|
|
if *writeGoldenFiles {
|
|
|
|
err := ioutil.WriteFile(filename, []byte(out), 0664)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("Failed to write golden file %s: %s\n", filename, err)
|
|
|
|
}
|
|
|
|
t.Logf("wrote golden file: %s\n", filename)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
byt, err := ioutil.ReadFile(filename)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("Failed to read golden file %q: %v", filename, err)
|
|
|
|
}
|
|
|
|
|
2016-06-07 08:45:06 +02:00
|
|
|
if string(bytes.TrimSpace(byt)) != out {
|
2016-04-19 07:31:07 +02:00
|
|
|
t.Errorf("[%02d] Test failed:\nWant:\n%s\nGot:\n%s", i, byt, out)
|
|
|
|
}
|
|
|
|
|
|
|
|
if !reflect.DeepEqual(args, test.args) {
|
|
|
|
t.Errorf("[%02d] Test failed:\nWant:\n%s\nGot:\n%s", i, spew.Sdump(test.args), spew.Sdump(args))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-19 06:07:12 +02:00
|
|
|
func TestSetLastWhereAsOr(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
q := &Query{}
|
|
|
|
|
2016-08-04 07:22:17 +02:00
|
|
|
AppendWhere(q, "")
|
2016-07-19 06:07:12 +02:00
|
|
|
|
|
|
|
if q.where[0].orSeperator {
|
|
|
|
t.Errorf("Do not want or seperator")
|
|
|
|
}
|
|
|
|
|
|
|
|
SetLastWhereAsOr(q)
|
|
|
|
|
|
|
|
if len(q.where) != 1 {
|
|
|
|
t.Errorf("Want len 1")
|
|
|
|
}
|
|
|
|
if !q.where[0].orSeperator {
|
|
|
|
t.Errorf("Want or seperator")
|
|
|
|
}
|
|
|
|
|
2016-08-04 07:22:17 +02:00
|
|
|
AppendWhere(q, "")
|
2016-07-19 06:07:12 +02:00
|
|
|
SetLastWhereAsOr(q)
|
|
|
|
|
|
|
|
if len(q.where) != 2 {
|
|
|
|
t.Errorf("Want len 2")
|
|
|
|
}
|
|
|
|
if q.where[0].orSeperator != true {
|
|
|
|
t.Errorf("Expected true")
|
|
|
|
}
|
|
|
|
if q.where[1].orSeperator != true {
|
|
|
|
t.Errorf("Expected true")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-20 14:51:04 +02:00
|
|
|
func TestSetLimit(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
|
|
|
|
q := &Query{}
|
|
|
|
SetLimit(q, 10)
|
|
|
|
|
|
|
|
expect := 10
|
|
|
|
if q.limit != expect {
|
|
|
|
t.Errorf("Expected %d, got %d", expect, q.limit)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-01 04:21:06 +02:00
|
|
|
func TestSetOffset(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
|
|
|
|
q := &Query{}
|
|
|
|
SetOffset(q, 10)
|
|
|
|
|
|
|
|
expect := 10
|
|
|
|
if q.offset != expect {
|
|
|
|
t.Errorf("Expected %d, got %d", expect, q.offset)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-19 06:07:12 +02:00
|
|
|
func TestSetSQL(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
|
|
|
|
q := &Query{}
|
|
|
|
SetSQL(q, "select * from thing", 5, 3)
|
|
|
|
|
|
|
|
if len(q.plainSQL.args) != 2 {
|
|
|
|
t.Errorf("Expected len 2, got %d", len(q.plainSQL.args))
|
|
|
|
}
|
|
|
|
|
|
|
|
if q.plainSQL.sql != "select * from thing" {
|
|
|
|
t.Errorf("Was not expected string, got %s", q.plainSQL.sql)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-04 07:22:17 +02:00
|
|
|
func TestWhere(t *testing.T) {
|
2016-04-20 14:51:04 +02:00
|
|
|
t.Parallel()
|
|
|
|
|
|
|
|
q := &Query{}
|
2016-08-04 07:22:17 +02:00
|
|
|
expect := "x > $1 AND y > $2"
|
|
|
|
AppendWhere(q, expect, 5, 3)
|
|
|
|
AppendWhere(q, expect, 5, 3)
|
2016-04-20 14:51:04 +02:00
|
|
|
|
2016-08-04 07:22:17 +02:00
|
|
|
if len(q.where) != 2 {
|
|
|
|
t.Errorf("%#v", q.where)
|
2016-04-20 14:51:04 +02:00
|
|
|
}
|
|
|
|
|
2016-08-04 07:22:17 +02:00
|
|
|
if q.where[0].clause != expect || q.where[1].clause != expect {
|
|
|
|
t.Errorf("Expected %s, got %#v", expect, q.where)
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(q.where[0].args) != 2 || len(q.where[0].args) != 2 {
|
|
|
|
t.Errorf("arg length wrong: %#v", q.where)
|
|
|
|
}
|
|
|
|
|
|
|
|
if q.where[0].args[0].(int) != 5 || q.where[0].args[1].(int) != 3 {
|
|
|
|
t.Errorf("args wrong: %#v", q.where)
|
|
|
|
}
|
|
|
|
|
|
|
|
SetWhere(q, expect, 5, 3)
|
2016-04-20 14:51:04 +02:00
|
|
|
if q.where[0].clause != expect {
|
2016-07-08 18:39:36 +02:00
|
|
|
t.Errorf("Expected %s, got %v", expect, q.where)
|
2016-04-20 14:51:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if len(q.where[0].args) != 2 {
|
|
|
|
t.Errorf("Expected %d args, got %d", 2, len(q.where[0].args))
|
|
|
|
}
|
|
|
|
|
|
|
|
if q.where[0].args[0].(int) != 5 || q.where[0].args[1].(int) != 3 {
|
|
|
|
t.Errorf("Args not set correctly, expected 5 & 3, got: %#v", q.where[0].args)
|
|
|
|
}
|
2016-08-04 07:22:17 +02:00
|
|
|
|
|
|
|
if len(q.where) != 1 {
|
|
|
|
t.Errorf("%#v", q.where)
|
|
|
|
}
|
2016-04-20 14:51:04 +02:00
|
|
|
}
|
|
|
|
|
2016-08-04 07:22:17 +02:00
|
|
|
func TestGroupBy(t *testing.T) {
|
2016-04-20 14:51:04 +02:00
|
|
|
t.Parallel()
|
|
|
|
|
|
|
|
q := &Query{}
|
|
|
|
expect := "col1, col2"
|
2016-08-04 07:22:17 +02:00
|
|
|
ApplyGroupBy(q, expect)
|
|
|
|
ApplyGroupBy(q, expect)
|
|
|
|
|
|
|
|
if len(q.groupBy) != 2 && (q.groupBy[0] != expect || q.groupBy[1] != expect) {
|
|
|
|
t.Errorf("Expected %s, got %s %s", expect, q.groupBy[0], q.groupBy[1])
|
|
|
|
}
|
|
|
|
|
|
|
|
SetGroupBy(q, expect)
|
2016-04-20 14:51:04 +02:00
|
|
|
if len(q.groupBy) != 1 && q.groupBy[0] != expect {
|
|
|
|
t.Errorf("Expected %s, got %s", expect, q.groupBy[0])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-04 07:22:17 +02:00
|
|
|
func TestOrderBy(t *testing.T) {
|
2016-04-20 14:51:04 +02:00
|
|
|
t.Parallel()
|
|
|
|
|
|
|
|
q := &Query{}
|
|
|
|
expect := "col1 desc, col2 asc"
|
2016-08-04 07:22:17 +02:00
|
|
|
ApplyOrderBy(q, expect)
|
|
|
|
ApplyOrderBy(q, expect)
|
|
|
|
|
|
|
|
if len(q.orderBy) != 2 && (q.orderBy[0] != expect || q.orderBy[1] != expect) {
|
|
|
|
t.Errorf("Expected %s, got %s %s", expect, q.orderBy[0], q.orderBy[1])
|
|
|
|
}
|
|
|
|
|
|
|
|
SetOrderBy(q, "col1 desc, col2 asc")
|
2016-04-20 14:51:04 +02:00
|
|
|
if len(q.orderBy) != 1 && q.orderBy[0] != expect {
|
|
|
|
t.Errorf("Expected %s, got %s", expect, q.orderBy[0])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-04 07:22:17 +02:00
|
|
|
func TestHaving(t *testing.T) {
|
2016-04-20 14:51:04 +02:00
|
|
|
t.Parallel()
|
|
|
|
|
|
|
|
q := &Query{}
|
|
|
|
expect := "count(orders.order_id) > 10"
|
2016-08-04 07:22:17 +02:00
|
|
|
ApplyHaving(q, expect)
|
|
|
|
ApplyHaving(q, expect)
|
|
|
|
|
|
|
|
if len(q.having) != 2 && (q.having[0] != expect || q.having[1] != expect) {
|
|
|
|
t.Errorf("Expected %s, got %s %s", expect, q.having[0], q.having[1])
|
|
|
|
}
|
|
|
|
|
|
|
|
SetHaving(q, expect)
|
2016-04-20 14:51:04 +02:00
|
|
|
if len(q.having) != 1 && q.having[0] != expect {
|
|
|
|
t.Errorf("Expected %s, got %s", expect, q.having[0])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-04 07:22:17 +02:00
|
|
|
func TestFrom(t *testing.T) {
|
2016-04-20 14:51:04 +02:00
|
|
|
t.Parallel()
|
|
|
|
|
|
|
|
q := &Query{}
|
2016-08-04 07:22:17 +02:00
|
|
|
AppendFrom(q, "videos a", "orders b")
|
|
|
|
AppendFrom(q, "videos a", "orders b")
|
2016-04-20 14:51:04 +02:00
|
|
|
|
2016-08-04 07:22:17 +02:00
|
|
|
expect := []string{"videos a", "orders b", "videos a", "orders b"}
|
2016-08-04 06:50:26 +02:00
|
|
|
if !reflect.DeepEqual(q.from, expect) {
|
2016-07-19 06:07:12 +02:00
|
|
|
t.Errorf("Expected %s, got %s", expect, q.from)
|
2016-04-20 14:51:04 +02:00
|
|
|
}
|
2016-08-04 07:22:17 +02:00
|
|
|
|
|
|
|
SetFrom(q, "videos a", "orders b")
|
|
|
|
if !reflect.DeepEqual(q.from, expect[:2]) {
|
|
|
|
t.Errorf("Expected %s, got %s", expect, q.from)
|
|
|
|
}
|
2016-04-20 14:51:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestSetDelete(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
|
|
|
|
q := &Query{}
|
|
|
|
SetDelete(q)
|
|
|
|
|
|
|
|
if q.delete != true {
|
|
|
|
t.Errorf("Expected %t, got %t", true, q.delete)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestSetExecutor(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
|
|
|
|
q := &Query{}
|
|
|
|
d := &sql.DB{}
|
|
|
|
SetExecutor(q, d)
|
|
|
|
|
|
|
|
if q.executor != d {
|
|
|
|
t.Errorf("Expected executor to get set to d, but was: %#v", q.executor)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-04 07:22:17 +02:00
|
|
|
func TestSelect(t *testing.T) {
|
2016-04-20 14:51:04 +02:00
|
|
|
t.Parallel()
|
|
|
|
|
|
|
|
q := &Query{}
|
2016-08-04 07:22:17 +02:00
|
|
|
AppendSelect(q, "col1", "col2")
|
|
|
|
AppendSelect(q, "col1", "col2")
|
2016-04-20 14:51:04 +02:00
|
|
|
|
2016-08-04 07:22:17 +02:00
|
|
|
if len(q.selectCols) != 4 {
|
|
|
|
t.Errorf("Expected selectCols len 4, got %d", len(q.selectCols))
|
|
|
|
}
|
|
|
|
|
|
|
|
if q.selectCols[0] != `col1` && q.selectCols[1] != `col2` {
|
|
|
|
t.Errorf("select cols value mismatch: %#v", q.selectCols)
|
|
|
|
}
|
|
|
|
if q.selectCols[2] != `col1` && q.selectCols[3] != `col2` {
|
|
|
|
t.Errorf("select cols value mismatch: %#v", q.selectCols)
|
2016-04-20 14:51:04 +02:00
|
|
|
}
|
|
|
|
|
2016-08-04 07:22:17 +02:00
|
|
|
SetSelect(q, "col1", "col2")
|
2016-08-03 02:53:34 +02:00
|
|
|
if q.selectCols[0] != `col1` && q.selectCols[1] != `col2` {
|
2016-04-20 14:51:04 +02:00
|
|
|
t.Errorf("select cols value mismatch: %#v", q.selectCols)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-04 07:22:17 +02:00
|
|
|
func TestInnerJoin(t *testing.T) {
|
2016-04-20 14:51:04 +02:00
|
|
|
t.Parallel()
|
|
|
|
|
|
|
|
q := &Query{}
|
2016-08-04 07:22:17 +02:00
|
|
|
AppendInnerJoin(q, "thing=$1 AND stuff=$2", 2, 5)
|
|
|
|
AppendInnerJoin(q, "thing=$1 AND stuff=$2", 2, 5)
|
2016-04-20 14:51:04 +02:00
|
|
|
|
2016-08-04 07:22:17 +02:00
|
|
|
if len(q.innerJoins) != 2 {
|
2016-04-20 14:51:04 +02:00
|
|
|
t.Errorf("Expected len 1, got %d", len(q.innerJoins))
|
|
|
|
}
|
|
|
|
|
|
|
|
if q.innerJoins[0].on != "thing=$1 AND stuff=$2" {
|
|
|
|
t.Errorf("Got invalid innerJoin on string: %#v", q.innerJoins)
|
|
|
|
}
|
2016-08-04 07:22:17 +02:00
|
|
|
if q.innerJoins[1].on != "thing=$1 AND stuff=$2" {
|
|
|
|
t.Errorf("Got invalid innerJoin on string: %#v", q.innerJoins)
|
|
|
|
}
|
2016-04-20 14:51:04 +02:00
|
|
|
|
|
|
|
if len(q.innerJoins[0].args) != 2 {
|
|
|
|
t.Errorf("Expected len 2, got %d", len(q.innerJoins[0].args))
|
|
|
|
}
|
2016-08-04 07:22:17 +02:00
|
|
|
if len(q.innerJoins[1].args) != 2 {
|
|
|
|
t.Errorf("Expected len 2, got %d", len(q.innerJoins[1].args))
|
|
|
|
}
|
2016-04-20 14:51:04 +02:00
|
|
|
|
|
|
|
if q.innerJoins[0].args[0] != 2 && q.innerJoins[0].args[1] != 5 {
|
|
|
|
t.Errorf("Invalid args values, got %#v", q.innerJoins[0].args)
|
|
|
|
}
|
|
|
|
|
2016-08-04 07:22:17 +02:00
|
|
|
SetInnerJoin(q, "thing=$1 AND stuff=$2", 2, 5)
|
|
|
|
if len(q.innerJoins) != 1 {
|
|
|
|
t.Errorf("Expected len 1, got %d", len(q.innerJoins))
|
2016-04-20 14:51:04 +02:00
|
|
|
}
|
|
|
|
|
2016-08-04 07:22:17 +02:00
|
|
|
if q.innerJoins[0].on != "thing=$1 AND stuff=$2" {
|
|
|
|
t.Errorf("Got invalid innerJoin on string: %#v", q.innerJoins)
|
2016-04-20 14:51:04 +02:00
|
|
|
}
|
|
|
|
}
|