117 lines
3.1 KiB
JavaScript
117 lines
3.1 KiB
JavaScript
/**
|
|
* @license
|
|
* Copyright (C) 2020 The Android Open Source Project
|
|
*
|
|
* 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 '../test/common-test-setup-karma.js';
|
|
import {
|
|
getVotingRange,
|
|
getVotingRangeOrDefault,
|
|
getMaxAccounts,
|
|
getApprovalInfo,
|
|
} from './label-util.js';
|
|
|
|
const VALUES_1 = {
|
|
'-1': 'bad',
|
|
'0': 'neutral',
|
|
'+1': 'good',
|
|
};
|
|
|
|
const VALUES_2 = {
|
|
'-1': 'bad',
|
|
'+2': 'perfect',
|
|
'0': 'neutral',
|
|
'-2': 'blocking',
|
|
'+1': 'good',
|
|
};
|
|
|
|
suite('label-util', () => {
|
|
test('getVotingRange -1 to +1', () => {
|
|
const label = {values: VALUES_1};
|
|
const expectedRange = {min: -1, max: 1};
|
|
assert.deepEqual(getVotingRange(label), expectedRange);
|
|
assert.deepEqual(getVotingRangeOrDefault(label), expectedRange);
|
|
});
|
|
|
|
test('getVotingRange -2 to +2', () => {
|
|
const label = {values: VALUES_2};
|
|
const expectedRange = {min: -2, max: 2};
|
|
assert.deepEqual(getVotingRange(label), expectedRange);
|
|
assert.deepEqual(getVotingRangeOrDefault(label), expectedRange);
|
|
});
|
|
|
|
test('getVotingRange empty values', () => {
|
|
const label = {
|
|
values: {},
|
|
};
|
|
const expectedRange = {min: 0, max: 0};
|
|
assert.isUndefined(getVotingRange(label));
|
|
assert.deepEqual(getVotingRangeOrDefault(label), expectedRange);
|
|
});
|
|
|
|
test('getVotingRange no values', () => {
|
|
const label = {};
|
|
const expectedRange = {min: 0, max: 0};
|
|
assert.isUndefined(getVotingRange(label));
|
|
assert.deepEqual(getVotingRangeOrDefault(label), expectedRange);
|
|
});
|
|
|
|
test('getMaxAccounts', () => {
|
|
const label = {
|
|
values: VALUES_2,
|
|
all: [
|
|
{value: 2, _account_id: 314},
|
|
{value: 1, _account_id: 777},
|
|
],
|
|
};
|
|
|
|
const maxAccounts = getMaxAccounts(label);
|
|
|
|
assert.equal(maxAccounts.length, 1);
|
|
assert.equal(maxAccounts[0]._account_id, 314);
|
|
});
|
|
|
|
test('getMaxAccounts unset parameters', () => {
|
|
assert.isEmpty(getMaxAccounts());
|
|
assert.isEmpty(getMaxAccounts({}));
|
|
assert.isEmpty(getMaxAccounts({values: VALUES_2}));
|
|
});
|
|
|
|
test('getApprovalInfo', () => {
|
|
const myAccountInfo = {_account_id: 314};
|
|
const myApprovalInfo = {value: 2, _account_id: 314};
|
|
const label = {
|
|
values: VALUES_2,
|
|
all: [myApprovalInfo, {value: 1, _account_id: 777}],
|
|
};
|
|
assert.equal(
|
|
getApprovalInfo(label, myAccountInfo),
|
|
myApprovalInfo
|
|
);
|
|
});
|
|
|
|
test('getApprovalInfo no approval for user', () => {
|
|
const myAccountInfo = {_account_id: 123};
|
|
const label = {
|
|
values: VALUES_2,
|
|
all: [
|
|
{value: 2, _account_id: 314},
|
|
{value: 1, _account_id: 777},
|
|
],
|
|
};
|
|
assert.isUndefined(getApprovalInfo(label, myAccountInfo));
|
|
});
|
|
});
|