mirror of
https://github.com/lancedikson/bowser
synced 2024-10-27 20:34:22 +00:00
Expanded test coverage for utils.js
This commit is contained in:
parent
a54868776d
commit
3cdfd7de02
@ -303,7 +303,7 @@ export default class Utils {
|
|||||||
* @param {string} browserName
|
* @param {string} browserName
|
||||||
* @return {string}
|
* @return {string}
|
||||||
*/
|
*/
|
||||||
static getBrowserTypeByAlias(browserAlia) {
|
static getBrowserTypeByAlias(browserAlias) {
|
||||||
return BROWSER_MAP[browserAlia] || '';
|
return BROWSER_MAP[browserAlias] || '';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,11 +1,18 @@
|
|||||||
import test from 'ava';
|
import test from 'ava';
|
||||||
import {
|
import {
|
||||||
getBrowserAlias,
|
|
||||||
getFirstMatch,
|
getFirstMatch,
|
||||||
|
getSecondMatch,
|
||||||
|
matchAndReturnConst,
|
||||||
getWindowsVersionName,
|
getWindowsVersionName,
|
||||||
getMacOSVersionName,
|
getMacOSVersionName,
|
||||||
getAndroidVersionName,
|
getAndroidVersionName,
|
||||||
|
getVersionPrecision,
|
||||||
compareVersions,
|
compareVersions,
|
||||||
|
map,
|
||||||
|
find,
|
||||||
|
assign,
|
||||||
|
getBrowserAlias,
|
||||||
|
getBrowserTypeByAlias
|
||||||
} from '../../src/utils';
|
} from '../../src/utils';
|
||||||
|
|
||||||
test('getFirstMatch', (t) => {
|
test('getFirstMatch', (t) => {
|
||||||
@ -13,6 +20,16 @@ test('getFirstMatch', (t) => {
|
|||||||
t.is(matchedVersion, '11.11.11');
|
t.is(matchedVersion, '11.11.11');
|
||||||
});
|
});
|
||||||
|
|
||||||
|
test('getSecondMatch', (t) => {
|
||||||
|
const matchedVersion = getSecondMatch(/version\/(\S+)/i, 'Chrome Version/11.11.11 Chrome Version/22.22.22');
|
||||||
|
t.is(matchedVersion, '22.22.22');
|
||||||
|
});
|
||||||
|
|
||||||
|
test('matchAndReturnConst', (t) => {
|
||||||
|
const _const = matchAndReturnConst(/version/i, 'version', "_const");
|
||||||
|
t.is(_const, '_const');
|
||||||
|
});
|
||||||
|
|
||||||
test('getWindowsVersionName', (t) => {
|
test('getWindowsVersionName', (t) => {
|
||||||
t.is(getWindowsVersionName('NT 5.0'), '2000');
|
t.is(getWindowsVersionName('NT 5.0'), '2000');
|
||||||
t.is(getWindowsVersionName('XXX'), void 0);
|
t.is(getWindowsVersionName('XXX'), void 0);
|
||||||
@ -32,6 +49,11 @@ test('getAndroidVersionName', (t) => {
|
|||||||
t.is(getAndroidVersionName('XXX'), void 0);
|
t.is(getAndroidVersionName('XXX'), void 0);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
test('getVersionPrecision', (t) => {
|
||||||
|
const precision = getVersionPrecision("10.14.5");
|
||||||
|
t.is(precision, 3);
|
||||||
|
});
|
||||||
|
|
||||||
test('compareVersions', (t) => {
|
test('compareVersions', (t) => {
|
||||||
const comparisionsTasks = [
|
const comparisionsTasks = [
|
||||||
['9.0', '10', -1],
|
['9.0', '10', -1],
|
||||||
@ -68,7 +90,31 @@ test('compareVersions', (t) => {
|
|||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
test('map', (t) => {
|
||||||
|
const result = map([1,2], (value) => value+2);
|
||||||
|
t.is(result[0], 3);
|
||||||
|
t.is(result[1], 4);
|
||||||
|
});
|
||||||
|
|
||||||
|
test('find', (t) => {
|
||||||
|
const result = find([1,2], (value) => value==2);
|
||||||
|
t.is(result, 1);
|
||||||
|
});
|
||||||
|
|
||||||
|
test('assign', (t) => {
|
||||||
|
const result = assign({}, { a: 1 }, { b: 1 }, { b: 2, c: 3 });
|
||||||
|
t.is(result['a'], 1);
|
||||||
|
t.is(result['b'], 2);
|
||||||
|
t.is(result['c'], 3);
|
||||||
|
});
|
||||||
|
|
||||||
test('getBrowserAlias', (t) => {
|
test('getBrowserAlias', (t) => {
|
||||||
t.is(getBrowserAlias('Microsoft Edge'), 'edge');
|
t.is(getBrowserAlias('Microsoft Edge'), 'edge');
|
||||||
t.is(getBrowserAlias('Unexisting Browser'), void 0);
|
t.is(getBrowserAlias('Unexisting Browser'), void 0);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
test('getBrowserTypeByAlias', (t) => {
|
||||||
|
t.is(getBrowserTypeByAlias('edge'), 'Microsoft Edge');
|
||||||
|
t.is(getBrowserTypeByAlias(void 0), '');
|
||||||
|
});
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user