| 
									
										
										
										
											2021-03-06 07:15:02 -08: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-05-06 07:08:22 -07:00
										 |  |  | import { test as it, expect } from './pageTest'; | 
					
						
							| 
									
										
										
										
											2021-04-04 19:32:14 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 13:26:13 -07:00
										 |  |  | it.fixme(({ isAndroid }) => isAndroid, 'Post data  does not work'); | 
					
						
							| 
									
										
										
										
											2021-03-06 07:15:02 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  | it('should return correct postData buffer for utf-8 body', async ({ page, server }) => { | 
					
						
							| 
									
										
										
										
											2021-03-06 07:15:02 -08:00
										 |  |  |   await page.goto(server.EMPTY_PAGE); | 
					
						
							|  |  |  |   const value = 'baẞ'; | 
					
						
							|  |  |  |   const [request] = await Promise.all([ | 
					
						
							|  |  |  |     page.waitForRequest('**'), | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |     page.evaluate(({ url, value }) => { | 
					
						
							| 
									
										
										
										
											2021-03-06 07:15:02 -08:00
										 |  |  |       const request = new Request(url, { | 
					
						
							|  |  |  |         method: 'POST', | 
					
						
							|  |  |  |         body: JSON.stringify(value), | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  |       request.headers.set('content-type', 'application/json;charset=UTF-8'); | 
					
						
							|  |  |  |       return fetch(request); | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |     }, { url: server.PREFIX + '/title.html', value }) | 
					
						
							| 
									
										
										
										
											2021-03-06 07:15:02 -08:00
										 |  |  |   ]); | 
					
						
							|  |  |  |   expect(request.postDataBuffer().equals(Buffer.from(JSON.stringify(value), 'utf-8'))).toBe(true); | 
					
						
							|  |  |  |   expect(request.postDataJSON()).toBe(value); | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  | it('should return post data w/o content-type', async ({ page, server }) => { | 
					
						
							| 
									
										
										
										
											2021-03-06 07:15:02 -08:00
										 |  |  |   await page.goto(server.EMPTY_PAGE); | 
					
						
							|  |  |  |   const [request] = await Promise.all([ | 
					
						
							|  |  |  |     page.waitForRequest('**'), | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |     page.evaluate(({ url }) => { | 
					
						
							| 
									
										
										
										
											2021-03-06 07:15:02 -08:00
										 |  |  |       const request = new Request(url, { | 
					
						
							|  |  |  |         method: 'POST', | 
					
						
							|  |  |  |         body: JSON.stringify({ value: 42 }), | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  |       request.headers.set('content-type', ''); | 
					
						
							|  |  |  |       return fetch(request); | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |     }, { url: server.PREFIX + '/title.html' }) | 
					
						
							| 
									
										
										
										
											2021-03-06 07:15:02 -08:00
										 |  |  |   ]); | 
					
						
							|  |  |  |   expect(request.postDataJSON()).toEqual({ value: 42 }); | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  | it('should throw on invalid JSON in post data', async ({ page, server }) => { | 
					
						
							| 
									
										
										
										
											2021-03-06 07:15:02 -08:00
										 |  |  |   await page.goto(server.EMPTY_PAGE); | 
					
						
							|  |  |  |   const [request] = await Promise.all([ | 
					
						
							|  |  |  |     page.waitForRequest('**'), | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |     page.evaluate(({ url }) => { | 
					
						
							| 
									
										
										
										
											2021-03-06 07:15:02 -08:00
										 |  |  |       const request = new Request(url, { | 
					
						
							|  |  |  |         method: 'POST', | 
					
						
							|  |  |  |         body: '<not a json>', | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  |       return fetch(request); | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |     }, { url: server.PREFIX + '/title.html' }) | 
					
						
							| 
									
										
										
										
											2021-03-06 07:15:02 -08:00
										 |  |  |   ]); | 
					
						
							|  |  |  |   let error; | 
					
						
							|  |  |  |   try { | 
					
						
							|  |  |  |     request.postDataJSON(); | 
					
						
							|  |  |  |   } catch (e) { | 
					
						
							|  |  |  |     error = e; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  |   expect(error.message).toContain('POST data is not a valid JSON object: <not a json>'); | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  | it('should return post data for PUT requests', async ({ page, server }) => { | 
					
						
							| 
									
										
										
										
											2021-03-06 07:15:02 -08:00
										 |  |  |   await page.goto(server.EMPTY_PAGE); | 
					
						
							|  |  |  |   const [request] = await Promise.all([ | 
					
						
							|  |  |  |     page.waitForRequest('**'), | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |     page.evaluate(({ url }) => { | 
					
						
							| 
									
										
										
										
											2021-03-06 07:15:02 -08:00
										 |  |  |       const request = new Request(url, { | 
					
						
							|  |  |  |         method: 'PUT', | 
					
						
							|  |  |  |         body: JSON.stringify({ value: 42 }), | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  |       return fetch(request); | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |     }, { url: server.PREFIX + '/title.html' }) | 
					
						
							| 
									
										
										
										
											2021-03-06 07:15:02 -08:00
										 |  |  |   ]); | 
					
						
							|  |  |  |   expect(request.postDataJSON()).toEqual({ value: 42 }); | 
					
						
							|  |  |  | }); | 
					
						
							| 
									
										
										
										
											2021-05-11 11:46:29 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  | it('should get post data for file/blob', async ({ page, server, browserName }) => { | 
					
						
							| 
									
										
										
										
											2021-05-13 10:22:23 -07:00
										 |  |  |   it.fail(browserName === 'webkit' || browserName === 'chromium'); | 
					
						
							| 
									
										
										
										
											2021-05-11 11:46:29 -07:00
										 |  |  |   await page.goto(server.EMPTY_PAGE); | 
					
						
							|  |  |  |   const [request] = await Promise.all([ | 
					
						
							|  |  |  |     page.waitForRequest('**/*'), | 
					
						
							|  |  |  |     page.evaluate(() => { | 
					
						
							|  |  |  |       const file = new File(['file-contents'], 'filename.txt'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       fetch('/data', { | 
					
						
							|  |  |  |         method: 'POST', | 
					
						
							|  |  |  |         headers: { | 
					
						
							|  |  |  |           'content-type': 'application/octet-stream' | 
					
						
							|  |  |  |         }, | 
					
						
							|  |  |  |         body: file | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  |     }) | 
					
						
							|  |  |  |   ]); | 
					
						
							|  |  |  |   expect(request.postData()).toBe('file-contents'); | 
					
						
							|  |  |  | }); |