blob: 58fe1893750df4c7fd73aee82adcccb641179b21 [file] [log] [blame]
/**
* @license
* Copyright (C) 2017 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';
import './gr-label-scores';
import {queryAndAssert, stubRestApi} from '../../../test/test-utils';
import {GrLabelScores} from './gr-label-scores';
import {AccountId} from '../../../types/common';
import {GrLabelScoreRow} from '../gr-label-score-row/gr-label-score-row';
import {
createAccountWithId,
createChange,
} from '../../../test/test-data-generators';
const basicFixture = fixtureFromElement('gr-label-scores');
suite('gr-label-scores tests', () => {
const accountId = 123 as AccountId;
let element: GrLabelScores;
setup(async () => {
stubRestApi('getLoggedIn').resolves(false);
element = basicFixture.instantiate();
element.change = {
...createChange(),
labels: {
'Code-Review': {
values: {
'0': 'No score',
'+1': 'good',
'+2': 'excellent',
'-1': 'bad',
'-2': 'terrible',
},
default_value: 0,
value: 1,
all: [
{
_account_id: accountId,
value: 1,
},
],
},
Verified: {
values: {
'0': 'No score',
'+1': 'good',
'+2': 'excellent',
'-1': 'bad',
'-2': 'terrible',
},
default_value: 0,
value: 1,
all: [
{
_account_id: accountId,
value: 1,
},
],
},
},
};
element.account = createAccountWithId(accountId);
element.permittedLabels = {
'Code-Review': ['-2', '-1', ' 0', '+1', '+2'],
Verified: ['-1', ' 0', '+1'],
};
await flush();
});
test('get and set label scores', () => {
for (const label of Object.keys(element.permittedLabels!)) {
const row = queryAndAssert<GrLabelScoreRow>(
element,
'gr-label-score-row[name="' + label + '"]'
);
row.setSelectedValue('-1');
}
assert.deepEqual(element.getLabelValues(), {
'Code-Review': -1,
Verified: -1,
});
});
test('getLabelValues includeDefaults', async () => {
element.change = {
...createChange(),
labels: {
'Code-Review': {
values: {'0': 'meh', '+1': 'good', '-1': 'bad'},
default_value: 0,
},
},
};
await flush();
assert.deepEqual(element.getLabelValues(true), {'Code-Review': 0});
assert.deepEqual(element.getLabelValues(false), {});
});
test('_getVoteForAccount', () => {
const labelName = 'Code-Review';
assert.strictEqual(
element._getVoteForAccount(
element.change!.labels,
labelName,
element.account
),
'+1'
);
});
test('_computeColumns', () => {
element._computeColumns(element.permittedLabels);
assert.deepEqual(element._labelValues, {
'-2': 0,
'-1': 1,
'0': 2,
'1': 3,
'2': 4,
});
});
test('_computeLabelAccessClass undefined case', () => {
assert.strictEqual(
element._computeLabelAccessClass(undefined, undefined),
''
);
assert.strictEqual(element._computeLabelAccessClass('', undefined), '');
assert.strictEqual(element._computeLabelAccessClass(undefined, {}), '');
});
test('_computeLabelAccessClass has access', () => {
assert.strictEqual(
element._computeLabelAccessClass('foo', {foo: ['']}),
'access'
);
});
test('_computeLabelAccessClass no access', () => {
assert.strictEqual(
element._computeLabelAccessClass('zap', {foo: ['']}),
'no-access'
);
});
test('changes in label score are reflected in _labels', () => {
element.change = {
...createChange(),
labels: {
'Code-Review': {
values: {
'0': 'No score',
'+1': 'good',
'+2': 'excellent',
'-1': 'bad',
'-2': 'terrible',
},
default_value: 0,
},
Verified: {
values: {
'0': 'No score',
'+1': 'good',
'+2': 'excellent',
'-1': 'bad',
'-2': 'terrible',
},
default_value: 0,
},
},
};
assert.deepEqual(element._labels, [
{name: 'Code-Review', value: null},
{name: 'Verified', value: null},
]);
element.set(
['change', 'labels', 'Verified', 'all'],
[{_account_id: accountId, value: 1}]
);
assert.deepEqual(element._labels, [
{name: 'Code-Review', value: null},
{name: 'Verified', value: '+1'},
]);
});
});