123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- import { BrowserWindow } from 'electron/main';
- import { expect } from 'chai';
- import * as path from 'node:path';
- import { defer } from './lib/spec-helpers';
- // import { once } from 'node:events';
- describe('webUtils module', () => {
- const fixtures = path.resolve(__dirname, 'fixtures');
- describe('getPathForFile', () => {
- it('returns nothing for a Blob', async () => {
- const w = new BrowserWindow({
- show: false,
- webPreferences: {
- contextIsolation: false,
- nodeIntegration: true,
- sandbox: false
- }
- });
- defer(() => w.close());
- await w.loadFile(path.resolve(fixtures, 'pages', 'file-input.html'));
- const pathFromWebUtils = await w.webContents.executeJavaScript('require("electron").webUtils.getPathForFile(new Blob([1, 2, 3]))');
- expect(pathFromWebUtils).to.equal('');
- });
- it('reports the correct path for a File object', async () => {
- const w = new BrowserWindow({
- show: false,
- webPreferences: {
- contextIsolation: false,
- nodeIntegration: true,
- sandbox: false
- }
- });
- defer(() => w.close());
- await w.loadFile(path.resolve(fixtures, 'pages', 'file-input.html'));
- const { debugger: debug } = w.webContents;
- debug.attach();
- try {
- const { root: { nodeId } } = await debug.sendCommand('DOM.getDocument');
- const { nodeId: inputNodeId } = await debug.sendCommand('DOM.querySelector', { nodeId, selector: 'input' });
- await debug.sendCommand('DOM.setFileInputFiles', {
- files: [__filename],
- nodeId: inputNodeId
- });
- const pathFromWebUtils = await w.webContents.executeJavaScript('require("electron").webUtils.getPathForFile(document.querySelector("input").files[0])');
- expect(pathFromWebUtils).to.equal(__filename);
- } finally {
- debug.detach();
- }
- });
- });
- });
|