| 
									
										
										
										
											2021-08-24 14:29:04 -07:00
										 |  |  |  | /** | 
					
						
							|  |  |  |  |  * Copyright (c) Microsoft Corporation. All rights reserved. | 
					
						
							|  |  |  |  |  * | 
					
						
							|  |  |  |  |  * 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. | 
					
						
							|  |  |  |  |  */ | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-16 17:48:43 -07:00
										 |  |  |  | import formidable from 'formidable'; | 
					
						
							| 
									
										
										
										
											2021-08-24 16:55:10 -07:00
										 |  |  |  | import http from 'http'; | 
					
						
							| 
									
										
										
										
											2021-08-31 09:34:58 -07:00
										 |  |  |  | import zlib from 'zlib'; | 
					
						
							| 
									
										
										
										
											2021-09-16 17:48:43 -07:00
										 |  |  |  | import fs from 'fs'; | 
					
						
							| 
									
										
										
										
											2021-08-31 09:34:58 -07:00
										 |  |  |  | import { pipeline } from 'stream'; | 
					
						
							| 
									
										
										
										
											2022-03-25 15:05:50 -08:00
										 |  |  |  | import { contextTest as it, expect } from '../config/browserTest'; | 
					
						
							|  |  |  |  | import { suppressCertificateWarning } from '../config/utils'; | 
					
						
							| 
									
										
										
										
											2021-08-24 14:29:04 -07:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-24 19:41:29 -07:00
										 |  |  |  | it.skip(({ mode }) => mode !== 'default'); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-24 16:55:10 -07:00
										 |  |  |  | let prevAgent: http.Agent; | 
					
						
							|  |  |  |  | it.beforeAll(() => { | 
					
						
							|  |  |  |  |   prevAgent = http.globalAgent; | 
					
						
							|  |  |  |  |   http.globalAgent = new http.Agent({ | 
					
						
							|  |  |  |  |     // @ts-expect-error
 | 
					
						
							|  |  |  |  |     lookup: (hostname, options, callback) => { | 
					
						
							|  |  |  |  |       if (hostname === 'localhost' || hostname.endsWith('playwright.dev')) | 
					
						
							|  |  |  |  |         callback(null, '127.0.0.1', 4); | 
					
						
							|  |  |  |  |       else | 
					
						
							|  |  |  |  |         throw new Error(`Failed to resolve hostname: ${hostname}`); | 
					
						
							|  |  |  |  |     } | 
					
						
							|  |  |  |  |   }); | 
					
						
							|  |  |  |  | }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | it.afterAll(() => { | 
					
						
							|  |  |  |  |   http.globalAgent = prevAgent; | 
					
						
							|  |  |  |  | }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-10 19:42:52 +01:00
										 |  |  |  | it('get should work @smoke', async ({ context, server }) => { | 
					
						
							| 
									
										
										
										
											2021-10-05 13:56:34 -07:00
										 |  |  |  |   const response = await context.request.get(server.PREFIX + '/simple.json'); | 
					
						
							| 
									
										
										
										
											2021-09-13 12:43:07 -07:00
										 |  |  |  |   expect(response.url()).toBe(server.PREFIX + '/simple.json'); | 
					
						
							|  |  |  |  |   expect(response.status()).toBe(200); | 
					
						
							|  |  |  |  |   expect(response.statusText()).toBe('OK'); | 
					
						
							|  |  |  |  |   expect(response.ok()).toBeTruthy(); | 
					
						
							|  |  |  |  |   expect(response.headers()['content-type']).toBe('application/json; charset=utf-8'); | 
					
						
							|  |  |  |  |   expect(response.headersArray()).toContainEqual({ name: 'Content-Type', value: 'application/json; charset=utf-8' }); | 
					
						
							|  |  |  |  |   expect(await response.text()).toBe('{"foo": "bar"}\n'); | 
					
						
							|  |  |  |  | }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |  | it('fetch should work', async ({ context, server }) => { | 
					
						
							| 
									
										
										
										
											2021-10-05 13:56:34 -07:00
										 |  |  |  |   const response = await context.request.fetch(server.PREFIX + '/simple.json'); | 
					
						
							| 
									
										
										
										
											2021-08-24 14:29:04 -07:00
										 |  |  |  |   expect(response.url()).toBe(server.PREFIX + '/simple.json'); | 
					
						
							|  |  |  |  |   expect(response.status()).toBe(200); | 
					
						
							|  |  |  |  |   expect(response.statusText()).toBe('OK'); | 
					
						
							|  |  |  |  |   expect(response.ok()).toBeTruthy(); | 
					
						
							|  |  |  |  |   expect(response.headers()['content-type']).toBe('application/json; charset=utf-8'); | 
					
						
							| 
									
										
										
										
											2021-09-11 13:27:00 -07:00
										 |  |  |  |   expect(response.headersArray()).toContainEqual({ name: 'Content-Type', value: 'application/json; charset=utf-8' }); | 
					
						
							| 
									
										
										
										
											2021-08-24 14:29:04 -07:00
										 |  |  |  |   expect(await response.text()).toBe('{"foo": "bar"}\n'); | 
					
						
							|  |  |  |  | }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |  | it('should throw on network error', async ({ context, server }) => { | 
					
						
							| 
									
										
										
										
											2021-08-30 14:34:31 -07:00
										 |  |  |  |   server.setRoute('/test', (req, res) => { | 
					
						
							|  |  |  |  |     req.socket.destroy(); | 
					
						
							|  |  |  |  |   }); | 
					
						
							| 
									
										
										
										
											2021-10-05 13:56:34 -07:00
										 |  |  |  |   const error = await context.request.get(server.PREFIX + '/test').catch(e => e); | 
					
						
							| 
									
										
										
										
											2021-11-30 18:12:19 -08:00
										 |  |  |  |   expect(error.message).toContain('apiRequestContext.get: socket hang up'); | 
					
						
							| 
									
										
										
										
											2021-08-30 14:34:31 -07:00
										 |  |  |  | }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |  | it('should throw on network error after redirect', async ({ context, server }) => { | 
					
						
							| 
									
										
										
										
											2021-08-30 14:34:31 -07:00
										 |  |  |  |   server.setRedirect('/redirect', '/test'); | 
					
						
							|  |  |  |  |   server.setRoute('/test', (req, res) => { | 
					
						
							|  |  |  |  |     req.socket.destroy(); | 
					
						
							|  |  |  |  |   }); | 
					
						
							| 
									
										
										
										
											2021-10-05 13:56:34 -07:00
										 |  |  |  |   const error = await context.request.get(server.PREFIX + '/redirect').catch(e => e); | 
					
						
							| 
									
										
										
										
											2021-11-30 18:12:19 -08:00
										 |  |  |  |   expect(error.message).toContain('apiRequestContext.get: socket hang up'); | 
					
						
							| 
									
										
										
										
											2021-08-30 14:34:31 -07:00
										 |  |  |  | }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |  | it('should throw on network error when sending body', async ({ context, server }) => { | 
					
						
							| 
									
										
										
										
											2021-08-30 14:34:31 -07:00
										 |  |  |  |   server.setRoute('/test', (req, res) => { | 
					
						
							|  |  |  |  |     res.writeHead(200, { | 
					
						
							|  |  |  |  |       'content-length': 4096, | 
					
						
							|  |  |  |  |       'content-type': 'text/html', | 
					
						
							|  |  |  |  |     }); | 
					
						
							|  |  |  |  |     res.write('<title>A'); | 
					
						
							|  |  |  |  |     res.uncork(); | 
					
						
							|  |  |  |  |     req.socket.destroy(); | 
					
						
							|  |  |  |  |   }); | 
					
						
							| 
									
										
										
										
											2021-10-05 13:56:34 -07:00
										 |  |  |  |   const error = await context.request.get(server.PREFIX + '/test').catch(e => e); | 
					
						
							| 
									
										
										
										
											2021-11-30 18:12:19 -08:00
										 |  |  |  |   expect(error.message).toContain('apiRequestContext.get: aborted'); | 
					
						
							| 
									
										
										
										
											2021-08-30 14:34:31 -07:00
										 |  |  |  | }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |  | it('should throw on network error when sending body after redirect', async ({ context, server }) => { | 
					
						
							| 
									
										
										
										
											2021-08-30 14:34:31 -07:00
										 |  |  |  |   server.setRedirect('/redirect', '/test'); | 
					
						
							|  |  |  |  |   server.setRoute('/test', (req, res) => { | 
					
						
							|  |  |  |  |     res.writeHead(200, { | 
					
						
							|  |  |  |  |       'content-length': 4096, | 
					
						
							|  |  |  |  |       'content-type': 'text/html', | 
					
						
							|  |  |  |  |     }); | 
					
						
							|  |  |  |  |     res.write('<title>A'); | 
					
						
							|  |  |  |  |     res.uncork(); | 
					
						
							|  |  |  |  |     req.socket.destroy(); | 
					
						
							|  |  |  |  |   }); | 
					
						
							| 
									
										
										
										
											2021-10-05 13:56:34 -07:00
										 |  |  |  |   const error = await context.request.get(server.PREFIX + '/redirect').catch(e => e); | 
					
						
							| 
									
										
										
										
											2021-11-30 18:12:19 -08:00
										 |  |  |  |   expect(error.message).toContain('apiRequestContext.get: aborted'); | 
					
						
							| 
									
										
										
										
											2021-08-30 14:34:31 -07:00
										 |  |  |  | }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |  | it('should add session cookies to request', async ({ context, server }) => { | 
					
						
							| 
									
										
										
										
											2021-08-24 14:29:04 -07:00
										 |  |  |  |   await context.addCookies([{ | 
					
						
							|  |  |  |  |     name: 'username', | 
					
						
							|  |  |  |  |     value: 'John Doe', | 
					
						
							| 
									
										
										
										
											2021-08-24 16:55:10 -07:00
										 |  |  |  |     domain: '.my.playwright.dev', | 
					
						
							| 
									
										
										
										
											2021-08-24 14:29:04 -07:00
										 |  |  |  |     path: '/', | 
					
						
							|  |  |  |  |     expires: -1, | 
					
						
							|  |  |  |  |     httpOnly: false, | 
					
						
							|  |  |  |  |     secure: false, | 
					
						
							|  |  |  |  |     sameSite: 'Lax', | 
					
						
							|  |  |  |  |   }]); | 
					
						
							|  |  |  |  |   const [req] = await Promise.all([ | 
					
						
							|  |  |  |  |     server.waitForRequest('/simple.json'), | 
					
						
							| 
									
										
										
										
											2021-10-05 13:56:34 -07:00
										 |  |  |  |     context.request.get(`http://www.my.playwright.dev:${server.PORT}/simple.json`), | 
					
						
							| 
									
										
										
										
											2021-08-24 14:29:04 -07:00
										 |  |  |  |   ]); | 
					
						
							|  |  |  |  |   expect(req.headers.cookie).toEqual('username=John Doe'); | 
					
						
							|  |  |  |  | }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-09 23:11:42 +01:00
										 |  |  |  | for (const method of ['fetch', 'delete', 'get', 'head', 'patch', 'post', 'put'] as const) { | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |  |   it(`${method} should support queryParams`, async ({ context, server }) => { | 
					
						
							| 
									
										
										
										
											2021-09-13 15:38:27 -07:00
										 |  |  |  |     const url = new URL(server.EMPTY_PAGE); | 
					
						
							|  |  |  |  |     url.searchParams.set('p1', 'v1'); | 
					
						
							|  |  |  |  |     url.searchParams.set('парам2', 'знач2'); | 
					
						
							| 
									
										
										
										
											2021-11-09 23:11:42 +01:00
										 |  |  |  |     const [request] = await Promise.all([ | 
					
						
							|  |  |  |  |       server.waitForRequest(url.pathname + url.search), | 
					
						
							|  |  |  |  |       context.request[method](server.EMPTY_PAGE + '?p1=foo', { | 
					
						
							|  |  |  |  |         params: { | 
					
						
							|  |  |  |  |           'p1': 'v1', | 
					
						
							|  |  |  |  |           'парам2': 'знач2', | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  |       }), | 
					
						
							|  |  |  |  |     ]); | 
					
						
							| 
									
										
										
										
											2021-09-13 14:29:44 -07:00
										 |  |  |  |     const params = new URLSearchParams(request.url.substr(request.url.indexOf('?'))); | 
					
						
							|  |  |  |  |     expect(params.get('p1')).toEqual('v1'); | 
					
						
							|  |  |  |  |     expect(params.get('парам2')).toEqual('знач2'); | 
					
						
							| 
									
										
										
										
											2021-09-13 15:38:27 -07:00
										 |  |  |  |   }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |  |   it(`${method} should support failOnStatusCode`, async ({ context, server }) => { | 
					
						
							| 
									
										
										
										
											2021-10-05 13:56:34 -07:00
										 |  |  |  |     const error = await context.request[method](server.PREFIX + '/does-not-exist.html', { | 
					
						
							| 
									
										
										
										
											2021-09-13 15:38:27 -07:00
										 |  |  |  |       failOnStatusCode: true | 
					
						
							|  |  |  |  |     }).catch(e => e); | 
					
						
							| 
									
										
										
										
											2021-09-16 17:48:43 -07:00
										 |  |  |  |     expect(error.message).toContain('404 Not Found'); | 
					
						
							| 
									
										
										
										
											2021-09-13 15:38:27 -07:00
										 |  |  |  |   }); | 
					
						
							| 
									
										
										
										
											2021-09-28 15:33:36 -07:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  |   it(`${method}should support ignoreHTTPSErrors option`, async ({ context, httpsServer }) => { | 
					
						
							| 
									
										
										
										
											2021-10-05 13:56:34 -07:00
										 |  |  |  |     const response = await context.request[method](httpsServer.EMPTY_PAGE, { ignoreHTTPSErrors: true }); | 
					
						
							| 
									
										
										
										
											2021-09-28 15:33:36 -07:00
										 |  |  |  |     expect(response.status()).toBe(200); | 
					
						
							|  |  |  |  |   }); | 
					
						
							| 
									
										
										
										
											2021-09-13 15:38:27 -07:00
										 |  |  |  | } | 
					
						
							| 
									
										
										
										
											2021-09-13 14:29:44 -07:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |  | it('should not add context cookie if cookie header passed as a parameter', async ({ context, server }) => { | 
					
						
							| 
									
										
										
										
											2021-08-27 08:26:19 -07:00
										 |  |  |  |   await context.addCookies([{ | 
					
						
							|  |  |  |  |     name: 'username', | 
					
						
							|  |  |  |  |     value: 'John Doe', | 
					
						
							|  |  |  |  |     domain: '.my.playwright.dev', | 
					
						
							|  |  |  |  |     path: '/', | 
					
						
							|  |  |  |  |     expires: -1, | 
					
						
							|  |  |  |  |     httpOnly: false, | 
					
						
							|  |  |  |  |     secure: false, | 
					
						
							|  |  |  |  |     sameSite: 'Lax', | 
					
						
							|  |  |  |  |   }]); | 
					
						
							|  |  |  |  |   const [req] = await Promise.all([ | 
					
						
							|  |  |  |  |     server.waitForRequest('/empty.html'), | 
					
						
							| 
									
										
										
										
											2021-10-05 13:56:34 -07:00
										 |  |  |  |     context.request.get(`http://www.my.playwright.dev:${server.PORT}/empty.html`, { | 
					
						
							| 
									
										
										
										
											2021-08-27 08:26:19 -07:00
										 |  |  |  |       headers: { | 
					
						
							|  |  |  |  |         'Cookie': 'foo=bar' | 
					
						
							|  |  |  |  |       } | 
					
						
							|  |  |  |  |     }), | 
					
						
							|  |  |  |  |   ]); | 
					
						
							|  |  |  |  |   expect(req.headers.cookie).toEqual('foo=bar'); | 
					
						
							|  |  |  |  | }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |  | it('should follow redirects', async ({ context, server }) => { | 
					
						
							| 
									
										
										
										
											2021-08-24 14:29:04 -07:00
										 |  |  |  |   server.setRedirect('/redirect1', '/redirect2'); | 
					
						
							|  |  |  |  |   server.setRedirect('/redirect2', '/simple.json'); | 
					
						
							|  |  |  |  |   await context.addCookies([{ | 
					
						
							|  |  |  |  |     name: 'username', | 
					
						
							|  |  |  |  |     value: 'John Doe', | 
					
						
							| 
									
										
										
										
											2021-08-24 16:55:10 -07:00
										 |  |  |  |     domain: '.my.playwright.dev', | 
					
						
							| 
									
										
										
										
											2021-08-24 14:29:04 -07:00
										 |  |  |  |     path: '/', | 
					
						
							|  |  |  |  |     expires: -1, | 
					
						
							|  |  |  |  |     httpOnly: false, | 
					
						
							|  |  |  |  |     secure: false, | 
					
						
							|  |  |  |  |     sameSite: 'Lax', | 
					
						
							|  |  |  |  |   }]); | 
					
						
							|  |  |  |  |   const [req, response] = await Promise.all([ | 
					
						
							|  |  |  |  |     server.waitForRequest('/simple.json'), | 
					
						
							| 
									
										
										
										
											2021-10-05 13:56:34 -07:00
										 |  |  |  |     context.request.get(`http://www.my.playwright.dev:${server.PORT}/redirect1`), | 
					
						
							| 
									
										
										
										
											2021-08-24 14:29:04 -07:00
										 |  |  |  |   ]); | 
					
						
							|  |  |  |  |   expect(req.headers.cookie).toEqual('username=John Doe'); | 
					
						
							| 
									
										
										
										
											2021-08-24 16:55:10 -07:00
										 |  |  |  |   expect(response.url()).toBe(`http://www.my.playwright.dev:${server.PORT}/simple.json`); | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |  |   expect(await response.json()).toEqual({ foo: 'bar' }); | 
					
						
							| 
									
										
										
										
											2021-08-24 14:29:04 -07:00
										 |  |  |  | }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |  | it('should add cookies from Set-Cookie header', async ({ context, page, server }) => { | 
					
						
							| 
									
										
										
										
											2021-08-24 14:29:04 -07:00
										 |  |  |  |   server.setRoute('/setcookie.html', (req, res) => { | 
					
						
							|  |  |  |  |     res.setHeader('Set-Cookie', ['session=value', 'foo=bar; max-age=3600']); | 
					
						
							|  |  |  |  |     res.end(); | 
					
						
							|  |  |  |  |   }); | 
					
						
							| 
									
										
										
										
											2021-10-05 13:56:34 -07:00
										 |  |  |  |   await context.request.get(server.PREFIX + '/setcookie.html'); | 
					
						
							| 
									
										
										
										
											2021-08-24 14:29:04 -07:00
										 |  |  |  |   const cookies = await context.cookies(); | 
					
						
							|  |  |  |  |   expect(new Set(cookies.map(c => ({ name: c.name, value: c.value })))).toEqual(new Set([ | 
					
						
							|  |  |  |  |     { | 
					
						
							|  |  |  |  |       name: 'session', | 
					
						
							|  |  |  |  |       value: 'value' | 
					
						
							|  |  |  |  |     }, | 
					
						
							|  |  |  |  |     { | 
					
						
							|  |  |  |  |       name: 'foo', | 
					
						
							|  |  |  |  |       value: 'bar' | 
					
						
							|  |  |  |  |     }, | 
					
						
							|  |  |  |  |   ])); | 
					
						
							|  |  |  |  |   await page.goto(server.EMPTY_PAGE); | 
					
						
							|  |  |  |  |   expect((await page.evaluate(() => document.cookie)).split(';').map(s => s.trim()).sort()).toEqual(['foo=bar', 'session=value']); | 
					
						
							|  |  |  |  | }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-07 15:37:47 -07:00
										 |  |  |  | it('should support cookie with empty value', async ({ context, page, server }) => { | 
					
						
							|  |  |  |  |   server.setRoute('/setcookie.html', (req, res) => { | 
					
						
							|  |  |  |  |     res.setHeader('Set-Cookie', ['first=']); | 
					
						
							|  |  |  |  |     res.end(); | 
					
						
							|  |  |  |  |   }); | 
					
						
							|  |  |  |  |   await context.request.get(server.PREFIX + '/setcookie.html'); | 
					
						
							|  |  |  |  |   await page.goto(server.EMPTY_PAGE); | 
					
						
							|  |  |  |  |   expect(await page.evaluate(() => document.cookie)).toBe('first='); | 
					
						
							|  |  |  |  |   const cookies = await context.cookies(); | 
					
						
							|  |  |  |  |   expect(cookies.map(c => ({ name: c.name, value: c.value }))).toEqual([ | 
					
						
							|  |  |  |  |     { | 
					
						
							|  |  |  |  |       name: 'first', | 
					
						
							|  |  |  |  |       value: '' | 
					
						
							|  |  |  |  |     }, | 
					
						
							|  |  |  |  |   ]); | 
					
						
							|  |  |  |  | }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |  | it('should not lose body while handling Set-Cookie header', async ({ context, server }) => { | 
					
						
							| 
									
										
										
										
											2021-09-08 10:01:40 -07:00
										 |  |  |  |   server.setRoute('/setcookie.html', (req, res) => { | 
					
						
							|  |  |  |  |     res.setHeader('Set-Cookie', ['session=value', 'foo=bar; max-age=3600']); | 
					
						
							|  |  |  |  |     res.end('text content'); | 
					
						
							|  |  |  |  |   }); | 
					
						
							| 
									
										
										
										
											2021-10-05 13:56:34 -07:00
										 |  |  |  |   const response = await context.request.get(server.PREFIX + '/setcookie.html'); | 
					
						
							| 
									
										
										
										
											2021-09-08 10:01:40 -07:00
										 |  |  |  |   expect(await response.text()).toBe('text content'); | 
					
						
							|  |  |  |  | }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |  | it('should handle cookies on redirects', async ({ context, server, browserName, isWindows }) => { | 
					
						
							| 
									
										
										
										
											2021-08-27 15:28:36 -07:00
										 |  |  |  |   server.setRoute('/redirect1', (req, res) => { | 
					
						
							|  |  |  |  |     res.setHeader('Set-Cookie', 'r1=v1;SameSite=Lax'); | 
					
						
							|  |  |  |  |     res.writeHead(301, { location: '/a/b/redirect2' }); | 
					
						
							|  |  |  |  |     res.end(); | 
					
						
							|  |  |  |  |   }); | 
					
						
							|  |  |  |  |   server.setRoute('/a/b/redirect2', (req, res) => { | 
					
						
							|  |  |  |  |     res.setHeader('Set-Cookie', 'r2=v2;SameSite=Lax'); | 
					
						
							|  |  |  |  |     res.writeHead(302, { location: '/title.html' }); | 
					
						
							|  |  |  |  |     res.end(); | 
					
						
							|  |  |  |  |   }); | 
					
						
							|  |  |  |  |   { | 
					
						
							|  |  |  |  |     const [req1, req2, req3] = await Promise.all([ | 
					
						
							|  |  |  |  |       server.waitForRequest('/redirect1'), | 
					
						
							|  |  |  |  |       server.waitForRequest('/a/b/redirect2'), | 
					
						
							|  |  |  |  |       server.waitForRequest('/title.html'), | 
					
						
							| 
									
										
										
										
											2021-10-05 13:56:34 -07:00
										 |  |  |  |       context.request.get(`${server.PREFIX}/redirect1`), | 
					
						
							| 
									
										
										
										
											2021-08-27 15:28:36 -07:00
										 |  |  |  |     ]); | 
					
						
							|  |  |  |  |     expect(req1.headers.cookie).toBeFalsy(); | 
					
						
							|  |  |  |  |     expect(req2.headers.cookie).toBe('r1=v1'); | 
					
						
							|  |  |  |  |     expect(req3.headers.cookie).toBe('r1=v1'); | 
					
						
							|  |  |  |  |   } | 
					
						
							|  |  |  |  |   { | 
					
						
							|  |  |  |  |     const [req1, req2, req3] = await Promise.all([ | 
					
						
							|  |  |  |  |       server.waitForRequest('/redirect1'), | 
					
						
							|  |  |  |  |       server.waitForRequest('/a/b/redirect2'), | 
					
						
							|  |  |  |  |       server.waitForRequest('/title.html'), | 
					
						
							| 
									
										
										
										
											2021-10-05 13:56:34 -07:00
										 |  |  |  |       context.request.get(`${server.PREFIX}/redirect1`), | 
					
						
							| 
									
										
										
										
											2021-08-27 15:28:36 -07:00
										 |  |  |  |     ]); | 
					
						
							|  |  |  |  |     expect(req1.headers.cookie).toBe('r1=v1'); | 
					
						
							|  |  |  |  |     expect(req2.headers.cookie.split(';').map(s => s.trim()).sort()).toEqual(['r1=v1', 'r2=v2']); | 
					
						
							|  |  |  |  |     expect(req3.headers.cookie).toBe('r1=v1'); | 
					
						
							|  |  |  |  |   } | 
					
						
							|  |  |  |  |   const cookies = await context.cookies(); | 
					
						
							|  |  |  |  |   expect(new Set(cookies)).toEqual(new Set([ | 
					
						
							|  |  |  |  |     { | 
					
						
							| 
									
										
										
										
											2021-08-30 12:01:22 -07:00
										 |  |  |  |       'sameSite': (browserName === 'webkit' && isWindows) ? 'None' : 'Lax', | 
					
						
							| 
									
										
										
										
											2021-08-27 15:28:36 -07:00
										 |  |  |  |       'name': 'r2', | 
					
						
							|  |  |  |  |       'value': 'v2', | 
					
						
							|  |  |  |  |       'domain': 'localhost', | 
					
						
							|  |  |  |  |       'path': '/a/b', | 
					
						
							|  |  |  |  |       'expires': -1, | 
					
						
							|  |  |  |  |       'httpOnly': false, | 
					
						
							|  |  |  |  |       'secure': false | 
					
						
							|  |  |  |  |     }, | 
					
						
							|  |  |  |  |     { | 
					
						
							| 
									
										
										
										
											2021-08-30 12:01:22 -07:00
										 |  |  |  |       'sameSite': (browserName === 'webkit' && isWindows) ? 'None' : 'Lax', | 
					
						
							| 
									
										
										
										
											2021-08-27 15:28:36 -07:00
										 |  |  |  |       'name': 'r1', | 
					
						
							|  |  |  |  |       'value': 'v1', | 
					
						
							|  |  |  |  |       'domain': 'localhost', | 
					
						
							|  |  |  |  |       'path': '/', | 
					
						
							|  |  |  |  |       'expires': -1, | 
					
						
							|  |  |  |  |       'httpOnly': false, | 
					
						
							|  |  |  |  |       'secure': false | 
					
						
							|  |  |  |  |     } | 
					
						
							|  |  |  |  |   ])); | 
					
						
							|  |  |  |  | }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |  | it('should return raw headers', async ({ context, page, server }) => { | 
					
						
							| 
									
										
										
										
											2021-09-10 14:03:56 -07:00
										 |  |  |  |   server.setRoute('/headers', (req, res) => { | 
					
						
							|  |  |  |  |     // Headers array is only supported since Node v14.14.0 so we write directly to the socket.
 | 
					
						
							|  |  |  |  |     // res.writeHead(200, ['name-a', 'v1','name-b', 'v4','Name-a', 'v2', 'name-A', 'v3']);
 | 
					
						
							|  |  |  |  |     const conn = res.connection; | 
					
						
							|  |  |  |  |     conn.write('HTTP/1.1 200 OK\r\n'); | 
					
						
							|  |  |  |  |     conn.write('Name-A: v1\r\n'); | 
					
						
							|  |  |  |  |     conn.write('name-b: v4\r\n'); | 
					
						
							|  |  |  |  |     conn.write('Name-a: v2\r\n'); | 
					
						
							|  |  |  |  |     conn.write('name-A: v3\r\n'); | 
					
						
							|  |  |  |  |     conn.write('\r\n'); | 
					
						
							|  |  |  |  |     conn.uncork(); | 
					
						
							|  |  |  |  |     conn.end(); | 
					
						
							|  |  |  |  |   }); | 
					
						
							| 
									
										
										
										
											2021-10-05 13:56:34 -07:00
										 |  |  |  |   const response = await context.request.get(`${server.PREFIX}/headers`); | 
					
						
							| 
									
										
										
										
											2021-09-10 14:03:56 -07:00
										 |  |  |  |   expect(response.status()).toBe(200); | 
					
						
							| 
									
										
										
										
											2021-09-11 13:27:00 -07:00
										 |  |  |  |   const headers = response.headersArray().filter(({ name }) => name.toLowerCase().includes('name-')); | 
					
						
							|  |  |  |  |   expect(headers).toEqual([{ name: 'Name-A', value: 'v1' }, { name: 'name-b', value: 'v4' }, { name: 'Name-a', value: 'v2' }, { name: 'name-A', value: 'v3' }]); | 
					
						
							|  |  |  |  |   // Comma separated values, this matches Response.headers()
 | 
					
						
							|  |  |  |  |   expect(response.headers()['name-a']).toBe('v1, v2, v3'); | 
					
						
							| 
									
										
										
										
											2021-09-10 14:03:56 -07:00
										 |  |  |  |   expect(response.headers()['name-b']).toBe('v4'); | 
					
						
							|  |  |  |  | }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-27 18:00:06 -08:00
										 |  |  |  | it('should work with context level proxy', async ({ browserType, contextOptions, server, proxyServer }) => { | 
					
						
							| 
									
										
										
										
											2021-08-24 14:29:04 -07:00
										 |  |  |  |   server.setRoute('/target.html', async (req, res) => { | 
					
						
							|  |  |  |  |     res.end('<title>Served by the proxy</title>'); | 
					
						
							|  |  |  |  |   }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   const browser = await browserType.launch({ | 
					
						
							|  |  |  |  |     proxy: { server: 'http://per-context' } | 
					
						
							|  |  |  |  |   }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   try { | 
					
						
							|  |  |  |  |     proxyServer.forwardTo(server.PORT); | 
					
						
							|  |  |  |  |     const context = await browser.newContext({ | 
					
						
							|  |  |  |  |       ...contextOptions, | 
					
						
							|  |  |  |  |       proxy: { server: `localhost:${proxyServer.PORT}` } | 
					
						
							|  |  |  |  |     }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |     const [request, response] = await Promise.all([ | 
					
						
							|  |  |  |  |       server.waitForRequest('/target.html'), | 
					
						
							| 
									
										
										
										
											2021-10-05 13:56:34 -07:00
										 |  |  |  |       context.request.get(`http://non-existent.com/target.html`) | 
					
						
							| 
									
										
										
										
											2021-08-24 14:29:04 -07:00
										 |  |  |  |     ]); | 
					
						
							|  |  |  |  |     expect(response.status()).toBe(200); | 
					
						
							|  |  |  |  |     expect(request.url).toBe('/target.html'); | 
					
						
							|  |  |  |  |   } finally { | 
					
						
							|  |  |  |  |     await browser.close(); | 
					
						
							|  |  |  |  |   } | 
					
						
							|  |  |  |  | }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-27 18:00:06 -08:00
										 |  |  |  | it('should pass proxy credentials', async ({ browserType, server, proxyServer }) => { | 
					
						
							| 
									
										
										
										
											2021-09-07 17:42:31 -07:00
										 |  |  |  |   proxyServer.forwardTo(server.PORT); | 
					
						
							|  |  |  |  |   let auth; | 
					
						
							|  |  |  |  |   proxyServer.setAuthHandler(req => { | 
					
						
							|  |  |  |  |     auth = req.headers['proxy-authorization']; | 
					
						
							|  |  |  |  |     return !!auth; | 
					
						
							|  |  |  |  |   }); | 
					
						
							|  |  |  |  |   const browser = await browserType.launch({ | 
					
						
							|  |  |  |  |     proxy: { server: `localhost:${proxyServer.PORT}`, username: 'user', password: 'secret' } | 
					
						
							|  |  |  |  |   }); | 
					
						
							|  |  |  |  |   const context = await browser.newContext(); | 
					
						
							| 
									
										
										
										
											2021-10-05 13:56:34 -07:00
										 |  |  |  |   const response = await context.request.get('http://non-existent.com/simple.json'); | 
					
						
							| 
									
										
										
										
											2021-09-07 17:42:31 -07:00
										 |  |  |  |   expect(proxyServer.connectHosts).toContain('non-existent.com:80'); | 
					
						
							|  |  |  |  |   expect(auth).toBe('Basic ' + Buffer.from('user:secret').toString('base64')); | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |  |   expect(await response.json()).toEqual({ foo: 'bar' }); | 
					
						
							| 
									
										
										
										
											2021-09-07 17:42:31 -07:00
										 |  |  |  |   await browser.close(); | 
					
						
							|  |  |  |  | }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |  | it('should work with http credentials', async ({ context, server }) => { | 
					
						
							| 
									
										
										
										
											2021-08-24 14:29:04 -07:00
										 |  |  |  |   server.setAuth('/empty.html', 'user', 'pass'); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   const [request, response] = await Promise.all([ | 
					
						
							|  |  |  |  |     server.waitForRequest('/empty.html'), | 
					
						
							| 
									
										
										
										
											2021-10-05 13:56:34 -07:00
										 |  |  |  |     context.request.get(server.EMPTY_PAGE, { | 
					
						
							| 
									
										
										
										
											2021-08-24 14:29:04 -07:00
										 |  |  |  |       headers: { | 
					
						
							|  |  |  |  |         'authorization': 'Basic ' + Buffer.from('user:pass').toString('base64') | 
					
						
							|  |  |  |  |       } | 
					
						
							|  |  |  |  |     }) | 
					
						
							|  |  |  |  |   ]); | 
					
						
							|  |  |  |  |   expect(response.status()).toBe(200); | 
					
						
							|  |  |  |  |   expect(request.url).toBe('/empty.html'); | 
					
						
							|  |  |  |  | }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |  | it('should work with setHTTPCredentials', async ({ context, server }) => { | 
					
						
							| 
									
										
										
										
											2021-08-27 23:47:33 -07:00
										 |  |  |  |   server.setAuth('/empty.html', 'user', 'pass'); | 
					
						
							| 
									
										
										
										
											2021-10-05 13:56:34 -07:00
										 |  |  |  |   const response1 = await context.request.get(server.EMPTY_PAGE); | 
					
						
							| 
									
										
										
										
											2021-08-27 23:47:33 -07:00
										 |  |  |  |   expect(response1.status()).toBe(401); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   await context.setHTTPCredentials({ username: 'user', password: 'pass' }); | 
					
						
							| 
									
										
										
										
											2021-10-05 13:56:34 -07:00
										 |  |  |  |   const response2 = await context.request.get(server.EMPTY_PAGE); | 
					
						
							| 
									
										
										
										
											2021-08-27 23:47:33 -07:00
										 |  |  |  |   expect(response2.status()).toBe(200); | 
					
						
							|  |  |  |  | }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |  | it('should return error with wrong credentials', async ({ context, server }) => { | 
					
						
							| 
									
										
										
										
											2021-08-27 23:47:33 -07:00
										 |  |  |  |   server.setAuth('/empty.html', 'user', 'pass'); | 
					
						
							|  |  |  |  |   await context.setHTTPCredentials({ username: 'user', password: 'wrong' }); | 
					
						
							| 
									
										
										
										
											2021-10-05 13:56:34 -07:00
										 |  |  |  |   const response2 = await context.request.get(server.EMPTY_PAGE); | 
					
						
							| 
									
										
										
										
											2021-08-27 23:47:33 -07:00
										 |  |  |  |   expect(response2.status()).toBe(401); | 
					
						
							|  |  |  |  | }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-03 13:26:15 -07:00
										 |  |  |  | for (const method of ['delete', 'patch', 'post', 'put']) { | 
					
						
							|  |  |  |  |   it(`${method} should support post data`, async ({ context, server }) => { | 
					
						
							|  |  |  |  |     const [request, response] = await Promise.all([ | 
					
						
							|  |  |  |  |       server.waitForRequest('/simple.json'), | 
					
						
							|  |  |  |  |       context.request[method](`${server.PREFIX}/simple.json`, { | 
					
						
							|  |  |  |  |         data: 'My request' | 
					
						
							|  |  |  |  |       }) | 
					
						
							|  |  |  |  |     ]); | 
					
						
							|  |  |  |  |     expect(request.method).toBe(method.toUpperCase()); | 
					
						
							|  |  |  |  |     expect((await request.postBody).toString()).toBe('My request'); | 
					
						
							|  |  |  |  |     expect(response.status()).toBe(200); | 
					
						
							|  |  |  |  |     expect(request.url).toBe('/simple.json'); | 
					
						
							|  |  |  |  |   }); | 
					
						
							|  |  |  |  | } | 
					
						
							| 
									
										
										
										
											2021-08-27 08:26:19 -07:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |  | it('should add default headers', async ({ context, server, page }) => { | 
					
						
							| 
									
										
										
										
											2021-08-27 08:26:19 -07:00
										 |  |  |  |   const [request] = await Promise.all([ | 
					
						
							|  |  |  |  |     server.waitForRequest('/empty.html'), | 
					
						
							| 
									
										
										
										
											2021-10-05 13:56:34 -07:00
										 |  |  |  |     context.request.get(server.EMPTY_PAGE) | 
					
						
							| 
									
										
										
										
											2021-08-27 08:26:19 -07:00
										 |  |  |  |   ]); | 
					
						
							|  |  |  |  |   expect(request.headers['accept']).toBe('*/*'); | 
					
						
							|  |  |  |  |   const userAgent = await page.evaluate(() => navigator.userAgent); | 
					
						
							|  |  |  |  |   expect(request.headers['user-agent']).toBe(userAgent); | 
					
						
							| 
									
										
										
										
											2021-08-31 09:34:58 -07:00
										 |  |  |  |   expect(request.headers['accept-encoding']).toBe('gzip,deflate,br'); | 
					
						
							| 
									
										
										
										
											2021-08-27 08:26:19 -07:00
										 |  |  |  | }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |  | it('should send content-length', async function({ context, asset, server }) { | 
					
						
							| 
									
										
										
										
											2021-09-17 09:00:18 -07:00
										 |  |  |  |   const bytes = []; | 
					
						
							|  |  |  |  |   for (let i = 0; i < 256; i++) | 
					
						
							|  |  |  |  |     bytes.push(i); | 
					
						
							|  |  |  |  |   const [request] = await Promise.all([ | 
					
						
							|  |  |  |  |     server.waitForRequest('/empty.html'), | 
					
						
							| 
									
										
										
										
											2021-10-05 13:56:34 -07:00
										 |  |  |  |     context.request.post(server.EMPTY_PAGE, { | 
					
						
							| 
									
										
										
										
											2021-09-17 09:00:18 -07:00
										 |  |  |  |       data: Buffer.from(bytes) | 
					
						
							|  |  |  |  |     }) | 
					
						
							|  |  |  |  |   ]); | 
					
						
							|  |  |  |  |   expect(request.headers['content-length']).toBe('256'); | 
					
						
							|  |  |  |  |   expect(request.headers['content-type']).toBe('application/octet-stream'); | 
					
						
							|  |  |  |  | }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |  | it('should add default headers to redirects', async ({ context, server, page }) => { | 
					
						
							| 
									
										
										
										
											2021-08-27 15:28:36 -07:00
										 |  |  |  |   server.setRedirect('/redirect', '/empty.html'); | 
					
						
							|  |  |  |  |   const [request] = await Promise.all([ | 
					
						
							|  |  |  |  |     server.waitForRequest('/empty.html'), | 
					
						
							| 
									
										
										
										
											2021-10-05 13:56:34 -07:00
										 |  |  |  |     context.request.get(`${server.PREFIX}/redirect`) | 
					
						
							| 
									
										
										
										
											2021-08-27 15:28:36 -07:00
										 |  |  |  |   ]); | 
					
						
							|  |  |  |  |   expect(request.headers['accept']).toBe('*/*'); | 
					
						
							|  |  |  |  |   const userAgent = await page.evaluate(() => navigator.userAgent); | 
					
						
							|  |  |  |  |   expect(request.headers['user-agent']).toBe(userAgent); | 
					
						
							| 
									
										
										
										
											2021-08-31 09:34:58 -07:00
										 |  |  |  |   expect(request.headers['accept-encoding']).toBe('gzip,deflate,br'); | 
					
						
							| 
									
										
										
										
											2021-08-27 15:28:36 -07:00
										 |  |  |  | }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |  | it('should allow to override default headers', async ({ context, server, page }) => { | 
					
						
							| 
									
										
										
										
											2021-08-27 08:26:19 -07:00
										 |  |  |  |   const [request] = await Promise.all([ | 
					
						
							|  |  |  |  |     server.waitForRequest('/empty.html'), | 
					
						
							| 
									
										
										
										
											2021-10-05 13:56:34 -07:00
										 |  |  |  |     context.request.get(server.EMPTY_PAGE, { | 
					
						
							| 
									
										
										
										
											2021-08-27 08:26:19 -07:00
										 |  |  |  |       headers: { | 
					
						
							|  |  |  |  |         'User-Agent': 'Playwright', | 
					
						
							|  |  |  |  |         'Accept': 'text/html', | 
					
						
							|  |  |  |  |         'Accept-Encoding': 'br' | 
					
						
							|  |  |  |  |       } | 
					
						
							|  |  |  |  |     }) | 
					
						
							|  |  |  |  |   ]); | 
					
						
							|  |  |  |  |   expect(request.headers['accept']).toBe('text/html'); | 
					
						
							|  |  |  |  |   expect(request.headers['user-agent']).toBe('Playwright'); | 
					
						
							|  |  |  |  |   expect(request.headers['accept-encoding']).toBe('br'); | 
					
						
							|  |  |  |  | }); | 
					
						
							| 
									
										
										
										
											2021-08-27 15:28:36 -07:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |  | it('should propagate custom headers with redirects', async ({ context, server }) => { | 
					
						
							| 
									
										
										
										
											2021-08-27 15:28:36 -07:00
										 |  |  |  |   server.setRedirect('/a/redirect1', '/b/c/redirect2'); | 
					
						
							|  |  |  |  |   server.setRedirect('/b/c/redirect2', '/simple.json'); | 
					
						
							|  |  |  |  |   const [req1, req2, req3] = await Promise.all([ | 
					
						
							|  |  |  |  |     server.waitForRequest('/a/redirect1'), | 
					
						
							|  |  |  |  |     server.waitForRequest('/b/c/redirect2'), | 
					
						
							|  |  |  |  |     server.waitForRequest('/simple.json'), | 
					
						
							| 
									
										
										
										
											2021-10-05 13:56:34 -07:00
										 |  |  |  |     context.request.get(`${server.PREFIX}/a/redirect1`, { headers: { 'foo': 'bar' } }), | 
					
						
							| 
									
										
										
										
											2021-08-27 15:28:36 -07:00
										 |  |  |  |   ]); | 
					
						
							|  |  |  |  |   expect(req1.headers['foo']).toBe('bar'); | 
					
						
							|  |  |  |  |   expect(req2.headers['foo']).toBe('bar'); | 
					
						
							|  |  |  |  |   expect(req3.headers['foo']).toBe('bar'); | 
					
						
							|  |  |  |  | }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |  | it('should propagate extra http headers with redirects', async ({ context, server }) => { | 
					
						
							| 
									
										
										
										
											2021-08-27 23:47:21 -07:00
										 |  |  |  |   server.setRedirect('/a/redirect1', '/b/c/redirect2'); | 
					
						
							|  |  |  |  |   server.setRedirect('/b/c/redirect2', '/simple.json'); | 
					
						
							|  |  |  |  |   await context.setExtraHTTPHeaders({ 'My-Secret': 'Value' }); | 
					
						
							|  |  |  |  |   const [req1, req2, req3] = await Promise.all([ | 
					
						
							|  |  |  |  |     server.waitForRequest('/a/redirect1'), | 
					
						
							|  |  |  |  |     server.waitForRequest('/b/c/redirect2'), | 
					
						
							|  |  |  |  |     server.waitForRequest('/simple.json'), | 
					
						
							| 
									
										
										
										
											2021-10-05 13:56:34 -07:00
										 |  |  |  |     context.request.get(`${server.PREFIX}/a/redirect1`), | 
					
						
							| 
									
										
										
										
											2021-08-27 23:47:21 -07:00
										 |  |  |  |   ]); | 
					
						
							|  |  |  |  |   expect(req1.headers['my-secret']).toBe('Value'); | 
					
						
							|  |  |  |  |   expect(req2.headers['my-secret']).toBe('Value'); | 
					
						
							|  |  |  |  |   expect(req3.headers['my-secret']).toBe('Value'); | 
					
						
							|  |  |  |  | }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |  | it('should throw on invalid header value', async ({ context, server }) => { | 
					
						
							| 
									
										
										
										
											2021-10-05 13:56:34 -07:00
										 |  |  |  |   const error = await context.request.get(`${server.PREFIX}/a/redirect1`, { | 
					
						
							| 
									
										
										
										
											2021-08-30 13:41:25 -07:00
										 |  |  |  |     headers: { | 
					
						
							|  |  |  |  |       'foo': 'недопустимое значение', | 
					
						
							|  |  |  |  |     } | 
					
						
							|  |  |  |  |   }).catch(e => e); | 
					
						
							|  |  |  |  |   expect(error.message).toContain('Invalid character in header content'); | 
					
						
							|  |  |  |  | }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |  | it('should throw on non-http(s) protocol', async ({ context }) => { | 
					
						
							| 
									
										
										
										
											2021-10-05 13:56:34 -07:00
										 |  |  |  |   const error1 = await context.request.get(`data:text/plain,test`).catch(e => e); | 
					
						
							| 
									
										
										
										
											2021-08-30 13:41:25 -07:00
										 |  |  |  |   expect(error1.message).toContain('Protocol "data:" not supported'); | 
					
						
							| 
									
										
										
										
											2021-10-05 13:56:34 -07:00
										 |  |  |  |   const error2 = await context.request.get(`file:///tmp/foo`).catch(e => e); | 
					
						
							| 
									
										
										
										
											2021-08-30 13:41:25 -07:00
										 |  |  |  |   expect(error2.message).toContain('Protocol "file:" not supported'); | 
					
						
							|  |  |  |  | }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |  | it('should support https', async ({ context, httpsServer }) => { | 
					
						
							| 
									
										
										
										
											2021-08-30 13:41:25 -07:00
										 |  |  |  |   const oldValue = process.env['NODE_TLS_REJECT_UNAUTHORIZED']; | 
					
						
							|  |  |  |  |   // https://stackoverflow.com/a/21961005/552185
 | 
					
						
							|  |  |  |  |   process.env['NODE_TLS_REJECT_UNAUTHORIZED'] = '0'; | 
					
						
							| 
									
										
										
										
											2021-09-08 20:32:52 -07:00
										 |  |  |  |   suppressCertificateWarning(); | 
					
						
							| 
									
										
										
										
											2021-08-30 13:41:25 -07:00
										 |  |  |  |   try { | 
					
						
							| 
									
										
										
										
											2021-10-05 13:56:34 -07:00
										 |  |  |  |     const response = await context.request.get(httpsServer.EMPTY_PAGE); | 
					
						
							| 
									
										
										
										
											2021-08-30 13:41:25 -07:00
										 |  |  |  |     expect(response.status()).toBe(200); | 
					
						
							|  |  |  |  |   } finally { | 
					
						
							|  |  |  |  |     process.env['NODE_TLS_REJECT_UNAUTHORIZED'] = oldValue; | 
					
						
							|  |  |  |  |   } | 
					
						
							|  |  |  |  | }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-28 15:33:36 -07:00
										 |  |  |  | it('should inherit ignoreHTTPSErrors from context', async ({ contextFactory, contextOptions, httpsServer }) => { | 
					
						
							| 
									
										
										
										
											2021-09-08 20:32:52 -07:00
										 |  |  |  |   const context = await contextFactory({ ...contextOptions, ignoreHTTPSErrors: true }); | 
					
						
							| 
									
										
										
										
											2021-10-05 13:56:34 -07:00
										 |  |  |  |   const response = await context.request.get(httpsServer.EMPTY_PAGE); | 
					
						
							| 
									
										
										
										
											2021-09-08 20:32:52 -07:00
										 |  |  |  |   expect(response.status()).toBe(200); | 
					
						
							|  |  |  |  | }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |  | it('should resolve url relative to baseURL', async function({ server, contextFactory, contextOptions }) { | 
					
						
							| 
									
										
										
										
											2021-08-30 13:41:25 -07:00
										 |  |  |  |   const context = await contextFactory({ | 
					
						
							|  |  |  |  |     ...contextOptions, | 
					
						
							|  |  |  |  |     baseURL: server.PREFIX, | 
					
						
							|  |  |  |  |   }); | 
					
						
							| 
									
										
										
										
											2021-10-05 13:56:34 -07:00
										 |  |  |  |   const response = await context.request.get('/empty.html'); | 
					
						
							| 
									
										
										
										
											2021-08-30 13:41:25 -07:00
										 |  |  |  |   expect(response.url()).toBe(server.EMPTY_PAGE); | 
					
						
							|  |  |  |  | }); | 
					
						
							| 
									
										
										
										
											2021-08-31 09:34:58 -07:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |  | it('should support gzip compression', async function({ context, server }) { | 
					
						
							| 
									
										
										
										
											2021-08-31 09:34:58 -07:00
										 |  |  |  |   server.setRoute('/compressed', (req, res) => { | 
					
						
							|  |  |  |  |     res.writeHead(200, { | 
					
						
							|  |  |  |  |       'Content-Encoding': 'gzip', | 
					
						
							|  |  |  |  |       'Content-Type': 'text/plain', | 
					
						
							|  |  |  |  |     }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |     const gzip = zlib.createGzip(); | 
					
						
							|  |  |  |  |     pipeline(gzip, res, err => { | 
					
						
							|  |  |  |  |       if (err) | 
					
						
							|  |  |  |  |         console.log(`Server error: ${err}`); | 
					
						
							|  |  |  |  |     }); | 
					
						
							|  |  |  |  |     gzip.write('Hello, world!'); | 
					
						
							|  |  |  |  |     gzip.end(); | 
					
						
							|  |  |  |  |   }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-05 13:56:34 -07:00
										 |  |  |  |   const response = await context.request.get(server.PREFIX + '/compressed'); | 
					
						
							| 
									
										
										
										
											2021-08-31 09:34:58 -07:00
										 |  |  |  |   expect(await response.text()).toBe('Hello, world!'); | 
					
						
							|  |  |  |  | }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-04 17:09:18 -08:00
										 |  |  |  | it('should throw informative error on corrupted gzip body', async function({ context, server }) { | 
					
						
							| 
									
										
										
										
											2021-08-31 09:34:58 -07:00
										 |  |  |  |   server.setRoute('/corrupted', (req, res) => { | 
					
						
							|  |  |  |  |     res.writeHead(200, { | 
					
						
							|  |  |  |  |       'Content-Encoding': 'gzip', | 
					
						
							|  |  |  |  |       'Content-Type': 'text/plain', | 
					
						
							|  |  |  |  |     }); | 
					
						
							|  |  |  |  |     res.write('Hello, world!'); | 
					
						
							|  |  |  |  |     res.end(); | 
					
						
							|  |  |  |  |   }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-05 13:56:34 -07:00
										 |  |  |  |   const error = await context.request.get(server.PREFIX + '/corrupted').catch(e => e); | 
					
						
							| 
									
										
										
										
											2021-08-31 09:34:58 -07:00
										 |  |  |  |   expect(error.message).toContain(`failed to decompress 'gzip' encoding`); | 
					
						
							|  |  |  |  | }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |  | it('should support brotli compression', async function({ context, server }) { | 
					
						
							| 
									
										
										
										
											2021-08-31 09:34:58 -07:00
										 |  |  |  |   server.setRoute('/compressed', (req, res) => { | 
					
						
							|  |  |  |  |     res.writeHead(200, { | 
					
						
							|  |  |  |  |       'Content-Encoding': 'br', | 
					
						
							|  |  |  |  |       'Content-Type': 'text/plain', | 
					
						
							|  |  |  |  |     }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |     const brotli = zlib.createBrotliCompress(); | 
					
						
							|  |  |  |  |     pipeline(brotli, res, err => { | 
					
						
							|  |  |  |  |       if (err) | 
					
						
							|  |  |  |  |         console.log(`Server error: ${err}`); | 
					
						
							|  |  |  |  |     }); | 
					
						
							|  |  |  |  |     brotli.write('Hello, world!'); | 
					
						
							|  |  |  |  |     brotli.end(); | 
					
						
							|  |  |  |  |   }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-05 13:56:34 -07:00
										 |  |  |  |   const response = await context.request.get(server.PREFIX + '/compressed'); | 
					
						
							| 
									
										
										
										
											2021-08-31 09:34:58 -07:00
										 |  |  |  |   expect(await response.text()).toBe('Hello, world!'); | 
					
						
							|  |  |  |  | }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-04 17:09:18 -08:00
										 |  |  |  | it('should throw informative error on corrupted brotli body', async function({ context, server }) { | 
					
						
							| 
									
										
										
										
											2021-08-31 09:34:58 -07:00
										 |  |  |  |   server.setRoute('/corrupted', (req, res) => { | 
					
						
							|  |  |  |  |     res.writeHead(200, { | 
					
						
							|  |  |  |  |       'Content-Encoding': 'br', | 
					
						
							|  |  |  |  |       'Content-Type': 'text/plain', | 
					
						
							|  |  |  |  |     }); | 
					
						
							|  |  |  |  |     res.write('Hello, world!'); | 
					
						
							|  |  |  |  |     res.end(); | 
					
						
							|  |  |  |  |   }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-05 13:56:34 -07:00
										 |  |  |  |   const error = await context.request.get(server.PREFIX + '/corrupted').catch(e => e); | 
					
						
							| 
									
										
										
										
											2021-08-31 09:34:58 -07:00
										 |  |  |  |   expect(error.message).toContain(`failed to decompress 'br' encoding`); | 
					
						
							|  |  |  |  | }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |  | it('should support deflate compression', async function({ context, server }) { | 
					
						
							| 
									
										
										
										
											2021-08-31 09:34:58 -07:00
										 |  |  |  |   server.setRoute('/compressed', (req, res) => { | 
					
						
							|  |  |  |  |     res.writeHead(200, { | 
					
						
							|  |  |  |  |       'Content-Encoding': 'deflate', | 
					
						
							|  |  |  |  |       'Content-Type': 'text/plain', | 
					
						
							|  |  |  |  |     }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |     const deflate = zlib.createDeflate(); | 
					
						
							|  |  |  |  |     pipeline(deflate, res, err => { | 
					
						
							|  |  |  |  |       if (err) | 
					
						
							|  |  |  |  |         console.log(`Server error: ${err}`); | 
					
						
							|  |  |  |  |     }); | 
					
						
							|  |  |  |  |     deflate.write('Hello, world!'); | 
					
						
							|  |  |  |  |     deflate.end(); | 
					
						
							|  |  |  |  |   }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-05 13:56:34 -07:00
										 |  |  |  |   const response = await context.request.get(server.PREFIX + '/compressed'); | 
					
						
							| 
									
										
										
										
											2021-08-31 09:34:58 -07:00
										 |  |  |  |   expect(await response.text()).toBe('Hello, world!'); | 
					
						
							|  |  |  |  | }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-04 17:09:18 -08:00
										 |  |  |  | it('should throw informative error on corrupted deflate body', async function({ context, server }) { | 
					
						
							| 
									
										
										
										
											2021-08-31 09:34:58 -07:00
										 |  |  |  |   server.setRoute('/corrupted', (req, res) => { | 
					
						
							|  |  |  |  |     res.writeHead(200, { | 
					
						
							|  |  |  |  |       'Content-Encoding': 'deflate', | 
					
						
							|  |  |  |  |       'Content-Type': 'text/plain', | 
					
						
							|  |  |  |  |     }); | 
					
						
							|  |  |  |  |     res.write('Hello, world!'); | 
					
						
							|  |  |  |  |     res.end(); | 
					
						
							|  |  |  |  |   }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-05 13:56:34 -07:00
										 |  |  |  |   const error = await context.request.get(server.PREFIX + '/corrupted').catch(e => e); | 
					
						
							| 
									
										
										
										
											2021-08-31 09:34:58 -07:00
										 |  |  |  |   expect(error.message).toContain(`failed to decompress 'deflate' encoding`); | 
					
						
							|  |  |  |  | }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |  | it('should support timeout option', async function({ context, server }) { | 
					
						
							| 
									
										
										
										
											2021-09-08 10:01:40 -07:00
										 |  |  |  |   server.setRoute('/slow', (req, res) => { | 
					
						
							|  |  |  |  |     res.writeHead(200, { | 
					
						
							|  |  |  |  |       'content-length': 4096, | 
					
						
							|  |  |  |  |       'content-type': 'text/html', | 
					
						
							|  |  |  |  |     }); | 
					
						
							|  |  |  |  |   }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-05 13:56:34 -07:00
										 |  |  |  |   const error = await context.request.get(server.PREFIX + '/slow', { timeout: 10 }).catch(e => e); | 
					
						
							| 
									
										
										
										
											2021-09-08 10:01:40 -07:00
										 |  |  |  |   expect(error.message).toContain(`Request timed out after 10ms`); | 
					
						
							|  |  |  |  | }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |  | it('should support a timeout of 0', async function({ context, server }) { | 
					
						
							| 
									
										
										
										
											2021-09-22 19:30:56 +02:00
										 |  |  |  |   server.setRoute('/slow', (req, res) => { | 
					
						
							|  |  |  |  |     res.writeHead(200, { | 
					
						
							|  |  |  |  |       'content-length': 4, | 
					
						
							|  |  |  |  |       'content-type': 'text/html', | 
					
						
							|  |  |  |  |     }); | 
					
						
							|  |  |  |  |     setTimeout(() => { | 
					
						
							|  |  |  |  |       res.end('done'); | 
					
						
							|  |  |  |  |     }, 50); | 
					
						
							|  |  |  |  |   }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-05 13:56:34 -07:00
										 |  |  |  |   const response = await context.request.get(server.PREFIX + '/slow', { | 
					
						
							| 
									
										
										
										
											2021-09-22 19:30:56 +02:00
										 |  |  |  |     timeout: 0, | 
					
						
							|  |  |  |  |   }); | 
					
						
							|  |  |  |  |   expect(await response.text()).toBe('done'); | 
					
						
							|  |  |  |  | }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |  | it('should respect timeout after redirects', async function({ context, server }) { | 
					
						
							| 
									
										
										
										
											2021-09-08 10:01:40 -07:00
										 |  |  |  |   server.setRedirect('/redirect', '/slow'); | 
					
						
							|  |  |  |  |   server.setRoute('/slow', (req, res) => { | 
					
						
							|  |  |  |  |     res.writeHead(200, { | 
					
						
							|  |  |  |  |       'content-length': 4096, | 
					
						
							|  |  |  |  |       'content-type': 'text/html', | 
					
						
							|  |  |  |  |     }); | 
					
						
							|  |  |  |  |   }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   context.setDefaultTimeout(100); | 
					
						
							| 
									
										
										
										
											2021-10-05 13:56:34 -07:00
										 |  |  |  |   const error = await context.request.get(server.PREFIX + '/redirect').catch(e => e); | 
					
						
							| 
									
										
										
										
											2021-09-08 10:01:40 -07:00
										 |  |  |  |   expect(error.message).toContain(`Request timed out after 100ms`); | 
					
						
							|  |  |  |  | }); | 
					
						
							| 
									
										
										
										
											2021-09-08 13:40:07 -07:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |  | it('should dispose', async function({ context, server }) { | 
					
						
							| 
									
										
										
										
											2021-10-05 13:56:34 -07:00
										 |  |  |  |   const response = await context.request.get(server.PREFIX + '/simple.json'); | 
					
						
							| 
									
										
										
										
											2021-09-08 13:40:07 -07:00
										 |  |  |  |   expect(await response.json()).toEqual({ foo: 'bar' }); | 
					
						
							|  |  |  |  |   await response.dispose(); | 
					
						
							|  |  |  |  |   const error = await response.body().catch(e => e); | 
					
						
							|  |  |  |  |   expect(error.message).toContain('Response has been disposed'); | 
					
						
							|  |  |  |  | }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |  | it('should dispose when context closes', async function({ context, server }) { | 
					
						
							| 
									
										
										
										
											2021-10-05 13:56:34 -07:00
										 |  |  |  |   const response = await context.request.get(server.PREFIX + '/simple.json'); | 
					
						
							| 
									
										
										
										
											2021-09-08 13:40:07 -07:00
										 |  |  |  |   expect(await response.json()).toEqual({ foo: 'bar' }); | 
					
						
							|  |  |  |  |   await context.close(); | 
					
						
							|  |  |  |  |   const error = await response.body().catch(e => e); | 
					
						
							| 
									
										
										
										
											2021-09-15 14:02:55 -07:00
										 |  |  |  |   expect(error.message).toContain('Response has been disposed'); | 
					
						
							| 
									
										
										
										
											2021-09-08 13:40:07 -07:00
										 |  |  |  | }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |  | it('should throw on invalid first argument', async function({ context }) { | 
					
						
							| 
									
										
										
										
											2021-10-05 13:56:34 -07:00
										 |  |  |  |   const error = await context.request.get({} as any).catch(e => e); | 
					
						
							| 
									
										
										
										
											2021-09-08 16:31:58 -07:00
										 |  |  |  |   expect(error.message).toContain('First argument must be either URL string or Request'); | 
					
						
							|  |  |  |  | }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |  | it('should override request parameters', async function({ context, page, server }) { | 
					
						
							| 
									
										
										
										
											2021-09-10 18:36:55 -07:00
										 |  |  |  |   const [pageReq] = await Promise.all([ | 
					
						
							|  |  |  |  |     page.waitForRequest('**/*'), | 
					
						
							|  |  |  |  |     page.goto(server.EMPTY_PAGE) | 
					
						
							|  |  |  |  |   ]); | 
					
						
							|  |  |  |  |   const [req] = await Promise.all([ | 
					
						
							|  |  |  |  |     server.waitForRequest('/empty.html'), | 
					
						
							| 
									
										
										
										
											2021-10-05 16:36:15 -07:00
										 |  |  |  |     context.request.fetch(pageReq, { | 
					
						
							|  |  |  |  |       method: 'POST', | 
					
						
							| 
									
										
										
										
											2021-09-10 18:36:55 -07:00
										 |  |  |  |       headers: { | 
					
						
							|  |  |  |  |         'foo': 'bar' | 
					
						
							|  |  |  |  |       }, | 
					
						
							| 
									
										
										
										
											2021-09-13 12:43:07 -07:00
										 |  |  |  |       data: 'data' | 
					
						
							| 
									
										
										
										
											2021-09-10 18:36:55 -07:00
										 |  |  |  |     }) | 
					
						
							|  |  |  |  |   ]); | 
					
						
							|  |  |  |  |   expect(req.method).toBe('POST'); | 
					
						
							|  |  |  |  |   expect(req.headers.foo).toBe('bar'); | 
					
						
							|  |  |  |  |   expect((await req.postBody).toString('utf8')).toBe('data'); | 
					
						
							|  |  |  |  | }); | 
					
						
							| 
									
										
										
										
											2021-09-16 17:48:43 -07:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |  | it('should support application/x-www-form-urlencoded', async function({ context, page, server }) { | 
					
						
							| 
									
										
										
										
											2021-09-16 17:48:43 -07:00
										 |  |  |  |   const [req] = await Promise.all([ | 
					
						
							|  |  |  |  |     server.waitForRequest('/empty.html'), | 
					
						
							| 
									
										
										
										
											2021-10-05 13:56:34 -07:00
										 |  |  |  |     context.request.post(server.EMPTY_PAGE, { | 
					
						
							| 
									
										
										
										
											2021-10-01 12:11:33 -07:00
										 |  |  |  |       form: { | 
					
						
							| 
									
										
										
										
											2021-09-16 17:48:43 -07:00
										 |  |  |  |         firstName: 'John', | 
					
						
							|  |  |  |  |         lastName: 'Doe', | 
					
						
							|  |  |  |  |         file: 'f.js', | 
					
						
							|  |  |  |  |       } | 
					
						
							|  |  |  |  |     }) | 
					
						
							|  |  |  |  |   ]); | 
					
						
							|  |  |  |  |   expect(req.method).toBe('POST'); | 
					
						
							|  |  |  |  |   expect(req.headers['content-type']).toBe('application/x-www-form-urlencoded'); | 
					
						
							|  |  |  |  |   const body = (await req.postBody).toString('utf8'); | 
					
						
							|  |  |  |  |   const params = new URLSearchParams(body); | 
					
						
							| 
									
										
										
										
											2021-09-17 09:00:18 -07:00
										 |  |  |  |   expect(req.headers['content-length']).toBe(String(params.toString().length)); | 
					
						
							| 
									
										
										
										
											2021-09-16 17:48:43 -07:00
										 |  |  |  |   expect(params.get('firstName')).toBe('John'); | 
					
						
							|  |  |  |  |   expect(params.get('lastName')).toBe('Doe'); | 
					
						
							|  |  |  |  |   expect(params.get('file')).toBe('f.js'); | 
					
						
							|  |  |  |  | }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |  | it('should encode to application/json by default', async function({ context, page, server }) { | 
					
						
							| 
									
										
										
										
											2021-09-16 17:48:43 -07:00
										 |  |  |  |   const data = { | 
					
						
							|  |  |  |  |     firstName: 'John', | 
					
						
							|  |  |  |  |     lastName: 'Doe', | 
					
						
							|  |  |  |  |     file: { | 
					
						
							|  |  |  |  |       name: 'f.js' | 
					
						
							|  |  |  |  |     }, | 
					
						
							|  |  |  |  |   }; | 
					
						
							|  |  |  |  |   const [req] = await Promise.all([ | 
					
						
							|  |  |  |  |     server.waitForRequest('/empty.html'), | 
					
						
							| 
									
										
										
										
											2021-10-05 13:56:34 -07:00
										 |  |  |  |     context.request.post(server.EMPTY_PAGE, { data }) | 
					
						
							| 
									
										
										
										
											2021-09-16 17:48:43 -07:00
										 |  |  |  |   ]); | 
					
						
							|  |  |  |  |   expect(req.method).toBe('POST'); | 
					
						
							|  |  |  |  |   expect(req.headers['content-type']).toBe('application/json'); | 
					
						
							|  |  |  |  |   const body = (await req.postBody).toString('utf8'); | 
					
						
							|  |  |  |  |   const json = JSON.parse(body); | 
					
						
							|  |  |  |  |   expect(json).toEqual(data); | 
					
						
							|  |  |  |  | }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-02-01 17:12:11 +01:00
										 |  |  |  | it('should support multipart/form-data', async function({ context, server }) { | 
					
						
							|  |  |  |  |   const formReceived = new Promise<{error: any, fields: formidable.Fields, files: Record<string, formidable.File>, serverRequest: http.IncomingMessage}>(resolve => { | 
					
						
							| 
									
										
										
										
											2021-09-16 17:48:43 -07:00
										 |  |  |  |     server.setRoute('/empty.html', async (serverRequest, res) => { | 
					
						
							|  |  |  |  |       const form = new formidable.IncomingForm(); | 
					
						
							|  |  |  |  |       form.parse(serverRequest, (error, fields, files) => { | 
					
						
							|  |  |  |  |         server.serveFile(serverRequest, res); | 
					
						
							| 
									
										
										
										
											2022-02-01 17:12:11 +01:00
										 |  |  |  |         resolve({ error, fields, files: files as Record<string, formidable.File>, serverRequest }); | 
					
						
							| 
									
										
										
										
											2021-09-16 17:48:43 -07:00
										 |  |  |  |       }); | 
					
						
							|  |  |  |  |     }); | 
					
						
							|  |  |  |  |   }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   const file = { | 
					
						
							|  |  |  |  |     name: 'f.js', | 
					
						
							|  |  |  |  |     mimeType: 'text/javascript', | 
					
						
							|  |  |  |  |     buffer: Buffer.from('var x = 10;\r\n;console.log(x);') | 
					
						
							|  |  |  |  |   }; | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |  |   const [{ error, fields, files, serverRequest }, response] = await Promise.all([ | 
					
						
							| 
									
										
										
										
											2021-09-16 17:48:43 -07:00
										 |  |  |  |     formReceived, | 
					
						
							| 
									
										
										
										
											2021-10-05 13:56:34 -07:00
										 |  |  |  |     context.request.post(server.EMPTY_PAGE, { | 
					
						
							| 
									
										
										
										
											2021-10-01 12:11:33 -07:00
										 |  |  |  |       multipart: { | 
					
						
							| 
									
										
										
										
											2021-09-16 17:48:43 -07:00
										 |  |  |  |         firstName: 'John', | 
					
						
							|  |  |  |  |         lastName: 'Doe', | 
					
						
							|  |  |  |  |         file | 
					
						
							|  |  |  |  |       } | 
					
						
							|  |  |  |  |     }) | 
					
						
							|  |  |  |  |   ]); | 
					
						
							|  |  |  |  |   expect(error).toBeFalsy(); | 
					
						
							|  |  |  |  |   expect(serverRequest.method).toBe('POST'); | 
					
						
							|  |  |  |  |   expect(serverRequest.headers['content-type']).toContain('multipart/form-data'); | 
					
						
							|  |  |  |  |   expect(fields['firstName']).toBe('John'); | 
					
						
							|  |  |  |  |   expect(fields['lastName']).toBe('Doe'); | 
					
						
							| 
									
										
										
										
											2022-02-01 17:12:11 +01:00
										 |  |  |  |   expect(files['file'].originalFilename).toBe(file.name); | 
					
						
							|  |  |  |  |   expect(files['file'].mimetype).toBe(file.mimeType); | 
					
						
							|  |  |  |  |   expect(fs.readFileSync(files['file'].filepath).toString()).toBe(file.buffer.toString('utf8')); | 
					
						
							| 
									
										
										
										
											2021-09-16 17:48:43 -07:00
										 |  |  |  |   expect(response.status()).toBe(200); | 
					
						
							|  |  |  |  | }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |  | it('should support multipart/form-data with ReadSream values', async function({ context, page, asset, server }) { | 
					
						
							| 
									
										
										
										
											2022-02-01 17:12:11 +01:00
										 |  |  |  |   const formReceived = new Promise<{error: any, fields: formidable.Fields, files: Record<string, formidable.File>, serverRequest: http.IncomingMessage}>(resolve => { | 
					
						
							| 
									
										
										
										
											2021-09-16 17:48:43 -07:00
										 |  |  |  |     server.setRoute('/empty.html', async (serverRequest, res) => { | 
					
						
							|  |  |  |  |       const form = new formidable.IncomingForm(); | 
					
						
							|  |  |  |  |       form.parse(serverRequest, (error, fields, files) => { | 
					
						
							|  |  |  |  |         server.serveFile(serverRequest, res); | 
					
						
							| 
									
										
										
										
											2022-02-01 17:12:11 +01:00
										 |  |  |  |         resolve({ error, fields, files: files as Record<string, formidable.File>, serverRequest }); | 
					
						
							| 
									
										
										
										
											2021-09-16 17:48:43 -07:00
										 |  |  |  |       }); | 
					
						
							|  |  |  |  |     }); | 
					
						
							|  |  |  |  |   }); | 
					
						
							|  |  |  |  |   const readStream = fs.createReadStream(asset('simplezip.json')); | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |  |   const [{ error, fields, files, serverRequest }, response] = await Promise.all([ | 
					
						
							| 
									
										
										
										
											2021-09-16 17:48:43 -07:00
										 |  |  |  |     formReceived, | 
					
						
							| 
									
										
										
										
											2021-10-05 13:56:34 -07:00
										 |  |  |  |     context.request.post(server.EMPTY_PAGE, { | 
					
						
							| 
									
										
										
										
											2021-10-01 12:11:33 -07:00
										 |  |  |  |       multipart: { | 
					
						
							| 
									
										
										
										
											2021-09-16 17:48:43 -07:00
										 |  |  |  |         firstName: 'John', | 
					
						
							|  |  |  |  |         lastName: 'Doe', | 
					
						
							|  |  |  |  |         readStream | 
					
						
							|  |  |  |  |       } | 
					
						
							|  |  |  |  |     }) | 
					
						
							|  |  |  |  |   ]); | 
					
						
							|  |  |  |  |   expect(error).toBeFalsy(); | 
					
						
							|  |  |  |  |   expect(serverRequest.method).toBe('POST'); | 
					
						
							|  |  |  |  |   expect(serverRequest.headers['content-type']).toContain('multipart/form-data'); | 
					
						
							| 
									
										
										
										
											2021-09-17 09:00:18 -07:00
										 |  |  |  |   expect(serverRequest.headers['content-length']).toContain('5498'); | 
					
						
							| 
									
										
										
										
											2021-09-16 17:48:43 -07:00
										 |  |  |  |   expect(fields['firstName']).toBe('John'); | 
					
						
							|  |  |  |  |   expect(fields['lastName']).toBe('Doe'); | 
					
						
							| 
									
										
										
										
											2022-02-01 17:12:11 +01:00
										 |  |  |  |   expect(files['readStream'].originalFilename).toBe('simplezip.json'); | 
					
						
							|  |  |  |  |   expect(files['readStream'].mimetype).toBe('application/json'); | 
					
						
							|  |  |  |  |   expect(fs.readFileSync(files['readStream'].filepath).toString()).toBe(fs.readFileSync(asset('simplezip.json')).toString()); | 
					
						
							| 
									
										
										
										
											2021-09-16 17:48:43 -07:00
										 |  |  |  |   expect(response.status()).toBe(200); | 
					
						
							|  |  |  |  | }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-01 12:11:33 -07:00
										 |  |  |  | it('should serialize data to json regardless of content-type', async function({ context, server }) { | 
					
						
							|  |  |  |  |   const data = { | 
					
						
							|  |  |  |  |     firstName: 'John', | 
					
						
							|  |  |  |  |     lastName: 'Doe', | 
					
						
							|  |  |  |  |   }; | 
					
						
							|  |  |  |  |   const [req] = await Promise.all([ | 
					
						
							|  |  |  |  |     server.waitForRequest('/empty.html'), | 
					
						
							| 
									
										
										
										
											2021-10-05 13:56:34 -07:00
										 |  |  |  |     context.request.post(server.EMPTY_PAGE, { | 
					
						
							| 
									
										
										
										
											2021-10-01 12:11:33 -07:00
										 |  |  |  |       headers: { | 
					
						
							|  |  |  |  |         'content-type': 'unknown' | 
					
						
							|  |  |  |  |       }, | 
					
						
							|  |  |  |  |       data | 
					
						
							|  |  |  |  |     }), | 
					
						
							|  |  |  |  |   ]); | 
					
						
							|  |  |  |  |   expect(req.method).toBe('POST'); | 
					
						
							|  |  |  |  |   expect(req.headers['content-type']).toBe('unknown'); | 
					
						
							|  |  |  |  |   const body = (await req.postBody).toString('utf8'); | 
					
						
							|  |  |  |  |   expect(body).toEqual(JSON.stringify(data)); | 
					
						
							| 
									
										
										
										
											2021-09-16 17:48:43 -07:00
										 |  |  |  | }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |  | it('should throw nice error on unsupported data type', async function({ context, server }) { | 
					
						
							| 
									
										
										
										
											2021-10-05 13:56:34 -07:00
										 |  |  |  |   const error = await context.request.post(server.EMPTY_PAGE, { | 
					
						
							| 
									
										
										
										
											2021-09-16 17:48:43 -07:00
										 |  |  |  |     headers: { | 
					
						
							|  |  |  |  |       'content-type': 'application/json' | 
					
						
							|  |  |  |  |     }, | 
					
						
							|  |  |  |  |     data: () => true | 
					
						
							|  |  |  |  |   }).catch(e => e); | 
					
						
							|  |  |  |  |   expect(error.message).toContain(`Unexpected 'data' type`); | 
					
						
							|  |  |  |  | }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |  | it('should throw when data passed for unsupported request', async function({ context, server }) { | 
					
						
							| 
									
										
										
										
											2021-10-05 13:56:34 -07:00
										 |  |  |  |   const error = await context.request.fetch(server.EMPTY_PAGE, { | 
					
						
							| 
									
										
										
										
											2021-09-16 17:48:43 -07:00
										 |  |  |  |     method: 'GET', | 
					
						
							|  |  |  |  |     data: { | 
					
						
							|  |  |  |  |       foo: 'bar' | 
					
						
							|  |  |  |  |     } | 
					
						
							|  |  |  |  |   }).catch(e => e); | 
					
						
							|  |  |  |  |   expect(error.message).toContain(`Method GET does not accept post data`); | 
					
						
							|  |  |  |  | }); | 
					
						
							| 
									
										
										
										
											2021-09-30 14:14:29 -07:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  | it('context request should export same storage state as context', async ({ context, page, server }) => { | 
					
						
							|  |  |  |  |   server.setRoute('/setcookie.html', (req, res) => { | 
					
						
							|  |  |  |  |     res.setHeader('Set-Cookie', ['a=b', 'c=d']); | 
					
						
							|  |  |  |  |     res.end(); | 
					
						
							|  |  |  |  |   }); | 
					
						
							| 
									
										
										
										
											2021-10-05 13:56:34 -07:00
										 |  |  |  |   await context.request.get(server.PREFIX + '/setcookie.html'); | 
					
						
							| 
									
										
										
										
											2021-09-30 14:14:29 -07:00
										 |  |  |  |   const contextState = await context.storageState(); | 
					
						
							|  |  |  |  |   expect(contextState.cookies.length).toBe(2); | 
					
						
							| 
									
										
										
										
											2021-10-05 13:56:34 -07:00
										 |  |  |  |   const requestState = await context.request.storageState(); | 
					
						
							| 
									
										
										
										
											2021-09-30 14:14:29 -07:00
										 |  |  |  |   expect(requestState).toEqual(contextState); | 
					
						
							| 
									
										
										
										
											2021-10-05 13:56:34 -07:00
										 |  |  |  |   const pageState = await page.request.storageState(); | 
					
						
							| 
									
										
										
										
											2021-09-30 14:14:29 -07:00
										 |  |  |  |   expect(pageState).toEqual(contextState); | 
					
						
							| 
									
										
										
										
											2021-10-05 17:53:19 -08:00
										 |  |  |  | }); | 
					
						
							| 
									
										
										
										
											2021-10-08 09:23:59 -07:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-02 09:33:30 -08:00
										 |  |  |  | it('should send secure cookie over http for localhost', async ({ page, server }) => { | 
					
						
							|  |  |  |  |   server.setRoute('/setcookie.html', (req, res) => { | 
					
						
							|  |  |  |  |     res.setHeader('Set-Cookie', ['a=v; secure']); | 
					
						
							|  |  |  |  |     res.end(); | 
					
						
							|  |  |  |  |   }); | 
					
						
							|  |  |  |  |   await page.request.get(`${server.PREFIX}/setcookie.html`); | 
					
						
							|  |  |  |  |   const [serverRequest] = await Promise.all([ | 
					
						
							|  |  |  |  |     server.waitForRequest('/empty.html'), | 
					
						
							|  |  |  |  |     page.request.get(server.EMPTY_PAGE) | 
					
						
							|  |  |  |  |   ]); | 
					
						
							|  |  |  |  |   expect(serverRequest.headers.cookie).toBe('a=v'); | 
					
						
							|  |  |  |  | }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-15 14:22:49 -08:00
										 |  |  |  | it('should accept bool and numeric params', async ({ page, server }) => { | 
					
						
							| 
									
										
										
										
											2021-10-08 09:23:59 -07:00
										 |  |  |  |   let request; | 
					
						
							|  |  |  |  |   const url = new URL(server.EMPTY_PAGE); | 
					
						
							|  |  |  |  |   url.searchParams.set('str', 's'); | 
					
						
							|  |  |  |  |   url.searchParams.set('num', '10'); | 
					
						
							|  |  |  |  |   url.searchParams.set('bool', 'true'); | 
					
						
							|  |  |  |  |   url.searchParams.set('bool2', 'false'); | 
					
						
							|  |  |  |  |   server.setRoute(url.pathname + url.search, (req, res) => { | 
					
						
							|  |  |  |  |     request = req; | 
					
						
							|  |  |  |  |     server.serveFile(req, res); | 
					
						
							|  |  |  |  |   }); | 
					
						
							|  |  |  |  |   await page.request.get(server.EMPTY_PAGE, { | 
					
						
							|  |  |  |  |     params: { | 
					
						
							|  |  |  |  |       'str': 's', | 
					
						
							|  |  |  |  |       'num': 10, | 
					
						
							|  |  |  |  |       'bool': true, | 
					
						
							|  |  |  |  |       'bool2': false, | 
					
						
							|  |  |  |  |     } | 
					
						
							|  |  |  |  |   }); | 
					
						
							|  |  |  |  |   const params = new URLSearchParams(request.url.substr(request.url.indexOf('?'))); | 
					
						
							|  |  |  |  |   expect(params.get('str')).toEqual('s'); | 
					
						
							|  |  |  |  |   expect(params.get('num')).toEqual('10'); | 
					
						
							|  |  |  |  |   expect(params.get('bool')).toEqual('true'); | 
					
						
							|  |  |  |  |   expect(params.get('bool2')).toEqual('false'); | 
					
						
							|  |  |  |  | }); | 
					
						
							| 
									
										
										
										
											2021-10-18 19:41:56 -07:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  | it('should abort requests when browser context closes', async ({ contextFactory, server }) => { | 
					
						
							|  |  |  |  |   const connectionClosed = new Promise(resolve => { | 
					
						
							|  |  |  |  |     server.setRoute('/empty.html', (req, res) => { | 
					
						
							|  |  |  |  |       req.socket.on('close', resolve); | 
					
						
							|  |  |  |  |     }); | 
					
						
							|  |  |  |  |   }); | 
					
						
							|  |  |  |  |   const context = await contextFactory(); | 
					
						
							|  |  |  |  |   const [ error ] = await Promise.all([ | 
					
						
							|  |  |  |  |     context.request.get(server.EMPTY_PAGE).catch(e => e), | 
					
						
							|  |  |  |  |     context.request.post(server.EMPTY_PAGE).catch(e => e), | 
					
						
							|  |  |  |  |     server.waitForRequest('/empty.html').then(() => context.close()) | 
					
						
							|  |  |  |  |   ]); | 
					
						
							|  |  |  |  |   expect(error instanceof Error).toBeTruthy(); | 
					
						
							|  |  |  |  |   expect(error.message).toContain('Request context disposed'); | 
					
						
							|  |  |  |  |   await connectionClosed; | 
					
						
							|  |  |  |  | }); | 
					
						
							| 
									
										
										
										
											2022-04-14 12:53:49 +02:00
										 |  |  |  | 
 | 
					
						
							|  |  |  |  | it('should work with connectOverCDP', async ({ browserName, browserType, server }, testInfo) => { | 
					
						
							|  |  |  |  |   it.skip(browserName !== 'chromium'); | 
					
						
							|  |  |  |  |   const port = 9339 + testInfo.workerIndex; | 
					
						
							|  |  |  |  |   const browserServer = await browserType.launch({ | 
					
						
							|  |  |  |  |     args: ['--remote-debugging-port=' + port] | 
					
						
							|  |  |  |  |   }); | 
					
						
							|  |  |  |  |   try { | 
					
						
							| 
									
										
										
										
											2022-04-22 13:42:52 +02:00
										 |  |  |  |     const cdpBrowser = await browserType.connectOverCDP(`http://127.0.0.1:${port}/`); | 
					
						
							| 
									
										
										
										
											2022-04-14 12:53:49 +02:00
										 |  |  |  |     const [context] = cdpBrowser.contexts(); | 
					
						
							|  |  |  |  |     const response = await context.request.get(server.PREFIX + '/simple.json'); | 
					
						
							|  |  |  |  |     expect(response.url()).toBe(server.PREFIX + '/simple.json'); | 
					
						
							|  |  |  |  |     expect(response.status()).toBe(200); | 
					
						
							|  |  |  |  |     expect(await response.text()).toBe('{"foo": "bar"}\n'); | 
					
						
							|  |  |  |  |   } finally { | 
					
						
							|  |  |  |  |     await browserServer.close(); | 
					
						
							|  |  |  |  |   } | 
					
						
							|  |  |  |  | }); |