Commit b198870f authored by Natalia Tepluhina's avatar Natalia Tepluhina

Merge branch 'psi-iteration-summary-fixed' into 'master'

Fixed summary data for closed iterations

See merge request gitlab-org/gitlab!47879
parents e275ce8e 3162dd0c
...@@ -71,6 +71,10 @@ To learn how to add an issue to an iteration, see the steps in ...@@ -71,6 +71,10 @@ To learn how to add an issue to an iteration, see the steps in
You can track the progress of an iteration by reviewing iteration reports. You can track the progress of an iteration by reviewing iteration reports.
An iteration report displays a list of all the issues assigned to an iteration and their status. An iteration report displays a list of all the issues assigned to an iteration and their status.
The report also shows a breakdown of total issues in an iteration.
Open iteration reports show a summary of completed, unstarted, and in-progress issues.
Closed iteration reports show the total number of issues completed by the due date.
To view an iteration report, go to the iterations list page and click an iteration's title. To view an iteration report, go to the iterations list page and click an iteration's title.
### Iteration burndown and burnup charts ### Iteration burndown and burnup charts
......
...@@ -3,17 +3,19 @@ ...@@ -3,17 +3,19 @@
import { import {
GlAlert, GlAlert,
GlBadge, GlBadge,
GlLoadingIcon,
GlEmptyState,
GlIcon,
GlDropdown, GlDropdown,
GlDropdownItem, GlDropdownItem,
GlEmptyState,
GlIcon,
GlLoadingIcon,
} from '@gitlab/ui'; } from '@gitlab/ui';
import BurnCharts from 'ee/burndown_chart/components/burn_charts.vue'; import BurnCharts from 'ee/burndown_chart/components/burn_charts.vue';
import { formatDate } from '~/lib/utils/datetime_utility'; import { formatDate } from '~/lib/utils/datetime_utility';
import glFeatureFlagsMixin from '~/vue_shared/mixins/gl_feature_flags_mixin'; import glFeatureFlagsMixin from '~/vue_shared/mixins/gl_feature_flags_mixin';
import { __ } from '~/locale'; import { __ } from '~/locale';
import IterationReportSummary from './iteration_report_summary.vue'; import IterationReportSummaryCards from './iteration_report_summary_cards.vue';
import IterationReportSummaryClosed from './iteration_report_summary_closed.vue';
import IterationReportSummaryOpen from './iteration_report_summary_open.vue';
import IterationForm from './iteration_form.vue'; import IterationForm from './iteration_form.vue';
import IterationReportTabs from './iteration_report_tabs.vue'; import IterationReportTabs from './iteration_report_tabs.vue';
import query from '../queries/iteration.query.graphql'; import query from '../queries/iteration.query.graphql';
...@@ -35,13 +37,15 @@ export default { ...@@ -35,13 +37,15 @@ export default {
BurnCharts, BurnCharts,
GlAlert, GlAlert,
GlBadge, GlBadge,
GlLoadingIcon,
GlEmptyState,
GlIcon, GlIcon,
GlDropdown, GlDropdown,
GlDropdownItem, GlDropdownItem,
GlEmptyState,
GlLoadingIcon,
IterationForm, IterationForm,
IterationReportSummary, IterationReportSummaryCards,
IterationReportSummaryClosed,
IterationReportSummaryOpen,
IterationReportTabs, IterationReportTabs,
}, },
apollo: { apollo: {
...@@ -113,8 +117,11 @@ export default { ...@@ -113,8 +117,11 @@ export default {
canEditIteration() { canEditIteration() {
return this.canEdit && this.namespaceType === Namespace.Group; return this.canEdit && this.namespaceType === Namespace.Group;
}, },
hasIteration() { loading() {
return !this.$apollo.queries.iteration.loading && this.iteration?.title; return this.$apollo.queries.iteration.loading;
},
showEmptyState() {
return !this.loading && this.iteration && !this.iteration.title;
}, },
status() { status() {
switch (this.iteration.state) { switch (this.iteration.state) {
...@@ -131,6 +138,11 @@ export default { ...@@ -131,6 +138,11 @@ export default {
return { text: __('Open'), variant: 'success' }; return { text: __('Open'), variant: 'success' };
} }
}, },
summaryComponent() {
return this.iteration.state === 'closed'
? IterationReportSummaryClosed
: IterationReportSummaryOpen;
},
}, },
mounted() { mounted() {
this.boundOnPopState = this.onPopState.bind(this); this.boundOnPopState = this.onPopState.bind(this);
...@@ -171,9 +183,9 @@ export default { ...@@ -171,9 +183,9 @@ export default {
<gl-alert v-if="error" variant="danger" @dismiss="error = ''"> <gl-alert v-if="error" variant="danger" @dismiss="error = ''">
{{ error }} {{ error }}
</gl-alert> </gl-alert>
<gl-loading-icon v-if="$apollo.queries.iteration.loading" class="gl-py-5" size="lg" /> <gl-loading-icon v-else-if="loading" class="gl-py-5" size="lg" />
<gl-empty-state <gl-empty-state
v-else-if="!hasIteration" v-else-if="showEmptyState"
:title="__('Could not find iteration')" :title="__('Could not find iteration')"
:compact="false" :compact="false"
/> />
...@@ -214,11 +226,27 @@ export default { ...@@ -214,11 +226,27 @@ export default {
</div> </div>
<h3 ref="title" class="page-title">{{ iteration.title }}</h3> <h3 ref="title" class="page-title">{{ iteration.title }}</h3>
<div ref="description" v-html="iteration.descriptionHtml"></div> <div ref="description" v-html="iteration.descriptionHtml"></div>
<iteration-report-summary
<component
:is="summaryComponent"
:full-path="fullPath" :full-path="fullPath"
:iteration-id="iteration.id" :iteration-id="iteration.id"
:namespace-type="namespaceType" :namespace-type="namespaceType"
>
<iteration-report-summary-cards
slot-scope="{ columns, loading: summaryLoading, total }"
:columns="columns"
:loading="summaryLoading"
:total="total"
/>
</component>
<!-- <iteration-report-summary-closed
v-if="iteration.state === 'closed'"
:iteration-id="iteration.id"
/> />
<iteration-report-summary-open
v-else
/> -->
<burn-charts <burn-charts
:start-date="iteration.startDate" :start-date="iteration.startDate"
:due-date="iteration.dueDate" :due-date="iteration.dueDate"
......
<script>
import { GlCard, GlSkeletonLoader, GlSprintf } from '@gitlab/ui';
export default {
cardBodyClass: 'gl-text-center gl-py-3 gl-font-size-h2',
cardClass: 'gl-bg-gray-10 gl-border-0 gl-mb-5',
components: {
GlCard,
GlSkeletonLoader,
GlSprintf,
},
props: {
columns: {
type: Array,
required: false,
default: () => [],
},
loading: {
type: Boolean,
required: true,
},
total: {
type: Number,
required: true,
},
},
methods: {
percent(val) {
if (!this.total) return 0;
return ((val / this.total) * 100).toFixed(0);
},
},
};
</script>
<template>
<div class="row gl-mt-6">
<div v-for="(column, index) in columns" :key="index" class="col-sm-4">
<gl-card :class="$options.cardClass" :body-class="$options.cardBodyClass">
<gl-skeleton-loader v-if="loading" :width="400" :height="24">
<rect x="100" y="4" width="120" height="20" rx="4" />
<rect x="200" y="4" width="86" height="20" rx="4" />
</gl-skeleton-loader>
<div v-else>
<span class="gl-border-1 gl-border-r-solid gl-border-gray-100 gl-pr-3 gl-mr-2">
{{ column.title }}
<span class="gl-font-weight-bold"
>{{ percent(column.value) }}<small class="gl-text-gray-500">%</small></span
>
</span>
<gl-sprintf :message="__('%{count} of %{total}')">
<template #count>
<span class="gl-font-weight-bold">{{ column.value }}</span>
</template>
<template #total>
<span class="gl-font-weight-bold">{{ total }}</span>
</template>
</gl-sprintf>
</div>
</gl-card>
</div>
</div>
</template>
<script>
import { __ } from '~/locale';
import { fetchPolicies } from '~/lib/graphql';
import IterationReportSummaryCards from './iteration_report_summary_cards.vue';
import summaryStatsQuery from '../queries/iteration_issues_summary_stats.query.graphql';
export default {
components: {
IterationReportSummaryCards,
},
apollo: {
issues: {
fetchPolicy: fetchPolicies.NO_CACHE,
query: summaryStatsQuery,
variables() {
return this.queryVariables;
},
update(data) {
const stats = data.iteration?.report?.stats || {};
return {
complete: stats.complete?.count || 0,
incomplete: stats.incomplete?.count || 0,
total: stats.total?.count || 0,
};
},
},
},
props: {
iterationId: {
type: String,
required: true,
},
},
data() {
return {
issues: {
complete: 0,
incomplete: 0,
total: 0,
},
};
},
computed: {
queryVariables() {
return {
id: this.iterationId,
};
},
columns() {
return [
{
title: __('Completed'),
value: this.issues.complete,
},
{
title: __('Incomplete'),
value: this.issues.incomplete,
},
];
},
},
render() {
return this.$scopedSlots.default({
columns: this.columns,
loading: this.$apollo.queries.issues.loading,
total: this.issues.total,
});
},
};
</script>
<script> <script>
import { GlCard, GlIcon } from '@gitlab/ui';
import { __ } from '~/locale'; import { __ } from '~/locale';
import { getIdFromGraphQLId } from '~/graphql_shared/utils'; import { getIdFromGraphQLId } from '~/graphql_shared/utils';
import query from '../queries/iteration_issues_summary.query.graphql'; import IterationReportSummaryCards from './iteration_report_summary_cards.vue';
import summaryStatsQuery from '../queries/iteration_issues_summary.query.graphql';
import { Namespace } from '../constants'; import { Namespace } from '../constants';
export default { export default {
cardBodyClass: 'gl-text-center gl-py-3',
cardClass: 'gl-bg-gray-10 gl-border-0',
components: { components: {
GlCard, IterationReportSummaryCards,
GlIcon,
}, },
apollo: { apollo: {
issues: { issues: {
query, query: summaryStatsQuery,
variables() { variables() {
return this.queryVariables; return this.queryVariables;
}, },
...@@ -48,7 +45,11 @@ export default { ...@@ -48,7 +45,11 @@ export default {
}, },
data() { data() {
return { return {
issues: {}, issues: {
assigned: 0,
open: 0,
closed: 0,
},
}; };
}, },
computed: { computed: {
...@@ -67,44 +68,38 @@ export default { ...@@ -67,44 +68,38 @@ export default {
} }
return ((closed / (open + closed)) * 100).toFixed(0); return ((closed / (open + closed)) * 100).toFixed(0);
}, },
showCards() {
return !this.$apollo.queries.issues.loading && Object.values(this.issues).every(a => a >= 0);
},
columns() { columns() {
return [ return [
{ {
title: __('Complete'), title: __('Completed'),
value: `${this.completedPercent}%`, value: this.issues.closed,
},
{
title: __('Open'),
value: this.issues.open,
icon: true,
}, },
{ {
title: __('In progress'), title: __('Incomplete'),
value: this.issues.assigned, value: this.issues.assigned,
icon: true,
}, },
{ {
title: __('Completed'), title: __('Unstarted'),
value: this.issues.closed, value: this.issues.open,
icon: true,
}, },
]; ];
}, },
total() {
return this.issues.open + this.issues.assigned + this.issues.closed;
},
},
methods: {
percent(val) {
if (!this.total) return 0;
return ((val / this.total) * 100).toFixed(0);
},
},
render() {
return this.$scopedSlots.default({
columns: this.columns,
loading: this.$apollo.queries.issues.loading,
total: this.total,
});
}, },
}; };
</script> </script>
<template>
<div v-if="showCards" class="row gl-mt-6">
<div v-for="(column, index) in columns" :key="index" class="col-sm-3">
<gl-card :class="$options.cardClass" :body-class="$options.cardBodyClass" class="gl-mb-5">
<span>{{ column.title }}</span>
<span class="gl-font-size-h2 gl-font-weight-bold">{{ column.value }}</span>
<gl-icon v-if="column.icon" name="issues" :size="12" class="gl-text-gray-500" />
</gl-card>
</div>
</div>
</template>
...@@ -2,3 +2,11 @@ export const Namespace = { ...@@ -2,3 +2,11 @@ export const Namespace = {
Group: 'group', Group: 'group',
Project: 'project', Project: 'project',
}; };
export const iterationStates = {
closed: 'closed',
upcoming: 'upcoming',
expired: 'expired',
};
export default {};
...@@ -9,7 +9,12 @@ import IterationReport from './components/iteration_report.vue'; ...@@ -9,7 +9,12 @@ import IterationReport from './components/iteration_report.vue';
Vue.use(VueApollo); Vue.use(VueApollo);
const apolloProvider = new VueApollo({ const apolloProvider = new VueApollo({
defaultClient: createDefaultClient(), defaultClient: createDefaultClient(
{},
{
batchMax: 1,
},
),
}); });
export function initIterationsList(namespaceType) { export function initIterationsList(namespaceType) {
......
...@@ -7,6 +7,7 @@ query IterationIssuesSummary($fullPath: ID!, $id: ID!, $isGroup: Boolean = true) ...@@ -7,6 +7,7 @@ query IterationIssuesSummary($fullPath: ID!, $id: ID!, $isGroup: Boolean = true)
includeSubgroups: true includeSubgroups: true
) { ) {
count count
weight
} }
assignedIssues: issues( assignedIssues: issues(
iterationId: [$id] iterationId: [$id]
...@@ -15,20 +16,25 @@ query IterationIssuesSummary($fullPath: ID!, $id: ID!, $isGroup: Boolean = true) ...@@ -15,20 +16,25 @@ query IterationIssuesSummary($fullPath: ID!, $id: ID!, $isGroup: Boolean = true)
includeSubgroups: true includeSubgroups: true
) { ) {
count count
weight
} }
closedIssues: issues(iterationId: [$id], state: closed, includeSubgroups: true) { closedIssues: issues(iterationId: [$id], state: closed, includeSubgroups: true) {
count count
weight
} }
} }
project(fullPath: $fullPath) @skip(if: $isGroup) { project(fullPath: $fullPath) @skip(if: $isGroup) {
openIssues: issues(iterationId: [$id], state: opened, assigneeId: "none") { openIssues: issues(iterationId: [$id], state: opened, assigneeId: "none") {
count count
weight
} }
assignedIssues: issues(iterationId: [$id], state: opened, assigneeId: "any") { assignedIssues: issues(iterationId: [$id], state: opened, assigneeId: "any") {
count count
weight
} }
closedIssues: issues(iterationId: [$id], state: closed) { closedIssues: issues(iterationId: [$id], state: closed) {
count count
weight
} }
} }
} }
query IterationIssuesSummaryStats($id: ID!) {
iteration(id: $id) {
report {
stats {
total {
weight
count
}
complete {
weight
count
}
incomplete {
weight
count
}
}
}
}
}
---
title: Fixed summary info for closed iterations
merge_request: 47879
author:
type: changed
...@@ -40,10 +40,9 @@ RSpec.describe 'User views iteration' do ...@@ -40,10 +40,9 @@ RSpec.describe 'User views iteration' do
end end
aggregate_failures 'expect summary information' do aggregate_failures 'expect summary information' do
expect(page).to have_content("Complete 25%") expect(page).to have_content("Completed")
expect(page).to have_content("Open 2") expect(page).to have_content("Incomplete")
expect(page).to have_content("In progress 1") expect(page).to have_content("Unstarted")
expect(page).to have_content("Completed 1")
end end
aggregate_failures 'expect burnup and burndown charts' do aggregate_failures 'expect burnup and burndown charts' do
......
...@@ -35,10 +35,8 @@ RSpec.describe 'User views iteration' do ...@@ -35,10 +35,8 @@ RSpec.describe 'User views iteration' do
end end
aggregate_failures 'shows correct summary information' do aggregate_failures 'shows correct summary information' do
expect(page).to have_content("Complete 50%") expect(page).to have_content("Completed")
expect(page).to have_content("Open 1") expect(page).to have_content("Incomplete")
expect(page).to have_content("In progress 0")
expect(page).to have_content("Completed 1")
end end
aggregate_failures 'expect burnup and burndown charts' do aggregate_failures 'expect burnup and burndown charts' do
......
import { GlDropdown, GlDropdownItem, GlEmptyState, GlLoadingIcon, GlTab, GlTabs } from '@gitlab/ui'; import { GlDropdown, GlDropdownItem, GlEmptyState, GlLoadingIcon, GlTab, GlTabs } from '@gitlab/ui';
import { shallowMount } from '@vue/test-utils'; import { shallowMount } from '@vue/test-utils';
import IterationForm from 'ee/iterations/components/iteration_form.vue'; import IterationForm from 'ee/iterations/components/iteration_form.vue';
import IterationReportSummaryOpen from 'ee/iterations/components/iteration_report_summary_open.vue';
import IterationReportSummaryClosed from 'ee/iterations/components/iteration_report_summary_closed.vue';
import IterationReport from 'ee/iterations/components/iteration_report.vue'; import IterationReport from 'ee/iterations/components/iteration_report.vue';
import IterationReportSummary from 'ee/iterations/components/iteration_report_summary.vue';
import IterationReportTabs from 'ee/iterations/components/iteration_report_tabs.vue'; import IterationReportTabs from 'ee/iterations/components/iteration_report_tabs.vue';
import { Namespace } from 'ee/iterations/constants'; import { Namespace } from 'ee/iterations/constants';
...@@ -72,6 +73,7 @@ describe('Iterations report', () => { ...@@ -72,6 +73,7 @@ describe('Iterations report', () => {
descriptionHtml: 'The first week of June', descriptionHtml: 'The first week of June',
startDate: '2020-06-02', startDate: '2020-06-02',
dueDate: '2020-06-08', dueDate: '2020-06-08',
state: 'opened',
}; };
describe('user without edit permission', () => { describe('user without edit permission', () => {
...@@ -104,6 +106,37 @@ describe('Iterations report', () => { ...@@ -104,6 +106,37 @@ describe('Iterations report', () => {
it('hides actions dropdown', () => { it('hides actions dropdown', () => {
expect(findActionsDropdown().exists()).toBe(false); expect(findActionsDropdown().exists()).toBe(false);
}); });
it('renders IterationReportSummaryOpen for open iteration', () => {
expect(wrapper.find(IterationReportSummaryOpen).props()).toEqual({
iterationId: iteration.id,
namespaceType: Namespace.Group,
fullPath: defaultProps.fullPath,
});
});
it('renders IterationReportSummaryClosed for closed iteration', async () => {
await wrapper.setData({
iteration: {
...iteration,
state: 'closed',
},
});
expect(wrapper.find(IterationReportSummaryClosed).props()).toEqual({
iterationId: iteration.id,
});
});
it('shows IterationReportTabs component', () => {
const iterationReportTabs = wrapper.find(IterationReportTabs);
expect(iterationReportTabs.props()).toEqual({
fullPath: defaultProps.fullPath,
iterationId: iteration.id,
namespaceType: Namespace.Group,
});
});
}); });
describe('user with edit permission', () => { describe('user with edit permission', () => {
...@@ -135,22 +168,6 @@ describe('Iterations report', () => { ...@@ -135,22 +168,6 @@ describe('Iterations report', () => {
'/edit', '/edit',
); );
}); });
it('passes correct props to IterationReportSummary', () => {
const iterationReportSummary = wrapper.find(IterationReportSummary);
expect(iterationReportSummary.props('fullPath')).toBe(defaultProps.fullPath);
expect(iterationReportSummary.props('iterationId')).toBe(iteration.id);
expect(iterationReportSummary.props('namespaceType')).toBe(Namespace.Group);
});
it('passes correct props to IterationReportTabs', () => {
const iterationReportTabs = wrapper.find(IterationReportTabs);
expect(iterationReportTabs.props('fullPath')).toBe(defaultProps.fullPath);
expect(iterationReportTabs.props('iterationId')).toBe(iteration.id);
expect(iterationReportTabs.props('namespaceType')).toBe(Namespace.Group);
});
}); });
describe('loading edit form directly', () => { describe('loading edit form directly', () => {
......
import IterationReportSummaryCards from 'ee/iterations/components/iteration_report_summary_cards.vue';
import { mount } from '@vue/test-utils';
import { GlCard } from '@gitlab/ui';
describe('Iterations report summary cards', () => {
let wrapper;
const defaultProps = {
loading: false,
columns: [
{
title: 'Completed',
value: 10,
},
{
title: 'Incomplete',
value: 3,
},
{
title: 'Unstarted',
value: 2,
},
],
total: 15,
};
const mountComponent = (props = defaultProps) => {
wrapper = mount(IterationReportSummaryCards, {
propsData: props,
});
};
afterEach(() => {
wrapper.destroy();
wrapper = null;
});
const findCompleteCard = () =>
wrapper
.findAll(GlCard)
.at(0)
.text();
const findIncompleteCard = () =>
wrapper
.findAll(GlCard)
.at(1)
.text();
const findUnstartedCard = () =>
wrapper
.findAll(GlCard)
.at(2)
.text();
describe('with valid totals', () => {
beforeEach(() => {
mountComponent();
});
it('shows completed issues', () => {
const text = findCompleteCard();
expect(text).toContain('Completed');
expect(text).toContain('67%');
expect(text).toContain('10 of 15');
});
it('shows incomplete issues', () => {
const text = findIncompleteCard();
expect(text).toContain('Incomplete');
expect(text).toContain('20%');
expect(text).toContain('3 of 15');
});
it('shows unstarted issues', () => {
const text = findUnstartedCard();
expect(text).toContain('Unstarted');
expect(text).toContain('13%');
expect(text).toContain('2 of 15');
});
});
it('shows 0 (not NaN) when total is 0', () => {
mountComponent({
loading: false,
columns: [
{
title: 'Completed',
value: 0,
},
{
title: 'Incomplete',
value: 0,
},
{
title: 'Unstarted',
value: 0,
},
],
total: 0,
});
expect(findCompleteCard()).toContain('0 of 0');
expect(findIncompleteCard()).toContain('0 of 0');
expect(findUnstartedCard()).toContain('0 of 0');
});
});
import IterationReportSummaryClosed from 'ee/iterations/components/iteration_report_summary_closed.vue';
import { shallowMount } from '@vue/test-utils';
describe('Iterations report summary', () => {
let wrapper;
let slotSpy;
const id = 3;
const defaultProps = {
iterationId: `gid://gitlab/Iteration/${id}`,
};
const mountComponent = ({ props = defaultProps, loading = false, data = {} } = {}) => {
slotSpy = jest.fn();
wrapper = shallowMount(IterationReportSummaryClosed, {
propsData: props,
data() {
return data;
},
mocks: {
$apollo: {
queries: { issues: { loading } },
},
},
scopedSlots: {
default: slotSpy,
},
});
};
afterEach(() => {
wrapper.destroy();
wrapper = null;
});
describe('with valid totals', () => {
beforeEach(() => {
mountComponent({
data: {
issues: {
complete: 10,
incomplete: 3,
total: 13,
},
},
});
});
it('renders cards for each issue type', () => {
expect(slotSpy).toHaveBeenCalledWith({
loading: false,
columns: [
{
title: 'Completed',
value: 10,
},
{
title: 'Incomplete',
value: 3,
},
],
total: 13,
});
});
});
});
import IterationReportSummary from 'ee/iterations/components/iteration_report_summary_open.vue';
import IterationReportSummaryCards from 'ee/iterations/components/iteration_report_summary_cards.vue';
import { shallowMount } from '@vue/test-utils';
describe('Iterations report summary', () => {
let wrapper;
let slotSpy;
const id = 3;
const defaultProps = {
fullPath: 'gitlab-org',
iterationId: `gid://gitlab/Iteration/${id}`,
};
const mountComponent = ({ props = defaultProps, loading = false, data = {} } = {}) => {
slotSpy = jest.fn();
wrapper = shallowMount(IterationReportSummary, {
propsData: props,
components: {
IterationReportSummaryCards,
},
data() {
return data;
},
mocks: {
$apollo: {
queries: { issues: { loading } },
},
},
scopedSlots: {
default: slotSpy,
},
});
};
afterEach(() => {
wrapper.destroy();
wrapper = null;
});
describe('with valid totals', () => {
beforeEach(() => {
mountComponent({
data: {
issues: {
closed: 10,
assigned: 3,
open: 5,
},
},
});
});
it('passes data to cards component', () => {
expect(slotSpy).toHaveBeenCalledWith({
loading: false,
columns: [
{
title: 'Completed',
value: 10,
},
{
title: 'Incomplete',
value: 3,
},
{
title: 'Unstarted',
value: 5,
},
],
total: 18,
});
});
});
});
import { GlCard } from '@gitlab/ui';
import { mount } from '@vue/test-utils';
import IterationReportSummary from 'ee/iterations/components/iteration_report_summary.vue';
import { Namespace } from 'ee/iterations/constants';
describe('Iterations report summary', () => {
let wrapper;
const id = 3;
const fullPath = 'gitlab-org';
const defaultProps = {
fullPath,
iterationId: `gid://gitlab/Iteration/${id}`,
};
const mountComponent = ({ props = defaultProps, loading = false, data = {} } = {}) => {
wrapper = mount(IterationReportSummary, {
propsData: props,
data() {
return data;
},
mocks: {
$apollo: {
queries: { issues: { loading } },
},
},
});
};
afterEach(() => {
wrapper.destroy();
wrapper = null;
});
const findPercentageCard = () => wrapper.findAll(GlCard).at(0);
const findOpenCard = () => wrapper.findAll(GlCard).at(1);
const findInProgressCard = () => wrapper.findAll(GlCard).at(2);
const findCompletedCard = () => wrapper.findAll(GlCard).at(3);
describe('with valid totals', () => {
beforeEach(() => {
mountComponent();
wrapper.setData({
issues: {
open: 15,
assigned: 5,
closed: 10,
},
});
});
it('shows complete percentage', () => {
expect(findPercentageCard().text()).toContain('33%');
});
it('shows open issues', () => {
expect(findOpenCard().text()).toContain('Open');
expect(findOpenCard().text()).toContain('15');
});
it('shows in progress issues', () => {
expect(findInProgressCard().text()).toContain('In progress');
expect(findInProgressCard().text()).toContain('5');
});
it('shows completed issues', () => {
expect(findCompletedCard().text()).toContain('Completed');
expect(findCompletedCard().text()).toContain('10');
});
});
describe('with no issues', () => {
beforeEach(() => {
mountComponent();
wrapper.setData({
issues: {
open: 0,
assigned: 0,
closed: 0,
},
});
});
it('shows complete percentage', () => {
expect(findPercentageCard().text()).toContain('0%');
expect(findOpenCard().text()).toContain('0');
expect(findInProgressCard().text()).toContain('0');
expect(findCompletedCard().text()).toContain('0');
});
});
describe('IterationIssuesSummary query variables', () => {
const expected = {
fullPath: defaultProps.fullPath,
id,
};
describe('when group', () => {
it('has expected query variable values', () => {
mountComponent({
props: {
...defaultProps,
namespaceType: Namespace.Group,
},
});
expect(wrapper.vm.queryVariables).toEqual({
...expected,
isGroup: true,
});
});
});
describe('when project', () => {
it('has expected query variable values', () => {
mountComponent({
props: {
...defaultProps,
namespaceType: Namespace.Project,
},
});
expect(wrapper.vm.queryVariables).toEqual({
...expected,
isGroup: false,
});
});
});
});
});
...@@ -14542,6 +14542,9 @@ msgstr "" ...@@ -14542,6 +14542,9 @@ msgstr ""
msgid "Incompatible project" msgid "Incompatible project"
msgstr "" msgstr ""
msgid "Incomplete"
msgstr ""
msgid "Indent" msgid "Indent"
msgstr "" msgstr ""
...@@ -29308,6 +29311,9 @@ msgstr "" ...@@ -29308,6 +29311,9 @@ msgstr ""
msgid "Unstar" msgid "Unstar"
msgstr "" msgstr ""
msgid "Unstarted"
msgstr ""
msgid "Unsubscribe" msgid "Unsubscribe"
msgstr "" msgstr ""
......
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