0768a89aa6
* Added select and where helpers for the templates - These run at run time * Added select to the boil DB interface * Renamed some of the broken template names and fixed some templates
86 lines
1.5 KiB
Go
86 lines
1.5 KiB
Go
package boil
|
|
|
|
import (
|
|
"testing"
|
|
"time"
|
|
)
|
|
|
|
type testObj struct {
|
|
ID int
|
|
Name string `db:"TestHello"`
|
|
HeadSize int
|
|
}
|
|
|
|
func TestGoVarToSQLName(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
tests := []struct {
|
|
In, Out string
|
|
}{
|
|
{"IDStruct", "id_struct"},
|
|
{"WigglyBits", "wiggly_bits"},
|
|
{"HoboIDFriend3333", "hobo_id_friend3333"},
|
|
{"3333friend", "3333friend"},
|
|
{"ID3ID", "id3_id"},
|
|
{"Wei3rd", "wei3rd"},
|
|
{"He3I3Test", "he3_i3_test"},
|
|
{"He3ID3Test", "he3_id3_test"},
|
|
{"HelloFriendID", "hello_friend_id"},
|
|
}
|
|
|
|
for i, test := range tests {
|
|
if out := goVarToSQLName(test.In); out != test.Out {
|
|
t.Errorf("%d) from: %q, want: %q, got: %q", i, test.In, test.Out, out)
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestSelectNames(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
o := testObj{
|
|
Name: "bob",
|
|
ID: 5,
|
|
HeadSize: 23,
|
|
}
|
|
|
|
result := SelectNames(o)
|
|
if result != `id, TestHello, head_size` {
|
|
t.Error("Result was wrong, got:", result)
|
|
}
|
|
}
|
|
|
|
func TestWhere(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
columns := map[string]interface{}{
|
|
"name": "bob",
|
|
"id": 5,
|
|
"date": time.Now(),
|
|
}
|
|
|
|
result := Where(columns)
|
|
|
|
if result != `date=$1 AND id=$2 AND name=$3` {
|
|
t.Error("Result was wrong, got:", result)
|
|
}
|
|
}
|
|
|
|
func TestWhereParams(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
columns := map[string]interface{}{
|
|
"name": "bob",
|
|
"id": 5,
|
|
}
|
|
|
|
result := WhereParams(columns)
|
|
|
|
if result[0].(int) != 5 {
|
|
t.Error("Result[0] was wrong, got:", result[0])
|
|
}
|
|
|
|
if result[1].(string) != "bob" {
|
|
t.Error("Result[1] was wrong, got:", result[1])
|
|
}
|
|
}
|