UNPKG

@deep-foundation/deeplinks

Version:

[![npm](https://img.shields.io/npm/v/@deep-foundation/deeplinks.svg)](https://www.npmjs.com/package/@deep-foundation/deeplinks) [![Gitpod](https://img.shields.io/badge/Gitpod-ready--to--code-blue?logo=gitpod)](https://gitpod.io/#https://github.com/deep-fo

160 lines 7.05 kB
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } return new (P || (P = Promise))(function (resolve, reject) { function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } step((generator = generator.apply(thisArg, _arguments || [])).next()); }); }; import { generateApolloClient } from '@deep-foundation/hasura/client.js'; import '@testing-library/jest-dom'; import { SerialTransitionsBuilder } from '../../imports/experimental/serial-transitions-builder'; import { DeepClient } from '../../imports/client'; import assert from 'assert'; const graphQlPath = `${process.env.DEEPLINKS_HASURA_PATH}/v1/graphql`; const ssl = !!+process.env.DEEPLINKS_HASURA_SSL; const secret = process.env.DEEPLINKS_HASURA_SECRET; const ws = true; let apolloClient; let deepClient; beforeAll(() => __awaiter(void 0, void 0, void 0, function* () { apolloClient = generateApolloClient({ path: graphQlPath, ssl, secret, ws }); deepClient = new DeepClient({ apolloClient }); const { data: corePackageLinks } = yield deepClient.select({ up: { tree_id: { _id: ["@deep-foundation/core", "containTree"] }, parent_id: { _id: ["@deep-foundation/core"] } } }); deepClient.minilinks.apply(corePackageLinks); })); describe('SerialTransitionsBuilder', () => { it('should instantiate correctly', () => { const builder = new SerialTransitionsBuilder({ deep: deepClient }); expect(builder).toBeInstanceOf(SerialTransitionsBuilder); }); it('should append insert transition', () => __awaiter(void 0, void 0, void 0, function* () { const builder = new SerialTransitionsBuilder({ deep: deepClient }); const table = 'links'; const transition = [null, { type_id: deepClient.idLocal("@deep-foundation/core", "Type") }]; builder.append({ table, transition }); expect(builder.actions().length).toBe(1); })); it('should clear transitions', () => { const builder = new SerialTransitionsBuilder({ deep: deepClient }); const table = 'links'; const transition = [null, { type_id: deepClient.idLocal("@deep-foundation/core", "Type") }]; builder.append({ table, transition }); builder.clear(); expect(builder.actions().length).toBe(0); }); it('should get correct transition type for insert', () => { const builder = new SerialTransitionsBuilder({ deep: deepClient }); const transition = [null, { type_id: deepClient.idLocal("@deep-foundation/core", "Type") }]; const type = builder.getTransitionType(transition); if (type !== 'insert') { throw new Error('Incorrect transition type'); } }); it('should get correct transition type for update', () => { const builder = new SerialTransitionsBuilder({ deep: deepClient }); const transition = [{ id: 0 }, { id: 0 }]; const type = builder.getTransitionType(transition); if (type !== 'update') { throw new Error('Incorrect transition type'); } }); it('should get correct transition type for delete', () => { const builder = new SerialTransitionsBuilder({ deep: deepClient }); const transition = [{ type_id: deepClient.idLocal("@deep-foundation/core", "Type") }, null]; const type = builder.getTransitionType(transition); if (type !== 'delete') { throw new Error('Incorrect transition type'); } }); it('should execute transition', () => __awaiter(void 0, void 0, void 0, function* () { const builder = new SerialTransitionsBuilder({ deep: deepClient }); const transition = [null, { type_id: deepClient.idLocal("@deep-foundation/core", "Type") }]; const result = yield builder .append({ transition }) .execute(); assert.equal(Object.keys(result.data).length, 2); })); it('should execute transitions', () => __awaiter(void 0, void 0, void 0, function* () { const builder = new SerialTransitionsBuilder({ deep: deepClient }); const transition = [null, { type_id: deepClient.idLocal("@deep-foundation/core", "Type") }]; const result = yield builder .append({ transition }) .append({ transition }) .execute(); assert.equal(Object.keys(result.data).length, 4); })); it('should execute multiple transitions', () => __awaiter(void 0, void 0, void 0, function* () { const builder = new SerialTransitionsBuilder({ deep: deepClient }); const transition = [null, { type_id: deepClient.idLocal("@deep-foundation/core", "Type") }]; const result = yield builder .appendMultiple([ { transition }, { transition } ]) .execute(); assert.equal(Object.keys(result.data).length, 4); })); it('should execute transition and result link be accessible by both alias and index', () => __awaiter(void 0, void 0, void 0, function* () { const builder = new SerialTransitionsBuilder({ deep: deepClient }); const transition = [null, { type_id: deepClient.idLocal("@deep-foundation/core", "Type") }]; const alias = 'link'; const { data } = yield builder .append({ transition, alias }) .execute(); expect(data[alias]).toBeDefined(); expect(data[0]).toBeDefined(); })); it('should execute transitions and result links be accessible by both alias and index', () => __awaiter(void 0, void 0, void 0, function* () { const builder = new SerialTransitionsBuilder({ deep: deepClient }); const transition = [null, { type_id: deepClient.idLocal("@deep-foundation/core", "Type") }]; const firstLinkAlias = 'link0'; const secondLinkAlias = 'link1'; const { data } = yield builder .append({ transition, alias: firstLinkAlias }) .append({ transition, alias: secondLinkAlias }) .execute(); expect(data[firstLinkAlias]).toBeDefined(); expect(data[0]).toBeDefined(); expect(data[secondLinkAlias]).toBeDefined(); expect(data[1]).toBeDefined(); })); }); //# sourceMappingURL=client.js.map