blob: c7f5a59af61ff9d70d35a9881f3ac43d0b7c1d7b [file] [log] [blame]
<!DOCTYPE html>
<!--
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.
-->
<meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1.0, user-scalable=yes">
<title>gr-label-scores</title>
<script src="../../../bower_components/webcomponentsjs/webcomponents-lite.min.js"></script>
<script src="../../../bower_components/web-component-tester/browser.js"></script>
<link rel="import" href="../../../bower_components/iron-test-helpers/iron-test-helpers.html">
<link rel="import" href="gr-label-scores.html">
<script>void(0);</script>
<test-fixture id="basic">
<template>
<gr-label-scores></gr-label-scores>
</template>
</test-fixture>
<script>
suite('gr-label-scores tests', function() {
var element;
var sandbox;
setup(function(done) {
sandbox = sinon.sandbox.create();
stub('gr-rest-api-interface', {
getLoggedIn: function() { return Promise.resolve(false); },
});
element = fixture('basic');
element.change = {
_number: '123',
labels: {
'Code-Review': {
values: {
'0': 'No score',
'+1': 'good',
'+2': 'excellent',
'-1': 'bad',
'-2': 'terrible',
},
default_value: 0,
value: 1,
all: [{
_account_id: 123,
value: '+1',
}],
},
Verified: {
values: {
'0': 'No score',
'+1': 'good',
'+2': 'excellent',
'-1': 'bad',
'-2': 'terrible',
},
default_value: 0,
value: 1,
all: [{
_account_id: 123,
value: '+1',
}],
},
},
};
element.account = {
_account_id: 123,
};
element.permittedLabels = {
'Code-Review': [
'-2',
'-1',
' 0',
'+1',
'+2',
],
Verified: [
'-1',
' 0',
'+1',
],
};
flush(done);
});
teardown(function() {
sandbox.restore();
});
test('label picker', function() {
for (var label in element.permittedLabels) {
assert.ok(element.$$('iron-selector[data-label="' + label + '"]'),
label);
}
element.draft = 'I wholeheartedly disapprove';
MockInteractions.tap(element.$$(
'iron-selector[data-label="Code-Review"] > ' +
'gr-button[data-value="-1"]'));
MockInteractions.tap(element.$$(
'iron-selector[data-label="Verified"] > ' +
'gr-button[data-value="-1"]'));
flushAsynchronousOperations();
assert.deepEqual(element.getLabelValues(), {
'Code-Review': -1,
Verified: -1,
});
assert.equal(element.$$('iron-selector[data-label="Code-Review"]')
.selected, 1);
assert.equal(element.$$(
'iron-selector[data-label="Verified"] .iron-selected')
.textContent.trim(), '-1');
});
test('correct item is selected', function() {
assert.equal(element.$$('iron-selector[data-label="Code-Review"]')
.selected, 3);
assert.equal(
element.$$('iron-selector[data-label="Code-Review"] .iron-selected')
.textContent.trim(), '+1');
// Even though there there is only a -1 0 +1 displayed, placeholders
// are part of the iron-selector so the selected item (+1) should
// still be in the 4th position / index 3.
assert.equal(element.$$('iron-selector[data-label="Verified"]')
.selected, 3);
assert.equal(element.$$(
'iron-selector[data-label="Verified"] .iron-selected')
.textContent.trim(), '+1');
});
test('do not display tooltips on touch devices', function() {
var verifiedBtn = element.$$(
'iron-selector[data-label="Verified"] > ' +
'gr-button[data-value="-1"]');
// On touch devices, tooltips should not be shown.
verifiedBtn._isTouchDevice = true;
verifiedBtn._handleShowTooltip();
assert.isNotOk(verifiedBtn._tooltip);
verifiedBtn._handleHideTooltip();
assert.isNotOk(verifiedBtn._tooltip);
// On other devices, tooltips should be shown.
verifiedBtn._isTouchDevice = false;
verifiedBtn._handleShowTooltip();
assert.isOk(verifiedBtn._tooltip);
verifiedBtn._handleHideTooltip();
assert.isNotOk(verifiedBtn._tooltip);
});
test('_getVoteForAccount', function() {
var labelName = 'Code-Review';
assert.equal(element._getVoteForAccount(element.change.labels, labelName,
element.account), '+1');
});
test('_computeColumns', function() {
element._computeColumns(element.permittedLabels);
assert.deepEqual(element._labelValues, {
'-2': 0,
'-1': 1,
'0': 2,
'1': 3,
'2': 4,
});
});
test('_computeIndexOfLabelValue', function() {
var labelName = 'Code-Review';
assert.equal(element._computeIndexOfLabelValue(element.change.labels,
element.permittedLabels,
element._labels[0]), 3);
});
test('_computeBlankItems', function() {
element._labelValues = {
'-2': 0,
'-1': 1,
'0': 2,
'1': 3,
'2': 4,
};
assert.equal(element._computeBlankItems(element.permittedLabels,
'Code-Review').length, 0);
assert.deepEqual(
element._computeBlankItems(element.permittedLabels,
'Verified').length, 1);
});
test('changes in label score are reflected in the DOM', function() {
element.change = {
_number: '123',
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,
},
},
};
flushAsynchronousOperations();
var selector = element.$$('iron-selector[data-label="Verified"]');
element.set(['change', 'labels', 'Verified', 'all'],
[{_account_id: 123, value: 1}]);
flushAsynchronousOperations();
assert.equal(selector.selected, 3); // Index 3, value 1
});
test('without permitted labels', function() {
element.permittedLabels = {
Verified: [
'-1',
' 0',
'+1',
],
};
flushAsynchronousOperations();
assert.isOk(element.$$('iron-selector[data-label="Verified"]'));
assert.isFalse(element.$$('iron-selector[data-label="Verified"]').hidden);
assert.isOk(element.$$('iron-selector[data-label="Code-Review"]'));
assert.isTrue(
element.$$('iron-selector[data-label="Code-Review"]').hidden);
});
test('asymetrical labels', function() {
element.permittedLabels = {
'Code-Review': [
'-2',
'-1',
' 0',
'+1',
'+2',
],
Verified: [
' 0',
'+1',
],
};
flushAsynchronousOperations();
assert.equal(element.$$('iron-selector[data-label="Verified"]')
.items.length, 5);
assert.equal(element.$$('iron-selector[data-label="Code-Review"]')
.items.length, 5);
});
});
</script>