2017-02-03 04:58:45 -05:00
|
|
|
|
/* eslint no-param-reassign: "off" */
|
|
|
|
|
|
2018-03-09 15:18:59 -05:00
|
|
|
|
import $ from 'jquery';
|
2019-04-23 15:18:07 -04:00
|
|
|
|
import GfmAutoComplete from 'ee_else_ce/gfm_auto_complete';
|
2017-05-16 14:42:06 -04:00
|
|
|
|
|
2019-03-13 10:02:19 -04:00
|
|
|
|
import 'jquery.caret';
|
|
|
|
|
import 'at.js';
|
2017-01-18 07:17:24 -05:00
|
|
|
|
|
2019-02-27 04:22:04 -05:00
|
|
|
|
import { TEST_HOST } from 'helpers/test_constants';
|
2019-03-11 09:47:36 -04:00
|
|
|
|
import { getJSONFixture } from 'helpers/fixtures';
|
2019-02-27 04:22:04 -05:00
|
|
|
|
|
2019-03-11 09:47:36 -04:00
|
|
|
|
const labelsFixture = getJSONFixture('autocomplete_sources/labels.json');
|
|
|
|
|
|
2019-02-21 08:26:27 -05:00
|
|
|
|
describe('GfmAutoComplete', () => {
|
2017-05-16 14:42:06 -04:00
|
|
|
|
const gfmAutoCompleteCallbacks = GfmAutoComplete.prototype.getDefaultCallbacks.call({
|
|
|
|
|
fetchData: () => {},
|
|
|
|
|
});
|
|
|
|
|
|
2019-02-21 08:26:27 -05:00
|
|
|
|
let atwhoInstance;
|
|
|
|
|
let sorterValue;
|
2017-01-18 07:17:24 -05:00
|
|
|
|
|
2019-02-21 08:26:27 -05:00
|
|
|
|
describe('DefaultOptions.sorter', () => {
|
|
|
|
|
describe('assets loading', () => {
|
2019-02-27 04:22:04 -05:00
|
|
|
|
let items;
|
|
|
|
|
|
2019-02-21 08:26:27 -05:00
|
|
|
|
beforeEach(() => {
|
|
|
|
|
jest.spyOn(GfmAutoComplete, 'isLoading').mockReturnValue(true);
|
2017-01-18 07:17:24 -05:00
|
|
|
|
|
2019-02-21 08:26:27 -05:00
|
|
|
|
atwhoInstance = { setting: {} };
|
|
|
|
|
items = [];
|
|
|
|
|
|
|
|
|
|
sorterValue = gfmAutoCompleteCallbacks.sorter.call(atwhoInstance, '', items);
|
2017-01-18 07:17:24 -05:00
|
|
|
|
});
|
|
|
|
|
|
2019-02-21 08:26:27 -05:00
|
|
|
|
it('should disable highlightFirst', () => {
|
|
|
|
|
expect(atwhoInstance.setting.highlightFirst).toBe(false);
|
2017-01-18 07:17:24 -05:00
|
|
|
|
});
|
|
|
|
|
|
2019-02-21 08:26:27 -05:00
|
|
|
|
it('should return the passed unfiltered items', () => {
|
|
|
|
|
expect(sorterValue).toEqual(items);
|
2017-01-18 07:17:24 -05:00
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
2019-02-21 08:26:27 -05:00
|
|
|
|
describe('assets finished loading', () => {
|
|
|
|
|
beforeEach(() => {
|
|
|
|
|
jest.spyOn(GfmAutoComplete, 'isLoading').mockReturnValue(false);
|
|
|
|
|
jest.spyOn($.fn.atwho.default.callbacks, 'sorter').mockImplementation(() => {});
|
2017-01-18 07:17:24 -05:00
|
|
|
|
});
|
|
|
|
|
|
2019-02-21 08:26:27 -05:00
|
|
|
|
it('should enable highlightFirst if alwaysHighlightFirst is set', () => {
|
|
|
|
|
atwhoInstance = { setting: { alwaysHighlightFirst: true } };
|
2017-01-18 07:17:24 -05:00
|
|
|
|
|
2017-05-16 14:42:06 -04:00
|
|
|
|
gfmAutoCompleteCallbacks.sorter.call(atwhoInstance);
|
2017-01-18 07:17:24 -05:00
|
|
|
|
|
|
|
|
|
expect(atwhoInstance.setting.highlightFirst).toBe(true);
|
|
|
|
|
});
|
|
|
|
|
|
2019-02-21 08:26:27 -05:00
|
|
|
|
it('should enable highlightFirst if a query is present', () => {
|
|
|
|
|
atwhoInstance = { setting: {} };
|
2017-01-18 07:17:24 -05:00
|
|
|
|
|
2017-05-16 14:42:06 -04:00
|
|
|
|
gfmAutoCompleteCallbacks.sorter.call(atwhoInstance, 'query');
|
2017-01-18 07:17:24 -05:00
|
|
|
|
|
|
|
|
|
expect(atwhoInstance.setting.highlightFirst).toBe(true);
|
|
|
|
|
});
|
|
|
|
|
|
2019-02-21 08:26:27 -05:00
|
|
|
|
it('should call the default atwho sorter', () => {
|
|
|
|
|
atwhoInstance = { setting: {} };
|
2017-01-18 07:17:24 -05:00
|
|
|
|
|
|
|
|
|
const query = 'query';
|
2019-02-27 04:22:04 -05:00
|
|
|
|
const items = [];
|
2017-01-18 07:17:24 -05:00
|
|
|
|
const searchKey = 'searchKey';
|
|
|
|
|
|
2017-05-16 14:42:06 -04:00
|
|
|
|
gfmAutoCompleteCallbacks.sorter.call(atwhoInstance, query, items, searchKey);
|
2017-01-18 07:17:24 -05:00
|
|
|
|
|
|
|
|
|
expect($.fn.atwho.default.callbacks.sorter).toHaveBeenCalledWith(query, items, searchKey);
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
});
|
2017-01-20 12:38:06 -05:00
|
|
|
|
|
2017-11-13 09:30:22 -05:00
|
|
|
|
describe('DefaultOptions.beforeInsert', () => {
|
2018-10-17 03:13:26 -04:00
|
|
|
|
const beforeInsert = (context, value) =>
|
|
|
|
|
gfmAutoCompleteCallbacks.beforeInsert.call(context, value);
|
2017-11-13 09:30:22 -05:00
|
|
|
|
|
2019-02-21 08:26:27 -05:00
|
|
|
|
beforeEach(() => {
|
|
|
|
|
atwhoInstance = { setting: { skipSpecialCharacterTest: false } };
|
|
|
|
|
});
|
2017-11-13 09:30:22 -05:00
|
|
|
|
|
|
|
|
|
it('should not quote if value only contains alphanumeric charecters', () => {
|
|
|
|
|
expect(beforeInsert(atwhoInstance, '@user1')).toBe('@user1');
|
|
|
|
|
expect(beforeInsert(atwhoInstance, '~label1')).toBe('~label1');
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('should quote if value contains any non-alphanumeric characters', () => {
|
Only use backslash escapes in autocomplete when needed
Autocompletion for references happens on the frontend. Those references
are turned into actual references on the backend, but only after
Markdown processing has happened. That means that if a reference
contains a character that Markdown might consume, it won't render
correctly. So we need to do some escaping on the frontend.
We have these potential problem characters:
https://docs.gitlab.com/ee/user/markdown.html#emphasis
1. ~ - this is ~~strikethrough~~, but only when doubled.
2. _ - used for _emphasis_, doubled is __bold__.
3. * - also used for *emphasis*, doubled is **bold** also.
4. ` - used for `code spans`, any number works.
We don't need to escape `-` any more. When it comes to being inside a
word:
1. a~~b~~ has strikethrough, so it needs to be escaped everywhere.
2. a_b_ has no emphasis (see [a]) so it only needs to be escaped at the
start and end of words.
3. a*b* has emphasis, so it needs to be escaped everywhere.
4. a`b` has a code span, so it needs to be escaped everywhere.
Or, in code terms:
1. Always escape ~~, *, and ` when being inserted by autocomplete.
2. Escape _ when it's either at the beginning or the end of a word.
[a]: https://docs.gitlab.com/ee/user/markdown.html#multiple-underscores-in-words
2019-04-17 07:52:25 -04:00
|
|
|
|
expect(beforeInsert(atwhoInstance, '~label-20')).toBe('~"label-20"');
|
2017-11-13 09:30:22 -05:00
|
|
|
|
expect(beforeInsert(atwhoInstance, '~label 20')).toBe('~"label 20"');
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('should quote integer labels', () => {
|
|
|
|
|
expect(beforeInsert(atwhoInstance, '~1234')).toBe('~"1234"');
|
|
|
|
|
});
|
2018-03-28 10:45:16 -04:00
|
|
|
|
|
Only use backslash escapes in autocomplete when needed
Autocompletion for references happens on the frontend. Those references
are turned into actual references on the backend, but only after
Markdown processing has happened. That means that if a reference
contains a character that Markdown might consume, it won't render
correctly. So we need to do some escaping on the frontend.
We have these potential problem characters:
https://docs.gitlab.com/ee/user/markdown.html#emphasis
1. ~ - this is ~~strikethrough~~, but only when doubled.
2. _ - used for _emphasis_, doubled is __bold__.
3. * - also used for *emphasis*, doubled is **bold** also.
4. ` - used for `code spans`, any number works.
We don't need to escape `-` any more. When it comes to being inside a
word:
1. a~~b~~ has strikethrough, so it needs to be escaped everywhere.
2. a_b_ has no emphasis (see [a]) so it only needs to be escaped at the
start and end of words.
3. a*b* has emphasis, so it needs to be escaped everywhere.
4. a`b` has a code span, so it needs to be escaped everywhere.
Or, in code terms:
1. Always escape ~~, *, and ` when being inserted by autocomplete.
2. Escape _ when it's either at the beginning or the end of a word.
[a]: https://docs.gitlab.com/ee/user/markdown.html#multiple-underscores-in-words
2019-04-17 07:52:25 -04:00
|
|
|
|
it('escapes Markdown strikethroughs when needed', () => {
|
|
|
|
|
expect(beforeInsert(atwhoInstance, '~a~bug')).toEqual('~"a~bug"');
|
|
|
|
|
expect(beforeInsert(atwhoInstance, '~a~~bug~~')).toEqual('~"a\\~~bug\\~~"');
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('escapes Markdown emphasis when needed', () => {
|
|
|
|
|
expect(beforeInsert(atwhoInstance, '~a_bug_')).toEqual('~a_bug\\_');
|
|
|
|
|
expect(beforeInsert(atwhoInstance, '~a _bug_')).toEqual('~"a \\_bug\\_"');
|
|
|
|
|
expect(beforeInsert(atwhoInstance, '~a*bug*')).toEqual('~"a\\*bug\\*"');
|
|
|
|
|
expect(beforeInsert(atwhoInstance, '~a *bug*')).toEqual('~"a \\*bug\\*"');
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('escapes Markdown code spans when needed', () => {
|
|
|
|
|
expect(beforeInsert(atwhoInstance, '~a`bug`')).toEqual('~"a\\`bug\\`"');
|
2018-03-28 10:45:16 -04:00
|
|
|
|
expect(beforeInsert(atwhoInstance, '~a `bug`')).toEqual('~"a \\`bug\\`"');
|
|
|
|
|
});
|
2017-11-13 09:30:22 -05:00
|
|
|
|
});
|
|
|
|
|
|
2019-02-21 08:26:27 -05:00
|
|
|
|
describe('DefaultOptions.matcher', () => {
|
2018-10-17 03:13:26 -04:00
|
|
|
|
const defaultMatcher = (context, flag, subtext) =>
|
|
|
|
|
gfmAutoCompleteCallbacks.matcher.call(context, flag, subtext);
|
2017-02-03 04:58:45 -05:00
|
|
|
|
|
2018-10-05 05:42:38 -04:00
|
|
|
|
const flagsUseDefaultMatcher = ['@', '#', '!', '~', '%', '$'];
|
2017-02-03 04:58:45 -05:00
|
|
|
|
const otherFlags = ['/', ':'];
|
|
|
|
|
const flags = flagsUseDefaultMatcher.concat(otherFlags);
|
|
|
|
|
|
2018-10-17 03:13:26 -04:00
|
|
|
|
const flagsHash = flags.reduce((hash, el) => {
|
|
|
|
|
hash[el] = null;
|
|
|
|
|
return hash;
|
|
|
|
|
}, {});
|
2019-02-21 08:26:27 -05:00
|
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
|
atwhoInstance = { setting: {}, app: { controllers: flagsHash } };
|
|
|
|
|
});
|
2017-02-03 04:58:45 -05:00
|
|
|
|
|
|
|
|
|
const minLen = 1;
|
|
|
|
|
const maxLen = 20;
|
|
|
|
|
const argumentSize = [minLen, maxLen / 2, maxLen];
|
|
|
|
|
|
2018-10-17 03:13:26 -04:00
|
|
|
|
const allowedSymbols = [
|
|
|
|
|
'',
|
|
|
|
|
'a',
|
|
|
|
|
'n',
|
|
|
|
|
'z',
|
|
|
|
|
'A',
|
|
|
|
|
'Z',
|
|
|
|
|
'N',
|
|
|
|
|
'0',
|
|
|
|
|
'5',
|
|
|
|
|
'9',
|
|
|
|
|
'А',
|
|
|
|
|
'а',
|
|
|
|
|
'Я',
|
|
|
|
|
'я',
|
|
|
|
|
'.',
|
|
|
|
|
"'",
|
|
|
|
|
'+',
|
|
|
|
|
'-',
|
|
|
|
|
'_',
|
|
|
|
|
];
|
2017-02-03 04:58:45 -05:00
|
|
|
|
const jointAllowedSymbols = allowedSymbols.join('');
|
|
|
|
|
|
|
|
|
|
describe('should match regular symbols', () => {
|
2018-10-17 03:13:26 -04:00
|
|
|
|
flagsUseDefaultMatcher.forEach(flag => {
|
|
|
|
|
allowedSymbols.forEach(symbol => {
|
|
|
|
|
argumentSize.forEach(size => {
|
2017-02-03 04:58:45 -05:00
|
|
|
|
const query = new Array(size + 1).join(symbol);
|
|
|
|
|
const subtext = flag + query;
|
|
|
|
|
|
|
|
|
|
it(`matches argument "${flag}" with query "${subtext}"`, () => {
|
|
|
|
|
expect(defaultMatcher(atwhoInstance, flag, subtext)).toBe(query);
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it(`matches combination of allowed symbols for flag "${flag}"`, () => {
|
|
|
|
|
const subtext = flag + jointAllowedSymbols;
|
|
|
|
|
|
|
|
|
|
expect(defaultMatcher(atwhoInstance, flag, subtext)).toBe(jointAllowedSymbols);
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
describe('should not match special sequences', () => {
|
2018-02-01 05:35:03 -05:00
|
|
|
|
const shouldNotBeFollowedBy = flags.concat(['\x00', '\x10', '\x3f', '\n', ' ']);
|
|
|
|
|
const shouldNotBePrependedBy = ['`'];
|
2017-02-03 04:58:45 -05:00
|
|
|
|
|
2018-10-17 03:13:26 -04:00
|
|
|
|
flagsUseDefaultMatcher.forEach(atSign => {
|
|
|
|
|
shouldNotBeFollowedBy.forEach(followedSymbol => {
|
2017-02-03 04:58:45 -05:00
|
|
|
|
const seq = atSign + followedSymbol;
|
2017-12-20 06:39:40 -05:00
|
|
|
|
|
2018-09-11 17:03:05 -04:00
|
|
|
|
it(`should not match ${JSON.stringify(seq)}`, () => {
|
2017-12-20 06:39:40 -05:00
|
|
|
|
expect(defaultMatcher(atwhoInstance, atSign, seq)).toBe(null);
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
2018-10-17 03:13:26 -04:00
|
|
|
|
shouldNotBePrependedBy.forEach(prependedSymbol => {
|
2017-12-20 06:39:40 -05:00
|
|
|
|
const seq = prependedSymbol + atSign;
|
2017-02-03 04:58:45 -05:00
|
|
|
|
|
|
|
|
|
it(`should not match "${seq}"`, () => {
|
|
|
|
|
expect(defaultMatcher(atwhoInstance, atSign, seq)).toBe(null);
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
2019-04-25 04:11:20 -04:00
|
|
|
|
describe('DefaultOptions.highlighter', () => {
|
|
|
|
|
beforeEach(() => {
|
|
|
|
|
atwhoInstance = { setting: {} };
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('should return li if no query is given', () => {
|
|
|
|
|
const liTag = '<li></li>';
|
|
|
|
|
|
|
|
|
|
const highlightedTag = gfmAutoCompleteCallbacks.highlighter.call(atwhoInstance, liTag);
|
|
|
|
|
|
|
|
|
|
expect(highlightedTag).toEqual(liTag);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('should highlight search query in li element', () => {
|
|
|
|
|
const liTag = '<li><img src="" />string</li>';
|
|
|
|
|
const query = 's';
|
|
|
|
|
|
|
|
|
|
const highlightedTag = gfmAutoCompleteCallbacks.highlighter.call(atwhoInstance, liTag, query);
|
|
|
|
|
|
|
|
|
|
expect(highlightedTag).toEqual('<li><img src="" /> <strong>s</strong>tring </li>');
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('should highlight search query with special char in li element', () => {
|
|
|
|
|
const liTag = '<li><img src="" />te.st</li>';
|
|
|
|
|
const query = '.';
|
|
|
|
|
|
|
|
|
|
const highlightedTag = gfmAutoCompleteCallbacks.highlighter.call(atwhoInstance, liTag, query);
|
|
|
|
|
|
|
|
|
|
expect(highlightedTag).toEqual('<li><img src="" /> te<strong>.</strong>st </li>');
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
2019-02-21 08:26:27 -05:00
|
|
|
|
describe('isLoading', () => {
|
|
|
|
|
it('should be true with loading data object item', () => {
|
2017-01-20 12:38:06 -05:00
|
|
|
|
expect(GfmAutoComplete.isLoading({ name: 'loading' })).toBe(true);
|
|
|
|
|
});
|
|
|
|
|
|
2019-02-21 08:26:27 -05:00
|
|
|
|
it('should be true with loading data array', () => {
|
2017-01-20 12:38:06 -05:00
|
|
|
|
expect(GfmAutoComplete.isLoading(['loading'])).toBe(true);
|
|
|
|
|
});
|
|
|
|
|
|
2019-02-21 08:26:27 -05:00
|
|
|
|
it('should be true with loading data object array', () => {
|
2017-01-20 12:38:06 -05:00
|
|
|
|
expect(GfmAutoComplete.isLoading([{ name: 'loading' }])).toBe(true);
|
|
|
|
|
});
|
|
|
|
|
|
2019-02-21 08:26:27 -05:00
|
|
|
|
it('should be false with actual array data', () => {
|
2018-10-17 03:13:26 -04:00
|
|
|
|
expect(
|
|
|
|
|
GfmAutoComplete.isLoading([{ title: 'Foo' }, { title: 'Bar' }, { title: 'Qux' }]),
|
|
|
|
|
).toBe(false);
|
2017-01-20 12:38:06 -05:00
|
|
|
|
});
|
|
|
|
|
|
2019-02-21 08:26:27 -05:00
|
|
|
|
it('should be false with actual data item', () => {
|
2017-01-20 12:38:06 -05:00
|
|
|
|
expect(GfmAutoComplete.isLoading({ title: 'Foo' })).toBe(false);
|
|
|
|
|
});
|
|
|
|
|
});
|
2018-12-21 03:49:44 -05:00
|
|
|
|
|
2019-02-21 08:26:27 -05:00
|
|
|
|
describe('Issues.insertTemplateFunction', () => {
|
|
|
|
|
it('should return default template', () => {
|
2018-12-21 03:49:44 -05:00
|
|
|
|
expect(GfmAutoComplete.Issues.insertTemplateFunction({ id: 5, title: 'Some Issue' })).toBe(
|
|
|
|
|
'${atwho-at}${id}', // eslint-disable-line no-template-curly-in-string
|
|
|
|
|
);
|
|
|
|
|
});
|
|
|
|
|
|
2019-02-21 08:26:27 -05:00
|
|
|
|
it('should return reference when reference is set', () => {
|
2018-12-21 03:49:44 -05:00
|
|
|
|
expect(
|
|
|
|
|
GfmAutoComplete.Issues.insertTemplateFunction({
|
|
|
|
|
id: 5,
|
|
|
|
|
title: 'Some Issue',
|
|
|
|
|
reference: 'grp/proj#5',
|
|
|
|
|
}),
|
|
|
|
|
).toBe('grp/proj#5');
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
2019-02-21 08:26:27 -05:00
|
|
|
|
describe('Issues.templateFunction', () => {
|
|
|
|
|
it('should return html with id and title', () => {
|
2018-12-21 03:49:44 -05:00
|
|
|
|
expect(GfmAutoComplete.Issues.templateFunction({ id: 5, title: 'Some Issue' })).toBe(
|
|
|
|
|
'<li><small>5</small> Some Issue</li>',
|
|
|
|
|
);
|
|
|
|
|
});
|
|
|
|
|
|
2019-02-21 08:26:27 -05:00
|
|
|
|
it('should replace id with reference if reference is set', () => {
|
2018-12-21 03:49:44 -05:00
|
|
|
|
expect(
|
|
|
|
|
GfmAutoComplete.Issues.templateFunction({
|
|
|
|
|
id: 5,
|
|
|
|
|
title: 'Some Issue',
|
|
|
|
|
reference: 'grp/proj#5',
|
|
|
|
|
}),
|
|
|
|
|
).toBe('<li><small>grp/proj#5</small> Some Issue</li>');
|
|
|
|
|
});
|
|
|
|
|
});
|
2019-02-27 04:22:04 -05:00
|
|
|
|
|
|
|
|
|
describe('labels', () => {
|
|
|
|
|
const dataSources = {
|
|
|
|
|
labels: `${TEST_HOST}/autocomplete_sources/labels`,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const allLabels = labelsFixture;
|
|
|
|
|
const assignedLabels = allLabels.filter(label => label.set);
|
|
|
|
|
const unassignedLabels = allLabels.filter(label => !label.set);
|
|
|
|
|
|
|
|
|
|
let autocomplete;
|
|
|
|
|
let $textarea;
|
|
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
|
autocomplete = new GfmAutoComplete(dataSources);
|
|
|
|
|
$textarea = $('<textarea></textarea>');
|
|
|
|
|
autocomplete.setup($textarea, { labels: true });
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
afterEach(() => {
|
|
|
|
|
autocomplete.destroy();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const triggerDropdown = text => {
|
|
|
|
|
$textarea
|
|
|
|
|
.trigger('focus')
|
|
|
|
|
.val(text)
|
|
|
|
|
.caret('pos', -1);
|
|
|
|
|
$textarea.trigger('keyup');
|
|
|
|
|
|
|
|
|
|
return new Promise(window.requestAnimationFrame);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const getDropdownItems = () => {
|
|
|
|
|
const dropdown = document.getElementById('at-view-labels');
|
|
|
|
|
const items = dropdown.getElementsByTagName('li');
|
|
|
|
|
return [].map.call(items, item => item.textContent.trim());
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const expectLabels = ({ input, output }) =>
|
|
|
|
|
triggerDropdown(input).then(() => {
|
|
|
|
|
expect(getDropdownItems()).toEqual(output.map(label => label.title));
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
describe('with no labels assigned', () => {
|
|
|
|
|
beforeEach(() => {
|
|
|
|
|
autocomplete.cachedData['~'] = [...unassignedLabels];
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it.each`
|
|
|
|
|
input | output
|
|
|
|
|
${'~'} | ${unassignedLabels}
|
|
|
|
|
${'/label ~'} | ${unassignedLabels}
|
|
|
|
|
${'/relabel ~'} | ${unassignedLabels}
|
|
|
|
|
${'/unlabel ~'} | ${[]}
|
|
|
|
|
`('$input shows $output.length labels', expectLabels);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
describe('with some labels assigned', () => {
|
|
|
|
|
beforeEach(() => {
|
|
|
|
|
autocomplete.cachedData['~'] = allLabels;
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it.each`
|
|
|
|
|
input | output
|
|
|
|
|
${'~'} | ${allLabels}
|
|
|
|
|
${'/label ~'} | ${unassignedLabels}
|
|
|
|
|
${'/relabel ~'} | ${allLabels}
|
|
|
|
|
${'/unlabel ~'} | ${assignedLabels}
|
|
|
|
|
`('$input shows $output.length labels', expectLabels);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
describe('with all labels assigned', () => {
|
|
|
|
|
beforeEach(() => {
|
|
|
|
|
autocomplete.cachedData['~'] = [...assignedLabels];
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it.each`
|
|
|
|
|
input | output
|
|
|
|
|
${'~'} | ${assignedLabels}
|
|
|
|
|
${'/label ~'} | ${[]}
|
|
|
|
|
${'/relabel ~'} | ${assignedLabels}
|
|
|
|
|
${'/unlabel ~'} | ${assignedLabels}
|
|
|
|
|
`('$input shows $output.length labels', expectLabels);
|
|
|
|
|
});
|
|
|
|
|
});
|
2017-01-18 07:17:24 -05:00
|
|
|
|
});
|