| 
									
										
										
										
											2020-08-03 13:41:48 -07:00
										 |  |  | /** | 
					
						
							|  |  |  |  * 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. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2020-08-16 19:19:52 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-25 15:05:50 -08:00
										 |  |  | import { browserTest as it, expect } from '../config/browserTest'; | 
					
						
							| 
									
										
										
										
											2020-08-07 11:19:15 -07:00
										 |  |  | import fs from 'fs'; | 
					
						
							|  |  |  | import path from 'path'; | 
					
						
							| 
									
										
										
										
											2021-04-28 21:54:51 +00:00
										 |  |  | import crypto from 'crypto'; | 
					
						
							| 
									
										
										
										
											2021-10-11 10:52:17 -04:00
										 |  |  | import type { Download } from 'playwright-core'; | 
					
						
							| 
									
										
										
										
											2020-08-03 13:41:48 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-05 09:18:56 -07:00
										 |  |  | it.describe('download event', () => { | 
					
						
							| 
									
										
										
										
											2022-07-06 09:20:07 -07:00
										 |  |  |   it.skip(({ mode }) => mode !== 'default', 'download.path() is not available in remote mode'); | 
					
						
							| 
									
										
										
										
											2021-10-14 10:41:03 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |   it.beforeEach(async ({ server }) => { | 
					
						
							| 
									
										
										
										
											2020-10-12 09:16:02 -07:00
										 |  |  |     server.setRoute('/download', (req, res) => { | 
					
						
							|  |  |  |       res.setHeader('Content-Type', 'application/octet-stream'); | 
					
						
							|  |  |  |       res.setHeader('Content-Disposition', 'attachment'); | 
					
						
							|  |  |  |       res.end(`Hello world`); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  |     server.setRoute('/downloadWithFilename', (req, res) => { | 
					
						
							|  |  |  |       res.setHeader('Content-Type', 'application/octet-stream'); | 
					
						
							|  |  |  |       res.setHeader('Content-Disposition', 'attachment; filename=file.txt'); | 
					
						
							|  |  |  |       res.end(`Hello world`); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2021-06-12 21:23:22 +01:00
										 |  |  |     server.setRoute('/downloadWithDelay', (req, res) => { | 
					
						
							|  |  |  |       res.setHeader('Content-Type', 'application/octet-stream'); | 
					
						
							|  |  |  |       res.setHeader('Content-Disposition', 'attachment; filename=file.txt'); | 
					
						
							|  |  |  |       // Chromium requires a large enough payload to trigger the download event soon enough
 | 
					
						
							|  |  |  |       res.write('a'.repeat(4096)); | 
					
						
							|  |  |  |       res.write('foo'); | 
					
						
							|  |  |  |       res.uncork(); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2021-09-28 09:56:07 -07:00
										 |  |  |     server.setRoute('/downloadWithCOOP', (req, res) => { | 
					
						
							|  |  |  |       res.setHeader('Content-Type', 'application/octet-stream'); | 
					
						
							|  |  |  |       res.setHeader('Content-Disposition', 'attachment'); | 
					
						
							|  |  |  |       res.setHeader('Cross-Origin-Opener-Policy', 'same-origin'); | 
					
						
							|  |  |  |       res.end(`Hello world`); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2020-08-03 13:41:48 -07:00
										 |  |  |   }); | 
					
						
							| 
									
										
										
										
											2020-10-12 09:16:02 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-14 15:05:18 -07:00
										 |  |  |   it('should report download when navigation turns into download @smoke', async ({ browser, server, browserName, mode }) => { | 
					
						
							| 
									
										
										
										
											2021-12-06 09:25:24 -08:00
										 |  |  |     const page = await browser.newPage(); | 
					
						
							| 
									
										
										
										
											2022-08-18 20:12:33 +02:00
										 |  |  |     const [download, responseOrError] = await Promise.all([ | 
					
						
							| 
									
										
										
										
											2021-08-12 09:34:32 -07:00
										 |  |  |       page.waitForEvent('download'), | 
					
						
							|  |  |  |       page.goto(server.PREFIX + '/download').catch(e => e) | 
					
						
							|  |  |  |     ]); | 
					
						
							|  |  |  |     expect(download.page()).toBe(page); | 
					
						
							|  |  |  |     expect(download.url()).toBe(`${server.PREFIX}/download`); | 
					
						
							|  |  |  |     const path = await download.path(); | 
					
						
							|  |  |  |     expect(fs.existsSync(path)).toBeTruthy(); | 
					
						
							|  |  |  |     expect(fs.readFileSync(path).toString()).toBe('Hello world'); | 
					
						
							|  |  |  |     if (browserName === 'chromium') { | 
					
						
							|  |  |  |       expect(responseOrError instanceof Error).toBeTruthy(); | 
					
						
							|  |  |  |       expect(responseOrError.message).toContain('net::ERR_ABORTED'); | 
					
						
							|  |  |  |       expect(page.url()).toBe('about:blank'); | 
					
						
							|  |  |  |     } else if (browserName === 'webkit') { | 
					
						
							|  |  |  |       expect(responseOrError instanceof Error).toBeTruthy(); | 
					
						
							|  |  |  |       expect(responseOrError.message).toContain('Download is starting'); | 
					
						
							|  |  |  |       expect(page.url()).toBe('about:blank'); | 
					
						
							|  |  |  |     } else { | 
					
						
							| 
									
										
										
										
											2022-09-02 08:35:29 -07:00
										 |  |  |       expect(responseOrError instanceof Error).toBeTruthy(); | 
					
						
							|  |  |  |       expect(responseOrError.message).toContain('Download is starting'); | 
					
						
							| 
									
										
										
										
											2021-08-12 09:34:32 -07:00
										 |  |  |     } | 
					
						
							|  |  |  |     await page.close(); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-28 09:56:07 -07:00
										 |  |  |   it('should work with Cross-Origin-Opener-Policy', async ({ browser, server, browserName }) => { | 
					
						
							| 
									
										
										
										
											2021-12-06 09:25:24 -08:00
										 |  |  |     const page = await browser.newPage(); | 
					
						
							| 
									
										
										
										
											2022-08-18 20:12:33 +02:00
										 |  |  |     const [download, responseOrError] = await Promise.all([ | 
					
						
							| 
									
										
										
										
											2021-09-28 09:56:07 -07:00
										 |  |  |       page.waitForEvent('download'), | 
					
						
							|  |  |  |       page.goto(server.PREFIX + '/downloadWithCOOP').catch(e => e) | 
					
						
							|  |  |  |     ]); | 
					
						
							|  |  |  |     expect(download.page()).toBe(page); | 
					
						
							|  |  |  |     expect(download.url()).toBe(`${server.PREFIX}/downloadWithCOOP`); | 
					
						
							|  |  |  |     const path = await download.path(); | 
					
						
							|  |  |  |     expect(fs.existsSync(path)).toBeTruthy(); | 
					
						
							|  |  |  |     expect(fs.readFileSync(path).toString()).toBe('Hello world'); | 
					
						
							|  |  |  |     if (browserName === 'chromium') { | 
					
						
							|  |  |  |       expect(responseOrError instanceof Error).toBeTruthy(); | 
					
						
							|  |  |  |       expect(responseOrError.message).toContain('net::ERR_ABORTED'); | 
					
						
							|  |  |  |       expect(page.url()).toBe('about:blank'); | 
					
						
							|  |  |  |     } else if (browserName === 'webkit') { | 
					
						
							|  |  |  |       expect(responseOrError instanceof Error).toBeTruthy(); | 
					
						
							|  |  |  |       expect(responseOrError.message).toContain('Download is starting'); | 
					
						
							|  |  |  |       expect(page.url()).toBe('about:blank'); | 
					
						
							|  |  |  |     } else { | 
					
						
							| 
									
										
										
										
											2022-09-02 08:35:29 -07:00
										 |  |  |       expect(responseOrError instanceof Error).toBeTruthy(); | 
					
						
							|  |  |  |       expect(responseOrError.message).toContain('Download is starting'); | 
					
						
							| 
									
										
										
										
											2021-09-28 09:56:07 -07:00
										 |  |  |     } | 
					
						
							|  |  |  |     await page.close(); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |   it('should report downloads with acceptDownloads: false', async ({ browser, server }) => { | 
					
						
							| 
									
										
										
										
											2021-12-06 09:25:24 -08:00
										 |  |  |     const page = await browser.newPage({ acceptDownloads: false }); | 
					
						
							| 
									
										
										
										
											2020-10-12 09:16:02 -07:00
										 |  |  |     await page.setContent(`<a href="${server.PREFIX}/downloadWithFilename">download</a>`); | 
					
						
							| 
									
										
										
										
											2022-08-18 20:12:33 +02:00
										 |  |  |     const [download] = await Promise.all([ | 
					
						
							| 
									
										
										
										
											2020-10-12 09:16:02 -07:00
										 |  |  |       page.waitForEvent('download'), | 
					
						
							|  |  |  |       page.click('a') | 
					
						
							|  |  |  |     ]); | 
					
						
							|  |  |  |     let error; | 
					
						
							| 
									
										
										
										
											2021-05-13 23:18:21 +02:00
										 |  |  |     expect(download.page()).toBe(page); | 
					
						
							| 
									
										
										
										
											2020-10-12 09:16:02 -07:00
										 |  |  |     expect(download.url()).toBe(`${server.PREFIX}/downloadWithFilename`); | 
					
						
							|  |  |  |     expect(download.suggestedFilename()).toBe(`file.txt`); | 
					
						
							|  |  |  |     await download.path().catch(e => error = e); | 
					
						
							|  |  |  |     expect(await download.failure()).toContain('acceptDownloads'); | 
					
						
							|  |  |  |     expect(error.message).toContain('acceptDownloads: true'); | 
					
						
							| 
									
										
										
										
											2021-04-05 09:18:56 -07:00
										 |  |  |     await page.close(); | 
					
						
							| 
									
										
										
										
											2020-08-03 13:41:48 -07:00
										 |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |   it('should report downloads with acceptDownloads: true', async ({ browser, server }) => { | 
					
						
							| 
									
										
										
										
											2021-12-06 09:25:24 -08:00
										 |  |  |     const page = await browser.newPage(); | 
					
						
							| 
									
										
										
										
											2020-10-12 09:16:02 -07:00
										 |  |  |     await page.setContent(`<a href="${server.PREFIX}/download">download</a>`); | 
					
						
							| 
									
										
										
										
											2022-08-18 20:12:33 +02:00
										 |  |  |     const [download] = await Promise.all([ | 
					
						
							| 
									
										
										
										
											2020-10-12 09:16:02 -07:00
										 |  |  |       page.waitForEvent('download'), | 
					
						
							|  |  |  |       page.click('a') | 
					
						
							|  |  |  |     ]); | 
					
						
							|  |  |  |     const path = await download.path(); | 
					
						
							|  |  |  |     expect(fs.existsSync(path)).toBeTruthy(); | 
					
						
							|  |  |  |     expect(fs.readFileSync(path).toString()).toBe('Hello world'); | 
					
						
							|  |  |  |     await page.close(); | 
					
						
							|  |  |  |   }); | 
					
						
							| 
									
										
										
										
											2020-08-03 13:41:48 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |   it('should report proper download url when download is from download attribute', async ({ browser, server, browserName }) => { | 
					
						
							| 
									
										
										
										
											2021-12-06 09:25:24 -08:00
										 |  |  |     const page = await browser.newPage(); | 
					
						
							| 
									
										
										
										
											2021-02-22 09:02:50 -08:00
										 |  |  |     await page.goto(server.PREFIX + '/empty.html'); | 
					
						
							|  |  |  |     await page.setContent(`<a href="${server.PREFIX}/chromium-linux.zip" download="foo.zip">download</a>`); | 
					
						
							| 
									
										
										
										
											2022-08-18 20:12:33 +02:00
										 |  |  |     const [download] = await Promise.all([ | 
					
						
							| 
									
										
										
										
											2021-02-22 09:02:50 -08:00
										 |  |  |       page.waitForEvent('download'), | 
					
						
							|  |  |  |       page.click('a') | 
					
						
							|  |  |  |     ]); | 
					
						
							|  |  |  |     expect(download.url()).toBe(`${server.PREFIX}/chromium-linux.zip`); | 
					
						
							|  |  |  |     await page.close(); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |   it('should report downloads for download attribute', async ({ browser, server }) => { | 
					
						
							| 
									
										
										
										
											2021-12-06 09:25:24 -08:00
										 |  |  |     const page = await browser.newPage(); | 
					
						
							| 
									
										
										
										
											2021-02-22 09:02:50 -08:00
										 |  |  |     await page.goto(server.PREFIX + '/empty.html'); | 
					
						
							|  |  |  |     await page.setContent(`<a href="${server.PREFIX}/chromium-linux.zip" download="foo.zip">download</a>`); | 
					
						
							| 
									
										
										
										
											2022-08-18 20:12:33 +02:00
										 |  |  |     const [download] = await Promise.all([ | 
					
						
							| 
									
										
										
										
											2021-02-22 09:02:50 -08:00
										 |  |  |       page.waitForEvent('download'), | 
					
						
							|  |  |  |       page.click('a') | 
					
						
							|  |  |  |     ]); | 
					
						
							|  |  |  |     expect(download.suggestedFilename()).toBe(`foo.zip`); | 
					
						
							|  |  |  |     const path = await download.path(); | 
					
						
							|  |  |  |     expect(fs.existsSync(path)).toBeTruthy(); | 
					
						
							|  |  |  |     await page.close(); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |   it('should save to user-specified path without updating original path', async ({ browser, server }, testInfo) => { | 
					
						
							| 
									
										
										
										
											2021-12-06 09:25:24 -08:00
										 |  |  |     const page = await browser.newPage(); | 
					
						
							| 
									
										
										
										
											2020-10-12 09:16:02 -07:00
										 |  |  |     await page.setContent(`<a href="${server.PREFIX}/download">download</a>`); | 
					
						
							| 
									
										
										
										
											2022-08-18 20:12:33 +02:00
										 |  |  |     const [download] = await Promise.all([ | 
					
						
							| 
									
										
										
										
											2020-10-12 09:16:02 -07:00
										 |  |  |       page.waitForEvent('download'), | 
					
						
							|  |  |  |       page.click('a') | 
					
						
							|  |  |  |     ]); | 
					
						
							|  |  |  |     const userPath = testInfo.outputPath('download.txt'); | 
					
						
							|  |  |  |     await download.saveAs(userPath); | 
					
						
							|  |  |  |     expect(fs.existsSync(userPath)).toBeTruthy(); | 
					
						
							|  |  |  |     expect(fs.readFileSync(userPath).toString()).toBe('Hello world'); | 
					
						
							| 
									
										
										
										
											2020-08-03 13:41:48 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-12 09:16:02 -07:00
										 |  |  |     const originalPath = await download.path(); | 
					
						
							|  |  |  |     expect(fs.existsSync(originalPath)).toBeTruthy(); | 
					
						
							|  |  |  |     expect(fs.readFileSync(originalPath).toString()).toBe('Hello world'); | 
					
						
							|  |  |  |     await page.close(); | 
					
						
							|  |  |  |   }); | 
					
						
							| 
									
										
										
										
											2020-08-03 13:41:48 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |   it('should save to two different paths with multiple saveAs calls', async ({ browser, server }, testInfo) => { | 
					
						
							| 
									
										
										
										
											2021-12-06 09:25:24 -08:00
										 |  |  |     const page = await browser.newPage(); | 
					
						
							| 
									
										
										
										
											2020-10-12 09:16:02 -07:00
										 |  |  |     await page.setContent(`<a href="${server.PREFIX}/download">download</a>`); | 
					
						
							| 
									
										
										
										
											2022-08-18 20:12:33 +02:00
										 |  |  |     const [download] = await Promise.all([ | 
					
						
							| 
									
										
										
										
											2020-10-12 09:16:02 -07:00
										 |  |  |       page.waitForEvent('download'), | 
					
						
							|  |  |  |       page.click('a') | 
					
						
							|  |  |  |     ]); | 
					
						
							|  |  |  |     const userPath = testInfo.outputPath('download.txt'); | 
					
						
							|  |  |  |     await download.saveAs(userPath); | 
					
						
							|  |  |  |     expect(fs.existsSync(userPath)).toBeTruthy(); | 
					
						
							|  |  |  |     expect(fs.readFileSync(userPath).toString()).toBe('Hello world'); | 
					
						
							| 
									
										
										
										
											2020-08-03 13:41:48 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-12 09:16:02 -07:00
										 |  |  |     const anotherUserPath = testInfo.outputPath('download (2).txt'); | 
					
						
							|  |  |  |     await download.saveAs(anotherUserPath); | 
					
						
							|  |  |  |     expect(fs.existsSync(anotherUserPath)).toBeTruthy(); | 
					
						
							|  |  |  |     expect(fs.readFileSync(anotherUserPath).toString()).toBe('Hello world'); | 
					
						
							|  |  |  |     await page.close(); | 
					
						
							|  |  |  |   }); | 
					
						
							| 
									
										
										
										
											2020-08-03 13:41:48 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |   it('should save to overwritten filepath', async ({ browser, server }, testInfo) => { | 
					
						
							| 
									
										
										
										
											2021-12-06 09:25:24 -08:00
										 |  |  |     const page = await browser.newPage(); | 
					
						
							| 
									
										
										
										
											2020-10-12 09:16:02 -07:00
										 |  |  |     await page.setContent(`<a href="${server.PREFIX}/download">download</a>`); | 
					
						
							| 
									
										
										
										
											2022-08-18 20:12:33 +02:00
										 |  |  |     const [download] = await Promise.all([ | 
					
						
							| 
									
										
										
										
											2020-10-12 09:16:02 -07:00
										 |  |  |       page.waitForEvent('download'), | 
					
						
							|  |  |  |       page.click('a') | 
					
						
							|  |  |  |     ]); | 
					
						
							|  |  |  |     const dir = testInfo.outputPath('downloads'); | 
					
						
							|  |  |  |     const userPath = path.join(dir, 'download.txt'); | 
					
						
							|  |  |  |     await download.saveAs(userPath); | 
					
						
							| 
									
										
										
										
											2021-06-03 09:55:33 -07:00
										 |  |  |     expect((await fs.promises.readdir(dir)).length).toBe(1); | 
					
						
							| 
									
										
										
										
											2020-10-12 09:16:02 -07:00
										 |  |  |     await download.saveAs(userPath); | 
					
						
							| 
									
										
										
										
											2021-06-03 09:55:33 -07:00
										 |  |  |     expect((await fs.promises.readdir(dir)).length).toBe(1); | 
					
						
							| 
									
										
										
										
											2020-10-12 09:16:02 -07:00
										 |  |  |     expect(fs.existsSync(userPath)).toBeTruthy(); | 
					
						
							|  |  |  |     expect(fs.readFileSync(userPath).toString()).toBe('Hello world'); | 
					
						
							|  |  |  |     await page.close(); | 
					
						
							|  |  |  |   }); | 
					
						
							| 
									
										
										
										
											2020-08-03 13:41:48 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |   it('should create subdirectories when saving to non-existent user-specified path', async ({ browser, server }, testInfo) => { | 
					
						
							| 
									
										
										
										
											2021-12-06 09:25:24 -08:00
										 |  |  |     const page = await browser.newPage(); | 
					
						
							| 
									
										
										
										
											2020-10-12 09:16:02 -07:00
										 |  |  |     await page.setContent(`<a href="${server.PREFIX}/download">download</a>`); | 
					
						
							| 
									
										
										
										
											2022-08-18 20:12:33 +02:00
										 |  |  |     const [download] = await Promise.all([ | 
					
						
							| 
									
										
										
										
											2020-10-12 09:16:02 -07:00
										 |  |  |       page.waitForEvent('download'), | 
					
						
							|  |  |  |       page.click('a') | 
					
						
							|  |  |  |     ]); | 
					
						
							|  |  |  |     const nestedPath = testInfo.outputPath(path.join('these', 'are', 'directories', 'download.txt')); | 
					
						
							|  |  |  |     await download.saveAs(nestedPath); | 
					
						
							|  |  |  |     expect(fs.existsSync(nestedPath)).toBeTruthy(); | 
					
						
							|  |  |  |     expect(fs.readFileSync(nestedPath).toString()).toBe('Hello world'); | 
					
						
							|  |  |  |     await page.close(); | 
					
						
							|  |  |  |   }); | 
					
						
							| 
									
										
										
										
											2020-08-03 13:41:48 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |   it('should error when saving with downloads disabled', async ({ browser, server }, testInfo) => { | 
					
						
							| 
									
										
										
										
											2020-10-12 09:16:02 -07:00
										 |  |  |     const page = await browser.newPage({ acceptDownloads: false }); | 
					
						
							|  |  |  |     await page.setContent(`<a href="${server.PREFIX}/download">download</a>`); | 
					
						
							| 
									
										
										
										
											2022-08-18 20:12:33 +02:00
										 |  |  |     const [download] = await Promise.all([ | 
					
						
							| 
									
										
										
										
											2020-10-12 09:16:02 -07:00
										 |  |  |       page.waitForEvent('download'), | 
					
						
							|  |  |  |       page.click('a') | 
					
						
							|  |  |  |     ]); | 
					
						
							|  |  |  |     const userPath = testInfo.outputPath('download.txt'); | 
					
						
							|  |  |  |     const { message } = await download.saveAs(userPath).catch(e => e); | 
					
						
							|  |  |  |     expect(message).toContain('Pass { acceptDownloads: true } when you are creating your browser context'); | 
					
						
							|  |  |  |     await page.close(); | 
					
						
							|  |  |  |   }); | 
					
						
							| 
									
										
										
										
											2020-08-26 12:46:30 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |   it('should error when saving after deletion', async ({ browser, server }, testInfo) => { | 
					
						
							| 
									
										
										
										
											2021-12-06 09:25:24 -08:00
										 |  |  |     const page = await browser.newPage(); | 
					
						
							| 
									
										
										
										
											2020-10-12 09:16:02 -07:00
										 |  |  |     await page.setContent(`<a href="${server.PREFIX}/download">download</a>`); | 
					
						
							| 
									
										
										
										
											2022-08-18 20:12:33 +02:00
										 |  |  |     const [download] = await Promise.all([ | 
					
						
							| 
									
										
										
										
											2020-10-12 09:16:02 -07:00
										 |  |  |       page.waitForEvent('download'), | 
					
						
							|  |  |  |       page.click('a') | 
					
						
							|  |  |  |     ]); | 
					
						
							|  |  |  |     const userPath = testInfo.outputPath('download.txt'); | 
					
						
							|  |  |  |     await download.delete(); | 
					
						
							|  |  |  |     const { message } = await download.saveAs(userPath).catch(e => e); | 
					
						
							| 
									
										
										
										
											2021-04-24 20:39:48 -07:00
										 |  |  |     expect(message).toContain('Target page, context or browser has been closed'); | 
					
						
							| 
									
										
										
										
											2020-10-12 09:16:02 -07:00
										 |  |  |     await page.close(); | 
					
						
							|  |  |  |   }); | 
					
						
							| 
									
										
										
										
											2020-08-03 13:41:48 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |   it('should report non-navigation downloads', async ({ browser, server }) => { | 
					
						
							| 
									
										
										
										
											2020-10-12 09:16:02 -07:00
										 |  |  |     // Mac WebKit embedder does not download in this case, although Safari does.
 | 
					
						
							|  |  |  |     server.setRoute('/download', (req, res) => { | 
					
						
							|  |  |  |       res.setHeader('Content-Type', 'application/octet-stream'); | 
					
						
							|  |  |  |       res.end(`Hello world`); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2020-08-26 12:46:30 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-06 09:25:24 -08:00
										 |  |  |     const page = await browser.newPage(); | 
					
						
							| 
									
										
										
										
											2020-10-12 09:16:02 -07:00
										 |  |  |     await page.goto(server.EMPTY_PAGE); | 
					
						
							|  |  |  |     await page.setContent(`<a download="file.txt" href="${server.PREFIX}/download">download</a>`); | 
					
						
							| 
									
										
										
										
											2022-08-18 20:12:33 +02:00
										 |  |  |     const [download] = await Promise.all([ | 
					
						
							| 
									
										
										
										
											2020-10-12 09:16:02 -07:00
										 |  |  |       page.waitForEvent('download'), | 
					
						
							|  |  |  |       page.click('a') | 
					
						
							|  |  |  |     ]); | 
					
						
							|  |  |  |     expect(download.suggestedFilename()).toBe(`file.txt`); | 
					
						
							|  |  |  |     const path = await download.path(); | 
					
						
							|  |  |  |     expect(fs.existsSync(path)).toBeTruthy(); | 
					
						
							|  |  |  |     expect(fs.readFileSync(path).toString()).toBe('Hello world'); | 
					
						
							|  |  |  |     await page.close(); | 
					
						
							| 
									
										
										
										
											2020-08-03 13:41:48 -07:00
										 |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |   it(`should report download path within page.on('download', …) handler for Files`, async ({ browser, server }) => { | 
					
						
							| 
									
										
										
										
											2021-12-06 09:25:24 -08:00
										 |  |  |     const page = await browser.newPage(); | 
					
						
							| 
									
										
										
										
											2020-10-12 09:16:02 -07:00
										 |  |  |     const onDownloadPath = new Promise<string>(res => { | 
					
						
							|  |  |  |       page.on('download', dl => { | 
					
						
							| 
									
										
										
										
											2023-06-02 21:59:12 +02:00
										 |  |  |         void dl.path().then(res); | 
					
						
							| 
									
										
										
										
											2020-10-12 09:16:02 -07:00
										 |  |  |       }); | 
					
						
							| 
									
										
										
										
											2020-08-03 13:41:48 -07:00
										 |  |  |     }); | 
					
						
							| 
									
										
										
										
											2020-10-12 09:16:02 -07:00
										 |  |  |     await page.setContent(`<a href="${server.PREFIX}/download">download</a>`); | 
					
						
							|  |  |  |     await page.click('a'); | 
					
						
							|  |  |  |     const path = await onDownloadPath; | 
					
						
							|  |  |  |     expect(fs.readFileSync(path).toString()).toBe('Hello world'); | 
					
						
							|  |  |  |     await page.close(); | 
					
						
							| 
									
										
										
										
											2020-08-03 13:41:48 -07:00
										 |  |  |   }); | 
					
						
							| 
									
										
										
										
											2021-04-05 09:18:56 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |   it(`should report download path within page.on('download', …) handler for Blobs`, async ({ browser, server }) => { | 
					
						
							| 
									
										
										
										
											2021-12-06 09:25:24 -08:00
										 |  |  |     const page = await browser.newPage(); | 
					
						
							| 
									
										
										
										
											2020-10-12 09:16:02 -07:00
										 |  |  |     const onDownloadPath = new Promise<string>(res => { | 
					
						
							|  |  |  |       page.on('download', dl => { | 
					
						
							| 
									
										
										
										
											2023-06-02 21:59:12 +02:00
										 |  |  |         void dl.path().then(res); | 
					
						
							| 
									
										
										
										
											2020-10-12 09:16:02 -07:00
										 |  |  |       }); | 
					
						
							| 
									
										
										
										
											2020-08-03 13:41:48 -07:00
										 |  |  |     }); | 
					
						
							| 
									
										
										
										
											2020-10-12 09:16:02 -07:00
										 |  |  |     await page.goto(server.PREFIX + '/download-blob.html'); | 
					
						
							|  |  |  |     await page.click('a'); | 
					
						
							|  |  |  |     const path = await onDownloadPath; | 
					
						
							|  |  |  |     expect(fs.readFileSync(path).toString()).toBe('Hello world'); | 
					
						
							|  |  |  |     await page.close(); | 
					
						
							| 
									
										
										
										
											2020-08-03 13:41:48 -07:00
										 |  |  |   }); | 
					
						
							| 
									
										
										
										
											2021-04-05 09:18:56 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |   it('should report alt-click downloads', async ({ browser, server, browserName }) => { | 
					
						
							| 
									
										
										
										
											2023-01-27 21:52:34 -08:00
										 |  |  |     it.fixme(browserName === 'firefox'); | 
					
						
							| 
									
										
										
										
											2021-04-05 09:18:56 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-12 09:16:02 -07:00
										 |  |  |     // Firefox does not download on alt-click by default.
 | 
					
						
							|  |  |  |     // Our WebKit embedder does not download on alt-click, although Safari does.
 | 
					
						
							|  |  |  |     server.setRoute('/download', (req, res) => { | 
					
						
							|  |  |  |       res.setHeader('Content-Type', 'application/octet-stream'); | 
					
						
							|  |  |  |       res.end(`Hello world`); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2020-08-03 13:41:48 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-06 09:25:24 -08:00
										 |  |  |     const page = await browser.newPage(); | 
					
						
							| 
									
										
										
										
											2020-10-12 09:16:02 -07:00
										 |  |  |     await page.goto(server.EMPTY_PAGE); | 
					
						
							|  |  |  |     await page.setContent(`<a href="${server.PREFIX}/download">download</a>`); | 
					
						
							| 
									
										
										
										
											2022-08-18 20:12:33 +02:00
										 |  |  |     const [download] = await Promise.all([ | 
					
						
							| 
									
										
										
										
											2020-10-12 09:16:02 -07:00
										 |  |  |       page.waitForEvent('download'), | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |       page.click('a', { modifiers: ['Alt'] }) | 
					
						
							| 
									
										
										
										
											2020-10-12 09:16:02 -07:00
										 |  |  |     ]); | 
					
						
							|  |  |  |     const path = await download.path(); | 
					
						
							|  |  |  |     expect(fs.existsSync(path)).toBeTruthy(); | 
					
						
							|  |  |  |     expect(fs.readFileSync(path).toString()).toBe('Hello world'); | 
					
						
							|  |  |  |     await page.close(); | 
					
						
							|  |  |  |   }); | 
					
						
							| 
									
										
										
										
											2020-08-03 13:41:48 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |   it('should report new window downloads', async ({ browser, server }) => { | 
					
						
							| 
									
										
										
										
											2021-12-06 09:25:24 -08:00
										 |  |  |     const page = await browser.newPage(); | 
					
						
							| 
									
										
										
										
											2020-10-12 09:16:02 -07:00
										 |  |  |     await page.setContent(`<a target=_blank href="${server.PREFIX}/download">download</a>`); | 
					
						
							| 
									
										
										
										
											2022-08-18 20:12:33 +02:00
										 |  |  |     const [download] = await Promise.all([ | 
					
						
							| 
									
										
										
										
											2020-10-12 09:16:02 -07:00
										 |  |  |       page.waitForEvent('download'), | 
					
						
							|  |  |  |       page.click('a') | 
					
						
							|  |  |  |     ]); | 
					
						
							|  |  |  |     const path = await download.path(); | 
					
						
							|  |  |  |     expect(fs.existsSync(path)).toBeTruthy(); | 
					
						
							|  |  |  |     await page.close(); | 
					
						
							|  |  |  |   }); | 
					
						
							| 
									
										
										
										
											2020-08-03 13:41:48 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |   it('should delete file', async ({ browser, server }) => { | 
					
						
							| 
									
										
										
										
											2021-12-06 09:25:24 -08:00
										 |  |  |     const page = await browser.newPage(); | 
					
						
							| 
									
										
										
										
											2020-10-12 09:16:02 -07:00
										 |  |  |     await page.setContent(`<a href="${server.PREFIX}/download">download</a>`); | 
					
						
							| 
									
										
										
										
											2022-08-18 20:12:33 +02:00
										 |  |  |     const [download] = await Promise.all([ | 
					
						
							| 
									
										
										
										
											2020-10-12 09:16:02 -07:00
										 |  |  |       page.waitForEvent('download'), | 
					
						
							|  |  |  |       page.click('a') | 
					
						
							|  |  |  |     ]); | 
					
						
							|  |  |  |     const path = await download.path(); | 
					
						
							|  |  |  |     expect(fs.existsSync(path)).toBeTruthy(); | 
					
						
							|  |  |  |     await download.delete(); | 
					
						
							|  |  |  |     expect(fs.existsSync(path)).toBeFalsy(); | 
					
						
							|  |  |  |     await page.close(); | 
					
						
							|  |  |  |   }); | 
					
						
							| 
									
										
										
										
											2020-08-03 13:41:48 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |   it('should expose stream', async ({ browser, server }) => { | 
					
						
							| 
									
										
										
										
											2021-12-06 09:25:24 -08:00
										 |  |  |     const page = await browser.newPage(); | 
					
						
							| 
									
										
										
										
											2020-10-12 09:16:02 -07:00
										 |  |  |     await page.setContent(`<a href="${server.PREFIX}/download">download</a>`); | 
					
						
							| 
									
										
										
										
											2022-08-18 20:12:33 +02:00
										 |  |  |     const [download] = await Promise.all([ | 
					
						
							| 
									
										
										
										
											2020-10-12 09:16:02 -07:00
										 |  |  |       page.waitForEvent('download'), | 
					
						
							|  |  |  |       page.click('a') | 
					
						
							|  |  |  |     ]); | 
					
						
							|  |  |  |     const stream = await download.createReadStream(); | 
					
						
							|  |  |  |     let content = ''; | 
					
						
							|  |  |  |     stream.on('data', data => content += data.toString()); | 
					
						
							|  |  |  |     await new Promise(f => stream.on('end', f)); | 
					
						
							|  |  |  |     expect(content).toBe('Hello world'); | 
					
						
							|  |  |  |     await page.close(); | 
					
						
							|  |  |  |   }); | 
					
						
							| 
									
										
										
										
											2020-08-03 13:41:48 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |   it('should delete downloads on context destruction', async ({ browser, server }) => { | 
					
						
							| 
									
										
										
										
											2021-12-06 09:25:24 -08:00
										 |  |  |     const page = await browser.newPage(); | 
					
						
							| 
									
										
										
										
											2020-10-12 09:16:02 -07:00
										 |  |  |     await page.setContent(`<a href="${server.PREFIX}/download">download</a>`); | 
					
						
							| 
									
										
										
										
											2022-08-18 20:12:33 +02:00
										 |  |  |     const [download1] = await Promise.all([ | 
					
						
							| 
									
										
										
										
											2020-10-12 09:16:02 -07:00
										 |  |  |       page.waitForEvent('download'), | 
					
						
							|  |  |  |       page.click('a') | 
					
						
							|  |  |  |     ]); | 
					
						
							| 
									
										
										
										
											2022-08-18 20:12:33 +02:00
										 |  |  |     const [download2] = await Promise.all([ | 
					
						
							| 
									
										
										
										
											2020-10-12 09:16:02 -07:00
										 |  |  |       page.waitForEvent('download'), | 
					
						
							|  |  |  |       page.click('a') | 
					
						
							|  |  |  |     ]); | 
					
						
							|  |  |  |     const path1 = await download1.path(); | 
					
						
							|  |  |  |     const path2 = await download2.path(); | 
					
						
							|  |  |  |     expect(fs.existsSync(path1)).toBeTruthy(); | 
					
						
							|  |  |  |     expect(fs.existsSync(path2)).toBeTruthy(); | 
					
						
							|  |  |  |     await page.context().close(); | 
					
						
							|  |  |  |     expect(fs.existsSync(path1)).toBeFalsy(); | 
					
						
							|  |  |  |     expect(fs.existsSync(path2)).toBeFalsy(); | 
					
						
							|  |  |  |   }); | 
					
						
							| 
									
										
										
										
											2020-08-03 13:41:48 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-27 18:00:06 -08:00
										 |  |  |   it('should delete downloads on browser gone', async ({ server, browserType }) => { | 
					
						
							|  |  |  |     const browser = await browserType.launch(); | 
					
						
							| 
									
										
										
										
											2021-12-06 09:25:24 -08:00
										 |  |  |     const page = await browser.newPage(); | 
					
						
							| 
									
										
										
										
											2020-10-12 09:16:02 -07:00
										 |  |  |     await page.setContent(`<a href="${server.PREFIX}/download">download</a>`); | 
					
						
							| 
									
										
										
										
											2022-08-18 20:12:33 +02:00
										 |  |  |     const [download1] = await Promise.all([ | 
					
						
							| 
									
										
										
										
											2020-10-12 09:16:02 -07:00
										 |  |  |       page.waitForEvent('download'), | 
					
						
							|  |  |  |       page.click('a') | 
					
						
							|  |  |  |     ]); | 
					
						
							| 
									
										
										
										
											2022-08-18 20:12:33 +02:00
										 |  |  |     const [download2] = await Promise.all([ | 
					
						
							| 
									
										
										
										
											2020-10-12 09:16:02 -07:00
										 |  |  |       page.waitForEvent('download'), | 
					
						
							|  |  |  |       page.click('a') | 
					
						
							|  |  |  |     ]); | 
					
						
							|  |  |  |     const path1 = await download1.path(); | 
					
						
							|  |  |  |     const path2 = await download2.path(); | 
					
						
							|  |  |  |     expect(fs.existsSync(path1)).toBeTruthy(); | 
					
						
							|  |  |  |     expect(fs.existsSync(path2)).toBeTruthy(); | 
					
						
							|  |  |  |     await browser.close(); | 
					
						
							|  |  |  |     expect(fs.existsSync(path1)).toBeFalsy(); | 
					
						
							|  |  |  |     expect(fs.existsSync(path2)).toBeFalsy(); | 
					
						
							|  |  |  |     expect(fs.existsSync(path.join(path1, '..'))).toBeFalsy(); | 
					
						
							|  |  |  |   }); | 
					
						
							| 
									
										
										
										
											2021-02-14 16:46:26 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |   it('should close the context without awaiting the failed download', async ({ browser, server, httpsServer, browserName, headless }, testInfo) => { | 
					
						
							| 
									
										
										
										
											2021-04-05 09:18:56 -07:00
										 |  |  |     it.skip(browserName !== 'chromium', 'Only Chromium downloads on alt-click'); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-06 09:25:24 -08:00
										 |  |  |     const page = await browser.newPage(); | 
					
						
							| 
									
										
										
										
											2021-02-14 16:46:26 -08:00
										 |  |  |     await page.goto(server.EMPTY_PAGE); | 
					
						
							|  |  |  |     await page.setContent(`<a href="${httpsServer.PREFIX}/downloadWithFilename" download="file.txt">click me</a>`); | 
					
						
							|  |  |  |     const [download] = await Promise.all([ | 
					
						
							|  |  |  |       page.waitForEvent('download'), | 
					
						
							|  |  |  |       // Use alt-click to force the download. Otherwise browsers might try to navigate first,
 | 
					
						
							|  |  |  |       // probably because of http -> https link.
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |       page.click('a', { modifiers: ['Alt'] }) | 
					
						
							| 
									
										
										
										
											2021-02-14 16:46:26 -08:00
										 |  |  |     ]); | 
					
						
							|  |  |  |     const [downloadPath, saveError] = await Promise.all([ | 
					
						
							|  |  |  |       download.path(), | 
					
						
							|  |  |  |       download.saveAs(testInfo.outputPath('download.txt')).catch(e => e), | 
					
						
							|  |  |  |       page.context().close(), | 
					
						
							|  |  |  |     ]); | 
					
						
							|  |  |  |     expect(downloadPath).toBe(null); | 
					
						
							| 
									
										
										
										
											2021-09-22 17:28:17 -07:00
										 |  |  |     expect([ | 
					
						
							|  |  |  |       'download.saveAs: File not found on disk. Check download.failure() for details.', | 
					
						
							|  |  |  |       'download.saveAs: canceled', | 
					
						
							|  |  |  |     ]).toContain(saveError.message); | 
					
						
							| 
									
										
										
										
											2021-02-14 16:46:26 -08:00
										 |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |   it('should close the context without awaiting the download', async ({ browser, server, browserName, platform }, testInfo) => { | 
					
						
							| 
									
										
										
										
											2021-04-05 09:18:56 -07:00
										 |  |  |     it.skip(browserName === 'webkit' && platform === 'linux', 'WebKit on linux does not convert to the download immediately upon receiving headers'); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-14 16:46:26 -08:00
										 |  |  |     server.setRoute('/downloadStall', (req, res) => { | 
					
						
							|  |  |  |       res.setHeader('Content-Type', 'application/octet-stream'); | 
					
						
							|  |  |  |       res.setHeader('Content-Disposition', 'attachment; filename=file.txt'); | 
					
						
							|  |  |  |       res.writeHead(200); | 
					
						
							|  |  |  |       res.flushHeaders(); | 
					
						
							|  |  |  |       res.write(`Hello world`); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-06 09:25:24 -08:00
										 |  |  |     const page = await browser.newPage(); | 
					
						
							| 
									
										
										
										
											2021-02-14 16:46:26 -08:00
										 |  |  |     await page.goto(server.EMPTY_PAGE); | 
					
						
							|  |  |  |     await page.setContent(`<a href="${server.PREFIX}/downloadStall" download="file.txt">click me</a>`); | 
					
						
							|  |  |  |     const [download] = await Promise.all([ | 
					
						
							|  |  |  |       page.waitForEvent('download'), | 
					
						
							|  |  |  |       page.click('a') | 
					
						
							|  |  |  |     ]); | 
					
						
							|  |  |  |     const [downloadPath, saveError] = await Promise.all([ | 
					
						
							|  |  |  |       download.path(), | 
					
						
							|  |  |  |       download.saveAs(testInfo.outputPath('download.txt')).catch(e => e), | 
					
						
							|  |  |  |       page.context().close(), | 
					
						
							|  |  |  |     ]); | 
					
						
							|  |  |  |     expect(downloadPath).toBe(null); | 
					
						
							| 
									
										
										
										
											2021-06-14 16:41:53 -07:00
										 |  |  |     // The exact error message is racy, because sometimes browser is fast enough
 | 
					
						
							|  |  |  |     // to cancel the download.
 | 
					
						
							|  |  |  |     expect([ | 
					
						
							|  |  |  |       'download.saveAs: canceled', | 
					
						
							|  |  |  |       'download.saveAs: File deleted upon browser context closure.', | 
					
						
							|  |  |  |     ]).toContain(saveError.message); | 
					
						
							| 
									
										
										
										
											2021-02-14 16:46:26 -08:00
										 |  |  |   }); | 
					
						
							| 
									
										
										
										
											2021-04-08 18:56:09 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-27 18:00:06 -08:00
										 |  |  |   it('should throw if browser dies', async ({ server, browserType, browserName, platform }, testInfo) => { | 
					
						
							| 
									
										
										
										
											2021-04-08 18:56:09 -07:00
										 |  |  |     it.skip(browserName === 'webkit' && platform === 'linux', 'WebKit on linux does not convert to the download immediately upon receiving headers'); | 
					
						
							|  |  |  |     server.setRoute('/downloadStall', (req, res) => { | 
					
						
							|  |  |  |       res.setHeader('Content-Type', 'application/octet-stream'); | 
					
						
							|  |  |  |       res.setHeader('Content-Disposition', 'attachment; filename=file.txt'); | 
					
						
							|  |  |  |       res.writeHead(200); | 
					
						
							|  |  |  |       res.flushHeaders(); | 
					
						
							|  |  |  |       res.write(`Hello world`); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-27 18:00:06 -08:00
										 |  |  |     const browser = await browserType.launch(); | 
					
						
							| 
									
										
										
										
											2021-12-06 09:25:24 -08:00
										 |  |  |     const page = await browser.newPage(); | 
					
						
							| 
									
										
										
										
											2021-04-08 18:56:09 -07:00
										 |  |  |     await page.setContent(`<a href="${server.PREFIX}/downloadStall">click me</a>`); | 
					
						
							|  |  |  |     const [download] = await Promise.all([ | 
					
						
							|  |  |  |       page.waitForEvent('download'), | 
					
						
							|  |  |  |       page.click('a') | 
					
						
							|  |  |  |     ]); | 
					
						
							|  |  |  |     const [downloadPath, saveError] = await Promise.all([ | 
					
						
							|  |  |  |       download.path(), | 
					
						
							|  |  |  |       download.saveAs(testInfo.outputPath('download.txt')).catch(e => e), | 
					
						
							|  |  |  |       (browser as any)._channel.killForTests(), | 
					
						
							|  |  |  |     ]); | 
					
						
							|  |  |  |     expect(downloadPath).toBe(null); | 
					
						
							|  |  |  |     expect(saveError.message).toContain('File deleted upon browser context closure.'); | 
					
						
							| 
									
										
										
										
											2021-09-07 13:05:29 +02:00
										 |  |  |     await browser.close(); | 
					
						
							| 
									
										
										
										
											2021-04-08 18:56:09 -07:00
										 |  |  |   }); | 
					
						
							| 
									
										
										
										
											2021-04-28 21:54:51 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |   it('should download large binary.zip', async ({ browser, server, browserName }, testInfo) => { | 
					
						
							| 
									
										
										
										
											2021-04-28 21:54:51 +00:00
										 |  |  |     const zipFile = testInfo.outputPath('binary.zip'); | 
					
						
							|  |  |  |     const content = crypto.randomBytes(1 << 20); | 
					
						
							|  |  |  |     fs.writeFileSync(zipFile, content); | 
					
						
							|  |  |  |     server.setRoute('/binary.zip', (req, res) => server.serveFile(req, res, zipFile)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-06 09:25:24 -08:00
										 |  |  |     const page = await browser.newPage(); | 
					
						
							| 
									
										
										
										
											2021-04-28 21:54:51 +00:00
										 |  |  |     await page.goto(server.PREFIX + '/empty.html'); | 
					
						
							|  |  |  |     await page.setContent(`<a href="${server.PREFIX}/binary.zip" download="binary.zip">download</a>`); | 
					
						
							| 
									
										
										
										
											2022-08-18 20:12:33 +02:00
										 |  |  |     const [download] = await Promise.all([ | 
					
						
							| 
									
										
										
										
											2021-04-28 21:54:51 +00:00
										 |  |  |       page.waitForEvent('download'), | 
					
						
							|  |  |  |       page.click('a') | 
					
						
							|  |  |  |     ]); | 
					
						
							|  |  |  |     const downloadPath = await download.path(); | 
					
						
							|  |  |  |     const fileContent = fs.readFileSync(downloadPath); | 
					
						
							|  |  |  |     expect(fileContent.byteLength).toBe(content.byteLength); | 
					
						
							|  |  |  |     expect(fileContent.equals(content)).toBe(true); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     const stream = await download.createReadStream(); | 
					
						
							|  |  |  |     const data = await new Promise<Buffer>((fulfill, reject) => { | 
					
						
							|  |  |  |       const bufs = []; | 
					
						
							|  |  |  |       stream.on('data', d => bufs.push(d)); | 
					
						
							|  |  |  |       stream.on('error', reject); | 
					
						
							|  |  |  |       stream.on('end', () => fulfill(Buffer.concat(bufs))); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  |     expect(data.byteLength).toBe(content.byteLength); | 
					
						
							|  |  |  |     expect(data.equals(content)).toBe(true); | 
					
						
							|  |  |  |     await page.close(); | 
					
						
							|  |  |  |   }); | 
					
						
							| 
									
										
										
										
											2021-05-14 13:28:42 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |   it('should be able to cancel pending downloads', async ({ browser, server, browserName, browserVersion }) => { | 
					
						
							| 
									
										
										
										
											2021-12-06 09:25:24 -08:00
										 |  |  |     const page = await browser.newPage(); | 
					
						
							| 
									
										
										
										
											2021-06-12 21:23:22 +01:00
										 |  |  |     await page.setContent(`<a href="${server.PREFIX}/downloadWithDelay">download</a>`); | 
					
						
							| 
									
										
										
										
											2022-08-18 20:12:33 +02:00
										 |  |  |     const [download] = await Promise.all([ | 
					
						
							| 
									
										
										
										
											2021-06-12 21:23:22 +01:00
										 |  |  |       page.waitForEvent('download'), | 
					
						
							|  |  |  |       page.click('a') | 
					
						
							|  |  |  |     ]); | 
					
						
							| 
									
										
										
										
											2021-07-06 09:38:50 +02:00
										 |  |  |     await download.cancel(); | 
					
						
							| 
									
										
										
										
											2021-06-12 21:23:22 +01:00
										 |  |  |     const failure = await download.failure(); | 
					
						
							|  |  |  |     expect(failure).toBe('canceled'); | 
					
						
							|  |  |  |     await page.close(); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |   it('should not fail explicitly to cancel a download even if that is already finished', async ({ browser, server, browserName, browserVersion }) => { | 
					
						
							| 
									
										
										
										
											2021-12-06 09:25:24 -08:00
										 |  |  |     const page = await browser.newPage(); | 
					
						
							| 
									
										
										
										
											2021-06-12 21:23:22 +01:00
										 |  |  |     await page.setContent(`<a href="${server.PREFIX}/download">download</a>`); | 
					
						
							| 
									
										
										
										
											2022-08-18 20:12:33 +02:00
										 |  |  |     const [download] = await Promise.all([ | 
					
						
							| 
									
										
										
										
											2021-06-12 21:23:22 +01:00
										 |  |  |       page.waitForEvent('download'), | 
					
						
							|  |  |  |       page.click('a') | 
					
						
							|  |  |  |     ]); | 
					
						
							|  |  |  |     const path = await download.path(); | 
					
						
							|  |  |  |     expect(fs.existsSync(path)).toBeTruthy(); | 
					
						
							|  |  |  |     expect(fs.readFileSync(path).toString()).toBe('Hello world'); | 
					
						
							| 
									
										
										
										
											2021-07-06 09:38:50 +02:00
										 |  |  |     await download.cancel(); | 
					
						
							| 
									
										
										
										
											2021-06-12 21:23:22 +01:00
										 |  |  |     const failure = await download.failure(); | 
					
						
							|  |  |  |     expect(failure).toBe(null); | 
					
						
							|  |  |  |     await page.close(); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |   it('should report downloads with interception', async ({ browser, server }) => { | 
					
						
							| 
									
										
										
										
											2021-12-06 09:25:24 -08:00
										 |  |  |     const page = await browser.newPage(); | 
					
						
							| 
									
										
										
										
											2021-05-14 13:28:42 -07:00
										 |  |  |     await page.route(/.*/, r => r.continue()); | 
					
						
							|  |  |  |     await page.setContent(`<a href="${server.PREFIX}/download">download</a>`); | 
					
						
							| 
									
										
										
										
											2022-08-18 20:12:33 +02:00
										 |  |  |     const [download] = await Promise.all([ | 
					
						
							| 
									
										
										
										
											2021-05-14 13:28:42 -07:00
										 |  |  |       page.waitForEvent('download'), | 
					
						
							|  |  |  |       page.click('a') | 
					
						
							|  |  |  |     ]); | 
					
						
							|  |  |  |     const path = await download.path(); | 
					
						
							|  |  |  |     expect(fs.existsSync(path)).toBeTruthy(); | 
					
						
							|  |  |  |     expect(fs.readFileSync(path).toString()).toBe('Hello world'); | 
					
						
							|  |  |  |     await page.close(); | 
					
						
							|  |  |  |   }); | 
					
						
							| 
									
										
										
										
											2021-11-01 17:45:22 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |   it('should emit download event from nested iframes', async ({ server, browser, browserName }, testInfo) => { | 
					
						
							| 
									
										
										
										
											2021-12-06 09:25:24 -08:00
										 |  |  |     const page = await browser.newPage(); | 
					
						
							| 
									
										
										
										
											2021-11-01 17:45:22 +01:00
										 |  |  |     server.setRoute('/1', (req, res) => { | 
					
						
							|  |  |  |       res.setHeader('Content-Type', 'text/html'); | 
					
						
							|  |  |  |       res.end(`<iframe src="${server.PREFIX}/2"></iframe>`); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  |     server.setRoute('/2', (req, res) => { | 
					
						
							|  |  |  |       res.setHeader('Content-Type', 'text/html'); | 
					
						
							|  |  |  |       res.end(`<iframe src="${server.PREFIX}/3"></iframe>`); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  |     server.setRoute('/3', (req, res) => { | 
					
						
							|  |  |  |       res.setHeader('Content-Type', 'text/html'); | 
					
						
							|  |  |  |       res.end(` <a href="${server.PREFIX}/download">download</a>`); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  |     await page.goto(server.PREFIX + '/1'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     const [download] = await Promise.all([ | 
					
						
							|  |  |  |       page.waitForEvent('download'), | 
					
						
							|  |  |  |       page.frame({ | 
					
						
							|  |  |  |         url: server.PREFIX + '/3' | 
					
						
							|  |  |  |       }).click('text=download') | 
					
						
							|  |  |  |     ]); | 
					
						
							|  |  |  |     const userPath = testInfo.outputPath('download.txt'); | 
					
						
							|  |  |  |     await download.saveAs(userPath); | 
					
						
							|  |  |  |     expect(fs.existsSync(userPath)).toBeTruthy(); | 
					
						
							|  |  |  |     expect(fs.readFileSync(userPath).toString()).toBe('Hello world'); | 
					
						
							|  |  |  |     await page.close(); | 
					
						
							|  |  |  |   }); | 
					
						
							| 
									
										
										
										
											2020-08-03 13:41:48 -07:00
										 |  |  | }); | 
					
						
							| 
									
										
										
										
											2021-09-30 17:50:13 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | it('should be able to download a PDF file', async ({ browser, server, asset }) => { | 
					
						
							| 
									
										
										
										
											2021-12-06 09:25:24 -08:00
										 |  |  |   const page = await browser.newPage(); | 
					
						
							| 
									
										
										
										
											2021-09-30 17:50:13 +02:00
										 |  |  |   await page.goto(server.EMPTY_PAGE); | 
					
						
							|  |  |  |   await page.setContent(`
 | 
					
						
							|  |  |  |     <a href="/empty.pdf" download>download</a> | 
					
						
							|  |  |  |   `);
 | 
					
						
							|  |  |  |   const [download] = await Promise.all([ | 
					
						
							|  |  |  |     page.waitForEvent('download'), | 
					
						
							|  |  |  |     page.click('a'), | 
					
						
							|  |  |  |   ]); | 
					
						
							|  |  |  |   await assertDownloadToPDF(download, asset('empty.pdf')); | 
					
						
							|  |  |  |   await page.close(); | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-24 17:45:15 +02:00
										 |  |  | it('should be able to download a inline PDF file via response interception', async ({ browser, server, asset, browserName }) => { | 
					
						
							| 
									
										
										
										
											2021-09-30 23:12:33 +02:00
										 |  |  |   it.fixme(browserName === 'webkit'); | 
					
						
							| 
									
										
										
										
											2021-12-06 09:25:24 -08:00
										 |  |  |   const page = await browser.newPage(); | 
					
						
							| 
									
										
										
										
											2021-09-30 17:50:13 +02:00
										 |  |  |   await page.goto(server.EMPTY_PAGE); | 
					
						
							|  |  |  |   await page.route('**/empty.pdf', async route => { | 
					
						
							| 
									
										
										
										
											2021-10-05 16:36:15 -07:00
										 |  |  |     const response = await page.context().request.fetch(route.request()); | 
					
						
							| 
									
										
										
										
											2021-09-30 17:50:13 +02:00
										 |  |  |     await route.fulfill({ | 
					
						
							|  |  |  |       response, | 
					
						
							|  |  |  |       headers: { | 
					
						
							|  |  |  |         ...response.headers(), | 
					
						
							|  |  |  |         'Content-Disposition': 'attachment', | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  |   await page.setContent(`
 | 
					
						
							|  |  |  |     <a href="/empty.pdf">open</a> | 
					
						
							|  |  |  |   `);
 | 
					
						
							| 
									
										
										
										
											2022-08-24 17:45:15 +02:00
										 |  |  |   const [download] = await Promise.all([ | 
					
						
							|  |  |  |     page.waitForEvent('download'), | 
					
						
							|  |  |  |     page.click('a'), | 
					
						
							|  |  |  |   ]); | 
					
						
							|  |  |  |   await assertDownloadToPDF(download, asset('empty.pdf')); | 
					
						
							|  |  |  |   await page.close(); | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-27 21:52:34 -08:00
										 |  |  | it('should be able to download a inline PDF file via navigation', async ({ browser, server, asset, browserName, headless }) => { | 
					
						
							| 
									
										
										
										
											2023-06-02 20:40:12 +02:00
										 |  |  |   it.fixme(((!headless || !!process.env.PLAYWRIGHT_CHROMIUM_USE_HEADLESS_NEW) && browserName === 'chromium')); | 
					
						
							| 
									
										
										
										
											2022-08-24 17:45:15 +02:00
										 |  |  |   const page = await browser.newPage(); | 
					
						
							|  |  |  |   await page.goto(server.EMPTY_PAGE); | 
					
						
							|  |  |  |   await page.setContent(`
 | 
					
						
							|  |  |  |     <a href="/empty.pdf">open</a> | 
					
						
							|  |  |  |   `);
 | 
					
						
							| 
									
										
										
										
											2021-09-30 17:50:13 +02:00
										 |  |  |   const [download] = await Promise.all([ | 
					
						
							|  |  |  |     page.waitForEvent('download'), | 
					
						
							|  |  |  |     page.click('a'), | 
					
						
							|  |  |  |   ]); | 
					
						
							|  |  |  |   await assertDownloadToPDF(download, asset('empty.pdf')); | 
					
						
							|  |  |  |   await page.close(); | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-14 10:41:03 -07:00
										 |  |  | it('should save to user-specified path', async ({ browser, server, mode }, testInfo) => { | 
					
						
							|  |  |  |   server.setRoute('/download', (req, res) => { | 
					
						
							|  |  |  |     res.setHeader('Content-Type', 'application/octet-stream'); | 
					
						
							|  |  |  |     res.setHeader('Content-Disposition', 'attachment'); | 
					
						
							|  |  |  |     res.end(`Hello world`); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-06 09:25:24 -08:00
										 |  |  |   const page = await browser.newPage(); | 
					
						
							| 
									
										
										
										
											2021-10-14 10:41:03 -07:00
										 |  |  |   await page.setContent(`<a href="${server.PREFIX}/download">download</a>`); | 
					
						
							| 
									
										
										
										
											2022-08-18 20:12:33 +02:00
										 |  |  |   const [download] = await Promise.all([ | 
					
						
							| 
									
										
										
										
											2021-10-14 10:41:03 -07:00
										 |  |  |     page.waitForEvent('download'), | 
					
						
							|  |  |  |     page.click('a') | 
					
						
							|  |  |  |   ]); | 
					
						
							| 
									
										
										
										
											2022-07-06 09:20:07 -07:00
										 |  |  |   if (mode !== 'default') { | 
					
						
							| 
									
										
										
										
											2021-10-14 10:41:03 -07:00
										 |  |  |     const error = await download.path().catch(e => e); | 
					
						
							|  |  |  |     expect(error.message).toContain('Path is not available when connecting remotely. Use saveAs() to save a local copy.'); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  |   const userPath = testInfo.outputPath('download.txt'); | 
					
						
							|  |  |  |   await download.saveAs(userPath); | 
					
						
							|  |  |  |   expect(fs.existsSync(userPath)).toBeTruthy(); | 
					
						
							|  |  |  |   expect(fs.readFileSync(userPath).toString()).toBe('Hello world'); | 
					
						
							|  |  |  |   await page.close(); | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-26 10:13:44 -08:00
										 |  |  | it('should download even if there is no "attachment" value', async ({ browser, server }) => { | 
					
						
							| 
									
										
										
										
											2023-01-17 20:15:35 -08:00
										 |  |  |   it.info().annotations.push({ type: 'issue', description: 'https://github.com/microsoft/playwright/issues/19939' }); | 
					
						
							|  |  |  |   server.setRoute('/download', (req, res) => { | 
					
						
							|  |  |  |     res.setHeader('Content-Type', 'application/octet-stream'); | 
					
						
							|  |  |  |     // Do not set the "attachment" value.
 | 
					
						
							|  |  |  |     res.setHeader('Content-Disposition', 'filename=foo.txt'); | 
					
						
							|  |  |  |     res.end(`Hello world`); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   const page = await browser.newPage(); | 
					
						
							|  |  |  |   await page.setContent(`<a href="${server.PREFIX}/download">download</a>`); | 
					
						
							|  |  |  |   await Promise.all([ | 
					
						
							|  |  |  |     page.waitForEvent('download'), | 
					
						
							|  |  |  |     page.click('a') | 
					
						
							|  |  |  |   ]); | 
					
						
							|  |  |  |   await page.close(); | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-26 10:13:44 -08:00
										 |  |  | it('should convert navigation to a resource with unsupported mime type into download', async ({ browser, server }) => { | 
					
						
							| 
									
										
										
										
											2023-01-24 07:29:46 -08:00
										 |  |  |   it.info().annotations.push({ type: 'issue', description: 'https://github.com/microsoft/playwright/issues/19939' }); | 
					
						
							|  |  |  |   server.setRoute('/download', (req, res) => { | 
					
						
							|  |  |  |     res.setHeader('Content-Type', 'application/octet-stream'); | 
					
						
							|  |  |  |     res.end(`Hello world`); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  |   const page = await browser.newPage(); | 
					
						
							|  |  |  |   await Promise.all([ | 
					
						
							|  |  |  |     page.waitForEvent('download'), | 
					
						
							|  |  |  |     page.goto(`${server.PREFIX}/download`).catch(() => {}) | 
					
						
							|  |  |  |   ]); | 
					
						
							|  |  |  |   await page.close(); | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-14 13:32:50 -07:00
										 |  |  | it('should download links with data url', async ({ page }) => { | 
					
						
							| 
									
										
										
										
											2023-04-10 14:15:06 -07:00
										 |  |  |   it.info().annotations.push({ type: 'issue', description: 'https://github.com/microsoft/playwright/issues/21892' }); | 
					
						
							|  |  |  |   await page.setContent('<a download="SomeFile.txt" href="data:text/plain;charset=utf8;,hello world">Download!</a>'); | 
					
						
							|  |  |  |   const donwloadPromise = page.waitForEvent('download'); | 
					
						
							|  |  |  |   await page.getByText('Download').click(); | 
					
						
							|  |  |  |   const download = await donwloadPromise; | 
					
						
							|  |  |  |   expect(download.suggestedFilename()).toBe('SomeFile.txt'); | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-30 17:50:13 +02:00
										 |  |  | async function assertDownloadToPDF(download: Download, filePath: string) { | 
					
						
							|  |  |  |   expect(download.suggestedFilename()).toBe(path.basename(filePath)); | 
					
						
							|  |  |  |   const stream = await download.createReadStream(); | 
					
						
							|  |  |  |   const data = await new Promise<Buffer>((fulfill, reject) => { | 
					
						
							|  |  |  |     const bufs = []; | 
					
						
							|  |  |  |     stream.on('data', d => bufs.push(d)); | 
					
						
							|  |  |  |     stream.on('error', reject); | 
					
						
							|  |  |  |     stream.on('end', () => fulfill(Buffer.concat(bufs))); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  |   expect(download.url().endsWith('/' + path.basename(filePath))).toBeTruthy(); | 
					
						
							|  |  |  |   const expectedPrefix = '%PDF'; | 
					
						
							|  |  |  |   for (let i = 0; i < expectedPrefix.length; i++) | 
					
						
							|  |  |  |     expect(data[i]).toBe(expectedPrefix.charCodeAt(i)); | 
					
						
							|  |  |  |   assertBuffer(data, fs.readFileSync(filePath)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-02 21:59:12 +02:00
										 |  |  | function assertBuffer(expected: Buffer, actual: Buffer) { | 
					
						
							| 
									
										
										
										
											2021-09-30 17:50:13 +02:00
										 |  |  |   expect(expected.byteLength).toBe(actual.byteLength); | 
					
						
							|  |  |  |   for (let i = 0; i < expected.byteLength; i++) | 
					
						
							|  |  |  |     expect(expected[i]).toBe(actual[i]); | 
					
						
							|  |  |  | } |