mirror of
https://github.com/neilotoole/sq.git
synced 2024-12-18 13:41:49 +03:00
48 lines
1.7 KiB
Go
48 lines
1.7 KiB
Go
|
package drivers_test
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/neilotoole/sq/drivers/sqlite3"
|
||
|
|
||
|
"github.com/neilotoole/sq/drivers/mysql"
|
||
|
|
||
|
"github.com/neilotoole/sq/libsq/source"
|
||
|
|
||
|
_ "github.com/mattn/go-sqlite3"
|
||
|
)
|
||
|
|
||
|
//nolint:exhaustive,lll
|
||
|
func TestQuery_groupby(t *testing.T) {
|
||
|
testCases := []queryTestCase{
|
||
|
{
|
||
|
name: "group_by/single-term",
|
||
|
in: `@sakila | .payment | .customer_id, sum(.amount) | group_by(.customer_id)`,
|
||
|
wantSQL: `SELECT "customer_id", sum("amount") AS "sum(.amount)" FROM "payment" GROUP BY "customer_id"`,
|
||
|
override: map[source.Type]string{mysql.Type: "SELECT `customer_id`, sum(`amount`) AS `sum(.amount)` FROM `payment` GROUP BY `customer_id`"},
|
||
|
wantRecs: 599,
|
||
|
},
|
||
|
{
|
||
|
name: "group_by/multiple_terms",
|
||
|
in: `@sakila | .payment | .customer_id, .staff_id, sum(.amount) | group_by(.customer_id, .staff_id)`,
|
||
|
wantSQL: `SELECT "customer_id", "staff_id", sum("amount") AS "sum(.amount)" FROM "payment" GROUP BY "customer_id", "staff_id"`,
|
||
|
override: map[source.Type]string{mysql.Type: "SELECT `customer_id`, `staff_id`, sum(`amount`) AS `sum(.amount)` FROM `payment` GROUP BY `customer_id`, `staff_id`"},
|
||
|
wantRecs: 1198,
|
||
|
},
|
||
|
{
|
||
|
name: "group_by/with_func/sqlite",
|
||
|
in: `@sakila | .payment | date("month", .payment_date):month, count(.payment_id):count | group_by(date("month", .payment_date))`,
|
||
|
wantSQL: `SELECT date('month', "payment_date") AS "month", count("payment_id") AS "count" FROM "payment" GROUP BY date('month', "payment_date")`,
|
||
|
onlyFor: []source.Type{sqlite3.Type},
|
||
|
wantRecs: 1,
|
||
|
},
|
||
|
}
|
||
|
|
||
|
for _, tc := range testCases {
|
||
|
tc := tc
|
||
|
t.Run(tc.name, func(t *testing.T) {
|
||
|
execQueryTestCase(t, tc)
|
||
|
})
|
||
|
}
|
||
|
}
|