52 lines
1.5 KiB
JavaScript
52 lines
1.5 KiB
JavaScript
import MockAdapter from 'axios-mock-adapter';
|
|
import init from '~/branches/divergence_graph';
|
|
import axios from '~/lib/utils/axios_utils';
|
|
|
|
describe('Divergence graph', () => {
|
|
let mock;
|
|
|
|
beforeEach(() => {
|
|
mock = new MockAdapter(axios);
|
|
|
|
mock.onGet('/-/diverging_counts').reply(200, {
|
|
main: { ahead: 1, behind: 1 },
|
|
'test/hello-world': { ahead: 1, behind: 1 },
|
|
});
|
|
|
|
jest.spyOn(axios, 'get');
|
|
|
|
document.body.innerHTML = `
|
|
<div class="js-branch-item" data-name="main"><div class="js-branch-divergence-graph"></div></div>
|
|
<div class="js-branch-item" data-name="test/hello-world"><div class="js-branch-divergence-graph"></div></div>
|
|
`;
|
|
});
|
|
|
|
afterEach(() => {
|
|
mock.restore();
|
|
});
|
|
|
|
it('calls axios get with list of branch names', () =>
|
|
init('/-/diverging_counts').then(() => {
|
|
expect(axios.get).toHaveBeenCalledWith('/-/diverging_counts', {
|
|
params: { names: ['main', 'test/hello-world'] },
|
|
});
|
|
}));
|
|
|
|
describe('no branches listed', () => {
|
|
beforeEach(() => {
|
|
document.body.innerHTML = `<div></div>`;
|
|
});
|
|
|
|
it('avoids requesting diverging commit counts', () => {
|
|
expect(axios.get).not.toHaveBeenCalledWith('/-/diverging_counts');
|
|
|
|
init('/-/diverging_counts');
|
|
});
|
|
});
|
|
|
|
it('creates Vue components', () =>
|
|
init('/-/diverging_counts').then(() => {
|
|
expect(document.querySelector('[data-name="main"]').innerHTML).not.toEqual('');
|
|
expect(document.querySelector('[data-name="test/hello-world"]').innerHTML).not.toEqual('');
|
|
}));
|
|
});
|