@snowtop/ent 0.1.0-alpha1 → 0.1.0-alpha13

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.
Files changed (83) hide show
  1. package/action/action.d.ts +17 -13
  2. package/action/executor.d.ts +2 -2
  3. package/action/experimental_action.d.ts +4 -4
  4. package/action/experimental_action.js +1 -1
  5. package/action/orchestrator.d.ts +24 -9
  6. package/action/orchestrator.js +150 -39
  7. package/action/privacy.d.ts +2 -2
  8. package/core/base.d.ts +6 -2
  9. package/core/base.js +16 -0
  10. package/core/clause.d.ts +24 -3
  11. package/core/clause.js +246 -5
  12. package/core/config.d.ts +18 -0
  13. package/core/config.js +17 -0
  14. package/core/db.d.ts +3 -3
  15. package/core/db.js +2 -0
  16. package/core/ent.d.ts +2 -4
  17. package/core/ent.js +72 -25
  18. package/core/loaders/assoc_edge_loader.d.ts +1 -1
  19. package/core/loaders/assoc_edge_loader.js +5 -4
  20. package/core/loaders/index_loader.js +1 -0
  21. package/core/loaders/object_loader.d.ts +7 -2
  22. package/core/loaders/object_loader.js +59 -4
  23. package/core/privacy.d.ts +1 -1
  24. package/core/privacy.js +3 -0
  25. package/core/viewer.d.ts +1 -0
  26. package/core/viewer.js +4 -0
  27. package/graphql/builtins/connection.js +3 -3
  28. package/graphql/builtins/edge.js +2 -2
  29. package/graphql/builtins/node.js +1 -1
  30. package/graphql/graphql.d.ts +3 -2
  31. package/graphql/graphql.js +24 -23
  32. package/graphql/index.d.ts +1 -0
  33. package/graphql/index.js +3 -1
  34. package/graphql/mutations/union.d.ts +2 -0
  35. package/graphql/mutations/union.js +35 -0
  36. package/graphql/node_resolver.d.ts +0 -1
  37. package/graphql/query/connection_type.js +6 -6
  38. package/graphql/query/page_info.js +4 -4
  39. package/graphql/query/shared_assoc_test.js +2 -2
  40. package/graphql/scalars/time.d.ts +1 -1
  41. package/index.d.ts +16 -1
  42. package/index.js +18 -5
  43. package/package.json +3 -3
  44. package/parse_schema/parse.d.ts +21 -4
  45. package/parse_schema/parse.js +79 -8
  46. package/schema/base_schema.d.ts +36 -1
  47. package/schema/base_schema.js +48 -2
  48. package/schema/field.d.ts +1 -1
  49. package/schema/field.js +11 -3
  50. package/schema/index.d.ts +4 -2
  51. package/schema/index.js +10 -1
  52. package/schema/schema.d.ts +66 -4
  53. package/schema/schema.js +138 -5
  54. package/schema/struct_field.d.ts +17 -0
  55. package/schema/struct_field.js +102 -0
  56. package/schema/union_field.d.ts +23 -0
  57. package/schema/union_field.js +79 -0
  58. package/scripts/custom_graphql.js +122 -15
  59. package/scripts/move_generated.d.ts +1 -0
  60. package/scripts/move_generated.js +142 -0
  61. package/scripts/read_schema.js +15 -1
  62. package/scripts/transform_code.d.ts +1 -0
  63. package/scripts/transform_code.js +113 -0
  64. package/scripts/transform_schema.js +190 -123
  65. package/testutils/builder.d.ts +27 -18
  66. package/testutils/builder.js +82 -10
  67. package/testutils/context/test_context.d.ts +2 -2
  68. package/testutils/context/test_context.js +7 -1
  69. package/testutils/db/test_db.d.ts +2 -1
  70. package/testutils/db/test_db.js +13 -4
  71. package/testutils/ent-graphql-tests/index.d.ts +2 -0
  72. package/testutils/ent-graphql-tests/index.js +26 -17
  73. package/testutils/fake_data/fake_contact.d.ts +4 -8
  74. package/testutils/fake_data/fake_contact.js +15 -19
  75. package/testutils/fake_data/fake_event.d.ts +4 -8
  76. package/testutils/fake_data/fake_event.js +21 -25
  77. package/testutils/fake_data/fake_user.d.ts +5 -9
  78. package/testutils/fake_data/fake_user.js +23 -27
  79. package/testutils/fake_data/test_helpers.js +1 -1
  80. package/tsc/ast.d.ts +21 -0
  81. package/tsc/ast.js +154 -0
  82. package/tsc/compilerOptions.d.ts +6 -0
  83. package/tsc/compilerOptions.js +40 -1
