Commit ef1783a1 authored by Phil Hughes's avatar Phil Hughes

Merge branch 'diff-and-gpg-badges-ajax-refactor' into 'master'

Replaced use of $.get with axios.get and updated tests

See merge request gitlab-org/gitlab-ce!16989
parents 037c664d 055ca681
import axios from '~/lib/utils/axios_utils';
import flash from '~/flash';
import { __ } from '~/locale';
import { getLocationHash } from './lib/utils/url_utility'; import { getLocationHash } from './lib/utils/url_utility';
import FilesCommentButton from './files_comment_button'; import FilesCommentButton from './files_comment_button';
import SingleFileDiff from './single_file_diff'; import SingleFileDiff from './single_file_diff';
...@@ -69,7 +72,9 @@ export default class Diff { ...@@ -69,7 +72,9 @@ export default class Diff {
const view = file.data('view'); const view = file.data('view');
const params = { since, to, bottom, offset, unfold, view }; const params = { since, to, bottom, offset, unfold, view };
$.get(link, params, response => $target.parent().replaceWith(response)); axios.get(link, { params })
.then(({ data }) => $target.parent().replaceWith(data))
.catch(() => flash(__('An error occurred while loading diff')));
} }
openAnchoredDiff(cb) { openAnchoredDiff(cb) {
......
import { parseQueryStringIntoObject } from '~/lib/utils/common_utils';
import axios from '~/lib/utils/axios_utils';
import flash from '~/flash';
import { __ } from '~/locale';
export default class GpgBadges { export default class GpgBadges {
static fetch() { static fetch() {
const badges = $('.js-loading-gpg-badge'); const badges = $('.js-loading-gpg-badge');
...@@ -5,13 +10,13 @@ export default class GpgBadges { ...@@ -5,13 +10,13 @@ export default class GpgBadges {
badges.html('<i class="fa fa-spinner fa-spin"></i>'); badges.html('<i class="fa fa-spinner fa-spin"></i>');
$.get({ const params = parseQueryStringIntoObject(form.serialize());
url: form.data('signatures-path'), return axios.get(form.data('signatures-path'), { params })
data: form.serialize(), .then(({ data }) => {
}).done((response) => { data.signatures.forEach((signature) => {
response.signatures.forEach((signature) => {
badges.filter(`[data-commit-sha="${signature.commit_sha}"]`).replaceWith(signature.html); badges.filter(`[data-commit-sha="${signature.commit_sha}"]`).replaceWith(signature.html);
}); });
}); })
.catch(() => flash(__('An error occurred while loading commits')));
} }
} }
import MockAdapter from 'axios-mock-adapter';
import axios from '~/lib/utils/axios_utils';
import GpgBadges from '~/gpg_badges'; import GpgBadges from '~/gpg_badges';
describe('GpgBadges', () => { describe('GpgBadges', () => {
let mock;
const dummyCommitSha = 'n0m0rec0ffee'; const dummyCommitSha = 'n0m0rec0ffee';
const dummyBadgeHtml = 'dummy html'; const dummyBadgeHtml = 'dummy html';
const dummyResponse = { const dummyResponse = {
...@@ -11,38 +14,43 @@ describe('GpgBadges', () => { ...@@ -11,38 +14,43 @@ describe('GpgBadges', () => {
}; };
beforeEach(() => { beforeEach(() => {
mock = new MockAdapter(axios);
setFixtures(` setFixtures(`
<form
class="commits-search-form" data-signatures-path="/hello" action="/hello"
method="get">
<input name="utf8" type="hidden" value="✓">
<input type="search" name="search" id="commits-search"class="form-control search-text-input input-short">
</form>
<div class="parent-container"> <div class="parent-container">
<div class="js-loading-gpg-badge" data-commit-sha="${dummyCommitSha}"></div> <div class="js-loading-gpg-badge" data-commit-sha="${dummyCommitSha}"></div>
</div> </div>
`); `);
}); });
it('displays a loading spinner', () => { afterEach(() => {
spyOn($, 'get').and.returnValue({ mock.restore();
done() { });
// intentionally left blank
},
});
GpgBadges.fetch(); it('displays a loading spinner', (done) => {
mock.onGet('/hello').reply(200);
expect(document.querySelector('.js-loading-gpg-badge:empty')).toBe(null); GpgBadges.fetch().then(() => {
const spinners = document.querySelectorAll('.js-loading-gpg-badge i.fa.fa-spinner.fa-spin'); expect(document.querySelector('.js-loading-gpg-badge:empty')).toBe(null);
expect(spinners.length).toBe(1); const spinners = document.querySelectorAll('.js-loading-gpg-badge i.fa.fa-spinner.fa-spin');
expect(spinners.length).toBe(1);
done();
}).catch(done.fail);
}); });
it('replaces the loading spinner', () => { it('replaces the loading spinner', (done) => {
spyOn($, 'get').and.returnValue({ mock.onGet('/hello').reply(200, dummyResponse);
done(callback) {
callback(dummyResponse);
},
});
GpgBadges.fetch();
expect(document.querySelector('.js-loading-gpg-badge')).toBe(null); GpgBadges.fetch().then(() => {
const parentContainer = document.querySelector('.parent-container'); expect(document.querySelector('.js-loading-gpg-badge')).toBe(null);
expect(parentContainer.innerHTML.trim()).toEqual(dummyBadgeHtml); const parentContainer = document.querySelector('.parent-container');
expect(parentContainer.innerHTML.trim()).toEqual(dummyBadgeHtml);
done();
}).catch(done.fail);
}); });
}); });
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment