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
59377d54
Commit
59377d54
authored
Aug 01, 2017
by
kushalpandya
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Tests for `group_identicon` component
parent
53fb22bc
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
82 additions
and
0 deletions
+82
-0
spec/javascripts/groups/group_identicon_spec.js
spec/javascripts/groups/group_identicon_spec.js
+82
-0
No files found.
spec/javascripts/groups/group_identicon_spec.js
0 → 100644
View file @
59377d54
import
Vue
from
'
vue
'
;
import
groupIdenticonComponent
from
'
~/groups/components/group_identicon.vue
'
;
import
GroupsStore
from
'
~/groups/stores/groups_store
'
;
import
{
group1
}
from
'
./mock_data
'
;
const
createComponent
=
()
=>
{
const
Component
=
Vue
.
extend
(
groupIdenticonComponent
);
const
store
=
new
GroupsStore
();
const
group
=
store
.
decorateGroup
(
group1
);
return
new
Component
({
el
:
document
.
createElement
(
'
div
'
),
propsData
:
{
entityId
:
group
.
id
,
entityName
:
group
.
name
,
},
});
};
describe
(
'
GroupIdenticonComponent
'
,
()
=>
{
let
vm
;
let
el
;
beforeEach
(()
=>
{
vm
=
createComponent
();
el
=
vm
.
$el
;
});
describe
(
'
props
'
,
()
=>
{
it
(
'
should have props with defined data types
'
,
(
done
)
=>
{
const
identiconProps
=
groupIdenticonComponent
.
props
;
const
EntityIdTypeClass
=
identiconProps
.
entityId
.
type
;
const
EntityNameTypeClass
=
identiconProps
.
entityName
.
type
;
Vue
.
nextTick
(()
=>
{
expect
(
identiconProps
.
entityId
).
toBeDefined
();
expect
(
new
EntityIdTypeClass
()
instanceof
Number
).
toBeTruthy
();
expect
(
identiconProps
.
entityId
.
required
).
toBeTruthy
();
expect
(
identiconProps
.
entityName
).
toBeDefined
();
expect
(
new
EntityNameTypeClass
()
instanceof
String
).
toBeTruthy
();
expect
(
identiconProps
.
entityName
.
required
).
toBeTruthy
();
done
();
});
});
});
describe
(
'
computed
'
,
()
=>
{
describe
(
'
identiconStyles
'
,
()
=>
{
it
(
'
should return styles attribute value with `background-color` property
'
,
()
=>
{
vm
.
entityId
=
4
;
expect
(
vm
.
identiconStyles
).
toBeDefined
();
expect
(
vm
.
identiconStyles
.
indexOf
(
'
background-color: #E0F2F1;
'
)
>
-
1
).
toBeTruthy
();
});
it
(
'
should return styles attribute value with `color` property
'
,
()
=>
{
vm
.
entityId
=
4
;
expect
(
vm
.
identiconStyles
).
toBeDefined
();
expect
(
vm
.
identiconStyles
.
indexOf
(
'
color: #555;
'
)
>
-
1
).
toBeTruthy
();
});
});
describe
(
'
identiconTitle
'
,
()
=>
{
it
(
'
should return first letter of entity title in uppercase
'
,
()
=>
{
vm
.
entityName
=
'
dummy-group
'
;
expect
(
vm
.
identiconTitle
).
toBeDefined
();
expect
(
vm
.
identiconTitle
).
toBe
(
'
D
'
);
});
});
});
describe
(
'
template
'
,
()
=>
{
it
(
'
should render identicon
'
,
()
=>
{
expect
(
el
.
nodeName
).
toBe
(
'
DIV
'
);
expect
(
el
.
classList
.
contains
(
'
identicon
'
)).
toBeTruthy
();
expect
(
el
.
getAttribute
(
'
style
'
).
indexOf
(
'
background-color
'
)
>
-
1
).
toBeTruthy
();
});
});
});
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