| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296 |
- import { afterAll, beforeAll, expect, test } from 'vitest'
- import pgMeta from '../src/index'
- import { cleanupRoot, createTestDatabase } from './db/utils'
- beforeAll(async () => {
- // Any global setup if needed
- })
- afterAll(async () => {
- await cleanupRoot()
- })
- const withTestDatabase = (
- name: string,
- fn: (db: Awaited<ReturnType<typeof createTestDatabase>>) => Promise<void>
- ) => {
- test(name, async () => {
- const db = await createTestDatabase()
- try {
- await fn(db)
- } finally {
- await db.cleanup()
- }
- })
- }
- withTestDatabase('list views', async ({ executeQuery }) => {
- const { sql: listSql, zod: listZod } = pgMeta.views.list()
- const views = listZod.parse(await executeQuery(listSql))
- const todosView = views.find(({ name }) => name === 'todos_view')
- expect(todosView).toMatchInlineSnapshot(
- { id: expect.any(Number) },
- `
- {
- "columns": [
- {
- "check": null,
- "comment": null,
- "data_type": "bigint",
- "default_value": null,
- "enums": [],
- "format": "int8",
- "format_schema": "pg_catalog",
- "id": "16423.1",
- "identity_generation": null,
- "is_generated": false,
- "is_identity": false,
- "is_nullable": true,
- "is_unique": false,
- "is_updatable": true,
- "name": "id",
- "ordinal_position": 1,
- "schema": "public",
- "table": "todos_view",
- "table_id": 16423,
- },
- {
- "check": null,
- "comment": null,
- "data_type": "text",
- "default_value": null,
- "enums": [],
- "format": "text",
- "format_schema": "pg_catalog",
- "id": "16423.2",
- "identity_generation": null,
- "is_generated": false,
- "is_identity": false,
- "is_nullable": true,
- "is_unique": false,
- "is_updatable": true,
- "name": "details",
- "ordinal_position": 2,
- "schema": "public",
- "table": "todos_view",
- "table_id": 16423,
- },
- {
- "check": null,
- "comment": null,
- "data_type": "bigint",
- "default_value": null,
- "enums": [],
- "format": "int8",
- "format_schema": "pg_catalog",
- "id": "16423.3",
- "identity_generation": null,
- "is_generated": false,
- "is_identity": false,
- "is_nullable": true,
- "is_unique": false,
- "is_updatable": true,
- "name": "user-id",
- "ordinal_position": 3,
- "schema": "public",
- "table": "todos_view",
- "table_id": 16423,
- },
- ],
- "comment": null,
- "id": Any<Number>,
- "is_updatable": true,
- "name": "todos_view",
- "schema": "public",
- }
- `
- )
- })
- withTestDatabase('list views without columns', async ({ executeQuery }) => {
- const { sql: listSql, zod: listZod } = pgMeta.views.list({ includeColumns: false })
- const views = listZod.parse(await executeQuery(listSql))
- const todosView = views.find(({ name }) => name === 'todos_view')
- expect(todosView).toMatchInlineSnapshot(
- { id: expect.any(Number) },
- `
- {
- "comment": null,
- "id": Any<Number>,
- "is_updatable": true,
- "name": "todos_view",
- "schema": "public",
- }
- `
- )
- })
- withTestDatabase('retrieve view by name', async ({ executeQuery }) => {
- const { sql: retrieveSql, zod: retrieveZod } = pgMeta.views.retrieve({
- name: 'todos_view',
- schema: 'public',
- })
- const view = retrieveZod.parse((await executeQuery(retrieveSql))[0])
- expect(view).toMatchInlineSnapshot(
- { id: expect.any(Number) },
- `
- {
- "columns": [
- {
- "check": null,
- "comment": null,
- "data_type": "bigint",
- "default_value": null,
- "enums": [],
- "format": "int8",
- "format_schema": "pg_catalog",
- "id": "16423.1",
- "identity_generation": null,
- "is_generated": false,
- "is_identity": false,
- "is_nullable": true,
- "is_unique": false,
- "is_updatable": true,
- "name": "id",
- "ordinal_position": 1,
- "schema": "public",
- "table": "todos_view",
- "table_id": 16423,
- },
- {
- "check": null,
- "comment": null,
- "data_type": "text",
- "default_value": null,
- "enums": [],
- "format": "text",
- "format_schema": "pg_catalog",
- "id": "16423.2",
- "identity_generation": null,
- "is_generated": false,
- "is_identity": false,
- "is_nullable": true,
- "is_unique": false,
- "is_updatable": true,
- "name": "details",
- "ordinal_position": 2,
- "schema": "public",
- "table": "todos_view",
- "table_id": 16423,
- },
- {
- "check": null,
- "comment": null,
- "data_type": "bigint",
- "default_value": null,
- "enums": [],
- "format": "int8",
- "format_schema": "pg_catalog",
- "id": "16423.3",
- "identity_generation": null,
- "is_generated": false,
- "is_identity": false,
- "is_nullable": true,
- "is_unique": false,
- "is_updatable": true,
- "name": "user-id",
- "ordinal_position": 3,
- "schema": "public",
- "table": "todos_view",
- "table_id": 16423,
- },
- ],
- "comment": null,
- "id": Any<Number>,
- "is_updatable": true,
- "name": "todos_view",
- "schema": "public",
- }
- `
- )
- })
- withTestDatabase('retrieve view by id', async ({ executeQuery }) => {
- const { sql: retrieveSql, zod: retrieveZod } = pgMeta.views.retrieve({
- id: 16423,
- })
- const view = retrieveZod.parse((await executeQuery(retrieveSql))[0])
- expect(view).toMatchInlineSnapshot(
- { id: expect.any(Number) },
- `
- {
- "columns": [
- {
- "check": null,
- "comment": null,
- "data_type": "bigint",
- "default_value": null,
- "enums": [],
- "format": "int8",
- "format_schema": "pg_catalog",
- "id": "16423.1",
- "identity_generation": null,
- "is_generated": false,
- "is_identity": false,
- "is_nullable": true,
- "is_unique": false,
- "is_updatable": true,
- "name": "id",
- "ordinal_position": 1,
- "schema": "public",
- "table": "todos_view",
- "table_id": 16423,
- },
- {
- "check": null,
- "comment": null,
- "data_type": "text",
- "default_value": null,
- "enums": [],
- "format": "text",
- "format_schema": "pg_catalog",
- "id": "16423.2",
- "identity_generation": null,
- "is_generated": false,
- "is_identity": false,
- "is_nullable": true,
- "is_unique": false,
- "is_updatable": true,
- "name": "details",
- "ordinal_position": 2,
- "schema": "public",
- "table": "todos_view",
- "table_id": 16423,
- },
- {
- "check": null,
- "comment": null,
- "data_type": "bigint",
- "default_value": null,
- "enums": [],
- "format": "int8",
- "format_schema": "pg_catalog",
- "id": "16423.3",
- "identity_generation": null,
- "is_generated": false,
- "is_identity": false,
- "is_nullable": true,
- "is_unique": false,
- "is_updatable": true,
- "name": "user-id",
- "ordinal_position": 3,
- "schema": "public",
- "table": "todos_view",
- "table_id": 16423,
- },
- ],
- "comment": null,
- "id": Any<Number>,
- "is_updatable": true,
- "name": "todos_view",
- "schema": "public",
- }
- `
- )
- })
|