|
1 | 1 | import test from 'ava';
|
2 | 2 | import {Handler} from 'express';
|
3 | 3 | import nock = require('nock');
|
4 |
| -import got, {MaxRedirectsError} from '../source'; |
| 4 | +import got, {MaxRedirectsError, RequestError} from '../source'; |
5 | 5 | import withServer, {withHttpsServer} from './helpers/with-server';
|
6 | 6 |
|
7 | 7 | const reachedHandler: Handler = (_request, response) => {
|
@@ -509,3 +509,32 @@ test('correct port on redirect', withServer, async (t, server1, got) => {
|
509 | 509 | t.is(response.body, 'SERVER2');
|
510 | 510 | });
|
511 | 511 | });
|
| 512 | + |
| 513 | +const unixProtocol: Handler = (_request, response) => { |
| 514 | + response.writeHead(302, { |
| 515 | + location: 'unix:/var/run/docker.sock:/containers/json' |
| 516 | + }); |
| 517 | + response.end(); |
| 518 | +}; |
| 519 | + |
| 520 | +const unixHostname: Handler = (_request, response) => { |
| 521 | + response.writeHead(302, { |
| 522 | + location: 'http://unix:/var/run/docker.sock:/containers/json' |
| 523 | + }); |
| 524 | + response.end(); |
| 525 | +}; |
| 526 | + |
| 527 | +test('cannot redirect to unix protocol', withServer, async (t, server, got) => { |
| 528 | + server.get('/protocol', unixProtocol); |
| 529 | + server.get('/hostname', unixHostname); |
| 530 | + |
| 531 | + await t.throwsAsync(got('protocol'), { |
| 532 | + message: 'Cannot redirect to UNIX socket', |
| 533 | + instanceOf: RequestError |
| 534 | + }); |
| 535 | + |
| 536 | + await t.throwsAsync(got('hostname'), { |
| 537 | + message: 'Cannot redirect to UNIX socket', |
| 538 | + instanceOf: RequestError |
| 539 | + }); |
| 540 | +}); |
0 commit comments