Skip to content

Commit 2ff1697

Browse files
authored
Merge pull request #1175 from cardstack/cs-6614-implement-search-query-support-in-postgres-adapter
Add postgres support for querying index
2 parents 934164f + ea90326 commit 2ff1697

File tree

15 files changed

+2497
-1414
lines changed

15 files changed

+2497
-1414
lines changed

packages/host/app/lib/sqlite-adapter.ts

+11-1
Original file line numberDiff line numberDiff line change
@@ -165,9 +165,19 @@ export default class SQLiteAdapter implements DBAdapter {
165165
}
166166
return `ON CONFLICT (${pkColumns})`;
167167
})
168+
.replace(/ANY_VALUE\(([^)]*)\)/g, '$1')
168169
.replace(/CROSS JOIN LATERAL/g, 'CROSS JOIN')
169-
.replace(/jsonb_array_each\(/g, 'json_each(')
170+
.replace(/jsonb_array_elements_text\(/g, 'json_each(')
171+
.replace(/jsonb_tree\(/g, 'json_tree(')
172+
.replace(/([^\s]+\s[^\s]+)_array_element/g, (match, group) => {
173+
if (group.startsWith('as ')) {
174+
return match;
175+
}
176+
return `${match}.value`;
177+
})
170178
.replace(/\.text_value/g, '.value')
179+
.replace(/\.jsonb_value/g, '.value')
180+
.replace(/= 'null'::jsonb/g, 'IS NULL')
171181
.replace(/COLLATE "POSIX"/g, '');
172182
}
173183
}

packages/host/tests/helpers/index.gts

+1-6
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ import { findAll, waitUntil, waitFor, click } from '@ember/test-helpers';
44
import { buildWaiter } from '@ember/test-waiters';
55
import GlimmerComponent from '@glimmer/component';
66

7-
import { parse } from 'date-fns';
8-
97
import ms from 'ms';
108

119
import {
@@ -58,6 +56,7 @@ import { WebMessageStream, messageCloseHandler } from './stream';
5856
import visitOperatorMode from './visit-operator-mode';
5957

6058
export { visitOperatorMode, testRealmURL, testRealmInfo, percySnapshot };
59+
export * from '@cardstack/runtime-common/helpers';
6160
export * from '@cardstack/runtime-common/helpers/indexer';
6261

6362
const waiter = buildWaiter('@cardstack/host/test/helpers/index:onFetch-waiter');
@@ -83,10 +82,6 @@ export function trimCardContainer(text: string) {
8382
);
8483
}
8584

86-
export function p(dateString: string): Date {
87-
return parse(dateString, 'yyyy-MM-dd', new Date());
88-
}
89-
9085
export function getMonacoContent(): string {
9186
return (window as any).monaco.editor.getModels()[0].getValue();
9287
}

packages/host/tests/unit/indexer-test.ts

+13-12
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ import { module, test } from 'qunit';
22

33
import { IndexerDBClient } from '@cardstack/runtime-common';
44
import { runSharedTest } from '@cardstack/runtime-common/helpers';
5-
import indexerTests from '@cardstack/runtime-common/tests/indexer';
5+
// eslint-disable-next-line ember/no-test-import-export
6+
import indexerTests from '@cardstack/runtime-common/tests/indexer-test';
67

78
import ENV from '@cardstack/host/config/environment';
89
import SQLiteAdapter from '@cardstack/host/lib/sqlite-adapter';
@@ -24,46 +25,46 @@ module('Unit | indexer', function (hooks) {
2425
});
2526

2627
test('can perform invalidations for an index entry', async function (assert) {
27-
await runSharedTest(indexerTests, assert, client, adapter);
28+
await runSharedTest(indexerTests, assert, { client, adapter });
2829
});
2930

3031
test('does not create invalidation record for non-JSON invalidation', async function (assert) {
31-
await runSharedTest(indexerTests, assert, client, adapter);
32+
await runSharedTest(indexerTests, assert, { client, adapter });
3233
});
3334

3435
test('only invalidates latest version of content', async function (assert) {
35-
await runSharedTest(indexerTests, assert, client, adapter);
36+
await runSharedTest(indexerTests, assert, { client, adapter });
3637
});
3738

3839
test('can prevent concurrent batch invalidations from colliding', async function (assert) {
39-
await runSharedTest(indexerTests, assert, client, adapter);
40+
await runSharedTest(indexerTests, assert, { client, adapter });
4041
});
4142

4243
test('can prevent concurrent batch invalidations from colliding when making new generation', async function (assert) {
43-
await runSharedTest(indexerTests, assert, client, adapter);
44+
await runSharedTest(indexerTests, assert, { client, adapter });
4445
});
4546

4647
test('can update an index entry', async function (assert) {
47-
await runSharedTest(indexerTests, assert, client, adapter);
48+
await runSharedTest(indexerTests, assert, { client, adapter });
4849
});
4950

5051
test('can remove an index entry', async function (assert) {
51-
await runSharedTest(indexerTests, assert, client, adapter);
52+
await runSharedTest(indexerTests, assert, { client, adapter });
5253
});
5354

5455
test('can create a new generation of index entries', async function (assert) {
55-
await runSharedTest(indexerTests, assert, client, adapter);
56+
await runSharedTest(indexerTests, assert, { client, adapter });
5657
});
5758

5859
test('can get "production" index entry', async function (assert) {
59-
await runSharedTest(indexerTests, assert, client, adapter);
60+
await runSharedTest(indexerTests, assert, { client, adapter });
6061
});
6162

6263
test('can get work in progress index entry', async function (assert) {
63-
await runSharedTest(indexerTests, assert, client, adapter);
64+
await runSharedTest(indexerTests, assert, { client, adapter });
6465
});
6566

6667
test('returns undefined when getting a deleted entry', async function (assert) {
67-
await runSharedTest(indexerTests, assert, client, adapter);
68+
await runSharedTest(indexerTests, assert, { client, adapter });
6869
});
6970
});

0 commit comments

Comments
 (0)