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
Tatuya Kamada
gitlab-ce
Commits
7629dc99
Commit
7629dc99
authored
Aug 12, 2016
by
Paco Guzman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add specs to ensure a successful return
on the UI when mark as done a already done todo.
parent
6fb46b60
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
44 additions
and
1 deletion
+44
-1
app/services/todo_service.rb
app/services/todo_service.rb
+2
-1
spec/features/todos/todos_spec.rb
spec/features/todos/todos_spec.rb
+21
-0
spec/services/todo_service_spec.rb
spec/services/todo_service_spec.rb
+21
-0
No files found.
app/services/todo_service.rb
View file @
7629dc99
...
...
@@ -148,7 +148,8 @@ class TodoService
def
mark_todos_as_done_by_ids
(
ids
,
current_user
)
todos
=
current_user
.
todos
.
where
(
id:
ids
)
marked_todos
=
todos
.
update_all
(
state: :done
)
# Only return those that are not really on that state
marked_todos
=
todos
.
where
.
not
(
state: :done
).
update_all
(
state: :done
)
current_user
.
update_todos_count_cache
marked_todos
end
...
...
spec/features/todos/todos_spec.rb
View file @
7629dc99
...
...
@@ -41,6 +41,27 @@ describe 'Dashboard Todos', feature: true do
expect
(
page
).
to
have_content
(
"You're all done!"
)
end
end
context
'todo is stale on the page'
do
before
do
todos
=
TodosFinder
.
new
(
user
,
state: :pending
).
execute
TodoService
.
new
.
mark_todos_as_done
(
todos
,
user
)
end
describe
'deleting the todo'
do
before
do
first
(
'.done-todo'
).
click
end
it
'is removed from the list'
do
expect
(
page
).
not_to
have_selector
(
'.todos-list .todo'
)
end
it
'shows "All done" message'
do
expect
(
page
).
to
have_content
(
"You're all done!"
)
end
end
end
end
context
'User has Todos with labels spanning multiple projects'
do
...
...
spec/services/todo_service_spec.rb
View file @
7629dc99
...
...
@@ -496,6 +496,7 @@ describe TodoService, services: true do
describe
'#mark_todos_as_done'
do
let
(
:issue
)
{
create
(
:issue
,
project:
project
,
author:
author
,
assignee:
john_doe
)
}
let
(
:another_issue
)
{
create
(
:issue
,
project:
project
,
author:
author
,
assignee:
john_doe
)
}
it
'marks a relation of todos as done'
do
create
(
:todo
,
:mentioned
,
user:
john_doe
,
target:
issue
,
project:
project
)
...
...
@@ -518,6 +519,26 @@ describe TodoService, services: true do
expect
(
TodoService
.
new
.
mark_todos_as_done
([
todo
],
john_doe
)).
to
eq
(
1
)
end
context
'when some of the todos are done already'
do
before
do
create
(
:todo
,
:mentioned
,
user:
john_doe
,
target:
issue
,
project:
project
)
create
(
:todo
,
:mentioned
,
user:
john_doe
,
target:
another_issue
,
project:
project
)
end
it
'returns the number of those still pending'
do
TodoService
.
new
.
mark_pending_todos_as_done
(
issue
,
john_doe
)
expect
(
TodoService
.
new
.
mark_todos_as_done
(
Todo
.
all
,
john_doe
)).
to
eq
(
1
)
end
it
'returns 0 if all are done'
do
TodoService
.
new
.
mark_pending_todos_as_done
(
issue
,
john_doe
)
TodoService
.
new
.
mark_pending_todos_as_done
(
another_issue
,
john_doe
)
expect
(
TodoService
.
new
.
mark_todos_as_done
(
Todo
.
all
,
john_doe
)).
to
eq
(
0
)
end
end
it
'caches the number of todos of a user'
,
:caching
do
create
(
:todo
,
:mentioned
,
user:
john_doe
,
target:
issue
,
project:
project
)
todo
=
create
(
:todo
,
:mentioned
,
user:
john_doe
,
target:
issue
,
project:
project
)
...
...
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