mirror of https://github.com/lukechilds/got.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
83 lines
1.9 KiB
83 lines
1.9 KiB
import zlib from 'zlib';
|
|
import test from 'ava';
|
|
import getStream from 'get-stream';
|
|
import got from '..';
|
|
import {createServer} from './helpers/server';
|
|
|
|
const testContent = 'Compressible response content.\n';
|
|
|
|
let s;
|
|
|
|
test.before('setup', async () => {
|
|
s = await createServer();
|
|
|
|
s.on('/', (req, res) => {
|
|
res.statusCode = 200;
|
|
res.setHeader('Content-Type', 'text/plain');
|
|
res.setHeader('Content-Encoding', 'gzip');
|
|
|
|
if (req.method === 'HEAD') {
|
|
res.end();
|
|
return;
|
|
}
|
|
|
|
zlib.gzip(testContent, (_, data) => res.end(data));
|
|
});
|
|
|
|
s.on('/corrupted', (req, res) => {
|
|
res.statusCode = 200;
|
|
res.setHeader('Content-Type', 'text/plain');
|
|
res.setHeader('Content-Encoding', 'gzip');
|
|
res.end('Not gzipped content');
|
|
});
|
|
|
|
s.on('/missing-data', (req, res) => {
|
|
res.statusCode = 200;
|
|
res.setHeader('Content-Type', 'text/plain');
|
|
res.setHeader('Content-Encoding', 'gzip');
|
|
zlib.gzip(testContent, (_, data) => res.end(data.slice(0, -1)));
|
|
});
|
|
|
|
await s.listen(s.port);
|
|
});
|
|
|
|
test('decompress content', async t => {
|
|
t.is((await got(s.url)).body, testContent);
|
|
});
|
|
|
|
test('decompress content - stream', async t => {
|
|
t.is(await getStream(got.stream(s.url)), testContent);
|
|
});
|
|
|
|
test('handles gzip error', async t => {
|
|
try {
|
|
await got(`${s.url}/corrupted`);
|
|
t.fail('Exception was not thrown');
|
|
} catch (err) {
|
|
t.is(err.message, 'incorrect header check');
|
|
t.is(err.path, '/corrupted');
|
|
t.is(err.name, 'ReadError');
|
|
}
|
|
});
|
|
|
|
test('preserve headers property', async t => {
|
|
t.truthy((await got(s.url)).headers);
|
|
});
|
|
|
|
test('do not break HEAD responses', async t => {
|
|
t.is((await got.head(s.url)).body, '');
|
|
});
|
|
|
|
test('ignore missing data', async t => {
|
|
t.is((await got(`${s.url}/missing-data`)).body, testContent);
|
|
});
|
|
|
|
test('has url and requestUrl properties', async t => {
|
|
const res = await got(s.url);
|
|
t.truthy(res.url);
|
|
t.truthy(res.requestUrl);
|
|
});
|
|
|
|
test.after('cleanup', async () => {
|
|
await s.close();
|
|
});
|
|
|