模拟 Tauri API
在编写前端测试时,拥有一个“伪”Tauri 环境来模拟窗口或拦截 IPC 调用很常见,这被称为模拟。@tauri-apps/api/mocks
模块提供了一些有用的工具,可以让你更轻松地完成此操作
注意
请记住在每次测试运行后清除模拟,以撤消运行之间的模拟状态更改!有关更多信息,请参阅clearMocks()
文档。
IPC 请求
最常见的是,您希望拦截 IPC 请求;这在各种情况下都很有用
- 确保进行了正确的后端调用
- 模拟后端函数的不同结果
Tauri 提供了 mockIPC 函数来拦截 IPC 请求。您可以在此处详细了解特定 API。
注意
以下示例使用Vitest,但您可以使用任何其他前端测试库,例如 jest。
import { beforeAll, expect, test } from "vitest";
import { randomFillSync } from "crypto";
import { mockIPC } from "@tauri-apps/api/mocks";
import { invoke } from "@tauri-apps/api/tauri";
// jsdom doesn't come with a WebCrypto implementation
beforeAll(() => {
Object.defineProperty(window, 'crypto', {
value: {
// @ts-ignore
getRandomValues: (buffer) => {
return randomFillSync(buffer);
},
},
});
});
test("invoke simple", async () => {
mockIPC((cmd, args) => {
// simulated rust command called "add" that just adds two numbers
if(cmd === "add") {
return (args.a as number) + (args.b as number);
}
});
});
有时您希望跟踪有关 IPC 调用的更多信息;该命令被调用了多少次?它是否被调用过?您可以使用mockIPC()
与其他间谍和模拟工具一起测试此功能
import { beforeAll, expect, test, vi } from "vitest";
import { randomFillSync } from "crypto";
import { mockIPC } from "@tauri-apps/api/mocks";
import { invoke } from "@tauri-apps/api/tauri";
// jsdom doesn't come with a WebCrypto implementation
beforeAll(() => {
Object.defineProperty(window, 'crypto', {
value: {
// @ts-ignore
getRandomValues: (buffer) => {
return randomFillSync(buffer);
},
},
});
});
test("invoke", async () => {
mockIPC((cmd, args) => {
// simulated rust command called "add" that just adds two numbers
if(cmd === "add") {
return (args.a as number) + (args.b as number);
}
});
// we can use the spying tools provided by vitest to track the mocked function
const spy = vi.spyOn(window, "__TAURI_IPC__");
expect(invoke("add", { a: 12, b: 15 })).resolves.toBe(27);
expect(spy).toHaveBeenCalled();
});
要模拟对辅助进程或 shell 命令的 IPC 请求,您需要在调用spawn()
或execute()
时获取事件处理程序的 ID,并使用此 ID 来发送后端将发送回来的事件
mockIPC(async (cmd, args) => {
if (args.message.cmd === 'execute') {
const eventCallbackId = `_${args.message.onEventFn}`;
const eventEmitter = window[eventCallbackId];
// 'Stdout' event can be called multiple times
eventEmitter({
event: 'Stdout',
payload: 'some data sent from the process',
});
// 'Terminated' event must be called at the end to resolve the promise
eventEmitter({
event: 'Terminated',
payload: {
code: 0,
signal: 'kill',
},
});
}
});
Windows
有时您有特定于窗口的代码(例如启动画面窗口),因此您需要模拟不同的窗口。您可以使用mockWindows()
方法创建假窗口标签。第一个字符串标识“当前”窗口(即您的 JavaScript 认为它所在的窗口),所有其他字符串都被视为其他窗口。
注意
mockWindows()
仅模拟窗口的存在,而不模拟窗口属性。要模拟窗口属性,您需要使用mockIPC()
拦截正确的调用
import { beforeAll, expect, test } from 'vitest';
import { randomFillSync } from 'crypto';
import { mockWindows } from '@tauri-apps/api/mocks';
// jsdom doesn't come with a WebCrypto implementation
beforeAll(() => {
Object.defineProperty(window, 'crypto', {
value: {
// @ts-ignore
getRandomValues: (buffer) => {
return randomFillSync(buffer);
},
},
});
});
test('invoke', async () => {
mockWindows('main', 'second', 'third');
const { getCurrent, getAll } = await import('@tauri-apps/api/window');
expect(getCurrent()).toHaveProperty('label', 'main');
expect(getAll().map((w) => w.label)).toEqual(['main', 'second', 'third']);
});