mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-11-22 15:17:53 -05:00
Remove obsolete test
Check duplicates was added to prevent errors in the conversion to/from PO files back before we switched to Transifex. See https://github.com/LLK/scratch-www/pull/1150
This commit is contained in:
parent
d538d5d053
commit
d4d40405bf
1 changed files with 0 additions and 52 deletions
|
@ -1,52 +0,0 @@
|
||||||
/*
|
|
||||||
* Check that there are no duplicate strings in any individual l10n json file.
|
|
||||||
*/
|
|
||||||
var path = require('path');
|
|
||||||
var fs = require('fs');
|
|
||||||
var tap = require('tap');
|
|
||||||
|
|
||||||
var routes = require('../../src/routes.json');
|
|
||||||
|
|
||||||
const noDuplicateValues = (idsToCheck, name) => {
|
|
||||||
let values = {};
|
|
||||||
for (const key in idsToCheck) {
|
|
||||||
if (values.hasOwnProperty(idsToCheck[key])) {
|
|
||||||
// duplicate values
|
|
||||||
// return false;
|
|
||||||
tap.fail(`${name}.${idsToCheck[key]} has duplicates`);
|
|
||||||
} else {
|
|
||||||
values[idsToCheck[key]] = key;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
tap.pass();
|
|
||||||
// return true;
|
|
||||||
};
|
|
||||||
|
|
||||||
tap.test('generalCheckForDuplicates', function (t) {
|
|
||||||
const ids = require(path.resolve(__dirname, '../../src/l10n.json')); // eslint-disable-line global-require
|
|
||||||
noDuplicateValues(ids, 'general');
|
|
||||||
t.end();
|
|
||||||
});
|
|
||||||
|
|
||||||
for (var v in routes) {
|
|
||||||
if (typeof routes[v].redirect !== 'undefined') {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
var subdir = routes[v].view.split('/');
|
|
||||||
subdir.pop();
|
|
||||||
var name = routes[v].name;
|
|
||||||
var uri = path.resolve(__dirname, '../../src/views/' + subdir.join('/') + '/l10n.json');
|
|
||||||
try {
|
|
||||||
var file = fs.readFileSync(uri, 'utf8');
|
|
||||||
var ids = JSON.parse(file);
|
|
||||||
tap.test(name + 'CheckForDuplicates', function (t) { // eslint-disable-line no-loop-func
|
|
||||||
noDuplicateValues(ids, name);
|
|
||||||
t.end();
|
|
||||||
});
|
|
||||||
} catch (err) {
|
|
||||||
if (err.code !== 'ENOENT') {
|
|
||||||
// ignore if ENOENT for routes with no l10n file, throw error for anything else
|
|
||||||
throw err;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in a new issue