1
0
mirror of https://github.com/lancedikson/bowser synced 2024-09-28 06:10:45 +00:00
lancedikson_bowser/test/unit/utils.js

75 lines
2.2 KiB
JavaScript
Raw Normal View History

2017-04-09 14:13:00 +00:00
import test from 'ava';
2018-06-30 16:40:10 +00:00
import {
getBrowserAlias,
2018-06-30 16:40:10 +00:00
getFirstMatch,
getWindowsVersionName,
2019-07-17 12:13:17 +00:00
getMacOSVersionName,
getAndroidVersionName,
compareVersions,
2018-06-30 16:40:10 +00:00
} from '../../src/utils';
2017-04-09 14:13:00 +00:00
2018-06-27 20:09:45 +00:00
test('getFirstMatch', (t) => {
2017-04-09 14:13:00 +00:00
const matchedVersion = getFirstMatch(/version\/(\S+)/i, 'Chrome Version/11.11.11');
t.is(matchedVersion, '11.11.11');
});
2018-06-30 16:40:10 +00:00
test('getWindowsVersionName', (t) => {
t.is(getWindowsVersionName('NT 5.0'), '2000');
t.is(getWindowsVersionName('XXX'), void 0);
});
2019-07-17 12:13:17 +00:00
test('getMacOSVersionName', (t) => {
t.is(getMacOSVersionName('10.14.5'), 'Mojave');
2019-07-17 15:33:48 +00:00
t.is(getMacOSVersionName('10.15'), 'Catalina');
t.is(getMacOSVersionName('10.999999'), void 0);
2019-07-17 12:13:17 +00:00
t.is(getMacOSVersionName('XXX'), void 0);
});
test('getAndroidVersionName', (t) => {
2019-07-17 15:33:48 +00:00
t.is(getAndroidVersionName('1.0'), void 0);
2019-07-17 12:13:17 +00:00
t.is(getAndroidVersionName('8.0'), 'Oreo');
t.is(getAndroidVersionName('9'), 'Pie');
2019-07-17 15:33:48 +00:00
t.is(getAndroidVersionName('XXX'), void 0);
2019-07-17 12:13:17 +00:00
});
test('compareVersions', (t) => {
const comparisionsTasks = [
['9.0', '10', -1],
['11', '10', 1],
['1.10.2.1', '1.8.2.1.90', 1],
['1.010.2.1', '1.08.2.1.90', 1],
['1.10.2.1', '1.10.2.1', 0],
2018-08-16 16:04:10 +00:00
['1.10.2.1', '1.10.2', 0, true],
['1.10.2.1', '1.10', 0, true],
['1.10.2.1', '1', 0, true],
['1.10.2.1', '1.0800.2', -1],
['1.0.0-alpha', '1.0.0-alpha.1', -1],
['1.0.0-alpha.1', '1.0.0-alpha.beta', -1],
['1.0.0-alpha.beta', '1.0.0-beta', -1],
['1.0.0-beta', '1.0.0-beta.2', -1],
['1.0.0-beta.11', '1.0.0-rc.1', -1],
['1.0.0-rc.1', '1.0.0', -1],
];
comparisionsTasks.forEach((testingParams) => {
const versionA = testingParams[0];
const versionB = testingParams[1];
const result = testingParams[2];
2018-08-16 16:04:10 +00:00
const isLoose = testingParams.length > 3 ? testingParams[3] : false;
let matching = isLoose ? '~' : ' == ';
if (result > 0) {
matching = ' > ';
} else if (result < 0) {
matching = ' < ';
}
2018-08-16 16:04:10 +00:00
t.is(compareVersions(versionA, versionB, isLoose), result, `version ${versionA} should be ${matching} version ${versionB}`);
});
});
test('getBrowserAlias', (t) => {
t.is(getBrowserAlias('Microsoft Edge'), 'edge');
t.is(getBrowserAlias('Unexisting Browser'), void 0);
});