Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
pleroma-fe
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Matrix-Sasuke
pleroma-fe
Commits
8199c8e4
Commit
8199c8e4
authored
8 years ago
by
lain
Browse files
Options
Downloads
Patches
Plain Diff
Add specs for statuses module.
parent
8d21d749
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
test/unit/specs/modules/statuses.spec.js
+78
-0
78 additions, 0 deletions
test/unit/specs/modules/statuses.spec.js
with
78 additions
and
0 deletions
test/unit/specs/modules/statuses.spec.js
0 → 100644
+
78
−
0
View file @
8199c8e4
import
{
cloneDeep
}
from
'
lodash
'
import
{
defaultState
,
mutations
}
from
'
../../../../src/modules/statuses.js
'
const
makeMockStatus
=
({
id
})
=>
{
return
{
id
,
name
:
'
status
'
,
text
:
`Text number
${
id
}
`
,
fave_num
:
0
,
uri
:
''
}
}
describe
(
'
The Statuses module
'
,
()
=>
{
it
(
'
adds the status to allStatuses and to the given timeline
'
,
()
=>
{
const
state
=
cloneDeep
(
defaultState
)
const
status
=
makeMockStatus
({
id
:
1
})
mutations
.
addNewStatuses
(
state
,
{
statuses
:
[
status
],
timeline
:
'
public
'
})
expect
(
state
.
allStatuses
).
to
.
eql
([
status
])
expect
(
state
.
timelines
.
public
.
statuses
).
to
.
eql
([
status
])
expect
(
state
.
timelines
.
public
.
visibleStatuses
).
to
.
eql
([])
})
it
(
'
adds the status to allStatuses and to the given timeline, directly visible
'
,
()
=>
{
const
state
=
cloneDeep
(
defaultState
)
const
status
=
makeMockStatus
({
id
:
1
})
mutations
.
addNewStatuses
(
state
,
{
statuses
:
[
status
],
showImmediately
:
true
,
timeline
:
'
public
'
})
expect
(
state
.
allStatuses
).
to
.
eql
([
status
])
expect
(
state
.
timelines
.
public
.
statuses
).
to
.
eql
([
status
])
expect
(
state
.
timelines
.
public
.
visibleStatuses
).
to
.
eql
([
status
])
})
it
(
'
replaces existing statuses with the same id
'
,
()
=>
{
const
state
=
cloneDeep
(
defaultState
)
const
status
=
makeMockStatus
({
id
:
1
})
const
modStatus
=
makeMockStatus
({
id
:
1
,
text
:
'
something else
'
})
// Add original status
mutations
.
addNewStatuses
(
state
,
{
statuses
:
[
status
],
showImmediately
:
true
,
timeline
:
'
public
'
})
expect
(
state
.
timelines
.
public
.
visibleStatuses
).
to
.
have
.
length
(
1
)
expect
(
state
.
allStatuses
).
to
.
have
.
length
(
1
)
// Add new version of status
mutations
.
addNewStatuses
(
state
,
{
statuses
:
[
modStatus
],
showImmediately
:
true
,
timeline
:
'
public
'
})
expect
(
state
.
timelines
.
public
.
visibleStatuses
).
to
.
have
.
length
(
1
)
expect
(
state
.
allStatuses
).
to
.
have
.
length
(
1
)
expect
(
state
.
allStatuses
[
0
]).
to
.
equal
(
modStatus
)
})
it
(
'
handles favorite actions
'
,
()
=>
{
const
state
=
cloneDeep
(
defaultState
)
const
status
=
makeMockStatus
({
id
:
1
})
const
favorite
=
{
id
:
2
,
is_post_verb
:
false
,
in_reply_to_status_id
:
1
,
// The API uses strings here...
uri
:
'
tag:shitposter.club,2016-08-21:fave:3895:note:773501:2016-08-21T16:52:15+00:00
'
,
text
:
'
a favorited something by b
'
}
mutations
.
addNewStatuses
(
state
,
{
statuses
:
[
status
],
showImmediately
:
true
,
timeline
:
'
public
'
})
mutations
.
addNewStatuses
(
state
,
{
statuses
:
[
favorite
],
showImmediately
:
true
,
timeline
:
'
public
'
})
expect
(
state
.
timelines
.
public
.
visibleStatuses
.
length
).
to
.
eql
(
1
)
expect
(
state
.
timelines
.
public
.
visibleStatuses
[
0
].
fave_num
).
to
.
eql
(
1
)
// Adding again shouldn't change anything
mutations
.
addNewStatuses
(
state
,
{
statuses
:
[
favorite
],
showImmediately
:
true
,
timeline
:
'
public
'
})
expect
(
state
.
timelines
.
public
.
visibleStatuses
.
length
).
to
.
eql
(
1
)
expect
(
state
.
timelines
.
public
.
visibleStatuses
[
0
].
fave_num
).
to
.
eql
(
1
)
})
})
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment