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/jobs/components/table/cells/duration_cell_spec.js')
-rw-r--r--spec/frontend/jobs/components/table/cells/duration_cell_spec.js81
1 files changed, 81 insertions, 0 deletions
diff --git a/spec/frontend/jobs/components/table/cells/duration_cell_spec.js b/spec/frontend/jobs/components/table/cells/duration_cell_spec.js
new file mode 100644
index 00000000000..763a4b0eaa2
--- /dev/null
+++ b/spec/frontend/jobs/components/table/cells/duration_cell_spec.js
@@ -0,0 +1,81 @@
+import { shallowMount } from '@vue/test-utils';
+import { extendedWrapper } from 'helpers/vue_test_utils_helper';
+import DurationCell from '~/jobs/components/table/cells/duration_cell.vue';
+
+describe('Duration Cell', () => {
+ let wrapper;
+
+ const findJobDuration = () => wrapper.findByTestId('job-duration');
+ const findJobFinishedTime = () => wrapper.findByTestId('job-finished-time');
+ const findDurationIcon = () => wrapper.findByTestId('duration-icon');
+ const findFinishedTimeIcon = () => wrapper.findByTestId('finished-time-icon');
+
+ const createComponent = (props) => {
+ wrapper = extendedWrapper(
+ shallowMount(DurationCell, {
+ propsData: {
+ job: {
+ ...props,
+ },
+ },
+ }),
+ );
+ };
+
+ afterEach(() => {
+ wrapper.destroy();
+ });
+
+ it('does not display duration or finished time when no properties are present', () => {
+ createComponent();
+
+ expect(findJobDuration().exists()).toBe(false);
+ expect(findJobFinishedTime().exists()).toBe(false);
+ });
+
+ it('displays duration and finished time when both properties are present', () => {
+ const props = {
+ duration: 7,
+ finishedAt: '2021-04-26T13:37:52Z',
+ };
+
+ createComponent(props);
+
+ expect(findJobDuration().exists()).toBe(true);
+ expect(findJobFinishedTime().exists()).toBe(true);
+ });
+
+ it('displays only the duration of the job when the duration property is present', () => {
+ const props = {
+ duration: 7,
+ };
+
+ createComponent(props);
+
+ expect(findJobDuration().exists()).toBe(true);
+ expect(findJobFinishedTime().exists()).toBe(false);
+ });
+
+ it('displays only the finished time of the job when the finshedAt property is present', () => {
+ const props = {
+ finishedAt: '2021-04-26T13:37:52Z',
+ };
+
+ createComponent(props);
+
+ expect(findJobFinishedTime().exists()).toBe(true);
+ expect(findJobDuration().exists()).toBe(false);
+ });
+
+ it('displays icons for finished time and duration', () => {
+ const props = {
+ duration: 7,
+ finishedAt: '2021-04-26T13:37:52Z',
+ };
+
+ createComponent(props);
+
+ expect(findFinishedTimeIcon().props('name')).toBe('calendar');
+ expect(findDurationIcon().props('name')).toBe('timer');
+ });
+});