mirror of
https://github.com/microsoft/playwright.git
synced 2024-12-12 11:50:22 +03:00
116 lines
5.1 KiB
TypeScript
116 lines
5.1 KiB
TypeScript
/**
|
|
* Copyright (c) Microsoft Corporation.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
import { playwrightTest as it, expect } from './config/browserTest';
|
|
import fs from 'fs';
|
|
import path from 'path';
|
|
|
|
it.describe('downloads path', () => {
|
|
it.beforeEach(async ({server}) => {
|
|
server.setRoute('/download', (req, res) => {
|
|
res.setHeader('Content-Type', 'application/octet-stream');
|
|
res.setHeader('Content-Disposition', 'attachment; filename=file.txt');
|
|
res.end(`Hello world`);
|
|
});
|
|
});
|
|
|
|
it('should keep downloadsPath folder', async ({browserType, browserOptions, server}, testInfo) => {
|
|
const downloadsBrowser = await browserType.launch({ ...browserOptions, downloadsPath: testInfo.outputPath('') });
|
|
const page = await downloadsBrowser.newPage();
|
|
await page.setContent(`<a href="${server.PREFIX}/download">download</a>`);
|
|
const [ download ] = await Promise.all([
|
|
page.waitForEvent('download'),
|
|
page.click('a')
|
|
]);
|
|
expect(download.url()).toBe(`${server.PREFIX}/download`);
|
|
expect(download.suggestedFilename()).toBe(`file.txt`);
|
|
await download.path().catch(e => void 0);
|
|
await page.close();
|
|
await downloadsBrowser.close();
|
|
expect(fs.existsSync(testInfo.outputPath(''))).toBeTruthy();
|
|
});
|
|
|
|
it('should delete downloads when context closes', async ({browserType, browserOptions, server}, testInfo) => {
|
|
const downloadsBrowser = await browserType.launch({ ...browserOptions, downloadsPath: testInfo.outputPath('') });
|
|
const page = await downloadsBrowser.newPage({ acceptDownloads: true });
|
|
await page.setContent(`<a href="${server.PREFIX}/download">download</a>`);
|
|
const [ download ] = await Promise.all([
|
|
page.waitForEvent('download'),
|
|
page.click('a')
|
|
]);
|
|
const path = await download.path();
|
|
expect(fs.existsSync(path)).toBeTruthy();
|
|
await page.close();
|
|
expect(fs.existsSync(path)).toBeFalsy();
|
|
await downloadsBrowser.close();
|
|
});
|
|
|
|
it('should report downloads in downloadsPath folder', async ({browserType, browserOptions, server}, testInfo) => {
|
|
const downloadsBrowser = await browserType.launch({ ...browserOptions, downloadsPath: testInfo.outputPath('') });
|
|
const page = await downloadsBrowser.newPage({ acceptDownloads: true });
|
|
await page.setContent(`<a href="${server.PREFIX}/download">download</a>`);
|
|
const [ download ] = await Promise.all([
|
|
page.waitForEvent('download'),
|
|
page.click('a')
|
|
]);
|
|
const path = await download.path();
|
|
expect(path.startsWith(testInfo.outputPath(''))).toBeTruthy();
|
|
await page.close();
|
|
await downloadsBrowser.close();
|
|
});
|
|
|
|
it('should report downloads in downloadsPath folder with a relative path', async ({browserType, browserOptions, server}, testInfo) => {
|
|
const downloadsBrowser = await browserType.launch({ ...browserOptions, downloadsPath: path.relative(process.cwd(), testInfo.outputPath('')) });
|
|
const page = await downloadsBrowser.newPage({ acceptDownloads: true });
|
|
await page.setContent(`<a href="${server.PREFIX}/download">download</a>`);
|
|
const [ download ] = await Promise.all([
|
|
page.waitForEvent('download'),
|
|
page.click('a')
|
|
]);
|
|
const downloadPath = await download.path();
|
|
expect(downloadPath.startsWith(testInfo.outputPath(''))).toBeTruthy();
|
|
await page.close();
|
|
await downloadsBrowser.close();
|
|
});
|
|
|
|
it('should accept downloads in persistent context', async ({launchPersistent, server}, testInfo) => {
|
|
const { context, page } = await launchPersistent({ acceptDownloads: true, downloadsPath: testInfo.outputPath('') });
|
|
await page.setContent(`<a href="${server.PREFIX}/download">download</a>`);
|
|
const [ download ] = await Promise.all([
|
|
page.waitForEvent('download'),
|
|
page.click('a'),
|
|
]);
|
|
expect(download.url()).toBe(`${server.PREFIX}/download`);
|
|
expect(download.suggestedFilename()).toBe(`file.txt`);
|
|
const path = await download.path();
|
|
expect(path.startsWith(testInfo.outputPath(''))).toBeTruthy();
|
|
await context.close();
|
|
});
|
|
|
|
it('should delete downloads when persistent context closes', async ({launchPersistent, server}, testInfo) => {
|
|
const { context, page } = await launchPersistent({ acceptDownloads: true, downloadsPath: testInfo.outputPath('') });
|
|
await page.setContent(`<a href="${server.PREFIX}/download">download</a>`);
|
|
const [ download ] = await Promise.all([
|
|
page.waitForEvent('download'),
|
|
page.click('a'),
|
|
]);
|
|
const path = await download.path();
|
|
expect(fs.existsSync(path)).toBeTruthy();
|
|
await context.close();
|
|
expect(fs.existsSync(path)).toBeFalsy();
|
|
});
|
|
});
|