import { afterEach, beforeEach, describe, expect, test } from "vitest";
import { databaseLockAdapterTestSuite } from "@daiso-tech/core/lock/test-utilities";
import { LibsqlLockAdapter } from "@daiso-tech/core/lock/adapters";
import { type Client, createClient } from "@libsql/client";
describe("class: LibsqlLockAdapter", () => {
let client: Client;
beforeEach(() => {
client = createClient({
url: ":memory:",
});
});
afterEach(() => {
client.close();
});
databaseLockAdapterTestSuite({
createAdapter: async () => {
const lockAdapter = new LibsqlLockAdapter({
database: client,
tableName: "custom_table",
shouldRemoveExpiredKeys: false,
});
await lockAdapter.init();
return lockAdapter;
},
test,
beforeEach,
expect,
describe,
});
});
The
databaseLockAdapterTestSuite
function simplifies the process of testing your custom implementation ofIDatabaseLockAdapter
withvitest
.IMPORT_PATH:
"@daiso-tech/core/lock/test-utilities"