debian-mirror-gitlab/spec/frontend/contributors/store/getters_spec.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

77 lines
2.4 KiB
JavaScript
Raw Normal View History

2019-12-26 22:10:19 +05:30
import * as getters from '~/contributors/stores/getters';
describe('Contributors Store Getters', () => {
const state = {};
describe('showChart', () => {
it('should NOT show chart if loading', () => {
state.loading = true;
expect(getters.showChart(state)).toEqual(false);
});
it('should NOT show chart there is not data', () => {
state.loading = false;
state.chartData = null;
expect(getters.showChart(state)).toEqual(false);
});
it('should show the chart in case loading complated and there is data', () => {
state.loading = false;
state.chartData = true;
expect(getters.showChart(state)).toEqual(true);
});
describe('parsedData', () => {
let parsed;
beforeAll(() => {
state.chartData = [
2020-04-08 14:13:33 +05:30
{ author_name: 'John Smith', author_email: 'jawnnypoo@gmail.com', date: '2019-05-05' },
2019-12-26 22:10:19 +05:30
{ author_name: 'John', author_email: 'jawnnypoo@gmail.com', date: '2019-05-05' },
2020-04-08 14:13:33 +05:30
{ author_name: 'Carlson', author_email: 'carlson123@gitlab.com', date: '2019-03-03' },
{ author_name: 'Carlson', author_email: 'carlson123@gmail.com', date: '2019-05-05' },
2019-12-26 22:10:19 +05:30
{ author_name: 'John', author_email: 'jawnnypoo@gmail.com', date: '2019-04-04' },
2020-04-08 14:13:33 +05:30
{ author_name: 'Johan', author_email: 'jawnnypoo@gmail.com', date: '2019-04-04' },
2022-05-07 20:08:51 +05:30
{ author_name: 'John', author_email: 'JAWNNYPOO@gmail.com', date: '2019-03-03' },
2019-12-26 22:10:19 +05:30
];
parsed = getters.parsedData(state);
});
2020-04-08 14:13:33 +05:30
it('should group contributions by date', () => {
2019-12-26 22:10:19 +05:30
expect(parsed.total).toMatchObject({ '2019-05-05': 3, '2019-03-03': 2, '2019-04-04': 2 });
});
2020-04-08 14:13:33 +05:30
it('should group contributions by email and use most recent name', () => {
expect(parsed.byAuthorEmail).toMatchObject({
'carlson123@gmail.com': {
name: 'Carlson',
commits: 1,
2019-12-26 22:10:19 +05:30
dates: {
'2019-05-05': 1,
},
},
2020-04-08 14:13:33 +05:30
'carlson123@gitlab.com': {
name: 'Carlson',
commits: 1,
dates: {
'2019-03-03': 1,
},
},
'jawnnypoo@gmail.com': {
name: 'John Smith',
2019-12-26 22:10:19 +05:30
commits: 5,
dates: {
'2019-03-03': 1,
'2019-04-04': 2,
'2019-05-05': 2,
},
},
});
});
});
});
});