Best Python code snippet using molotov_python
test_gzip_static_assets.py
Source:test_gzip_static_assets.py
...29 with app.test_request_context('/foo?cachebuster=123'):30 response = mock.MagicMock(headers=Headers([('ETag', 'bar')]))31 key = gzip_cache_key(response)32 self.assertEqual(key, '/foobar')33 def test_gzipped_response(self):34 # Create test file35 filename = 'verification_ui/assets/dist/gzip-test.css'36 file_contents = "* { content: 'Test. Padded out to trigger gzip. Padded out to trigger gzip. Padded out to trigger gzip. Padded out to trigger gzip. Padded out to trigger gzip. Padded out to trigger gzip. Padded out to trigger gzip. Padded out to trigger gzip. Padded out to trigger gzip. Padded out to trigger gzip. Padded out to trigger gzip. Padded out to trigger gzip. Padded out to trigger gzip. Padded out to trigger gzip. Padded out to trigger gzip. Padded out to trigger gzip. Padded out to trigger gzip. Padded out to trigger gzip. Padded out to trigger gzip.'; }" # noqa: E50137 with open(filename, 'w+') as test_file:38 test_file.write(file_contents)39 response = self.client.get('/ui/gzip-test.css', headers=Headers([('Accept-encoding', 'gzip')]))40 # Check the response reports itself as gzip41 self.assertEqual(response.content_encoding, 'gzip')42 # And that we haven't just received the original contents43 self.assertNotEqual(response.data, file_contents)44 # Unzip it, check the contents is the same as the original45 self.assertEqual(gzip.decompress(response.data).decode('utf-8'), file_contents)46 response.close()47 os.remove(filename)...
Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!