模拟 Tauri API
在编写前端测试时,拥有一个“假的” Tauri 环境来模拟窗口或拦截 IPC 调用是很常见的,这被称为模拟。@tauri-apps/api/mocks
模块提供了一些有用的工具,使您更容易做到这一点
IPC 请求
最常见的情况是您想要拦截 IPC 请求;这在各种情况下都很有用
- 确保进行了正确的后端调用
- 模拟来自后端函数的不同结果
Tauri 提供了 mockIPC 函数来拦截 IPC 请求。您可以在此处找到有关特定 API 的更多详细信息。
import { beforeAll, expect, test } from "vitest";import { randomFillSync } from "crypto";
import { mockIPC } from "@tauri-apps/api/mocks";import { invoke } from "@tauri-apps/api/core";
// jsdom doesn't come with a WebCrypto implementationbeforeAll(() => { 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/core";
// jsdom doesn't come with a WebCrypto implementationbeforeAll(() => { 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_INTERNALS__, "invoke");
expect(invoke("add", { a: 12, b: 15 })).resolves.toBe(27); expect(spy).toHaveBeenCalled();});
要模拟对 sidecar 或 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 认为自己所在的窗口),所有其他字符串都被视为附加窗口。
import { beforeAll, expect, test } from 'vitest';import { randomFillSync } from 'crypto';
import { mockWindows } from '@tauri-apps/api/mocks';
// jsdom doesn't come with a WebCrypto implementationbeforeAll(() => { 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/webviewWindow');
expect(getCurrent()).toHaveProperty('label', 'main'); expect(getAll().map((w) => w.label)).toEqual(['main', 'second', 'third']);});
© 2025 Tauri 贡献者。CC-BY / MIT