@@ -1,14 +1,16 @@
1
- import { Ent, ID, Viewer, Data, EntConstructor } from "../core/base";
1
+ import { Ent, ID, Viewer, Data, EntConstructor, PrivacyPolicy } from "../core/base";
2
2
  import { Orchestrator } from "../action/orchestrator";
3
3
  import { Action, Builder, Changeset, WriteOperation, Validator, Trigger, Observer } from "../action";
4
- import { Schema } from "../schema";
4
+ import { FieldMap, Schema } from "../schema";
5
+ import { SchemaConfig } from "../schema/base_schema";
6
+ import { FieldInfoMap } from "../schema/schema";
5
7
  export declare class User implements Ent {
6
8
  viewer: Viewer;
7
9
  data: Data;
8
10
  id: ID;
9
11
  accountID: string;
10
12
  nodeType: string;
11
- privacyPolicy: import("../core/base").PrivacyPolicy<Ent>;
13
+ getPrivacyPolicy(): PrivacyPolicy<this>;
12
14
  firstName: string;
13
15
  constructor(viewer: Viewer, data: Data);
14
16
  }
@@ -18,7 +20,7 @@ export declare class Event implements Ent {
18
20
  id: ID;
19
21
  accountID: string;
20
22
  nodeType: string;
21
- privacyPolicy: import("../core/base").PrivacyPolicy<Ent>;
23
+ getPrivacyPolicy(): PrivacyPolicy<this>;
22
24
  constructor(viewer: Viewer, data: Data);
23
25
  }
