blob: 5003a68878a83b78400f4687de6ba61308377f7e [file] [log] [blame]
Andrew Bonventre09c8c242016-02-23 17:28:50 -05001<!DOCTYPE html>
2<!--
3Copyright (C) 2015 The Android Open Source Project
4
5Licensed under the Apache License, Version 2.0 (the "License");
6you may not use this file except in compliance with the License.
7You may obtain a copy of the License at
8
9http://www.apache.org/licenses/LICENSE-2.0
10
11Unless required by applicable law or agreed to in writing, software
12distributed under the License is distributed on an "AS IS" BASIS,
13WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14See the License for the specific language governing permissions and
15limitations under the License.
16-->
17
18<meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1.0, user-scalable=yes">
19<title>gr-change-metadata</title>
20
Viktar Donich29e1ce52017-03-28 17:02:44 -070021<script src="../../../bower_components/webcomponentsjs/webcomponents-lite.min.js"></script>
Andrew Bonventre78792e82016-03-04 17:48:22 -050022<script src="../../../bower_components/web-component-tester/browser.js"></script>
Andrew Bonventre09c8c242016-02-23 17:28:50 -050023
Andrew Bonventre78792e82016-03-04 17:48:22 -050024<link rel="import" href="../../../bower_components/iron-test-helpers/iron-test-helpers.html">
25<link rel="import" href="gr-change-metadata.html">
Andrew Bonventre09c8c242016-02-23 17:28:50 -050026
Viktar Donich29e1ce52017-03-28 17:02:44 -070027<script>void(0);</script>
28
Andrew Bonventre09c8c242016-02-23 17:28:50 -050029<test-fixture id="basic">
30 <template>
31 <gr-change-metadata></gr-change-metadata>
32 </template>
33</test-fixture>
34
35<script>
Kasper Nilsson5514e0b2017-05-16 12:45:21 -070036 suite('gr-change-metadata tests', () => {
37 let element;
38 let sandbox;
Andrew Bonventre09c8c242016-02-23 17:28:50 -050039
Kasper Nilsson5514e0b2017-05-16 12:45:21 -070040 setup(() => {
Becky Siegel1f0ca992017-01-20 15:41:52 -080041 sandbox = sinon.sandbox.create();
Wyatt Allen56237572016-05-31 14:06:03 -070042 stub('gr-rest-api-interface', {
Kasper Nilsson5514e0b2017-05-16 12:45:21 -070043 getConfig() { return Promise.resolve({}); },
44 getLoggedIn() { return Promise.resolve(false); },
Wyatt Allen56237572016-05-31 14:06:03 -070045 });
46
Andrew Bonventre09c8c242016-02-23 17:28:50 -050047 element = fixture('basic');
48 });
49
Kasper Nilsson5514e0b2017-05-16 12:45:21 -070050 teardown(() => {
Becky Siegel1f0ca992017-01-20 15:41:52 -080051 sandbox.restore();
52 });
53
Kasper Nilsson5514e0b2017-05-16 12:45:21 -070054 test('computed fields', () => {
Andrew Bonventre09c8c242016-02-23 17:28:50 -050055 assert.isFalse(element._computeHideStrategy({status: 'NEW'}));
56 assert.isFalse(element._computeHideStrategy({status: 'DRAFT'}));
57 assert.isTrue(element._computeHideStrategy({status: 'MERGED'}));
58 assert.isTrue(element._computeHideStrategy({status: 'ABANDONED'}));
59 assert.equal(element._computeStrategy({submit_type: 'CHERRY_PICK'}),
60 'Cherry Pick');
61 });
62
Kasper Nilsson5514e0b2017-05-16 12:45:21 -070063 test('show strategy for open change', () => {
Urs Wolfercdbba5a2016-02-27 10:47:25 +010064 element.change = {status: 'NEW', submit_type: 'CHERRY_PICK', labels: {}};
65 flushAsynchronousOperations();
Kasper Nilsson5514e0b2017-05-16 12:45:21 -070066 const strategy = element.$$('.strategy');
Urs Wolfercdbba5a2016-02-27 10:47:25 +010067 assert.ok(strategy);
68 assert.isFalse(strategy.hasAttribute('hidden'));
69 assert.equal(strategy.children[1].innerHTML, 'Cherry Pick');
70 });
71
Kasper Nilsson5514e0b2017-05-16 12:45:21 -070072 test('hide strategy for closed change', () => {
Urs Wolfercdbba5a2016-02-27 10:47:25 +010073 element.change = {status: 'MERGED', labels: {}};
74 flushAsynchronousOperations();
75 assert.isTrue(element.$$('.strategy').hasAttribute('hidden'));
76 });
77
Kasper Nilsson5514e0b2017-05-16 12:45:21 -070078 test('show CC section when NoteDb enabled', () => {
Logan Hanksa75fb052016-08-01 13:23:38 -070079 function hasCc() {
80 return element._showReviewersByState;
81 }
82
83 element.serverConfig = {};
84 assert.isFalse(hasCc());
85
86 element.serverConfig = {note_db_enabled: true};
87 assert.isTrue(hasCc());
88 });
Kasper Nilssonf0f57402016-09-28 14:56:06 -070089
Kasper Nilsson5514e0b2017-05-16 12:45:21 -070090 test('computes submit status', () => {
91 let showMissingLabels = false;
92 sandbox.stub(element, '_showMissingLabels', () => {
Logan Hanksdc65dde2017-04-27 11:45:23 +020093 return showMissingLabels;
94 });
95 assert.isFalse(element._showMissingRequirements(null, false));
96 assert.isTrue(element._showMissingRequirements(null, true));
97 showMissingLabels = true;
98 assert.isTrue(element._showMissingRequirements(null, false));
99 });
100
Kasper Nilsson5514e0b2017-05-16 12:45:21 -0700101 test('show missing labels', () => {
102 let labels = {};
Wyatt Allen94323202017-04-13 10:06:14 -0700103 assert.isFalse(element._showMissingLabels(labels));
Andrew Bonventre77fcd282016-10-14 12:05:39 -0700104 labels = {test: {}};
Wyatt Allen94323202017-04-13 10:06:14 -0700105 assert.isTrue(element._showMissingLabels(labels));
106 assert.deepEqual(element._computeMissingLabels(labels), ['test']);
Kasper Nilsson920398542016-10-10 14:03:24 -0700107 labels.test.approved = true;
Wyatt Allen94323202017-04-13 10:06:14 -0700108 assert.isFalse(element._showMissingLabels(labels));
Kasper Nilsson920398542016-10-10 14:03:24 -0700109 labels.test.approved = false;
110 labels.test.optional = true;
Wyatt Allen94323202017-04-13 10:06:14 -0700111 assert.isFalse(element._showMissingLabels(labels));
Kasper Nilsson920398542016-10-10 14:03:24 -0700112 labels.test.optional = false;
113 labels.test2 = {};
Wyatt Allen94323202017-04-13 10:06:14 -0700114 assert.isTrue(element._showMissingLabels(labels));
115 assert.deepEqual(element._computeMissingLabels(labels),
116 ['test', 'test2']);
Kasper Nilsson920398542016-10-10 14:03:24 -0700117 });
118
Kasper Nilsson5514e0b2017-05-16 12:45:21 -0700119 test('weblinks hidden when no weblinks', () => {
Becky Siegel896a03f2017-01-19 10:49:00 -0800120 element.commitInfo = {};
121 flushAsynchronousOperations();
Kasper Nilsson5514e0b2017-05-16 12:45:21 -0700122 const webLinks = element.$.webLinks;
Becky Siegel896a03f2017-01-19 10:49:00 -0800123 assert.isTrue(webLinks.hasAttribute('hidden'));
124 });
125
Kasper Nilsson5514e0b2017-05-16 12:45:21 -0700126 test('weblinks hidden when only gitiles weblink', () => {
Becky Siegel896a03f2017-01-19 10:49:00 -0800127 element.commitInfo = {web_links: [{name: 'gitiles', url: '#'}]};
128 flushAsynchronousOperations();
Kasper Nilsson5514e0b2017-05-16 12:45:21 -0700129 const webLinks = element.$.webLinks;
Becky Siegel896a03f2017-01-19 10:49:00 -0800130 assert.isTrue(webLinks.hasAttribute('hidden'));
131 assert.equal(element._computeWebLinks(element.commitInfo), null);
132 });
133
Kasper Nilsson5514e0b2017-05-16 12:45:21 -0700134 test('weblinks are visible when other weblinks', () => {
Becky Siegel896a03f2017-01-19 10:49:00 -0800135 element.commitInfo = {web_links: [{name: 'test', url: '#'}]};
136 flushAsynchronousOperations();
Kasper Nilsson5514e0b2017-05-16 12:45:21 -0700137 const webLinks = element.$.webLinks;
Becky Siegel896a03f2017-01-19 10:49:00 -0800138 assert.isFalse(webLinks.hasAttribute('hidden'));
139 assert.equal(element._computeWebLinks(element.commitInfo).length, 1);
140 // With two non-gitiles weblinks, there are two returned.
141 element.commitInfo = {
142 web_links: [{name: 'test', url: '#'}, {name: 'test2', url: '#'}]};
143 assert.equal(element._computeWebLinks(element.commitInfo).length, 2);
144 });
145
Kasper Nilsson5514e0b2017-05-16 12:45:21 -0700146 test('weblinks are visible when gitiles and other weblinks', () => {
Becky Siegel896a03f2017-01-19 10:49:00 -0800147 element.commitInfo = {
148 web_links: [{name: 'test', url: '#'}, {name: 'gitiles', url: '#'}]};
149 flushAsynchronousOperations();
Kasper Nilsson5514e0b2017-05-16 12:45:21 -0700150 const webLinks = element.$.webLinks;
Becky Siegel896a03f2017-01-19 10:49:00 -0800151 assert.isFalse(webLinks.hasAttribute('hidden'));
152 // Only the non-gitiles weblink is returned.
153 assert.equal(element._computeWebLinks(element.commitInfo).length, 1);
154 });
155
Kasper Nilsson5514e0b2017-05-16 12:45:21 -0700156 test('determines whether to show "Ready to Submit" label', () => {
157 const showMissingSpy = sandbox.spy(element, '_showMissingRequirements');
Wyatt Allen5b941612017-05-12 09:50:48 -0700158 element.change = {status: 'NEW', submit_type: 'CHERRY_PICK', labels: {
159 test: {
160 all: [{_account_id: 1, name: 'bojack', value: 1}],
161 default_value: 0,
162 values: [],
163 },
164 }};
165 flushAsynchronousOperations();
166 assert.isTrue(showMissingSpy.called);
167 });
168
Kasper Nilsson5514e0b2017-05-16 12:45:21 -0700169 suite('Topic removal', () => {
170 let change;
171 setup(() => {
Becky Siegel1f0ca992017-01-20 15:41:52 -0800172 change = {
173 _number: 'the number',
174 actions: {
175 topic: {enabled: false},
176 },
177 change_id: 'the id',
178 topic: 'the topic',
179 status: 'NEW',
180 submit_type: 'CHERRY_PICK',
181 labels: {
182 test: {
183 all: [{_account_id: 1, name: 'bojack', value: 1}],
184 default_value: 0,
185 values: [],
186 },
187 },
188 removable_reviewers: [],
189 };
190 });
191
Kasper Nilsson5514e0b2017-05-16 12:45:21 -0700192 test('_computeTopicReadOnly', () => {
193 let mutable = false;
Becky Siegel1f0ca992017-01-20 15:41:52 -0800194 assert.isTrue(element._computeTopicReadOnly(mutable, change));
195 mutable = true;
196 assert.isTrue(element._computeTopicReadOnly(mutable, change));
197 change.actions.topic.enabled = true;
198 assert.isFalse(element._computeTopicReadOnly(mutable, change));
199 mutable = false;
200 assert.isTrue(element._computeTopicReadOnly(mutable, change));
201 });
202
Kasper Nilsson5514e0b2017-05-16 12:45:21 -0700203 test('topic read only hides delete button', () => {
Becky Siegel1f0ca992017-01-20 15:41:52 -0800204 element.mutable = false;
205 element.change = change;
206 flushAsynchronousOperations();
Kasper Nilsson5514e0b2017-05-16 12:45:21 -0700207 const button = element.$$('gr-linked-chip').$$('gr-button');
Becky Siegel1f0ca992017-01-20 15:41:52 -0800208 assert.isTrue(button.hasAttribute('hidden'));
209 });
210
Kasper Nilsson5514e0b2017-05-16 12:45:21 -0700211 test('topic not read only does not hide delete button', () => {
Becky Siegel1f0ca992017-01-20 15:41:52 -0800212 element.mutable = true;
213 change.actions.topic.enabled = true;
214 element.change = change;
215 flushAsynchronousOperations();
Kasper Nilsson5514e0b2017-05-16 12:45:21 -0700216 const button = element.$$('gr-linked-chip').$$('gr-button');
Becky Siegel1f0ca992017-01-20 15:41:52 -0800217 assert.isFalse(button.hasAttribute('hidden'));
218 });
219 });
220
Kasper Nilsson5514e0b2017-05-16 12:45:21 -0700221 suite('remove reviewer votes', () => {
222 setup(() => {
Kasper Nilssonf0f57402016-09-28 14:56:06 -0700223 sandbox.stub(element, '_computeValueTooltip').returns('');
224 sandbox.stub(element, '_computeTopicReadOnly').returns(true);
225 element.change = {
Becky Siegel53d75092017-01-13 14:50:13 -0800226 _number: 'the number',
Wyatt Allen2f2a3a52016-10-10 14:04:20 -0700227 change_id: 'the id',
Kasper Nilsson486b0aa2017-04-12 12:52:00 -0700228 actions: [],
Wyatt Allen2f2a3a52016-10-10 14:04:20 -0700229 topic: 'the topic',
Kasper Nilssonf0f57402016-09-28 14:56:06 -0700230 status: 'NEW',
231 submit_type: 'CHERRY_PICK',
232 labels: {
233 test: {
234 all: [{_account_id: 1, name: 'bojack', value: 1}],
235 default_value: 0,
Andrew Bonventred9acaab2016-10-14 12:17:25 -0700236 values: [],
Kasper Nilssonf0f57402016-09-28 14:56:06 -0700237 },
238 },
239 removable_reviewers: [],
240 };
241 });
242
Kasper Nilsson5514e0b2017-05-16 12:45:21 -0700243 test('_computeCanDeleteVote hides delete button', () => {
Kasper Nilssonf0f57402016-09-28 14:56:06 -0700244 flushAsynchronousOperations();
Kasper Nilsson5514e0b2017-05-16 12:45:21 -0700245 const button = element.$$('gr-account-chip').$$('gr-button');
Kasper Nilssonf0f57402016-09-28 14:56:06 -0700246 assert.isTrue(button.hasAttribute('hidden'));
247 element.mutable = true;
248 assert.isTrue(button.hasAttribute('hidden'));
249 });
250
Kasper Nilsson5514e0b2017-05-16 12:45:21 -0700251 test('_computeCanDeleteVote shows delete button', () => {
Kasper Nilssonf0f57402016-09-28 14:56:06 -0700252 element.change.removable_reviewers = [
253 {
254 _account_id: 1,
255 name: 'bojack',
Kasper Nilsson5514e0b2017-05-16 12:45:21 -0700256 },
Kasper Nilssonf0f57402016-09-28 14:56:06 -0700257 ];
258 element.mutable = true;
259 flushAsynchronousOperations();
Kasper Nilsson5514e0b2017-05-16 12:45:21 -0700260 const button = element.$$('gr-account-chip').$$('gr-button');
Kasper Nilssonf0f57402016-09-28 14:56:06 -0700261 assert.isFalse(button.hasAttribute('hidden'));
262 });
263
Kasper Nilsson5514e0b2017-05-16 12:45:21 -0700264 test('deletes votes', done => {
Kasper Nilssonf0f57402016-09-28 14:56:06 -0700265 sandbox.stub(element.$.restAPI, 'deleteVote')
Kasper Nilsson5514e0b2017-05-16 12:45:21 -0700266 .returns(Promise.resolve({ok: true}));
267 const spliceStub = sandbox.stub(element, 'splice', (path, index,
268 length) => {
269 assert.deepEqual(path, ['change.labels', 'test', 'all']);
270 assert.equal(index, 0);
271 assert.equal(length, 1);
272 assert.notOk(element.change.labels.test.recommended);
273 spliceStub.restore();
274 done();
275 });
Kasper Nilssonf0f57402016-09-28 14:56:06 -0700276 element.change.removable_reviewers = [
277 {
278 _account_id: 1,
279 name: 'bojack',
Kasper Nilsson7cc56f82017-04-19 18:05:38 -0700280 },
Kasper Nilssonf0f57402016-09-28 14:56:06 -0700281 ];
Kasper Nilsson7cc56f82017-04-19 18:05:38 -0700282 element.change.labels.test.recommended = {_account_id: 1};
Kasper Nilssonf0f57402016-09-28 14:56:06 -0700283 element.mutable = true;
284 flushAsynchronousOperations();
Kasper Nilsson5514e0b2017-05-16 12:45:21 -0700285 const button = element.$$('gr-account-chip').$$('gr-button');
Kasper Nilssonf0f57402016-09-28 14:56:06 -0700286 MockInteractions.tap(button);
Kasper Nilssonf0f57402016-09-28 14:56:06 -0700287 });
Wyatt Allen2f2a3a52016-10-10 14:04:20 -0700288
Kasper Nilsson5514e0b2017-05-16 12:45:21 -0700289 test('changing topic calls setChangeTopic', () => {
290 const topicStub = sandbox.stub(element.$.restAPI, 'setChangeTopic',
291 () => {});
Wyatt Allen2f2a3a52016-10-10 14:04:20 -0700292 element._handleTopicChanged({}, 'the new topic');
Becky Siegel53d75092017-01-13 14:50:13 -0800293 assert.isTrue(topicStub.calledWith('the number', 'the new topic'));
Wyatt Allen2f2a3a52016-10-10 14:04:20 -0700294 });
Kasper Nilsson42b1af42016-11-18 13:49:05 -0800295
Kasper Nilsson5514e0b2017-05-16 12:45:21 -0700296 test('topic href has quotes', () => {
297 const hrefArr = element._computeTopicURL('test')
Kasper Nilsson08d0be52017-02-22 10:57:46 -0800298 .split('%2522'); // Double-escaped quote.
299 assert.equal(hrefArr[1], 'test');
300 });
301
Kasper Nilsson5514e0b2017-05-16 12:45:21 -0700302 test('clicking x on topic chip removes topic', () => {
303 const topicStub = sandbox.stub(element.$.restAPI, 'setChangeTopic');
Kasper Nilsson42b1af42016-11-18 13:49:05 -0800304 flushAsynchronousOperations();
Kasper Nilsson5514e0b2017-05-16 12:45:21 -0700305 const remove = element.$$('gr-linked-chip').$.remove;
Kasper Nilsson42b1af42016-11-18 13:49:05 -0800306 MockInteractions.tap(remove);
307 assert.equal(element.change.topic, '');
Kasper Nilsson6ebeaac2016-12-02 11:16:36 -0800308 assert.isTrue(topicStub.called);
Kasper Nilsson42b1af42016-11-18 13:49:05 -0800309 });
Kasper Nilsson9bbd47c2017-01-09 10:14:36 -0800310
Kasper Nilsson5514e0b2017-05-16 12:45:21 -0700311 suite('assignee field', () => {
312 const dummyAccount = {
Kasper Nilsson9bbd47c2017-01-09 10:14:36 -0800313 _account_id: 1,
314 name: 'bojack',
315 };
Kasper Nilsson5514e0b2017-05-16 12:45:21 -0700316 const change = {
Kasper Nilsson486b0aa2017-04-12 12:52:00 -0700317 actions: {
318 assignee: {enabled: false},
319 },
320 assignee: dummyAccount,
321 };
Kasper Nilsson5514e0b2017-05-16 12:45:21 -0700322 let deleteStub;
323 let setStub;
Kasper Nilsson486b0aa2017-04-12 12:52:00 -0700324
Kasper Nilsson5514e0b2017-05-16 12:45:21 -0700325 setup(() => {
Kasper Nilsson9bbd47c2017-01-09 10:14:36 -0800326 deleteStub = sandbox.stub(element.$.restAPI, 'deleteAssignee');
327 setStub = sandbox.stub(element.$.restAPI, 'setAssignee');
328 });
329
Kasper Nilsson5514e0b2017-05-16 12:45:21 -0700330 test('changing change recomputes _assignee', () => {
Kasper Nilsson9bbd47c2017-01-09 10:14:36 -0800331 assert.isFalse(!!element._assignee.length);
Kasper Nilsson5514e0b2017-05-16 12:45:21 -0700332 const change = element.change;
Kasper Nilsson9bbd47c2017-01-09 10:14:36 -0800333 change.assignee = dummyAccount;
334 element._changeChanged(change);
335 assert.deepEqual(element._assignee[0], dummyAccount);
336 });
337
Kasper Nilsson5514e0b2017-05-16 12:45:21 -0700338 test('modifying _assignee calls API', () => {
Kasper Nilsson9bbd47c2017-01-09 10:14:36 -0800339 assert.isFalse(!!element._assignee.length);
340 element.set('_assignee', [dummyAccount]);
341 assert.isTrue(setStub.calledOnce);
342 assert.deepEqual(element.change.assignee, dummyAccount);
343 element.set('_assignee', [dummyAccount]);
344 assert.isTrue(setStub.calledOnce);
345 element.set('_assignee', []);
346 assert.isTrue(deleteStub.calledOnce);
347 assert.equal(element.change.assignee, undefined);
348 element.set('_assignee', []);
349 assert.isTrue(deleteStub.calledOnce);
350 });
Kasper Nilsson486b0aa2017-04-12 12:52:00 -0700351
Kasper Nilsson5514e0b2017-05-16 12:45:21 -0700352 test('_computeAssigneeReadOnly', () => {
353 let mutable = false;
Kasper Nilsson486b0aa2017-04-12 12:52:00 -0700354 assert.isTrue(element._computeAssigneeReadOnly(mutable, change));
355 mutable = true;
356 assert.isTrue(element._computeAssigneeReadOnly(mutable, change));
357 change.actions.assignee.enabled = true;
358 assert.isFalse(element._computeAssigneeReadOnly(mutable, change));
359 mutable = false;
360 assert.isTrue(element._computeAssigneeReadOnly(mutable, change));
361 });
Kasper Nilsson9bbd47c2017-01-09 10:14:36 -0800362 });
Kasper Nilssonf0f57402016-09-28 14:56:06 -0700363 });
Andrew Bonventre09c8c242016-02-23 17:28:50 -0500364 });
365</script>