Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
mastodon
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
Package Registry
Model registry
Operate
Environments
Terraform modules
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
Pierre Boudes
mastodon
Commits
4bb39ac3
Unverified
Commit
4bb39ac3
authored
2 years ago
by
Matt Jankowski
Committed by
GitHub
2 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Fix single-record invalid condition on PollVote (#23810)
parent
d3eefead
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
app/models/poll_vote.rb
+1
-0
1 addition, 0 deletions
app/models/poll_vote.rb
app/validators/vote_validator.rb
+23
-3
23 additions, 3 deletions
app/validators/vote_validator.rb
spec/models/poll_vote_spec.rb
+49
-0
49 additions, 0 deletions
spec/models/poll_vote_spec.rb
with
73 additions
and
3 deletions
app/models/poll_vote.rb
+
1
−
0
View file @
4bb39ac3
...
...
@@ -23,6 +23,7 @@ class PollVote < ApplicationRecord
after_create_commit
:increment_counter_cache
delegate
:local?
,
to: :account
delegate
:multiple?
,
:expired?
,
to: :poll
,
prefix:
true
def
object_type
:vote
...
...
This diff is collapsed.
Click to expand it.
app/validators/vote_validator.rb
+
23
−
3
View file @
4bb39ac3
...
...
@@ -2,13 +2,13 @@
class
VoteValidator
<
ActiveModel
::
Validator
def
validate
(
vote
)
vote
.
errors
.
add
(
:base
,
I18n
.
t
(
'polls.errors.expired'
))
if
vote
.
poll
.
expired?
vote
.
errors
.
add
(
:base
,
I18n
.
t
(
'polls.errors.expired'
))
if
vote
.
poll
_
expired?
vote
.
errors
.
add
(
:base
,
I18n
.
t
(
'polls.errors.invalid_choice'
))
if
invalid_choice?
(
vote
)
if
vote
.
poll
.
multiple?
&&
vote
.
poll
.
votes
.
where
(
account:
vote
.
account
,
choice:
vote
.
choice
).
exists?
if
vote
.
poll
_
multiple?
&&
already_voted_for_same_choice_on_multiple_poll?
(
vote
)
vote
.
errors
.
add
(
:base
,
I18n
.
t
(
'polls.errors.already_voted'
))
elsif
!
vote
.
poll
.
multiple?
&&
vote
.
poll
.
votes
.
where
(
account:
vote
.
account
).
exists?
elsif
!
vote
.
poll
_
multiple?
&&
already_voted_on_non_multiple_poll?
(
vote
)
vote
.
errors
.
add
(
:base
,
I18n
.
t
(
'polls.errors.already_voted'
))
end
end
...
...
@@ -18,4 +18,24 @@ class VoteValidator < ActiveModel::Validator
def
invalid_choice?
(
vote
)
vote
.
choice
.
negative?
||
vote
.
choice
>=
vote
.
poll
.
options
.
size
end
def
already_voted_for_same_choice_on_multiple_poll?
(
vote
)
if
vote
.
persisted?
account_votes_on_same_poll
(
vote
).
where
(
choice:
vote
.
choice
).
where
.
not
(
poll_votes:
{
id:
vote
}).
exists?
else
account_votes_on_same_poll
(
vote
).
where
(
choice:
vote
.
choice
).
exists?
end
end
def
already_voted_on_non_multiple_poll?
(
vote
)
if
vote
.
persisted?
account_votes_on_same_poll
(
vote
).
where
.
not
(
poll_votes:
{
id:
vote
}).
exists?
else
account_votes_on_same_poll
(
vote
).
exists?
end
end
def
account_votes_on_same_poll
(
vote
)
vote
.
poll
.
votes
.
where
(
account:
vote
.
account
)
end
end
This diff is collapsed.
Click to expand it.
spec/models/poll_vote_spec.rb
+
49
−
0
View file @
4bb39ac3
...
...
@@ -10,4 +10,53 @@ RSpec.describe PollVote, type: :model do
expect
(
poll_vote
.
object_type
).
to
eq
:vote
end
end
describe
'validations'
do
context
'with a vote on an expired poll'
do
it
'marks the vote invalid'
do
poll
=
Fabricate
.
build
(
:poll
,
expires_at:
30
.
days
.
ago
)
vote
=
Fabricate
.
build
(
:poll_vote
,
poll:
poll
)
expect
(
vote
).
to_not
be_valid
end
end
context
'with invalid choices'
do
it
'marks vote invalid with negative choice'
do
poll
=
Fabricate
.
build
(
:poll
)
vote
=
Fabricate
.
build
(
:poll_vote
,
poll:
poll
,
choice:
-
100
)
expect
(
vote
).
to_not
be_valid
end
it
'marks vote invalid with choice in excess of options'
do
poll
=
Fabricate
.
build
(
:poll
,
options:
%w(a b c)
)
vote
=
Fabricate
.
build
(
:poll_vote
,
poll:
poll
,
choice:
10
)
expect
(
vote
).
to_not
be_valid
end
end
context
'with a poll where multiple is true'
do
it
'does not allow a second vote on same choice from same account'
do
poll
=
Fabricate
(
:poll
,
multiple:
true
,
options:
%w(a b c)
)
first_vote
=
Fabricate
(
:poll_vote
,
poll:
poll
,
choice:
1
)
expect
(
first_vote
).
to
be_valid
second_vote
=
Fabricate
.
build
(
:poll_vote
,
account:
first_vote
.
account
,
poll:
poll
,
choice:
1
)
expect
(
second_vote
).
to_not
be_valid
end
end
context
'with a poll where multiple is false'
do
it
'does not allow a second vote from same account'
do
poll
=
Fabricate
(
:poll
,
multiple:
false
,
options:
%w(a b c)
)
first_vote
=
Fabricate
(
:poll_vote
,
poll:
poll
)
expect
(
first_vote
).
to
be_valid
second_vote
=
Fabricate
.
build
(
:poll_vote
,
account:
first_vote
.
account
,
poll:
poll
)
expect
(
second_vote
).
to_not
be_valid
end
end
end
end
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