|
| 1 | +import { afterEach, beforeAll, beforeEach, describe, expect, it } from 'vitest'; |
| 2 | +import { SQLocal } from '../src/index.js'; |
| 3 | + |
| 4 | +describe.each([ |
| 5 | + { type: 'opfs', path: 'create-aggregate-function-test.sqlite3' }, |
| 6 | + { type: 'memory', path: ':memory:' }, |
| 7 | + { type: 'local', path: ':localStorage:' }, |
| 8 | + { type: 'session', path: ':sessionStorage:' }, |
| 9 | +])('createAggregateFunction ($type)', ({ path }) => { |
| 10 | + const { sql, createAggregateFunction } = new SQLocal(path); |
| 11 | + |
| 12 | + beforeAll(async () => { |
| 13 | + const values = new Map<unknown, number>(); |
| 14 | + |
| 15 | + await createAggregateFunction('mostCommon', { |
| 16 | + step: (value: unknown) => { |
| 17 | + const valueCount = values.get(value) ?? 0; |
| 18 | + values.set(value, valueCount + 1); |
| 19 | + }, |
| 20 | + final: () => { |
| 21 | + const valueEntries = Array.from(values.entries()); |
| 22 | + const sortedEntries = valueEntries.sort((a, b) => b[1] - a[1]); |
| 23 | + const mostCommonValue = sortedEntries[0][0]; |
| 24 | + values.clear(); |
| 25 | + return mostCommonValue; |
| 26 | + }, |
| 27 | + }); |
| 28 | + }); |
| 29 | + |
| 30 | + beforeEach(async () => { |
| 31 | + await sql`CREATE TABLE nums (num REAL NOT NULL)`; |
| 32 | + }); |
| 33 | + |
| 34 | + afterEach(async () => { |
| 35 | + await sql`DROP TABLE nums`; |
| 36 | + }); |
| 37 | + |
| 38 | + it('should create and use aggregate function in SELECT clause', async () => { |
| 39 | + await sql`INSERT INTO nums (num) VALUES (0), (3), (2), (7), (3), (1), (5), (3), (3), (2)`; |
| 40 | + |
| 41 | + const results = await sql`SELECT mostCommon(num) AS mostCommon FROM nums`; |
| 42 | + |
| 43 | + expect(results).toEqual([{ mostCommon: 3 }]); |
| 44 | + }); |
| 45 | + |
| 46 | + it('should create and use aggregate function in HAVING clause', async () => { |
| 47 | + await sql`INSERT INTO nums (num) VALUES (1), (2), (2), (2), (4), (5), (5), (6)`; |
| 48 | + |
| 49 | + const results = await sql` |
| 50 | + SELECT mod(num, 2) AS isOdd |
| 51 | + FROM nums |
| 52 | + GROUP BY isOdd |
| 53 | + HAVING mostCommon(num) = 5 |
| 54 | + `; |
| 55 | + |
| 56 | + expect(results).toEqual([{ isOdd: 1 }]); |
| 57 | + }); |
| 58 | + |
| 59 | + it('should not replace an existing implementation', async () => { |
| 60 | + const createBadFn = async () => { |
| 61 | + await createAggregateFunction('mostCommon', { |
| 62 | + step: () => {}, |
| 63 | + final: () => 0, |
| 64 | + }); |
| 65 | + }; |
| 66 | + |
| 67 | + await expect(createBadFn).rejects.toThrowError(); |
| 68 | + }); |
| 69 | +}); |
0 commit comments