24
26
  export declare class Contact implements Ent {
@@ -27,7 +29,7 @@ export declare class Contact implements Ent {
27
29
  id: ID;
28
30
  accountID: string;
29
31
  nodeType: string;
30
- privacyPolicy: import("../core/base").PrivacyPolicy<Ent>;
32
+ getPrivacyPolicy(): PrivacyPolicy<this>;
31
33
  constructor(viewer: Viewer, data: Data);
32
34
  }
33
35
  export declare class Group implements Ent {
@@ -36,7 +38,7 @@ export declare class Group implements Ent {
36
38
  id: ID;
37
39
  accountID: string;
38
40
  nodeType: string;
39
- privacyPolicy: import("../core/base").PrivacyPolicy<Ent>;
41
+ getPrivacyPolicy(): PrivacyPolicy<this>;
40
42
  constructor(viewer: Viewer, data: Data);
41
43
  }
42
44
  export declare class Message implements Ent {
@@ -45,7 +47,7 @@ export declare class Message implements Ent {
45
47
  id: ID;
46
48
  accountID: string;
47
49
  nodeType: string;
48
- privacyPolicy: import("../core/base").PrivacyPolicy<Ent>;
50
+ getPrivacyPolicy(): PrivacyPolicy<this>;
49
51
  constructor(viewer: Viewer, data: Data);
50
52
  }
51
53
  export declare class Address implements Ent {
@@ -54,25 +56,32 @@ export declare class Address implements Ent {
54
56
  id: ID;
55
57
  accountID: string;
56
58
  nodeType: string;
57
- privacyPolicy: import("../core/base").PrivacyPolicy<Ent>;
59
+ getPrivacyPolicy(): PrivacyPolicy<this>;
58
60
  constructor(viewer: Viewer, data: Data);
59
61
  }
60
62
  export interface BuilderSchema<T extends Ent> extends Schema {
61
63
  ent: EntConstructor<T>;
62
64
  }
65
+ export declare function getBuilderSchema<T extends Ent>(cfg: SchemaConfig, ent: EntConstructor<T>): BuilderSchema<T>;
66
+ export declare function getBuilderSchemaFromFields<T extends Ent>(fields: FieldMap, ent: EntConstructor<T>): BuilderSchema<T>;
67
+ export declare function getBuilderSchemaTZFromFields<T extends Ent>(fields: FieldMap, ent: EntConstructor<T>): BuilderSchema<T>;
63
68
  export declare function getSchemaName(value: BuilderSchema<Ent>): string;
64
69
  export declare function getTableName(value: BuilderSchema<Ent>): string;
65
- export declare class SimpleBuilder<T extends Ent> implements Builder<T> {
70
+ export declare function getFieldInfo(value: BuilderSchema<Ent>): FieldInfoMap;
71
+ declare type MaybeNull<T extends Ent> = T | null;
72
+ declare type TMaybleNullableEnt<T extends Ent> = T | MaybeNull<T>;
73
+ export declare class SimpleBuilder<T extends Ent, TExistingEnt extends TMaybleNullableEnt<T> = MaybeNull<T>> implements Builder<T> {
66
74
  viewer: Viewer;
67
75
  private schema;
68
76
  operation: WriteOperation;
69
- existingEnt: T | undefined;
77
+ existingEnt: TExistingEnt;
70
78
  ent: EntConstructor<T>;
71
79
  placeholderID: ID;
72
80
  orchestrator: Orchestrator<T, Data>;
73
81
  fields: Map<string, any>;
74
82
  nodeType: string;
75
- constructor(viewer: Viewer, schema: BuilderSchema<T>, fields: Map<string, any>, operation?: WriteOperation, existingEnt?: T | undefined, action?: Action<T, SimpleBuilder<T>, Data> | undefined);
83
+ constructor(viewer: Viewer, schema: BuilderSchema<T>, fields: Map<string, any>, operation: WriteOperation, existingEnt: TExistingEnt, action?: Action<T, SimpleBuilder<T>, Data> | undefined);
84
+ updateInput(input: Data): void;
76
85
  build(): Promise<Changeset<T>>;
77
86
  editedEnt(): Promise<T | null>;
78
87
  editedEntX(): Promise<T>;
@@ -84,16 +93,16 @@ export declare class SimpleBuilder<T extends Ent> implements Builder<T> {
84
93
  interface viewerEntLoadFunc {
85
94
  (data: Data): Viewer | Promise<Viewer>;
86
95
  }
87
- export declare class SimpleAction<T extends Ent> implements Action<T, SimpleBuilder<T>, Data> {
96
+ export declare class SimpleAction<T extends Ent, TExistingEnt extends TMaybleNullableEnt<T> = MaybeNull<T>> implements Action<T, SimpleBuilder<T, TExistingEnt>, Data, TExistingEnt> {
88
97
  viewer: Viewer;
89
98
  private fields;
90
- builder: SimpleBuilder<T>;
91
- validators: Validator<SimpleBuilder<T>, Data>[];
92
- triggers: Trigger<SimpleBuilder<T>, Data>[];
93
- observers: Observer<SimpleBuilder<T>, Data>[];
99
+ builder: SimpleBuilder<T, TExistingEnt>;
100
+ validators: Validator<T, SimpleBuilder<T>, Data>[];
101
+ triggers: Trigger<T, SimpleBuilder<T>, Data>[];
102
+ observers: Observer<T, SimpleBuilder<T>, Data>[];
94
103
  viewerForEntLoad: viewerEntLoadFunc | undefined;
95
- constructor(viewer: Viewer, schema: BuilderSchema<T>, fields: Map<string, any>, operation?: WriteOperation, existingEnt?: T | undefined);
96
- getPrivacyPolicy(): import("../core/base").PrivacyPolicy<Ent>;
104
+ constructor(viewer: Viewer, schema: BuilderSchema<T>, fields: Map<string, any>, operation: WriteOperation | undefined, existingEnt: TExistingEnt);
105
+ getPrivacyPolicy(): PrivacyPolicy<Ent>;
97
106
  getInput(): Data;
98
107
  changeset(): Promise<Changeset<T>>;
99
108
  valid(): Promise<boolean>;
@@ -3,7 +3,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
3
3
  return (mod && mod.__esModule) ? mod : { "default": mod };
4
4
  };
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
- exports.SimpleAction = exports.SimpleBuilder = exports.getTableName = exports.getSchemaName = exports.Address = exports.Message = exports.Group = exports.Contact = exports.Event = exports.User = void 0;
6
+ exports.SimpleAction = exports.SimpleBuilder = exports.getFieldInfo = exports.getTableName = exports.getSchemaName = exports.getBuilderSchemaTZFromFields = exports.getBuilderSchemaFromFields = exports.getBuilderSchema = exports.Address = exports.Message = exports.Group = exports.Contact = exports.Event = exports.User = void 0;
7
7
  const privacy_1 = require("../core/privacy");
8
8
  const orchestrator_1 = require("../action/orchestrator");
9
9
  const action_1 = require("../action");
@@ -14,18 +14,22 @@ const snake_case_1 = require("snake-case");
14
14
  const loaders_1 = require("../core/loaders");
15
15
  const convert_1 = require("../core/convert");
16
16
  const camel_case_1 = require("camel-case");
17
+ const base_schema_1 = require("../schema/base_schema");
18
+ const schema_2 = require("../schema/schema");
17
19
  class User {
18
20
  constructor(viewer, data) {
19
21
  this.viewer = viewer;
20
22
  this.data = data;
21
23
  this.accountID = "";
22
24
  this.nodeType = "User";
23
- this.privacyPolicy = privacy_1.AlwaysAllowPrivacyPolicy;
24
25
  this.data.created_at = (0, convert_1.convertDate)(data.created_at);
25
26
  this.data.updated_at = (0, convert_1.convertDate)(data.updated_at);
26
27
  this.id = data.id;
27
28
  this.firstName = data.first_name;
28
29
  }
30
+ getPrivacyPolicy() {
31
+ return privacy_1.AlwaysAllowPrivacyPolicy;
32
+ }
29
33
  }
30
34
  exports.User = User;
31
35
  class Event {
@@ -34,9 +38,11 @@ class Event {
34
38
  this.data = data;
35
39
  this.accountID = "";
36
40
  this.nodeType = "Event";
37
- this.privacyPolicy = privacy_1.AlwaysAllowPrivacyPolicy;
38
41
  this.id = data.id;
39
42
  }
43
+ getPrivacyPolicy() {
44
+ return privacy_1.AlwaysAllowPrivacyPolicy;
45
+ }
40
46
  }
41
47
  exports.Event = Event;
42
48
  class Contact {
@@ -45,11 +51,13 @@ class Contact {
45
51
  this.data = data;
46
52
  this.accountID = "";
47
53
  this.nodeType = "Contact";
48
- this.privacyPolicy = privacy_1.AlwaysAllowPrivacyPolicy;
49
54
  this.data.created_at = (0, convert_1.convertDate)(data.created_at);
50
55
  this.data.updated_at = (0, convert_1.convertDate)(data.updated_at);
51
56
  this.id = data.id;
52
57
  }
58
+ getPrivacyPolicy() {
59
+ return privacy_1.AlwaysAllowPrivacyPolicy;
60
+ }
53
61
  }
54
62
  exports.Contact = Contact;
55
63
  class Group {
@@ -58,9 +66,11 @@ class Group {
58
66
  this.data = data;
59
67
  this.accountID = "";
60
68
  this.nodeType = "Group";
61
- this.privacyPolicy = privacy_1.AlwaysAllowPrivacyPolicy;
62
69
  this.id = data.id;
63
70
  }
71
+ getPrivacyPolicy() {
72
+ return privacy_1.AlwaysAllowPrivacyPolicy;
73
+ }
64
74
  }
65
75
  exports.Group = Group;
66
76
  class Message {
@@ -69,9 +79,11 @@ class Message {
69
79
  this.data = data;
70
80
  this.accountID = "";
71
81
  this.nodeType = "Message";
72
- this.privacyPolicy = privacy_1.AlwaysAllowPrivacyPolicy;
73
82
  this.id = data.id;
74
83
  }
84
+ getPrivacyPolicy() {
85
+ return privacy_1.AlwaysAllowPrivacyPolicy;
86
+ }
75
87
  }
76
88
  exports.Message = Message;
77
89
  class Address {
@@ -80,11 +92,34 @@ class Address {
80
92
  this.data = data;
81
93
  this.accountID = "";
82
94
  this.nodeType = "Address";
83
- this.privacyPolicy = privacy_1.AlwaysAllowPrivacyPolicy;
84
95
  this.id = data.id;
85
96
  }
97
+ getPrivacyPolicy() {
98
+ return privacy_1.AlwaysAllowPrivacyPolicy;
99
+ }
86
100
  }
87
101
  exports.Address = Address;
102
+ function getBuilderSchema(cfg, ent) {
103
+ return {
104
+ ...new base_schema_1.EntSchema(cfg),
105
+ ent,
106
+ };
107
+ }
108
+ exports.getBuilderSchema = getBuilderSchema;
109
+ function getBuilderSchemaFromFields(fields, ent) {
110
+ return {
111
+ ...new base_schema_1.EntSchema({ fields }),
112
+ ent,
113
+ };
114
+ }
115
+ exports.getBuilderSchemaFromFields = getBuilderSchemaFromFields;
116
+ function getBuilderSchemaTZFromFields(fields, ent) {
117
+ return {
118
+ ...new base_schema_1.EntSchemaWithTZ({ fields }),
119
+ ent,
120
+ };
121
+ }
122
+ exports.getBuilderSchemaTZFromFields = getBuilderSchemaTZFromFields;
88
123
  function getSchemaName(value) {
89
124
  return value.ent.name;
90
125
  }
@@ -96,9 +131,21 @@ exports.getTableName = getTableName;
96
131
  function randomNum() {
97
132
  return Math.random().toString(10).substring(2);
98
133
  }
134
+ function getFieldInfo(value) {
135
+ const fields = (0, schema_1.getFields)(value);
136
+ let ret = {};
137
+ for (const [k, f] of fields) {
138
+ ret[k] = {
139
+ dbCol: (0, schema_2.getStorageKey)(f, k),
140
+ inputKey: (0, camel_case_1.camelCase)(k),
141
+ };
142
+ }
143
+ return ret;
144
+ }
145
+ exports.getFieldInfo = getFieldInfo;
99
146
  // reuses orchestrator and standard things
100
147
  class SimpleBuilder {
101
- constructor(viewer, schema, fields, operation = action_1.WriteOperation.Insert, existingEnt = undefined, action) {
148
+ constructor(viewer, schema, fields, operation = action_1.WriteOperation.Insert, existingEnt, action) {
102
149
  this.viewer = viewer;
103
150
  this.schema = schema;
104
151
  this.operation = operation;
@@ -128,11 +175,13 @@ class SimpleBuilder {
128
175
  this.ent = schema.ent;
129
176
  const tableName = getTableName(schema);
130
177
  this.nodeType = (0, camel_case_1.camelCase)(schema.ent.name);
178
+ const fieldInfo = getFieldInfo(schema);
131
179
  this.orchestrator = new orchestrator_1.Orchestrator({
132
180
  viewer: this.viewer,
133
181
  operation: operation,
134
182
  tableName: tableName,
135
183
  key,
184
+ fieldInfo,
136
185
  loaderOptions: {
137
186
  loaderFactory: new loaders_1.ObjectLoaderFactory({
138
187
  tableName: tableName,
@@ -142,15 +191,38 @@ class SimpleBuilder {
142
191
  ent: schema.ent,
143
192
  tableName: tableName,
144
193
  fields: [],
194
+ fieldPrivacy: (0, schema_1.getFieldsWithPrivacy)(schema, fieldInfo),
145
195
  },
146
196
  builder: this,
147
197
  action: action,
148
198
  schema: this.schema,
149
199
  editedFields: () => {
150
- return this.fields;
200
+ // to simulate what we do in generated builders where we return a new Map
201
+ const m = new Map();
202
+ for (const [k, v] of this.fields) {
203
+ m.set(k, v);
204
+ }
205
+ return m;
151
206
  },
207
+ updateInput: this.updateInput.bind(this),
152
208
  });
153
209
  }
210
+ updateInput(input) {
211
+ const knownFields = (0, schema_1.getFields)(this.schema);
212
+ for (const k in input) {
213
+ if (knownFields.has(k)) {
214
+ this.fields.set(k, input[k]);
215
+ }
216
+ else {
217
+ // related to #510. we do camelCase to pass fields in here but fields may be snakeCase and we want that to pass in tests
218
+ // we do camelCase in
219
+ const sc = (0, snake_case_1.snakeCase)(k);
220
+ if (knownFields.has(sc)) {
221
+ this.fields.set(sc, input[k]);
222
+ }
223
+ }
224
+ }
225
+ }
154
226
  build() {
155
227
  return this.orchestrator.build();
156
228
  }
@@ -175,7 +247,7 @@ class SimpleBuilder {
175
247
  }
176
248
  exports.SimpleBuilder = SimpleBuilder;
177
249
  class SimpleAction {
178
- constructor(viewer, schema, fields, operation = action_1.WriteOperation.Insert, existingEnt = undefined) {
250
+ constructor(viewer, schema, fields, operation = action_1.WriteOperation.Insert, existingEnt) {
179
251
  this.viewer = viewer;
180
252
  this.fields = fields;
181
253
  this.validators = [];
@@ -1,8 +1,8 @@
1
1
  import { Context, Viewer } from "../../core/base";
2
2
  import { ContextCache } from "../../core/context";
3
- import { LoggedOutViewer } from "../../core/viewer";
4
3
  export declare class TestContext implements Context {
4
+ constructor(viewer?: Viewer);
5
5
  cache: ContextCache;
6
- viewer: LoggedOutViewer;
6
+ viewer: Viewer;
7
7
  getViewer(): Viewer;
8
8
  }
@@ -4,9 +4,15 @@ exports.TestContext = void 0;
4
4
  const context_1 = require("../../core/context");
5
5
  const viewer_1 = require("../../core/viewer");
6
6
  class TestContext {
7
- constructor() {
7
+ constructor(viewer) {
8
8
  this.cache = new context_1.ContextCache();
9
9
  this.viewer = new viewer_1.LoggedOutViewer(this);
10
+ if (viewer) {
11
+ this.viewer = viewer;
12
+ if (viewer.setContext !== undefined) {
13
+ viewer.setContext(this);
14
+ }
15
+ }
10
16
  }
11
17
  getViewer() {
12
18
  return this.viewer;
@@ -71,10 +71,11 @@ export declare class TempDB {
71
71
  constructor(tables: CoreConcept[]);
72
72
  getDialect(): Dialect;
73
73
  getTables(): Map<string, CoreConcept>;
74
- beforeAll(): Promise<void>;
74
+ beforeAll(setupConnString?: boolean): Promise<void>;
75
75
  getSqliteClient(): SqliteDatabase;
76
76
  getPostgresClient(): PGClient;
77
77
  afterAll(): Promise<void>;
78
+ getDB(): string;
78
79
  dropAll(): Promise<void>;
79
80
  drop(...tables: string[]): Promise<void>;
80
81
  create(...tables: CoreConcept[]): Promise<void>;
@@ -336,7 +336,7 @@ class TempDB {
336
336
  getTables() {
337
337
  return this.tables;
338
338
  }
339
- async beforeAll() {
339
+ async beforeAll(setupConnString = true) {
340
340
  if (this.dialect === db_1.Dialect.Postgres) {
341
341
  const user = process.env.POSTGRES_USER || "";
342
342
  const password = process.env.POSTGRES_PASSWORD || "";
@@ -348,11 +348,17 @@ class TempDB {
348
348
  await this.client.connect();
349
349
  this.db = randomDB();
350
350
  await this.client.query(`CREATE DATABASE ${this.db}`);
351
- if (user && password) {
352
- process.env.DB_CONNECTION_STRING = `postgres://${user}:${password}@localhost:5432/${this.db}`;
351
+ if (setupConnString) {
352
+ if (user && password) {
353
+ process.env.DB_CONNECTION_STRING = `postgres://${user}:${password}@localhost:5432/${this.db}`;
354
+ }
355
+ else {
356
+ process.env.DB_CONNECTION_STRING = `postgres://localhost/${this.db}?`;
357
+ }
353
358
  }
354
359
  else {
355
- process.env.DB_CONNECTION_STRING = `postgres://localhost/${this.db}?`;
360
+ // will probably be setup via loadConfig
361
+ delete process.env.DB_CONNECTION_STRING;
356
362
  }
357
363
  this.dbClient = new pg_1.Client({
358
364
  host: "localhost",
@@ -397,6 +403,9 @@ class TempDB {
397
403
  await this.client.query(`DROP DATABASE ${this.db}`);
398
404
  await this.client.end();
399
405
  }
406
+ getDB() {
407
+ return this.db;
408
+ }
400
409
  async dropAll() {
401
410
  for (const [t, _] of this.tables) {
402
411
  await this.drop(t);
@@ -16,6 +16,8 @@ interface queryConfig {
16
16
  callback?: (res: supertest.Response) => void;
17
17
  inlineFragmentRoot?: string;
18
18
  customHandlers?: RequestHandler[];
19
+ server?: any;
20
+ graphQLPath?: string;
19
21
  }
20
22
  export interface queryRootConfig extends queryConfig {
21
23
  root: string;
@@ -26,7 +26,7 @@ exports.expectMutation = exports.expectQueryFromRoot = void 0;
26
26
  // NB: this is copied from ent-graphql-tests package until I have time to figure out how to share code here effectively
27
27
  // the circular dependencies btw this package and ent-graphql-tests seems to imply something needs to change
28
28
  const express_1 = __importDefault(require("express"));
29
- const express_graphql_1 = require("express-graphql");
29
+ const graphql_helix_1 = require("graphql-helix");
30
30
  const graphql_1 = require("graphql");
31
31
  const auth_1 = require("../../auth");
32
32
  const supertest_1 = __importDefault(require("supertest"));
@@ -45,18 +45,23 @@ function server(config) {
45
45
  if (config.init) {
46
46
  config.init(app);
47
47
  }
48
+ app.use(express_1.default.json());
48
49
  let handlers = config.customHandlers || [];
49
- handlers.push((0, express_graphql_1.graphqlHTTP)((request, response) => {
50
- const doWork = async () => {
51
- let context = await (0, auth_1.buildContext)(request, response);
52
- return {
53
- schema: config.schema,
54
- context,
55
- };
56
- };
57
- return doWork();
58
- }));
59
- app.use("/graphql", ...handlers);
50
+ handlers.push(async (req, res) => {
51
+ const { operationName, query, variables } = (0, graphql_helix_1.getGraphQLParameters)(req);
52
+ const result = await (0, graphql_helix_1.processRequest)({
53
+ operationName,
54
+ query,
55
+ variables,
56
+ request: req,
57
+ schema: config.schema,
58
+ contextFactory: async (executionContext) => {
59
+ return (0, auth_1.buildContext)(req, res);
60
+ },
61
+ });
62
+ await (0, graphql_helix_1.sendResult)(result, res);
63
+ });
64
+ app.use(config.graphQLPath || "/graphql", ...handlers);
60
65
  return app;
61
66
  }
62
67
  function getInnerType(typ, list) {
@@ -72,14 +77,14 @@ function makeGraphQLRequest(config, query, fieldArgs) {
72
77
  let test;
73
78
  if (config.test) {
74
79
  if (typeof config.test === "function") {
75
- test = config.test(server(config));
80
+ test = config.test(config.server ? config.server : server(config));
76
81
  }
77
82
  else {
78
83
  test = config.test;
79
84
  }
80
85
  }
81
86
  else {
82
- test = (0, supertest_1.default)(server(config));
87
+ test = (0, supertest_1.default)(config.server ? config.server : server(config));
83
88
  }
84
89
  let files = new Map();
85
90
  // handle files
@@ -104,7 +109,9 @@ function makeGraphQLRequest(config, query, fieldArgs) {
104
109
  }
105
110
  });
106
111
  if (files.size) {
107
- let ret = test.post("/graphql").set(config.headers || {});
112
+ let ret = test
113
+ .post(config.graphQLPath || "/graphql")
114
+ .set(config.headers || {});
108
115
  ret.field("operations", JSON.stringify({
109
116
  query: query,
110
117
  variables: config.args,
@@ -130,7 +137,7 @@ function makeGraphQLRequest(config, query, fieldArgs) {
130
137
  return [
131
138
  test,
132
139
  test
133
- .post("/graphql")
140
+ .post(config.graphQLPath || "/graphql")
134
141
  .set(config.headers || {})
135
142
  .send({
136
143
  query: query,
@@ -353,7 +360,9 @@ async function expectFromRoot(config, ...options) {
353
360
  else {
354
361
  expect(res.ok, `expected ok response. instead got ${res.status} and result ${JSON.stringify(res.body)}`);
355
362
  }
356
- if (!res.ok) {
363
+ // res.ok = true in graphql-helix when there's errors...
364
+ // res.ok = false in express-graphql when there's errors...
365
+ if (!res.ok || (res.body.errors && res.body.errors.length > 0)) {
357
366
  let errors = res.body.errors;
358
367
  expect(errors.length).toBeGreaterThan(0);
359
368
  if (config.expectedError) {
@@ -1,6 +1,5 @@
1
1
  import { ID, Ent, Viewer, Data, LoadEntOptions, PrivacyPolicy } from "../../core/base";
2
- import { BuilderSchema, SimpleBuilder } from "../builder";
3
- import { BaseEntSchema, FieldMap } from "../../schema";
2
+ import { SimpleBuilder } from "../builder";
4
3
  import { NodeType } from "./const";
5
4
  import { ObjectLoaderFactory } from "../../core/loaders";
6
5
  export declare class FakeContact implements Ent {
@@ -14,7 +13,7 @@ export declare class FakeContact implements Ent {
14
13
  readonly lastName: string;
15
14
  readonly emailAddress: string;
16
15
  readonly userID: ID;
17
- privacyPolicy: PrivacyPolicy;
16
+ getPrivacyPolicy(): PrivacyPolicy<this>;
18
17
  constructor(viewer: Viewer, data: Data);
19
18
  static getFields(): string[];
20
19
  static getTestTable(): import("../db/test_db").Table;
@@ -22,16 +21,13 @@ export declare class FakeContact implements Ent {
22
21
  static load(v: Viewer, id: ID): Promise<FakeContact | null>;
23
22
  static loadX(v: Viewer, id: ID): Promise<FakeContact>;
24
23
  }
25
- export declare class FakeContactSchema extends BaseEntSchema implements BuilderSchema<FakeContact> {
26
- ent: typeof FakeContact;
27
- fields: FieldMap;
28
- }
24
+ export declare const FakeContactSchema: import("../builder").BuilderSchema<FakeContact>;
29
25
  export interface ContactCreateInput {
30
26
  firstName: string;
31
27
  lastName: string;
32
28
  emailAddress: string;
33
29
  userID: ID;
34
30
  }
35
- export declare function getContactBuilder(viewer: Viewer, input: ContactCreateInput): SimpleBuilder<FakeContact>;
31
+ export declare function getContactBuilder(viewer: Viewer, input: ContactCreateInput): SimpleBuilder<FakeContact, null>;
36
32
  export declare function createContact(viewer: Viewer, input: ContactCreateInput): Promise<void>;
37
33
  export declare const contactLoader: ObjectLoaderFactory<unknown>;
@@ -9,13 +9,11 @@ const const_1 = require("./const");
9
9
  const test_db_1 = require("../db/test_db");
10
10
  const loaders_1 = require("../../core/loaders");
11
11
  const convert_1 = require("../../core/convert");
12
+ const action_1 = require("../../action");
12
13
  class FakeContact {
13
14
  constructor(viewer, data) {
14
15
  this.viewer = viewer;
15
16
  this.nodeType = const_1.NodeType.FakeContact;
16
- this.privacyPolicy = {
17
- rules: [new privacy_1.AllowIfViewerIsRule("userID"), privacy_1.AlwaysDenyRule],
18
- };
19
17
  this.data = data;
20
18
  this.id = data.id;
21
19
  this.createdAt = (0, convert_1.convertDate)(data.created_at);
@@ -25,6 +23,11 @@ class FakeContact {
25
23
  this.emailAddress = data.email_address;
26
24
  this.userID = data.user_id;
27
25
  }
26
+ getPrivacyPolicy() {
27
+ return {
28
+ rules: [new privacy_1.AllowIfViewerIsRule("userID"), privacy_1.AlwaysDenyRule],
29
+ };
30
+ }
28
31
  static getFields() {
29
32
  return [
30
33
  "id",
@@ -59,21 +62,14 @@ class FakeContact {
59
62
  }
60
63
  }
61
64
  exports.FakeContact = FakeContact;
62
- class FakeContactSchema extends schema_1.BaseEntSchema {
63
- constructor() {
64
- super(...arguments);
65
- this.ent = FakeContact;
66
- this.fields = {
67
- firstName: (0, schema_1.StringType)(),
68
- lastName: (0, schema_1.StringType)(),
69
- emailAddress: (0, schema_1.StringType)(),
70
- userID: (0, schema_1.UUIDType)({
71
- foreignKey: { schema: "User", column: "ID" },
72
- }),
73
- };
74
- }
75
- }
76
- exports.FakeContactSchema = FakeContactSchema;
65
+ exports.FakeContactSchema = (0, builder_1.getBuilderSchemaFromFields)({
66
+ firstName: (0, schema_1.StringType)(),
67
+ lastName: (0, schema_1.StringType)(),
68
+ emailAddress: (0, schema_1.StringType)(),
69
+ userID: (0, schema_1.UUIDType)({
70
+ foreignKey: { schema: "User", column: "ID" },
71
+ }),
72
+ }, FakeContact);
77
73
  function getContactBuilder(viewer, input) {
78
74
  const m = new Map();
79
75
  for (const key in input) {
@@ -82,7 +78,7 @@ function getContactBuilder(viewer, input) {
82
78
  //To lock in the value of Date now incase of advanceTo/advanceBy
83
79
  m.set("createdAt", new Date());
84
80
  m.set("updatedAt", new Date());
85
- return new builder_1.SimpleBuilder(viewer, new FakeContactSchema(), m);
81
+ return new builder_1.SimpleBuilder(viewer, exports.FakeContactSchema, m, action_1.WriteOperation.Insert, null);
86
82
  }
87
83
  exports.getContactBuilder = getContactBuilder;
88
84
  async function createContact(viewer, input) {
@@ -1,6 +1,5 @@
1
1
  import { ID, Ent, Viewer, Data, LoadEntOptions, PrivacyPolicy } from "../../core/base";
2
- import { BuilderSchema, SimpleBuilder } from "../builder";
3
- import { BaseEntSchema, FieldMap } from "../../schema";
2
+ import { SimpleBuilder } from "../builder";
4
3
  import { NodeType } from "./const";
5
4
  export declare class FakeEvent implements Ent {
6
5
  viewer: Viewer;
@@ -15,7 +14,7 @@ export declare class FakeEvent implements Ent {
15
14
  readonly title: string;
16
15
  readonly description: string | null;
17
16
  readonly userID: ID;
18
- privacyPolicy: PrivacyPolicy;
17
+ getPrivacyPolicy(): PrivacyPolicy<this>;
19
18
  constructor(viewer: Viewer, data: Data);
20
19
  private static getFields;
21
20
  static getTestTable(): import("../db/test_db").Table;
@@ -23,10 +22,7 @@ export declare class FakeEvent implements Ent {
23
22
  static load(v: Viewer, id: ID): Promise<FakeEvent | null>;
24
23
  static loadX(v: Viewer, id: ID): Promise<FakeEvent>;
25
24
  }
26
- export declare class FakeEventSchema extends BaseEntSchema implements BuilderSchema<FakeEvent> {
27
- ent: typeof FakeEvent;
28
- fields: FieldMap;
29
- }
25
+ export declare const FakeEventSchema: import("../builder").BuilderSchema<FakeEvent>;
30
26
  export interface EventCreateInput {
31
27
  startTime: Date;
32
28
  endTime?: Date | null;
@@ -35,5 +31,5 @@ export interface EventCreateInput {
35
31
  description?: string | null;
36
32
  userID: ID;
37
33
  }
38
- export declare function getEventBuilder(viewer: Viewer, input: EventCreateInput): SimpleBuilder<FakeEvent>;
34
+ export declare function getEventBuilder(viewer: Viewer, input: EventCreateInput): SimpleBuilder<FakeEvent, null>;
39
35
  export declare function createEvent(viewer: Viewer, input: EventCreateInput): Promise<void>;