Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: fetch patch ignoring command line arguments #813

Merged
merged 1 commit into from
Oct 10, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@
"@types/lodash": "^4.14.136",
"@types/needle": "^2.0.4",
"@types/node": "^6.14.4",
"@types/sinon": "^7.5.0",
"@typescript-eslint/eslint-plugin": "^2.0.0",
"@typescript-eslint/parser": "^2.0.0",
"eslint": "^5.16.0",
Expand Down
50 changes: 16 additions & 34 deletions src/lib/protect/fetch-patch.ts
Original file line number Diff line number Diff line change
@@ -1,57 +1,39 @@
import * as needle from 'needle';
import * as fs from 'fs';
import * as analytics from '../analytics';
import * as debugModule from 'debug';
import * as proxyFromEnv from 'proxy-from-env';
import * as ProxyAgent from 'proxy-agent';
import request = require('../request');

const debug = debugModule('snyk:fetch-patch');
const getProxyForUrl = proxyFromEnv.getProxyForUrl;

async function getPatchFile(
patchUrl: string,
patchFilename: string,
): Promise<string> {
let options;
const proxyUri = getProxyForUrl(patchUrl);
if (proxyUri) {
debug('Using proxy: ', proxyUri);
options = { agent: new ProxyAgent(proxyUri) };
}

let res: needle.NeedleResponse;
let patchData: string;
try {
res = await needle('get', patchUrl, options || {});
if (!res || res.statusCode !== 200) {
throw res;
const response = await request({ url: patchUrl });
if (
!response ||
!response.res ||
!response.body ||
response.res.statusCode !== 200
) {
throw response;
}
patchData = res.body;
fs.writeFileSync(patchFilename, response.body);
debug(
`Successfully downloaded patch from ${patchUrl}, patch size ${patchData.length} bytes`,
`Fetched patch from ${patchUrl} to ${patchFilename}, patch size ${response.body.length} bytes`,
);
} catch (error) {
debug(`Failed to download patch from ${patchUrl}`, error);
const errorMessage = `Failed to fetch patch from ${patchUrl} to ${patchFilename}`;
debug(errorMessage, error);
analytics.add('patch-fetch-fail', {
message: error && (error.message || error.body),
code: error && error.statusCode,
});
throw error;
}

try {
fs.writeFileSync(patchFilename, patchData);
debug(`Successfully wrote patch to ${patchFilename}`);
} catch (error) {
debug(`Failed to write patch to ${patchFilename}`, error);
analytics.add('patch-fetch-fail', {
message: error && error.message,
message: (error && error.message) || errorMessage,
code: error && error.res && error.res.statusCode,
patchFilename,
patchUrl,
});
throw error;
throw new Error(errorMessage);
}

return patchFilename;
}

Expand Down
38 changes: 0 additions & 38 deletions test/patch-fetch-fail.test.js

This file was deleted.

131 changes: 131 additions & 0 deletions test/patch-fetch-fail.test.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,131 @@
import { test } from 'tap';
import * as proxyquire from 'proxyquire';

let analytics;

const proxyFetchPatch = proxyquire('../src/lib/protect/fetch-patch', {
'../request': () => {
return Promise.resolve({
res: {
statusCode: 200,
},
body: 'patch content',
});
},
fs: {
writeFileSync() {
return;
},
},
'../analytics': {
add(type, data) {
analytics = { type, data };
},
},
});

const proxyFetchPatchNotFound = proxyquire('../src/lib/protect/fetch-patch', {
'../request': () => {
return Promise.resolve({
res: {
statusCode: 404,
},
body: 'not found',
});
},
'../analytics': {
add(type, data) {
analytics = { type, data };
},
},
});

const proxyFetchPatchErrorWriting = proxyquire(
'../src/lib/protect/fetch-patch',
{
'../request': () => {
return Promise.resolve({
res: {
statusCode: 200,
},
body: 'patch content',
});
},
fs: {
writeFileSync() {
throw new Error('Error writing file');
},
},
'../analytics': {
add(type, data) {
analytics = { type, data };
},
},
},
);

test('fetch patch returns filename when successful', (t) => {
return proxyFetchPatch('https://test.patch.url', 'file.patch')
.then((name) => t.is(name, 'file.patch', 'filename returned'))
.catch((e) => t.fail('should not throw error', e));
});

test('fetch patch handles error responses', (t) => {
return proxyFetchPatchNotFound('https://test.patch.url', 'file.patch')
.then(() => t.fail('should have failed'))
.catch(() => {
t.is(
analytics.type,
'patch-fetch-fail',
'analytics type is patch-fetch-fail',
);
t.is(analytics.data.code, 404, 'analytics status code is 404');
t.is(
analytics.data.message,
'Failed to fetch patch from https://test.patch.url to file.patch',
'analytics message is expected',
);
t.is(
analytics.data.patchFilename,
'file.patch',
'analytics patch filename is expected',
);
t.is(
analytics.data.patchUrl,
'https://test.patch.url',
'analytics patch url is expected',
);
});
});

test('fetch patch handles errors thrown while writing file', (t) => {
return proxyFetchPatchErrorWriting('https://test.patch.url', 'file.patch')
.then(() => t.fail('should have failed'))
.catch(() => {
t.is(
analytics.type,
'patch-fetch-fail',
'analytics type is patch-fetch-fail',
);
t.is(
analytics.data.code,
undefined,
'analytics status code is undefined',
);
t.is(
analytics.data.message,
'Error writing file',
'analytics message indicates error writing file',
);
t.is(
analytics.data.patchFilename,
'file.patch',
'analytics patch filename is expected',
);
t.is(
analytics.data.patchUrl,
'https://test.patch.url',
'analytics patch url is expected',
);
});
});
89 changes: 0 additions & 89 deletions test/patch-fetch-proxy.test.js

This file was deleted.

Loading