2020-02-01 00:29:51 +00:00
|
|
|
/**
|
|
|
|
* @license
|
|
|
|
* Copyright 2020 Balena Ltd.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
import { expect } from 'chai';
|
2020-06-23 10:57:57 +00:00
|
|
|
import { promises as fs } from 'fs';
|
2020-02-11 18:07:25 +00:00
|
|
|
import * as path from 'path';
|
2020-02-01 00:29:51 +00:00
|
|
|
|
2020-02-11 18:07:25 +00:00
|
|
|
import {
|
|
|
|
convertEolInPlace,
|
|
|
|
detectEncoding,
|
|
|
|
} from '../../build/utils/eol-conversion';
|
2020-02-01 00:29:51 +00:00
|
|
|
|
2020-06-15 22:53:07 +00:00
|
|
|
describe('convertEolInPlace() function', function () {
|
2020-02-01 00:29:51 +00:00
|
|
|
it('should return expected values', () => {
|
|
|
|
// pairs of [given input, expected output]
|
|
|
|
const testVector = [
|
|
|
|
['', ''],
|
|
|
|
['\r', '\r'],
|
|
|
|
['\n', '\n'],
|
|
|
|
['\r\r', '\r\r'],
|
|
|
|
['\n\r', '\n\r'],
|
|
|
|
['\r\n', '\n'],
|
|
|
|
['\r\n\n', '\n\n'],
|
|
|
|
['\r\n\r', '\n\r'],
|
|
|
|
['\r\n\r\n', '\n\n'],
|
|
|
|
['\r\n\n\r', '\n\n\r'],
|
|
|
|
['abc\r\ndef\r\n', 'abc\ndef\n'],
|
|
|
|
['abc\r\ndef\n\r', 'abc\ndef\n\r'],
|
|
|
|
['abc\r\ndef\n', 'abc\ndef\n'],
|
|
|
|
['abc\r\ndef\r', 'abc\ndef\r'],
|
|
|
|
['abc\r\ndef', 'abc\ndef'],
|
|
|
|
['\r\ndef\r\n', '\ndef\n'],
|
|
|
|
['\rdef\r', '\rdef\r'],
|
|
|
|
];
|
|
|
|
const js = JSON.stringify;
|
|
|
|
|
|
|
|
for (const [input, expected] of testVector) {
|
|
|
|
const result = convertEolInPlace(Buffer.from(input));
|
|
|
|
const resultStr = result.toString();
|
|
|
|
const msg = `input=${js(input)} result=${js(resultStr)} expected=${js(
|
|
|
|
expected,
|
|
|
|
)}`;
|
|
|
|
expect(resultStr).to.equal(expected, msg);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
2020-02-11 18:07:25 +00:00
|
|
|
|
2020-06-15 22:53:07 +00:00
|
|
|
describe('detectEncoding() function', function () {
|
2020-02-11 18:07:25 +00:00
|
|
|
it('should correctly detect the encoding of a few selected files', async () => {
|
|
|
|
const sampleBinary = [
|
2024-04-09 14:15:15 +00:00
|
|
|
'etcher-sdk/node_modules/drivelist/build/Release/drivelist.node',
|
2020-02-11 18:07:25 +00:00
|
|
|
'mountutils/build/Release/MountUtils.node',
|
|
|
|
];
|
|
|
|
const sampleText = [
|
|
|
|
'node_modules/.bin/mocha',
|
|
|
|
'node_modules/.bin/rimraf',
|
|
|
|
'node_modules/.bin/tsc',
|
2020-03-24 17:52:05 +00:00
|
|
|
'node_modules/.bin/balena-lint',
|
2020-02-11 18:07:25 +00:00
|
|
|
'node_modules/.bin/catch-uncommitted',
|
|
|
|
];
|
|
|
|
|
|
|
|
for (const fname of sampleBinary) {
|
|
|
|
const buf = await fs.readFile(path.join('node_modules', fname));
|
|
|
|
const encoding = await detectEncoding(buf);
|
|
|
|
expect(encoding).to.equal('binary');
|
|
|
|
}
|
|
|
|
for (const fname of sampleText) {
|
|
|
|
const buf = await fs.readFile(fname);
|
|
|
|
const encoding = await detectEncoding(buf);
|
|
|
|
expect(encoding).to.equal('utf-8');
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|