2014-03-25 05:52:11 +09:00
|
|
|
/*
|
|
|
|
* Copyright 2014 Mozilla Foundation
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
2019-01-18 23:05:23 +09:00
|
|
|
/* eslint-disable object-shorthand */
|
2014-03-25 05:52:11 +09:00
|
|
|
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
var fs = require('fs');
|
|
|
|
var crypto = require('crypto');
|
|
|
|
var http = require('http');
|
|
|
|
var https = require('https');
|
|
|
|
|
2017-10-01 00:14:41 +09:00
|
|
|
function rewriteWebArchiveUrl(url) {
|
|
|
|
// Web Archive URLs need to be transformed to add `if_` after the ID.
|
|
|
|
// Without this, an HTML page containing an iframe with the PDF file
|
|
|
|
// will be served instead (issue 8920).
|
|
|
|
var webArchiveRegex =
|
|
|
|
/(^https?:\/\/web\.archive\.org\/web\/)(\d+)(\/https?:\/\/.+)/g;
|
|
|
|
var urlParts = webArchiveRegex.exec(url);
|
|
|
|
if (urlParts) {
|
|
|
|
return urlParts[1] + (urlParts[2] + 'if_') + urlParts[3];
|
|
|
|
}
|
|
|
|
return url;
|
|
|
|
}
|
|
|
|
|
2014-03-26 02:24:46 +09:00
|
|
|
function downloadFile(file, url, callback, redirects) {
|
2017-10-01 00:14:41 +09:00
|
|
|
url = rewriteWebArchiveUrl(url);
|
|
|
|
|
2014-03-25 05:52:11 +09:00
|
|
|
var completed = false;
|
|
|
|
var protocol = /^https:\/\//.test(url) ? https : http;
|
|
|
|
protocol.get(url, function (response) {
|
2014-04-08 05:43:07 +09:00
|
|
|
var redirectTo;
|
2014-03-26 02:24:46 +09:00
|
|
|
if (response.statusCode === 301 || response.statusCode === 302 ||
|
|
|
|
response.statusCode === 307 || response.statusCode === 308) {
|
|
|
|
if (redirects > 10) {
|
|
|
|
callback('Too many redirects');
|
|
|
|
}
|
2014-04-08 05:43:07 +09:00
|
|
|
redirectTo = response.headers.location;
|
2014-03-26 02:24:46 +09:00
|
|
|
redirectTo = require('url').resolve(url, redirectTo);
|
|
|
|
downloadFile(file, redirectTo, callback, (redirects || 0) + 1);
|
|
|
|
return;
|
|
|
|
}
|
2019-01-18 23:05:23 +09:00
|
|
|
if (response.statusCode === 404 && !url.includes('web.archive.org')) {
|
2014-03-26 02:24:46 +09:00
|
|
|
// trying waybackmachine
|
2014-04-08 05:43:07 +09:00
|
|
|
redirectTo = 'http://web.archive.org/web/' + url;
|
2014-03-26 02:24:46 +09:00
|
|
|
downloadFile(file, redirectTo, callback, (redirects || 0) + 1);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-03-25 05:52:11 +09:00
|
|
|
if (response.statusCode !== 200) {
|
|
|
|
if (!completed) {
|
|
|
|
completed = true;
|
|
|
|
callback('HTTP ' + response.statusCode);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
var stream = fs.createWriteStream(file);
|
|
|
|
stream.on('error', function (err) {
|
|
|
|
if (!completed) {
|
|
|
|
completed = true;
|
|
|
|
callback(err);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
response.pipe(stream);
|
|
|
|
stream.on('finish', function() {
|
2018-01-17 05:01:33 +09:00
|
|
|
stream.end();
|
2014-03-25 05:52:11 +09:00
|
|
|
if (!completed) {
|
|
|
|
completed = true;
|
|
|
|
callback();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}).on('error', function (err) {
|
|
|
|
if (!completed) {
|
2014-03-26 02:24:46 +09:00
|
|
|
if (typeof err === 'object' && err.errno === 'ENOTFOUND' &&
|
2019-01-18 23:05:23 +09:00
|
|
|
!url.includes('web.archive.org')) {
|
2014-03-26 02:24:46 +09:00
|
|
|
// trying waybackmachine
|
|
|
|
var redirectTo = 'http://web.archive.org/web/' + url;
|
|
|
|
downloadFile(file, redirectTo, callback, (redirects || 0) + 1);
|
|
|
|
return;
|
|
|
|
}
|
2014-03-25 05:52:11 +09:00
|
|
|
completed = true;
|
|
|
|
callback(err);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function downloadManifestFiles(manifest, callback) {
|
|
|
|
function downloadNext() {
|
|
|
|
if (i >= links.length) {
|
|
|
|
callback();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
var file = links[i].file;
|
|
|
|
var url = links[i].url;
|
|
|
|
console.log('Downloading ' + url + ' to ' + file + '...');
|
|
|
|
downloadFile(file, url, function (err) {
|
|
|
|
if (err) {
|
|
|
|
console.error('Error during downloading of ' + url + ': ' + err);
|
|
|
|
fs.writeFileSync(file, ''); // making it empty file
|
|
|
|
fs.writeFileSync(file + '.error', err);
|
|
|
|
}
|
|
|
|
i++;
|
|
|
|
downloadNext();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
var links = manifest.filter(function (item) {
|
|
|
|
return item.link && !fs.existsSync(item.file);
|
|
|
|
}).map(function (item) {
|
|
|
|
var file = item.file;
|
|
|
|
var linkfile = file + '.link';
|
|
|
|
var url = fs.readFileSync(linkfile).toString();
|
|
|
|
url = url.replace(/\s+$/, '');
|
Fix inconsistent spacing and trailing commas in objects in `test/` files, so we can enable the `comma-dangle` and `object-curly-spacing` ESLint rules later on
http://eslint.org/docs/rules/comma-dangle
http://eslint.org/docs/rules/object-curly-spacing
Given that we currently have quite inconsistent object formatting, fixing this in *one* big patch probably wouldn't be feasible (since I cannot imagine anyone wanting to review that); hence I've opted to try and do this piecewise instead.
Please note: This patch was created automatically, using the ESLint `--fix` command line option. In a couple of places this caused lines to become too long, and I've fixed those manually; please refer to the interdiff below for the only hand-edits in this patch.
```diff
diff --git a/test/chromium/test-telemetry.js b/test/chromium/test-telemetry.js
index cc412a31..2e5bdfa1 100755
--- a/test/chromium/test-telemetry.js
+++ b/test/chromium/test-telemetry.js
@@ -324,7 +324,7 @@ var tests = [
var window = createExtensionGlobal();
telemetryScript.runInNewContext(window);
window.chrome.runtime.getManifest = function() {
- return { version: '1.0.1', };
+ return { version: '1.0.1', };
};
window.Date.test_now_value += 12 * 36E5;
telemetryScript.runInNewContext(window);
diff --git a/test/unit/api_spec.js b/test/unit/api_spec.js
index 1f00747a..f22988e7 100644
--- a/test/unit/api_spec.js
+++ b/test/unit/api_spec.js
@@ -503,8 +503,9 @@ describe('api', function() {
it('gets destinations, from /Dests dictionary', function(done) {
var promise = doc.getDestinations();
promise.then(function(data) {
- expect(data).toEqual({ chapter1: [{ gen: 0, num: 17, }, { name: 'XYZ', },
- 0, 841.89, null], });
+ expect(data).toEqual({
+ chapter1: [{ gen: 0, num: 17, }, { name: 'XYZ', }, 0, 841.89, null],
+ });
done();
}).catch(function (reason) {
done.fail(reason);
diff --git a/test/unit/function_spec.js b/test/unit/function_spec.js
index 66441212..62127eb9 100644
--- a/test/unit/function_spec.js
+++ b/test/unit/function_spec.js
@@ -492,9 +492,11 @@ describe('function', function() {
it('check compiled mul', function() {
check([0.25, 0.5, 'mul'], [], [0, 1], [{ input: [], output: [0.125], }]);
check([0, 'mul'], [0, 1], [0, 1], [{ input: [0.25], output: [0], }]);
- check([0.5, 'mul'], [0, 1], [0, 1], [{ input: [0.25], output: [0.125], }]);
+ check([0.5, 'mul'], [0, 1], [0, 1],
+ [{ input: [0.25], output: [0.125], }]);
check([1, 'mul'], [0, 1], [0, 1], [{ input: [0.25], output: [0.25], }]);
- check([0, 'exch', 'mul'], [0, 1], [0, 1], [{ input: [0.25], output: [0], }]);
+ check([0, 'exch', 'mul'], [0, 1], [0, 1],
+ [{ input: [0.25], output: [0], }]);
check([0.5, 'exch', 'mul'], [0, 1], [0, 1],
[{ input: [0.25], output: [0.125], }]);
check([1, 'exch', 'mul'], [0, 1], [0, 1],
```
2017-06-02 19:55:01 +09:00
|
|
|
return { file: file, url: url, };
|
2014-03-25 05:52:11 +09:00
|
|
|
});
|
|
|
|
|
|
|
|
var i = 0;
|
|
|
|
downloadNext();
|
|
|
|
}
|
|
|
|
|
|
|
|
function calculateMD5(file, callback) {
|
|
|
|
var hash = crypto.createHash('md5');
|
|
|
|
var stream = fs.createReadStream(file);
|
|
|
|
stream.on('data', function (data) {
|
|
|
|
hash.update(data);
|
|
|
|
});
|
|
|
|
stream.on('error', function (err) {
|
|
|
|
callback(err);
|
|
|
|
});
|
|
|
|
stream.on('end', function() {
|
|
|
|
var result = hash.digest('hex');
|
|
|
|
callback(null, result);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function verifyManifestFiles(manifest, callback) {
|
|
|
|
function verifyNext() {
|
|
|
|
if (i >= manifest.length) {
|
|
|
|
callback(error);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
var item = manifest[i];
|
|
|
|
if (fs.existsSync(item.file + '.error')) {
|
|
|
|
console.error('WARNING: File was not downloaded. See "' +
|
|
|
|
item.file + '.error" file.');
|
|
|
|
error = true;
|
|
|
|
i++;
|
|
|
|
verifyNext();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
calculateMD5(item.file, function (err, md5) {
|
|
|
|
if (err) {
|
|
|
|
console.log('WARNING: Unable to open file for reading "' + err + '".');
|
|
|
|
error = true;
|
|
|
|
} else if (!item.md5) {
|
|
|
|
console.error('WARNING: Missing md5 for file "' + item.file + '". ' +
|
|
|
|
'Hash for current file is "' + md5 + '"');
|
|
|
|
error = true;
|
|
|
|
} else if (md5 !== item.md5) {
|
|
|
|
console.error('WARNING: MD5 of file "' + item.file +
|
|
|
|
'" does not match file. Expected "' +
|
|
|
|
item.md5 + '" computed "' + md5 + '"');
|
|
|
|
error = true;
|
|
|
|
}
|
|
|
|
i++;
|
|
|
|
verifyNext();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
var i = 0;
|
|
|
|
var error = false;
|
|
|
|
verifyNext();
|
|
|
|
}
|
|
|
|
|
|
|
|
exports.downloadManifestFiles = downloadManifestFiles;
|
|
|
|
exports.verifyManifestFiles = verifyManifestFiles;
|