1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

GraphDB Kuzu(WebAssembly)をvitestで動かしたメモ

Last updated at Posted at 2024-10-29

概要

前回はlocalStorageへの永続化を行った。
今回は、kuzu_wasmをテストしてみようとしたところエラーとなったので対応したメモ。
かなり力技で解決したので、もっとスマートな方法があればしりたい。

この時点のソース

発生したエラー

TypeError: kuzu.Database is not a function
 ❯ Module.getGraphDbClient src/shared/lib/graphdb/kuzu.ts:11:25
      9|   }
     10|   kuzu = await kuzu_wasm();
     11|   const db = await kuzu.Database();

検討

おそらく、ブラウザではなくNodeと認識している。
そのため、index.jsで行われている処理がスキップされてしまっていると考えられる。

対応

モック機能を使い、スキップされた処理を補完する。

/* eslint-disable @typescript-eslint/no-explicit-any */
import { expect, test, describe, vi, beforeAll, afterEach } from 'vitest';
import { createUserNode, initDb } from '../src/feature/user/model/create';
import { getGraphDbClient } from '../src/shared/lib/graphdb/kuzu';
import { initializeWebDatabase, initializeWebConnection } from './mock/helper.mjs';


vi.mock('@kuzu/kuzu-wasm', async () => {
  const { default: originalModule } = (await vi.importActual('@kuzu/kuzu-wasm')) as any;
   return {
    default: async () => {
      const m = await originalModule();
      const Database = () => initializeWebDatabase(m);
      const Connection = (...args: [any, number]) => initializeWebConnection(m, ...args);
      return {
        ...m,
        Database,
        Connection,
      };
    },
  };
});

describe('createUserNode', () => {
  beforeAll(async () => {
    await initDb();
  });
  afterEach(async () => {
    const conn = await getGraphDbClient();
    await conn.execute('MATCH (n) DETACH DELETE n');
  });
  test.each([
    ['test-1', 15],
    ['test-2', 20],
  ])('ユーザを作成できること: %s', async (name, age) => {
    await createUserNode(name, age);
    const conn = await getGraphDbClient();
    const result = await conn.execute('MATCH (u) RETURN (u)');
    const [ret] = getQueryData(result); // [ {"u": {"_ID":{"offset":"1","table":"0"},"_LABEL":"User","name":"test-2","age":"20","population":null}} ]

    expect(ret['u'].name).toBe(name);
    expect(ret['u'].age).toBe(`${age}`);
  });
});
function getQueryData(result: any) {
  if (!result.table) return [];

  return JSON.parse(result.table.toString());
}

結果

成功するようになった

image.png

参考

【Vitest】利用しているライブラリの一部をモックする

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?