Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/frontend/gfm_auto_complete_spec.js')
-rw-r--r--spec/frontend/gfm_auto_complete_spec.js38
1 files changed, 30 insertions, 8 deletions
diff --git a/spec/frontend/gfm_auto_complete_spec.js b/spec/frontend/gfm_auto_complete_spec.js
index 2d19c9871b6..da465552db3 100644
--- a/spec/frontend/gfm_auto_complete_spec.js
+++ b/spec/frontend/gfm_auto_complete_spec.js
@@ -55,14 +55,14 @@ describe('GfmAutoComplete', () => {
describe('assets loading', () => {
beforeEach(() => {
- atwhoInstance = { setting: {}, $inputor: 'inputor', at: '[vulnerability:' };
+ atwhoInstance = { setting: {}, $inputor: 'inputor', at: '~' };
items = ['loading'];
filterValue = gfmAutoCompleteCallbacks.filter.call(atwhoInstance, '', items);
});
it('should call the fetchData function without query', () => {
- expect(fetchDataMock.fetchData).toHaveBeenCalledWith('inputor', '[vulnerability:');
+ expect(fetchDataMock.fetchData).toHaveBeenCalledWith('inputor', '~');
});
it('should not call the default atwho filter', () => {
@@ -80,6 +80,29 @@ describe('GfmAutoComplete', () => {
items = [];
});
+ describe('when loading', () => {
+ beforeEach(() => {
+ items = ['loading'];
+ filterValue = gfmAutoCompleteCallbacks.filter.call(atwhoInstance, 'oldquery', items);
+ });
+
+ it('should call the fetchData function with query', () => {
+ expect(fetchDataMock.fetchData).toHaveBeenCalledWith(
+ 'inputor',
+ '[vulnerability:',
+ 'oldquery',
+ );
+ });
+
+ it('should not call the default atwho filter', () => {
+ expect($.fn.atwho.default.callbacks.filter).not.toHaveBeenCalled();
+ });
+
+ it('should return the passed unfiltered items', () => {
+ expect(filterValue).toEqual(items);
+ });
+ });
+
describe('when previous query is different from current one', () => {
beforeEach(() => {
gfmAutoCompleteCallbacks = GfmAutoComplete.prototype.getDefaultCallbacks.call({
@@ -173,7 +196,7 @@ describe('GfmAutoComplete', () => {
context = {
isLoadingData: { '[vulnerability:': false },
dataSources: { vulnerabilities: 'vulnerabilities_autocomplete_url' },
- cachedData: {},
+ cachedData: { '[vulnerability:': { other_query: [] } },
};
});
@@ -206,15 +229,14 @@ describe('GfmAutoComplete', () => {
const context = {
isLoadingData: { '[vulnerability:': false },
dataSources: { vulnerabilities: 'vulnerabilities_autocomplete_url' },
- cachedData: { '[vulnerability:': [{}] },
+ cachedData: { '[vulnerability:': { query: [] } },
+ loadData: () => {},
};
fetchData.call(context, {}, '[vulnerability:', 'query');
});
- it('should anyway call axios with query ignoring cache', () => {
- expect(axios.get).toHaveBeenCalledWith('vulnerabilities_autocomplete_url', {
- params: { search: 'query' },
- });
+ it('should not call axios', () => {
+ expect(axios.get).not.toHaveBeenCalled();
});
});
});