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
0
Merge Requests
0
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
Boxiang Sun
gitlab-ce
Commits
5e1e9eb2
Commit
5e1e9eb2
authored
Mar 14, 2019
by
mfluharty
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Separate tests for triggerer component
parent
1d2cb634
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
56 additions
and
50 deletions
+56
-50
spec/javascripts/pipelines/pipeline_triggerer_spec.js
spec/javascripts/pipelines/pipeline_triggerer_spec.js
+54
-0
spec/javascripts/pipelines/pipeline_url_spec.js
spec/javascripts/pipelines/pipeline_url_spec.js
+0
-48
spec/javascripts/pipelines/pipelines_table_row_spec.js
spec/javascripts/pipelines/pipelines_table_row_spec.js
+2
-2
No files found.
spec/javascripts/pipelines/pipeline_triggerer_spec.js
0 → 100644
View file @
5e1e9eb2
import
{
mount
}
from
'
@vue/test-utils
'
;
import
pipelineTriggerer
from
'
~/pipelines/components/pipeline_triggerer.vue
'
;
describe
(
'
Pipelines Triggerer
'
,
()
=>
{
let
wrapper
;
const
mockData
=
{
pipeline
:
{
user
:
{
name
:
'
foo
'
,
avatar_url
:
'
/avatar
'
,
path
:
'
/path
'
,
},
},
};
const
createComponent
=
()
=>
{
wrapper
=
mount
(
pipelineTriggerer
,
{
propsData
:
mockData
,
});
};
beforeEach
(()
=>
{
createComponent
();
});
afterEach
(()
=>
{
wrapper
.
destroy
();
});
it
(
'
should render a table cell
'
,
()
=>
{
expect
(
wrapper
.
contains
(
'
.table-section
'
)).
toBe
(
true
);
});
it
(
'
should render triggerer information when triggerer is provided
'
,
()
=>
{
const
link
=
wrapper
.
find
(
'
.js-pipeline-url-user
'
);
expect
(
link
.
attributes
(
'
href
'
)).
toEqual
(
mockData
.
pipeline
.
user
.
path
);
expect
(
link
.
find
(
'
.js-user-avatar-image-toolip
'
).
text
()).
toEqual
(
mockData
.
pipeline
.
user
.
name
);
expect
(
link
.
find
(
'
img.avatar
'
).
attributes
(
'
src
'
)).
toEqual
(
`
${
mockData
.
pipeline
.
user
.
avatar_url
}
?width=26`
,
);
});
it
(
'
should render "API" when no triggerer is provided
'
,
()
=>
{
wrapper
.
setProps
({
pipeline
:
{
user
:
null
,
},
});
expect
(
wrapper
.
find
(
'
.js-pipeline-url-api
'
).
text
()).
toEqual
(
'
API
'
);
});
});
spec/javascripts/pipelines/pipeline_url_spec.js
View file @
5e1e9eb2
...
@@ -42,54 +42,6 @@ describe('Pipeline Url Component', () => {
...
@@ -42,54 +42,6 @@ describe('Pipeline Url Component', () => {
expect
(
component
.
$el
.
querySelector
(
'
.js-pipeline-url-link span
'
).
textContent
).
toEqual
(
'
#1
'
);
expect
(
component
.
$el
.
querySelector
(
'
.js-pipeline-url-link span
'
).
textContent
).
toEqual
(
'
#1
'
);
});
});
it
(
'
should render user information when a user is provided
'
,
()
=>
{
const
mockData
=
{
pipeline
:
{
id
:
1
,
path
:
'
foo
'
,
flags
:
{},
user
:
{
web_url
:
'
/
'
,
name
:
'
foo
'
,
avatar_url
:
'
/
'
,
path
:
'
/
'
,
},
},
autoDevopsHelpPath
:
'
foo
'
,
};
const
component
=
new
PipelineUrlComponent
({
propsData
:
mockData
,
}).
$mount
();
const
image
=
component
.
$el
.
querySelector
(
'
.js-pipeline-url-user img
'
);
const
tooltip
=
component
.
$el
.
querySelector
(
'
.js-pipeline-url-user .js-user-avatar-image-toolip
'
,
);
expect
(
component
.
$el
.
querySelector
(
'
.js-pipeline-url-user
'
).
getAttribute
(
'
href
'
)).
toEqual
(
mockData
.
pipeline
.
user
.
web_url
,
);
expect
(
tooltip
.
textContent
.
trim
()).
toEqual
(
mockData
.
pipeline
.
user
.
name
);
expect
(
image
.
getAttribute
(
'
src
'
)).
toEqual
(
`
${
mockData
.
pipeline
.
user
.
avatar_url
}
?width=20`
);
});
it
(
'
should render "API" when no user is provided
'
,
()
=>
{
const
component
=
new
PipelineUrlComponent
({
propsData
:
{
pipeline
:
{
id
:
1
,
path
:
'
foo
'
,
flags
:
{},
},
autoDevopsHelpPath
:
'
foo
'
,
},
}).
$mount
();
expect
(
component
.
$el
.
querySelector
(
'
.js-pipeline-url-api
'
).
textContent
).
toContain
(
'
API
'
);
});
it
(
'
should render latest, yaml invalid, merge request, and stuck flags when provided
'
,
()
=>
{
it
(
'
should render latest, yaml invalid, merge request, and stuck flags when provided
'
,
()
=>
{
const
component
=
new
PipelineUrlComponent
({
const
component
=
new
PipelineUrlComponent
({
propsData
:
{
propsData
:
{
...
...
spec/javascripts/pipelines/pipelines_table_row_spec.js
View file @
5e1e9eb2
...
@@ -80,13 +80,13 @@ describe('Pipelines Table Row', () => {
...
@@ -80,13 +80,13 @@ describe('Pipelines Table Row', () => {
it
(
'
should render user information
'
,
()
=>
{
it
(
'
should render user information
'
,
()
=>
{
expect
(
expect
(
component
.
$el
component
.
$el
.
querySelector
(
'
.table-section:nth-child(
2) a:nth-child(3)
'
)
.
querySelector
(
'
.table-section:nth-child(
3) .js-pipeline-url-user
'
)
.
getAttribute
(
'
href
'
),
.
getAttribute
(
'
href
'
),
).
toEqual
(
pipeline
.
user
.
path
);
).
toEqual
(
pipeline
.
user
.
path
);
expect
(
expect
(
component
.
$el
component
.
$el
.
querySelector
(
'
.table-section:nth-child(
2
) .js-user-avatar-image-toolip
'
)
.
querySelector
(
'
.table-section:nth-child(
3
) .js-user-avatar-image-toolip
'
)
.
textContent
.
trim
(),
.
textContent
.
trim
(),
).
toEqual
(
pipeline
.
user
.
name
);
).
toEqual
(
pipeline
.
user
.
name
);
});
});
...
...
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