graphile-test 2.8.10 → 2.8.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +1 -1
- package/README.md +46 -39
- package/package.json +7 -7
package/LICENSE
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
The MIT License (MIT)
|
|
2
2
|
|
|
3
3
|
Copyright (c) 2025 Dan Lynch <pyramation@gmail.com>
|
|
4
|
-
Copyright (c) 2025
|
|
4
|
+
Copyright (c) 2025 Constructive <developers@constructive.io>
|
|
5
5
|
Copyright (c) 2020-present, Interweb, Inc.
|
|
6
6
|
|
|
7
7
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
package/README.md
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
# graphile-test
|
|
2
2
|
|
|
3
3
|
<p align="center" width="100%">
|
|
4
|
-
<img height="250" src="https://raw.githubusercontent.com/
|
|
4
|
+
<img height="250" src="https://raw.githubusercontent.com/constructive-io/constructive/refs/heads/main/assets/outline-logo.svg" />
|
|
5
5
|
</p>
|
|
6
6
|
|
|
7
7
|
<p align="center" width="100%">
|
|
8
|
-
<a href="https://github.com/
|
|
9
|
-
<img height="20" src="https://github.com/
|
|
8
|
+
<a href="https://github.com/constructive-io/constructive/actions/workflows/run-tests.yaml">
|
|
9
|
+
<img height="20" src="https://github.com/constructive-io/constructive/actions/workflows/run-tests.yaml/badge.svg" />
|
|
10
10
|
</a>
|
|
11
|
-
<a href="https://github.com/
|
|
11
|
+
<a href="https://github.com/constructive-io/constructive/blob/main/LICENSE">
|
|
12
12
|
<img height="20" src="https://img.shields.io/badge/license-MIT-blue.svg"/>
|
|
13
13
|
</a>
|
|
14
14
|
<a href="https://www.npmjs.com/package/graphile-test">
|
|
@@ -16,11 +16,11 @@
|
|
|
16
16
|
</a>
|
|
17
17
|
</p>
|
|
18
18
|
|
|
19
|
-
`graphile-test` builds on top of [`pgsql-test`](https://github.com/
|
|
19
|
+
`graphile-test` builds on top of [`pgsql-test`](https://github.com/constructive-io/constructive/tree/main/packages/pgsql-test) to provide robust GraphQL testing utilities for PostGraphile-based projects.
|
|
20
20
|
|
|
21
21
|
It provides a seamless setup for isolated, seeded, role-aware Postgres databases and injects GraphQL helpers for snapshot testing, role context, and mutation/query assertions.
|
|
22
22
|
|
|
23
|
-
**Note:** This is a bare-bones package with no defaults or settings applied. For a batteries-included version with all LaunchQL plugins pre-configured, use [`launchql-test`](https://github.com/
|
|
23
|
+
**Note:** This is a bare-bones package with no defaults or settings applied. For a batteries-included version with all LaunchQL plugins pre-configured, use [`launchql-test`](https://github.com/constructive-io/constructive/tree/main/packages/launchql-test) instead.
|
|
24
24
|
|
|
25
25
|
## 🚀 Features
|
|
26
26
|
|
|
@@ -207,75 +207,82 @@ expect(snapshot(res.data)).toMatchSnapshot();
|
|
|
207
207
|
|
|
208
208
|
See [`pgsql-test` Snapshot Utilities](https://www.npmjs.com/package/pgsql-test#snapshot-utilities) for the full API reference.
|
|
209
209
|
|
|
210
|
+
## 🧪 Testing
|
|
211
|
+
|
|
212
|
+
```sh
|
|
213
|
+
# requires a local Postgres available (defaults to postgres/password@localhost:5432)
|
|
214
|
+
pnpm --filter graphile-test test
|
|
215
|
+
```
|
|
216
|
+
|
|
210
217
|
---
|
|
211
218
|
|
|
212
219
|
## Education and Tutorials
|
|
213
220
|
|
|
214
|
-
1. 🚀 [Quickstart: Getting Up and Running](https://
|
|
221
|
+
1. 🚀 [Quickstart: Getting Up and Running](https://constructive.io/learn/quickstart)
|
|
215
222
|
Get started with modular databases in minutes. Install prerequisites and deploy your first module.
|
|
216
223
|
|
|
217
|
-
2. 📦 [Modular PostgreSQL Development with Database Packages](https://
|
|
224
|
+
2. 📦 [Modular PostgreSQL Development with Database Packages](https://constructive.io/learn/modular-postgres)
|
|
218
225
|
Learn to organize PostgreSQL projects with pgpm workspaces and reusable database modules.
|
|
219
226
|
|
|
220
|
-
3. ✏️ [Authoring Database Changes](https://
|
|
227
|
+
3. ✏️ [Authoring Database Changes](https://constructive.io/learn/authoring-database-changes)
|
|
221
228
|
Master the workflow for adding, organizing, and managing database changes with pgpm.
|
|
222
229
|
|
|
223
|
-
4. 🧪 [End-to-End PostgreSQL Testing with TypeScript](https://
|
|
230
|
+
4. 🧪 [End-to-End PostgreSQL Testing with TypeScript](https://constructive.io/learn/e2e-postgres-testing)
|
|
224
231
|
Master end-to-end PostgreSQL testing with ephemeral databases, RLS testing, and CI/CD automation.
|
|
225
232
|
|
|
226
|
-
5. ⚡ [Supabase Testing](https://
|
|
233
|
+
5. ⚡ [Supabase Testing](https://constructive.io/learn/supabase)
|
|
227
234
|
Use TypeScript-first tools to test Supabase projects with realistic RLS, policies, and auth contexts.
|
|
228
235
|
|
|
229
|
-
6. 💧 [Drizzle ORM Testing](https://
|
|
236
|
+
6. 💧 [Drizzle ORM Testing](https://constructive.io/learn/drizzle-testing)
|
|
230
237
|
Run full-stack tests with Drizzle ORM, including database setup, teardown, and RLS enforcement.
|
|
231
238
|
|
|
232
|
-
7. 🔧 [Troubleshooting](https://
|
|
239
|
+
7. 🔧 [Troubleshooting](https://constructive.io/learn/troubleshooting)
|
|
233
240
|
Common issues and solutions for pgpm, PostgreSQL, and testing.
|
|
234
241
|
|
|
235
|
-
## Related
|
|
242
|
+
## Related Constructive Tooling
|
|
236
243
|
|
|
237
244
|
### 🧪 Testing
|
|
238
245
|
|
|
239
|
-
* [
|
|
240
|
-
* [
|
|
241
|
-
* [
|
|
242
|
-
* [
|
|
246
|
+
* [pgsql-test](https://github.com/constructive-io/constructive/tree/main/packages/pgsql-test): **📊 Isolated testing environments** with per-test transaction rollbacks—ideal for integration tests, complex migrations, and RLS simulation.
|
|
247
|
+
* [supabase-test](https://github.com/constructive-io/constructive/tree/main/packages/supabase-test): **🧪 Supabase-native test harness** preconfigured for the local Supabase stack—per-test rollbacks, JWT/role context helpers, and CI/GitHub Actions ready.
|
|
248
|
+
* [graphile-test](https://github.com/constructive-io/constructive/tree/main/packages/graphile-test): **🔐 Authentication mocking** for Graphile-focused test helpers and emulating row-level security contexts.
|
|
249
|
+
* [pg-query-context](https://github.com/constructive-io/constructive/tree/main/packages/pg-query-context): **🔒 Session context injection** to add session-local context (e.g., `SET LOCAL`) into queries—ideal for setting `role`, `jwt.claims`, and other session settings.
|
|
243
250
|
|
|
244
251
|
### 🧠 Parsing & AST
|
|
245
252
|
|
|
246
|
-
* [
|
|
247
|
-
* [
|
|
248
|
-
* [
|
|
249
|
-
* [@pgsql/enums](https://
|
|
250
|
-
* [@pgsql/types](https://
|
|
251
|
-
* [@pgsql/utils](https://
|
|
252
|
-
* [
|
|
253
|
+
* [pgsql-parser](https://www.npmjs.com/package/pgsql-parser): **🔄 SQL conversion engine** that interprets and converts PostgreSQL syntax.
|
|
254
|
+
* [libpg-query-node](https://www.npmjs.com/package/libpg-query): **🌉 Node.js bindings** for `libpg_query`, converting SQL into parse trees.
|
|
255
|
+
* [pg-proto-parser](https://www.npmjs.com/package/pg-proto-parser): **📦 Protobuf parser** for parsing PostgreSQL Protocol Buffers definitions to generate TypeScript interfaces, utility functions, and JSON mappings for enums.
|
|
256
|
+
* [@pgsql/enums](https://www.npmjs.com/package/@pgsql/enums): **🏷️ TypeScript enums** for PostgreSQL AST for safe and ergonomic parsing logic.
|
|
257
|
+
* [@pgsql/types](https://www.npmjs.com/package/@pgsql/types): **📝 Type definitions** for PostgreSQL AST nodes in TypeScript.
|
|
258
|
+
* [@pgsql/utils](https://www.npmjs.com/package/@pgsql/utils): **🛠️ AST utilities** for constructing and transforming PostgreSQL syntax trees.
|
|
259
|
+
* [pg-ast](https://www.npmjs.com/package/pg-ast): **🔍 Low-level AST tools** and transformations for Postgres query structures.
|
|
253
260
|
|
|
254
261
|
### 🚀 API & Dev Tools
|
|
255
262
|
|
|
256
|
-
* [launchql/server](https://github.com/
|
|
257
|
-
* [launchql/explorer](https://github.com/
|
|
263
|
+
* [launchql/server](https://github.com/constructive-io/constructive/tree/main/packages/server): **⚡ Express-based API server** powered by PostGraphile to expose a secure, scalable GraphQL API over your Postgres database.
|
|
264
|
+
* [launchql/explorer](https://github.com/constructive-io/constructive/tree/main/packages/explorer): **🔎 Visual API explorer** with GraphiQL for browsing across all databases and schemas—useful for debugging, documentation, and API prototyping.
|
|
258
265
|
|
|
259
266
|
### 🔁 Streaming & Uploads
|
|
260
267
|
|
|
261
|
-
* [launchql/s3-streamer](https://github.com/
|
|
262
|
-
* [launchql/etag-hash](https://github.com/
|
|
263
|
-
* [launchql/etag-stream](https://github.com/
|
|
264
|
-
* [launchql/uuid-hash](https://github.com/
|
|
265
|
-
* [launchql/uuid-stream](https://github.com/
|
|
266
|
-
* [launchql/upload-names](https://github.com/
|
|
268
|
+
* [launchql/s3-streamer](https://github.com/constructive-io/constructive/tree/main/packages/s3-streamer): **📤 Direct S3 streaming** for large files with support for metadata injection and content validation.
|
|
269
|
+
* [launchql/etag-hash](https://github.com/constructive-io/constructive/tree/main/packages/etag-hash): **🏷️ S3-compatible ETags** created by streaming and hashing file uploads in chunks.
|
|
270
|
+
* [launchql/etag-stream](https://github.com/constructive-io/constructive/tree/main/packages/etag-stream): **🔄 ETag computation** via Node stream transformer during upload or transfer.
|
|
271
|
+
* [launchql/uuid-hash](https://github.com/constructive-io/constructive/tree/main/packages/uuid-hash): **🆔 Deterministic UUIDs** generated from hashed content, great for deduplication and asset referencing.
|
|
272
|
+
* [launchql/uuid-stream](https://github.com/constructive-io/constructive/tree/main/packages/uuid-stream): **🌊 Streaming UUID generation** based on piped file content—ideal for upload pipelines.
|
|
273
|
+
* [launchql/upload-names](https://github.com/constructive-io/constructive/tree/main/packages/upload-names): **📂 Collision-resistant filenames** utility for structured and unique file names for uploads.
|
|
267
274
|
|
|
268
275
|
### 🧰 CLI & Codegen
|
|
269
276
|
|
|
270
|
-
* [pgpm](https://github.com/
|
|
271
|
-
* [@launchql/cli](https://github.com/
|
|
272
|
-
* [launchql/launchql-gen](https://github.com/
|
|
273
|
-
* [@launchql/query-builder](https://github.com/
|
|
274
|
-
* [@launchql/query](https://github.com/
|
|
277
|
+
* [pgpm](https://github.com/constructive-io/constructive/tree/main/packages/pgpm): **🖥️ PostgreSQL Package Manager** for modular Postgres development. Works with database workspaces, scaffolding, migrations, seeding, and installing database packages.
|
|
278
|
+
* [@launchql/cli](https://github.com/constructive-io/constructive/tree/main/packages/cli): **🖥️ Command-line toolkit** for managing LaunchQL projects—supports database scaffolding, migrations, seeding, code generation, and automation.
|
|
279
|
+
* [launchql/launchql-gen](https://github.com/constructive-io/constructive/tree/main/packages/launchql-gen): **✨ Auto-generated GraphQL** mutations and queries dynamically built from introspected schema data.
|
|
280
|
+
* [@launchql/query-builder](https://github.com/constructive-io/constructive/tree/main/packages/query-builder): **🏗️ SQL constructor** providing a robust TypeScript-based query builder for dynamic generation of `SELECT`, `INSERT`, `UPDATE`, `DELETE`, and stored procedure calls—supports advanced SQL features like `JOIN`, `GROUP BY`, and schema-qualified queries.
|
|
281
|
+
* [@launchql/query](https://github.com/constructive-io/constructive/tree/main/packages/query): **🧩 Fluent GraphQL builder** for PostGraphile schemas. ⚡ Schema-aware via introspection, 🧩 composable and ergonomic for building deeply nested queries.
|
|
275
282
|
|
|
276
283
|
## Credits
|
|
277
284
|
|
|
278
|
-
🛠 Built by
|
|
285
|
+
🛠 Built by Constructive — if you like our tools, please checkout and contribute to [our github ⚛️](https://github.com/constructive-io)
|
|
279
286
|
|
|
280
287
|
|
|
281
288
|
## Disclaimer
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "graphile-test",
|
|
3
|
-
"version": "2.8.
|
|
3
|
+
"version": "2.8.12",
|
|
4
4
|
"author": "Dan Lynch <pyramation@gmail.com>",
|
|
5
5
|
"description": "PostGraphile Testing",
|
|
6
6
|
"main": "index.js",
|
|
7
7
|
"module": "esm/index.js",
|
|
8
8
|
"types": "index.d.ts",
|
|
9
|
-
"homepage": "https://github.com/
|
|
9
|
+
"homepage": "https://github.com/constructive-io/constructive",
|
|
10
10
|
"license": "MIT",
|
|
11
11
|
"publishConfig": {
|
|
12
12
|
"access": "public",
|
|
@@ -14,10 +14,10 @@
|
|
|
14
14
|
},
|
|
15
15
|
"repository": {
|
|
16
16
|
"type": "git",
|
|
17
|
-
"url": "https://github.com/
|
|
17
|
+
"url": "https://github.com/constructive-io/constructive"
|
|
18
18
|
},
|
|
19
19
|
"bugs": {
|
|
20
|
-
"url": "https://github.com/
|
|
20
|
+
"url": "https://github.com/constructive-io/constructive/issues"
|
|
21
21
|
},
|
|
22
22
|
"scripts": {
|
|
23
23
|
"clean": "makage clean",
|
|
@@ -34,11 +34,11 @@
|
|
|
34
34
|
"makage": "^0.1.8"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@launchql/types": "^2.8.
|
|
37
|
+
"@launchql/types": "^2.8.7",
|
|
38
38
|
"graphql": "15.10.1",
|
|
39
39
|
"mock-req": "^0.2.0",
|
|
40
40
|
"pg": "^8.16.0",
|
|
41
|
-
"pgsql-test": "^2.14.
|
|
41
|
+
"pgsql-test": "^2.14.15",
|
|
42
42
|
"postgraphile": "^4.14.1"
|
|
43
43
|
},
|
|
44
44
|
"keywords": [
|
|
@@ -48,5 +48,5 @@
|
|
|
48
48
|
"launchql",
|
|
49
49
|
"test"
|
|
50
50
|
],
|
|
51
|
-
"gitHead": "
|
|
51
|
+
"gitHead": "5a0d7c7502624bd42a214f983fd7ab957e1fb3e3"
|
|
52
52
|
}
|