| 
									
										
										
										
											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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-12 09:16:02 -07:00
										 |  |  | import { folio } from './fixtures'; | 
					
						
							| 
									
										
										
										
											2020-08-16 19:19:52 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-07 11:19:15 -07:00
										 |  |  | import fs from 'fs'; | 
					
						
							| 
									
										
										
										
											2020-08-26 14:16:35 -07:00
										 |  |  | import type { Browser, BrowserContext } from '..'; | 
					
						
							| 
									
										
										
										
											2020-08-03 13:41:48 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-10 21:31:46 -07:00
										 |  |  | type TestState = { | 
					
						
							|  |  |  |   downloadsBrowser: Browser; | 
					
						
							|  |  |  |   persistentDownloadsContext: BrowserContext; | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2020-10-13 22:40:25 -07:00
										 |  |  | const fixtures = folio.extend<TestState>(); | 
					
						
							| 
									
										
										
										
											2020-08-03 13:41:48 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-13 13:18:36 -07:00
										 |  |  | fixtures.downloadsBrowser.init(async ({ server, browserType, browserOptions, testInfo }, test) => { | 
					
						
							| 
									
										
										
										
											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; filename=file.txt'); | 
					
						
							|  |  |  |     res.end(`Hello world`); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  |   const browser = await browserType.launch({ | 
					
						
							| 
									
										
										
										
											2020-10-13 13:18:36 -07:00
										 |  |  |     ...browserOptions, | 
					
						
							| 
									
										
										
										
											2020-10-12 09:16:02 -07:00
										 |  |  |     downloadsPath: testInfo.outputPath(''), | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  |   await test(browser); | 
					
						
							|  |  |  |   await browser.close(); | 
					
						
							| 
									
										
										
										
											2020-08-03 13:41:48 -07:00
										 |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-12 13:48:56 -07:00
										 |  |  | fixtures.persistentDownloadsContext.init(async ({ server, launchPersistent, testInfo }, test) => { | 
					
						
							| 
									
										
										
										
											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; filename=file.txt'); | 
					
						
							|  |  |  |     res.end(`Hello world`); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  |   const { context, page } = await launchPersistent( | 
					
						
							|  |  |  |       { | 
					
						
							|  |  |  |         downloadsPath: testInfo.outputPath(''), | 
					
						
							|  |  |  |         acceptDownloads: true | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  |   ); | 
					
						
							|  |  |  |   await page.setContent(`<a href="${server.PREFIX}/download">download</a>`); | 
					
						
							|  |  |  |   await test(context); | 
					
						
							|  |  |  |   await context.close(); | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | const { it, expect } = fixtures.build(); | 
					
						
							| 
									
										
										
										
											2020-08-03 13:41:48 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-05 17:03:24 -07:00
										 |  |  | it('should keep downloadsPath folder', async ({downloadsBrowser, testInfo, server})  => { | 
					
						
							| 
									
										
										
										
											2020-08-03 13:41:48 -07:00
										 |  |  |   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`); | 
					
						
							| 
									
										
										
										
											2020-08-07 11:19:15 -07:00
										 |  |  |   await download.path().catch(e => void 0); | 
					
						
							| 
									
										
										
										
											2020-08-03 13:41:48 -07:00
										 |  |  |   await page.close(); | 
					
						
							|  |  |  |   await downloadsBrowser.close(); | 
					
						
							| 
									
										
										
										
											2020-10-05 17:03:24 -07:00
										 |  |  |   expect(fs.existsSync(testInfo.outputPath(''))).toBeTruthy(); | 
					
						
							| 
									
										
										
										
											2020-08-03 13:41:48 -07:00
										 |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-28 04:20:29 -07:00
										 |  |  | it('should delete downloads when context closes', async ({downloadsBrowser, server}) => { | 
					
						
							| 
									
										
										
										
											2020-08-03 13:41:48 -07:00
										 |  |  |   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(); | 
					
						
							|  |  |  | }); | 
					
						
							| 
									
										
										
										
											2020-08-05 11:43:40 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-05 17:03:24 -07:00
										 |  |  | it('should report downloads in downloadsPath folder', async ({downloadsBrowser, testInfo, server}) => { | 
					
						
							| 
									
										
										
										
											2020-08-03 13:41:48 -07:00
										 |  |  |   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(); | 
					
						
							| 
									
										
										
										
											2020-10-05 17:03:24 -07:00
										 |  |  |   expect(path.startsWith(testInfo.outputPath(''))).toBeTruthy(); | 
					
						
							| 
									
										
										
										
											2020-08-03 13:41:48 -07:00
										 |  |  |   await page.close(); | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-05 17:03:24 -07:00
										 |  |  | it('should accept downloads in persistent context', async ({persistentDownloadsContext, testInfo, server})  => { | 
					
						
							| 
									
										
										
										
											2020-08-03 13:41:48 -07:00
										 |  |  |   const page = persistentDownloadsContext.pages()[0]; | 
					
						
							|  |  |  |   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(); | 
					
						
							| 
									
										
										
										
											2020-10-05 17:03:24 -07:00
										 |  |  |   expect(path.startsWith(testInfo.outputPath(''))).toBeTruthy(); | 
					
						
							| 
									
										
										
										
											2020-08-03 13:41:48 -07:00
										 |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-04 18:18:05 -07:00
										 |  |  | it('should delete downloads when persistent context closes', async ({persistentDownloadsContext}) => { | 
					
						
							| 
									
										
										
										
											2020-08-03 13:41:48 -07:00
										 |  |  |   const page = persistentDownloadsContext.pages()[0]; | 
					
						
							|  |  |  |   const [ download ] = await Promise.all([ | 
					
						
							|  |  |  |     page.waitForEvent('download'), | 
					
						
							|  |  |  |     page.click('a') | 
					
						
							|  |  |  |   ]); | 
					
						
							|  |  |  |   const path = await download.path(); | 
					
						
							|  |  |  |   expect(fs.existsSync(path)).toBeTruthy(); | 
					
						
							| 
									
										
										
										
											2020-10-04 18:18:05 -07:00
										 |  |  |   await persistentDownloadsContext.close(); | 
					
						
							|  |  |  |   expect(fs.existsSync(path)).toBeFalsy(); | 
					
						
							| 
									
										
										
										
											2020-08-03 13:41:48 -07:00
										 |  |  | }); |