Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
b8bf0327
Commit
b8bf0327
authored
May 06, 2020
by
Payton Burdette
Committed by
Enrique Alcántara
May 06, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Migrate pipelines header component spec to jest
parent
c39b8c28
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
116 additions
and
0 deletions
+116
-0
spec/frontend/pipelines/header_component_spec.js
spec/frontend/pipelines/header_component_spec.js
+116
-0
No files found.
spec/
javascripts
/pipelines/header_component_spec.js
→
spec/
frontend
/pipelines/header_component_spec.js
View file @
b8bf0327
import
Vue
from
'
vue
'
;
import
headerComponent
from
'
~/pipelines/components/header_component.vue
'
;
import
{
shallowMount
}
from
'
@vue/test-utils
'
;
import
HeaderComponent
from
'
~/pipelines/components/header_component.vue
'
;
import
CiHeader
from
'
~/vue_shared/components/header_ci_component.vue
'
;
import
eventHub
from
'
~/pipelines/event_hub
'
;
import
{
GlModal
}
from
'
@gitlab/ui
'
;
describe
(
'
Pipeline details header
'
,
()
=>
{
let
HeaderComponent
;
let
vm
;
let
props
;
beforeEach
(()
=>
{
spyOn
(
eventHub
,
'
$emit
'
);
HeaderComponent
=
Vue
.
extend
(
headerComponent
);
const
threeWeeksAgo
=
new
Date
();
threeWeeksAgo
.
setDate
(
threeWeeksAgo
.
getDate
()
-
21
);
props
=
{
pipeline
:
{
details
:
{
status
:
{
group
:
'
failed
'
,
icon
:
'
status_failed
'
,
label
:
'
failed
'
,
text
:
'
failed
'
,
details_path
:
'
path
'
,
},
let
wrapper
;
let
glModalDirective
;
const
threeWeeksAgo
=
new
Date
();
threeWeeksAgo
.
setDate
(
threeWeeksAgo
.
getDate
()
-
21
);
const
findDeleteModal
=
()
=>
wrapper
.
find
(
GlModal
);
const
defaultProps
=
{
pipeline
:
{
details
:
{
status
:
{
group
:
'
failed
'
,
icon
:
'
status_failed
'
,
label
:
'
failed
'
,
text
:
'
failed
'
,
details_path
:
'
path
'
,
},
id
:
123
,
created_at
:
threeWeeksAgo
.
toISOString
(),
user
:
{
web_url
:
'
path
'
,
name
:
'
Foo
'
,
username
:
'
foobar
'
,
email
:
'
foo@bar.com
'
,
avatar_url
:
'
link
'
,
},
id
:
123
,
created_at
:
threeWeeksAgo
.
toISOString
(),
user
:
{
web_url
:
'
path
'
,
name
:
'
Foo
'
,
username
:
'
foobar
'
,
email
:
'
foo@bar.com
'
,
avatar_url
:
'
link
'
,
},
retry_path
:
'
retry
'
,
cancel_path
:
'
cancel
'
,
delete_path
:
'
delete
'
,
},
isLoading
:
false
,
};
const
createComponent
=
(
props
=
{})
=>
{
glModalDirective
=
jest
.
fn
();
wrapper
=
shallowMount
(
HeaderComponent
,
{
propsData
:
{
...
props
,
},
directives
:
{
glModal
:
{
bind
(
el
,
{
value
})
{
glModalDirective
(
value
);
},
},
retry_path
:
'
retry
'
,
cancel_path
:
'
cancel
'
,
delete_path
:
'
delete
'
,
},
isLoading
:
false
,
};
});
};
vm
=
new
HeaderComponent
({
propsData
:
props
}).
$mount
();
beforeEach
(()
=>
{
jest
.
spyOn
(
eventHub
,
'
$emit
'
);
createComponent
(
defaultProps
);
});
afterEach
(()
=>
{
eventHub
.
$off
();
vm
.
$destroy
();
});
const
findDeleteModal
=
()
=>
document
.
getElementById
(
headerComponent
.
DELETE_MODAL_ID
);
const
findDeleteModalSubmit
=
()
=>
[...
findDeleteModal
().
querySelectorAll
(
'
.btn
'
)].
find
(
x
=>
x
.
textContent
===
'
Delete pipeline
'
);
wrapper
.
destroy
(
);
wrapper
=
null
;
}
);
it
(
'
should render provided pipeline info
'
,
()
=>
{
expect
(
vm
.
$el
.
querySelector
(
'
.header-main-content
'
)
.
textContent
.
replace
(
/
\s
+/g
,
'
'
)
.
trim
()
,
).
toContain
(
'
failed Pipeline #123 triggered 3 weeks ago by Foo
'
);
expect
(
wrapper
.
find
(
CiHeader
).
props
()).
toMatchObject
({
status
:
defaultProps
.
pipeline
.
details
.
status
,
itemId
:
defaultProps
.
pipeline
.
id
,
time
:
defaultProps
.
pipeline
.
created_at
,
user
:
defaultProps
.
pipeline
.
user
,
}
);
});
describe
(
'
action buttons
'
,
()
=>
{
...
...
@@ -68,13 +85,13 @@ describe('Pipeline details header', () => {
});
it
(
'
should call postAction when retry button action is clicked
'
,
()
=>
{
vm
.
$el
.
querySelector
(
'
.js-retry-button
'
).
click
(
);
wrapper
.
find
(
'
.js-retry-button
'
).
vm
.
$emit
(
'
click
'
);
expect
(
eventHub
.
$emit
).
toHaveBeenCalledWith
(
'
headerPostAction
'
,
'
retry
'
);
});
it
(
'
should call postAction when cancel button action is clicked
'
,
()
=>
{
vm
.
$el
.
querySelector
(
'
.js-btn-cancel-pipeline
'
).
click
(
);
wrapper
.
find
(
'
.js-btn-cancel-pipeline
'
).
vm
.
$emit
(
'
click
'
);
expect
(
eventHub
.
$emit
).
toHaveBeenCalledWith
(
'
headerPostAction
'
,
'
cancel
'
);
});
...
...
@@ -84,22 +101,13 @@ describe('Pipeline details header', () => {
});
describe
(
'
when delete button action is clicked
'
,
()
=>
{
beforeEach
(
done
=>
{
vm
.
$el
.
querySelector
(
'
.js-btn-delete-pipeline
'
).
click
();
// Modal needs two ticks to show
vm
.
$nextTick
()
.
then
(()
=>
vm
.
$nextTick
())
.
then
(
done
)
.
catch
(
done
.
fail
);
});
it
(
'
should show delete modal
'
,
()
=>
{
expect
(
findDeleteModal
()).
toBeVisible
();
it
(
'
displays delete modal
'
,
()
=>
{
expect
(
findDeleteModal
().
props
(
'
modalId
'
)).
toBe
(
wrapper
.
vm
.
$options
.
DELETE_MODAL_ID
);
expect
(
glModalDirective
).
toHaveBeenCalledWith
(
wrapper
.
vm
.
$options
.
DELETE_MODAL_ID
);
});
it
(
'
should call delete when modal is submitted
'
,
()
=>
{
findDeleteModal
Submit
().
click
(
);
findDeleteModal
().
vm
.
$emit
(
'
ok
'
);
expect
(
eventHub
.
$emit
).
toHaveBeenCalledWith
(
'
headerDeleteAction
'
,
'
delete
'
);
});
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment