| 
									
										
										
										
											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'; | 
					
						
							| 
									
										
										
										
											2021-08-24 14:29:04 -07:00
										 |  |  |  | import { contextTest as it, expect } from './config/browserTest'; | 
					
						
							| 
									
										
										
										
											2021-09-08 20:32:52 -07:00
										 |  |  |  | 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; | 
					
						
							|  |  |  |  | }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-13 14:29:44 -07:00
										 |  |  |  | it('get should work', async ({context, server}) => { | 
					
						
							| 
									
										
										
										
											2021-09-14 12:56:09 -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.url()).toBe(server.PREFIX + '/simple.json'); | 
					
						
							|  |  |  |  |   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'); | 
					
						
							|  |  |  |  | }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | it('fetch should work', async ({context, server}) => { | 
					
						
							| 
									
										
										
										
											2021-09-14 12:56:09 -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.url()).toBe(server.PREFIX + '/simple.json'); | 
					
						
							|  |  |  |  |   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-08-30 14:34:31 -07:00
										 |  |  |  | it('should throw on network error', async ({context, server}) => { | 
					
						
							|  |  |  |  |   server.setRoute('/test', (req, res) => { | 
					
						
							|  |  |  |  |     req.socket.destroy(); | 
					
						
							|  |  |  |  |   }); | 
					
						
							| 
									
										
										
										
											2021-09-14 12:56:09 -07:00
										 |  |  |  |   const error = await context._request.get(server.PREFIX + '/test').catch(e => e); | 
					
						
							| 
									
										
										
										
											2021-08-30 14:34:31 -07:00
										 |  |  |  |   expect(error.message).toContain('socket hang up'); | 
					
						
							|  |  |  |  | }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | it('should throw on network error after redirect', async ({context, server}) => { | 
					
						
							|  |  |  |  |   server.setRedirect('/redirect', '/test'); | 
					
						
							|  |  |  |  |   server.setRoute('/test', (req, res) => { | 
					
						
							|  |  |  |  |     req.socket.destroy(); | 
					
						
							|  |  |  |  |   }); | 
					
						
							| 
									
										
										
										
											2021-09-14 12:56:09 -07:00
										 |  |  |  |   const error = await context._request.get(server.PREFIX + '/redirect').catch(e => e); | 
					
						
							| 
									
										
										
										
											2021-08-30 14:34:31 -07:00
										 |  |  |  |   expect(error.message).toContain('socket hang up'); | 
					
						
							|  |  |  |  | }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | it('should throw on network error when sending body', async ({context, server}) => { | 
					
						
							|  |  |  |  |   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-09-14 12:56:09 -07:00
										 |  |  |  |   const error = await context._request.get(server.PREFIX + '/test').catch(e => e); | 
					
						
							| 
									
										
										
										
											2021-08-30 14:34:31 -07:00
										 |  |  |  |   expect(error.message).toContain('Error: aborted'); | 
					
						
							|  |  |  |  | }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | it('should throw on network error when sending body after redirect', async ({context, server}) => { | 
					
						
							|  |  |  |  |   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-09-14 12:56:09 -07:00
										 |  |  |  |   const error = await context._request.get(server.PREFIX + '/redirect').catch(e => e); | 
					
						
							| 
									
										
										
										
											2021-08-30 14:34:31 -07:00
										 |  |  |  |   expect(error.message).toContain('Error: aborted'); | 
					
						
							|  |  |  |  | }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-24 16:55:10 -07: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-09-14 12:56:09 -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-09-13 15:38:27 -07:00
										 |  |  |  | for (const method of ['get', 'post', 'fetch']) { | 
					
						
							|  |  |  |  |   it(`${method} should support queryParams`, async ({context, server}) => { | 
					
						
							|  |  |  |  |     let request; | 
					
						
							|  |  |  |  |     const url = new URL(server.EMPTY_PAGE); | 
					
						
							|  |  |  |  |     url.searchParams.set('p1', 'v1'); | 
					
						
							|  |  |  |  |     url.searchParams.set('парам2', 'знач2'); | 
					
						
							|  |  |  |  |     server.setRoute(url.pathname + url.search, (req, res) => { | 
					
						
							|  |  |  |  |       request = req; | 
					
						
							|  |  |  |  |       server.serveFile(req, res); | 
					
						
							|  |  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2021-09-14 12:56:09 -07:00
										 |  |  |  |     await context._request[method](server.EMPTY_PAGE + '?p1=foo', { | 
					
						
							| 
									
										
										
										
											2021-09-13 14:29:44 -07:00
										 |  |  |  |       params: { | 
					
						
							|  |  |  |  |         'p1': 'v1', | 
					
						
							|  |  |  |  |         'парам2': 'знач2', | 
					
						
							|  |  |  |  |       } | 
					
						
							|  |  |  |  |     }); | 
					
						
							|  |  |  |  |     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
										 |  |  |  |   }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   it(`${method} should support failOnStatusCode`, async ({context, server}) => { | 
					
						
							| 
									
										
										
										
											2021-09-14 12:56:09 -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-13 14:29:44 -07:00
										 |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-27 08:26:19 -07:00
										 |  |  |  | it('should not add context cookie if cookie header passed as a parameter', async ({context, server}) => { | 
					
						
							|  |  |  |  |   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-09-14 12:56:09 -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-08-24 16:55:10 -07: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-09-14 12:56:09 -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-08-24 14:29:04 -07:00
										 |  |  |  |   expect(await response.json()).toEqual({foo: 'bar'}); | 
					
						
							|  |  |  |  | }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | it('should add cookies from Set-Cookie header', async ({context, page, server}) => { | 
					
						
							|  |  |  |  |   server.setRoute('/setcookie.html', (req, res) => { | 
					
						
							|  |  |  |  |     res.setHeader('Set-Cookie', ['session=value', 'foo=bar; max-age=3600']); | 
					
						
							|  |  |  |  |     res.end(); | 
					
						
							|  |  |  |  |   }); | 
					
						
							| 
									
										
										
										
											2021-09-14 12:56:09 -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-09-13 12:43:07 -07: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-09-14 12:56:09 -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-08-30 12:01:22 -07: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-09-14 12:56:09 -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-09-14 12:56:09 -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-10 14:03:56 -07:00
										 |  |  |  | it('should return raw headers', async ({context, page, server}) => { | 
					
						
							|  |  |  |  |   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-09-14 12:56:09 -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-08-24 14:29:04 -07:00
										 |  |  |  | it('should work with context level proxy', async ({browserOptions, browserType, contextOptions, server, proxyServer}) => { | 
					
						
							|  |  |  |  |   server.setRoute('/target.html', async (req, res) => { | 
					
						
							|  |  |  |  |     res.end('<title>Served by the proxy</title>'); | 
					
						
							|  |  |  |  |   }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   const browser = await browserType.launch({ | 
					
						
							|  |  |  |  |     ...browserOptions, | 
					
						
							|  |  |  |  |     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-09-14 12:56:09 -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-09-07 17:42:31 -07:00
										 |  |  |  | it('should pass proxy credentials', async ({browserType, browserOptions, server, proxyServer}) => { | 
					
						
							|  |  |  |  |   proxyServer.forwardTo(server.PORT); | 
					
						
							|  |  |  |  |   let auth; | 
					
						
							|  |  |  |  |   proxyServer.setAuthHandler(req => { | 
					
						
							|  |  |  |  |     auth = req.headers['proxy-authorization']; | 
					
						
							|  |  |  |  |     return !!auth; | 
					
						
							|  |  |  |  |   }); | 
					
						
							|  |  |  |  |   const browser = await browserType.launch({ | 
					
						
							|  |  |  |  |     ...browserOptions, | 
					
						
							|  |  |  |  |     proxy: { server: `localhost:${proxyServer.PORT}`, username: 'user', password: 'secret' } | 
					
						
							|  |  |  |  |   }); | 
					
						
							|  |  |  |  |   const context = await browser.newContext(); | 
					
						
							| 
									
										
										
										
											2021-09-14 12:56:09 -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')); | 
					
						
							|  |  |  |  |   expect(await response.json()).toEqual({foo: 'bar'}); | 
					
						
							|  |  |  |  |   await browser.close(); | 
					
						
							|  |  |  |  | }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-24 14:29:04 -07:00
										 |  |  |  | it('should work with http credentials', async ({context, server}) => { | 
					
						
							|  |  |  |  |   server.setAuth('/empty.html', 'user', 'pass'); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   const [request, response] = await Promise.all([ | 
					
						
							|  |  |  |  |     server.waitForRequest('/empty.html'), | 
					
						
							| 
									
										
										
										
											2021-09-14 12:56:09 -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-13 12:43:07 -07:00
										 |  |  |  | it('should work with setHTTPCredentials', async ({context, server}) => { | 
					
						
							| 
									
										
										
										
											2021-08-27 23:47:33 -07:00
										 |  |  |  |   server.setAuth('/empty.html', 'user', 'pass'); | 
					
						
							| 
									
										
										
										
											2021-09-14 12:56:09 -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-09-14 12:56:09 -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-13 12:43:07 -07: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-09-14 12:56:09 -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-08-24 14:29:04 -07:00
										 |  |  |  | it('should support post data', async ({context, server}) => { | 
					
						
							|  |  |  |  |   const [request, response] = await Promise.all([ | 
					
						
							|  |  |  |  |     server.waitForRequest('/simple.json'), | 
					
						
							| 
									
										
										
										
											2021-09-14 12:56:09 -07:00
										 |  |  |  |     context._request.post(`${server.PREFIX}/simple.json`, { | 
					
						
							| 
									
										
										
										
											2021-09-13 12:43:07 -07:00
										 |  |  |  |       data: 'My request' | 
					
						
							| 
									
										
										
										
											2021-08-24 14:29:04 -07:00
										 |  |  |  |     }) | 
					
						
							|  |  |  |  |   ]); | 
					
						
							|  |  |  |  |   expect(request.method).toBe('POST'); | 
					
						
							|  |  |  |  |   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
										 |  |  |  | 
 | 
					
						
							|  |  |  |  | it('should add default headers', async ({context, server, page}) => { | 
					
						
							|  |  |  |  |   const [request] = await Promise.all([ | 
					
						
							|  |  |  |  |     server.waitForRequest('/empty.html'), | 
					
						
							| 
									
										
										
										
											2021-09-14 12:56:09 -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-17 09:00:18 -07:00
										 |  |  |  | it('should send content-length', async function({context, asset, server}) { | 
					
						
							|  |  |  |  |   const bytes = []; | 
					
						
							|  |  |  |  |   for (let i = 0; i < 256; i++) | 
					
						
							|  |  |  |  |     bytes.push(i); | 
					
						
							|  |  |  |  |   const [request] = await Promise.all([ | 
					
						
							|  |  |  |  |     server.waitForRequest('/empty.html'), | 
					
						
							|  |  |  |  |     context._request.post(server.EMPTY_PAGE, { | 
					
						
							|  |  |  |  |       data: Buffer.from(bytes) | 
					
						
							|  |  |  |  |     }) | 
					
						
							|  |  |  |  |   ]); | 
					
						
							|  |  |  |  |   expect(request.headers['content-length']).toBe('256'); | 
					
						
							|  |  |  |  |   expect(request.headers['content-type']).toBe('application/octet-stream'); | 
					
						
							|  |  |  |  | }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-27 15:28:36 -07:00
										 |  |  |  | it('should add default headers to redirects', async ({context, server, page}) => { | 
					
						
							|  |  |  |  |   server.setRedirect('/redirect', '/empty.html'); | 
					
						
							|  |  |  |  |   const [request] = await Promise.all([ | 
					
						
							|  |  |  |  |     server.waitForRequest('/empty.html'), | 
					
						
							| 
									
										
										
										
											2021-09-14 12:56:09 -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-08-27 08:26:19 -07:00
										 |  |  |  | it('should allow to override default headers', async ({context, server, page}) => { | 
					
						
							|  |  |  |  |   const [request] = await Promise.all([ | 
					
						
							|  |  |  |  |     server.waitForRequest('/empty.html'), | 
					
						
							| 
									
										
										
										
											2021-09-14 12:56:09 -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
										 |  |  |  | 
 | 
					
						
							|  |  |  |  | it('should propagate custom headers with redirects', async ({context, server}) => { | 
					
						
							|  |  |  |  |   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-09-14 12:56:09 -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-08-27 23:47:21 -07:00
										 |  |  |  | it('should propagate extra http headers with redirects', async ({context, server}) => { | 
					
						
							|  |  |  |  |   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-09-14 12:56:09 -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-08-30 13:41:25 -07:00
										 |  |  |  | it('should throw on invalid header value', async ({context, server}) => { | 
					
						
							| 
									
										
										
										
											2021-09-14 12:56:09 -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'); | 
					
						
							|  |  |  |  | }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | it('should throw on non-http(s) protocol', async ({context}) => { | 
					
						
							| 
									
										
										
										
											2021-09-14 12:56:09 -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-09-14 12:56:09 -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'); | 
					
						
							|  |  |  |  | }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | it('should support https', async ({context, httpsServer}) => { | 
					
						
							|  |  |  |  |   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-09-14 12:56:09 -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-08 20:32:52 -07:00
										 |  |  |  | it('should support ignoreHTTPSErrors', async ({contextFactory, contextOptions, httpsServer}) => { | 
					
						
							|  |  |  |  |   const context = await contextFactory({ ...contextOptions, ignoreHTTPSErrors: true }); | 
					
						
							| 
									
										
										
										
											2021-09-14 12:56:09 -07:00
										 |  |  |  |   const response = await context._request.get(httpsServer.EMPTY_PAGE); | 
					
						
							| 
									
										
										
										
											2021-09-08 20:32:52 -07:00
										 |  |  |  |   expect(response.status()).toBe(200); | 
					
						
							|  |  |  |  | }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | 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-09-14 12:56:09 -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
										 |  |  |  | 
 | 
					
						
							|  |  |  |  | it('should support gzip compression', async function({context, server}) { | 
					
						
							|  |  |  |  |   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-09-14 12:56:09 -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!'); | 
					
						
							|  |  |  |  | }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | it('should throw informatibe error on corrupted gzip body', async function({context, server}) { | 
					
						
							|  |  |  |  |   server.setRoute('/corrupted', (req, res) => { | 
					
						
							|  |  |  |  |     res.writeHead(200, { | 
					
						
							|  |  |  |  |       'Content-Encoding': 'gzip', | 
					
						
							|  |  |  |  |       'Content-Type': 'text/plain', | 
					
						
							|  |  |  |  |     }); | 
					
						
							|  |  |  |  |     res.write('Hello, world!'); | 
					
						
							|  |  |  |  |     res.end(); | 
					
						
							|  |  |  |  |   }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-14 12:56:09 -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`); | 
					
						
							|  |  |  |  | }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | it('should support brotli compression', async function({context, server}) { | 
					
						
							|  |  |  |  |   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-09-14 12:56:09 -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!'); | 
					
						
							|  |  |  |  | }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | it('should throw informatibe error on corrupted brotli body', async function({context, server}) { | 
					
						
							|  |  |  |  |   server.setRoute('/corrupted', (req, res) => { | 
					
						
							|  |  |  |  |     res.writeHead(200, { | 
					
						
							|  |  |  |  |       'Content-Encoding': 'br', | 
					
						
							|  |  |  |  |       'Content-Type': 'text/plain', | 
					
						
							|  |  |  |  |     }); | 
					
						
							|  |  |  |  |     res.write('Hello, world!'); | 
					
						
							|  |  |  |  |     res.end(); | 
					
						
							|  |  |  |  |   }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-14 12:56:09 -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`); | 
					
						
							|  |  |  |  | }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | it('should support deflate compression', async function({context, server}) { | 
					
						
							|  |  |  |  |   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-09-14 12:56:09 -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!'); | 
					
						
							|  |  |  |  | }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | it('should throw informatibe error on corrupted deflate body', async function({context, server}) { | 
					
						
							|  |  |  |  |   server.setRoute('/corrupted', (req, res) => { | 
					
						
							|  |  |  |  |     res.writeHead(200, { | 
					
						
							|  |  |  |  |       'Content-Encoding': 'deflate', | 
					
						
							|  |  |  |  |       'Content-Type': 'text/plain', | 
					
						
							|  |  |  |  |     }); | 
					
						
							|  |  |  |  |     res.write('Hello, world!'); | 
					
						
							|  |  |  |  |     res.end(); | 
					
						
							|  |  |  |  |   }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-14 12:56:09 -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-08 10:01:40 -07:00
										 |  |  |  | it('should support timeout option', async function({context, server}) { | 
					
						
							|  |  |  |  |   server.setRoute('/slow', (req, res) => { | 
					
						
							|  |  |  |  |     res.writeHead(200, { | 
					
						
							|  |  |  |  |       'content-length': 4096, | 
					
						
							|  |  |  |  |       'content-type': 'text/html', | 
					
						
							|  |  |  |  |     }); | 
					
						
							|  |  |  |  |   }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-14 12:56:09 -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-22 19:30:56 +02:00
										 |  |  |  | it('should support a timeout of 0', async function({context, server}) { | 
					
						
							|  |  |  |  |   server.setRoute('/slow', (req, res) => { | 
					
						
							|  |  |  |  |     res.writeHead(200, { | 
					
						
							|  |  |  |  |       'content-length': 4, | 
					
						
							|  |  |  |  |       'content-type': 'text/html', | 
					
						
							|  |  |  |  |     }); | 
					
						
							|  |  |  |  |     setTimeout(() => { | 
					
						
							|  |  |  |  |       res.end('done'); | 
					
						
							|  |  |  |  |     }, 50); | 
					
						
							|  |  |  |  |   }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   const response = await context._request.get(server.PREFIX + '/slow', { | 
					
						
							|  |  |  |  |     timeout: 0, | 
					
						
							|  |  |  |  |   }); | 
					
						
							|  |  |  |  |   expect(await response.text()).toBe('done'); | 
					
						
							|  |  |  |  | }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-08 10:01:40 -07:00
										 |  |  |  | it('should respect timeout after redirects', async function({context, server}) { | 
					
						
							|  |  |  |  |   server.setRedirect('/redirect', '/slow'); | 
					
						
							|  |  |  |  |   server.setRoute('/slow', (req, res) => { | 
					
						
							|  |  |  |  |     res.writeHead(200, { | 
					
						
							|  |  |  |  |       'content-length': 4096, | 
					
						
							|  |  |  |  |       'content-type': 'text/html', | 
					
						
							|  |  |  |  |     }); | 
					
						
							|  |  |  |  |   }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   context.setDefaultTimeout(100); | 
					
						
							| 
									
										
										
										
											2021-09-14 12:56:09 -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
										 |  |  |  | 
 | 
					
						
							|  |  |  |  | it('should dispose', async function({context, server}) { | 
					
						
							| 
									
										
										
										
											2021-09-14 12:56:09 -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'); | 
					
						
							|  |  |  |  | }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | it('should dispose when context closes', async function({context, server}) { | 
					
						
							| 
									
										
										
										
											2021-09-14 12:56:09 -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-10 18:36:55 -07:00
										 |  |  |  | it('should throw on invalid first argument', async function({context}) { | 
					
						
							| 
									
										
										
										
											2021-09-14 12:56:09 -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-10 18:36:55 -07:00
										 |  |  |  | it('should override request parameters', async function({context, page, server}) { | 
					
						
							|  |  |  |  |   const [pageReq] = await Promise.all([ | 
					
						
							|  |  |  |  |     page.waitForRequest('**/*'), | 
					
						
							|  |  |  |  |     page.goto(server.EMPTY_PAGE) | 
					
						
							|  |  |  |  |   ]); | 
					
						
							|  |  |  |  |   const [req] = await Promise.all([ | 
					
						
							|  |  |  |  |     server.waitForRequest('/empty.html'), | 
					
						
							| 
									
										
										
										
											2021-09-14 12:56:09 -07:00
										 |  |  |  |     context._request.post(pageReq, { | 
					
						
							| 
									
										
										
										
											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
										 |  |  |  | 
 | 
					
						
							|  |  |  |  | it('should support application/x-www-form-urlencoded', async function({context, page, server}) { | 
					
						
							|  |  |  |  |   const [req] = await Promise.all([ | 
					
						
							|  |  |  |  |     server.waitForRequest('/empty.html'), | 
					
						
							|  |  |  |  |     context._request.post(server.EMPTY_PAGE, { | 
					
						
							|  |  |  |  |       headers: { | 
					
						
							|  |  |  |  |         'content-type': 'application/x-www-form-urlencoded' | 
					
						
							|  |  |  |  |       }, | 
					
						
							|  |  |  |  |       data: { | 
					
						
							|  |  |  |  |         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'); | 
					
						
							|  |  |  |  | }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | it('should encode to application/json by default', async function({context, page, server}) { | 
					
						
							|  |  |  |  |   const data = { | 
					
						
							|  |  |  |  |     firstName: 'John', | 
					
						
							|  |  |  |  |     lastName: 'Doe', | 
					
						
							|  |  |  |  |     file: { | 
					
						
							|  |  |  |  |       name: 'f.js' | 
					
						
							|  |  |  |  |     }, | 
					
						
							|  |  |  |  |   }; | 
					
						
							|  |  |  |  |   const [req] = await Promise.all([ | 
					
						
							|  |  |  |  |     server.waitForRequest('/empty.html'), | 
					
						
							|  |  |  |  |     context._request.post(server.EMPTY_PAGE, { data }) | 
					
						
							|  |  |  |  |   ]); | 
					
						
							|  |  |  |  |   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); | 
					
						
							|  |  |  |  | }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | it('should support multipart/form-data', async function({context, page, server}) { | 
					
						
							|  |  |  |  |   const formReceived = new Promise<any>(resolve => { | 
					
						
							|  |  |  |  |     server.setRoute('/empty.html', async (serverRequest, res) => { | 
					
						
							|  |  |  |  |       const form = new formidable.IncomingForm(); | 
					
						
							|  |  |  |  |       form.parse(serverRequest, (error, fields, files) => { | 
					
						
							|  |  |  |  |         server.serveFile(serverRequest, res); | 
					
						
							|  |  |  |  |         resolve({error, fields, files, serverRequest }); | 
					
						
							|  |  |  |  |       }); | 
					
						
							|  |  |  |  |     }); | 
					
						
							|  |  |  |  |   }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |   const file = { | 
					
						
							|  |  |  |  |     name: 'f.js', | 
					
						
							|  |  |  |  |     mimeType: 'text/javascript', | 
					
						
							|  |  |  |  |     buffer: Buffer.from('var x = 10;\r\n;console.log(x);') | 
					
						
							|  |  |  |  |   }; | 
					
						
							|  |  |  |  |   const [{error, fields, files, serverRequest}, response] = await Promise.all([ | 
					
						
							|  |  |  |  |     formReceived, | 
					
						
							|  |  |  |  |     context._request.post(server.EMPTY_PAGE, { | 
					
						
							|  |  |  |  |       headers: { | 
					
						
							|  |  |  |  |         'content-type': 'multipart/form-data' | 
					
						
							|  |  |  |  |       }, | 
					
						
							|  |  |  |  |       data: { | 
					
						
							|  |  |  |  |         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'); | 
					
						
							|  |  |  |  |   expect(files['file'].name).toBe(file.name); | 
					
						
							|  |  |  |  |   expect(files['file'].type).toBe(file.mimeType); | 
					
						
							|  |  |  |  |   expect(fs.readFileSync(files['file'].path).toString()).toBe(file.buffer.toString('utf8')); | 
					
						
							|  |  |  |  |   expect(response.status()).toBe(200); | 
					
						
							|  |  |  |  | }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | it('should support multipart/form-data with ReadSream values', async function({context, page, asset, server}) { | 
					
						
							|  |  |  |  |   const formReceived = new Promise<any>(resolve => { | 
					
						
							|  |  |  |  |     server.setRoute('/empty.html', async (serverRequest, res) => { | 
					
						
							|  |  |  |  |       const form = new formidable.IncomingForm(); | 
					
						
							|  |  |  |  |       form.parse(serverRequest, (error, fields, files) => { | 
					
						
							|  |  |  |  |         server.serveFile(serverRequest, res); | 
					
						
							|  |  |  |  |         resolve({error, fields, files, serverRequest }); | 
					
						
							|  |  |  |  |       }); | 
					
						
							|  |  |  |  |     }); | 
					
						
							|  |  |  |  |   }); | 
					
						
							|  |  |  |  |   const readStream = fs.createReadStream(asset('simplezip.json')); | 
					
						
							|  |  |  |  |   const [{error, fields, files, serverRequest}, response] = await Promise.all([ | 
					
						
							|  |  |  |  |     formReceived, | 
					
						
							|  |  |  |  |     context._request.post(server.EMPTY_PAGE, { | 
					
						
							|  |  |  |  |       headers: { | 
					
						
							|  |  |  |  |         'content-type': 'multipart/form-data' | 
					
						
							|  |  |  |  |       }, | 
					
						
							|  |  |  |  |       data: { | 
					
						
							|  |  |  |  |         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'); | 
					
						
							|  |  |  |  |   expect(files['readStream'].name).toBe('simplezip.json'); | 
					
						
							|  |  |  |  |   expect(files['readStream'].type).toBe('application/json'); | 
					
						
							|  |  |  |  |   expect(fs.readFileSync(files['readStream'].path).toString()).toBe(fs.readFileSync(asset('simplezip.json')).toString()); | 
					
						
							|  |  |  |  |   expect(response.status()).toBe(200); | 
					
						
							|  |  |  |  | }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | it('should throw nice error on unsupported encoding', async function({context, server}) { | 
					
						
							|  |  |  |  |   const error = await context._request.post(server.EMPTY_PAGE, { | 
					
						
							|  |  |  |  |     headers: { | 
					
						
							|  |  |  |  |       'content-type': 'unknown' | 
					
						
							|  |  |  |  |     }, | 
					
						
							|  |  |  |  |     data: { | 
					
						
							|  |  |  |  |       firstName: 'John', | 
					
						
							|  |  |  |  |       lastName: 'Doe', | 
					
						
							|  |  |  |  |     } | 
					
						
							|  |  |  |  |   }).catch(e => e); | 
					
						
							|  |  |  |  |   expect(error.message).toContain('Cannot serialize data using content type: unknown'); | 
					
						
							|  |  |  |  | }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | it('should throw nice error on unsupported data type', async function({context, server}) { | 
					
						
							|  |  |  |  |   const error = await context._request.post(server.EMPTY_PAGE, { | 
					
						
							|  |  |  |  |     headers: { | 
					
						
							|  |  |  |  |       'content-type': 'application/json' | 
					
						
							|  |  |  |  |     }, | 
					
						
							|  |  |  |  |     data: () => true | 
					
						
							|  |  |  |  |   }).catch(e => e); | 
					
						
							|  |  |  |  |   expect(error.message).toContain(`Unexpected 'data' type`); | 
					
						
							|  |  |  |  | }); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | it('should throw when data passed for unsupported request', async function({context, server}) { | 
					
						
							|  |  |  |  |   const error = await context._request.fetch(server.EMPTY_PAGE, { | 
					
						
							|  |  |  |  |     method: 'GET', | 
					
						
							|  |  |  |  |     headers: { | 
					
						
							|  |  |  |  |       'content-type': 'application/json' | 
					
						
							|  |  |  |  |     }, | 
					
						
							|  |  |  |  |     data: { | 
					
						
							|  |  |  |  |       foo: 'bar' | 
					
						
							|  |  |  |  |     } | 
					
						
							|  |  |  |  |   }).catch(e => e); | 
					
						
							|  |  |  |  |   expect(error.message).toContain(`Method GET does not accept post data`); | 
					
						
							|  |  |  |  | }); |