docbrown/spec/requests/poll_votes_spec.rb
Mac Siri 842e6880b8
Routine rubocop fix on /spec (#19217)
* Softrun rubocop

* Hardrun rubocop (-A)

* Change a rubocop rule

* Add missing cops

* Undo & redo rubocop -A
2023-03-21 09:55:26 -04:00

54 lines
2.2 KiB
Ruby

require "rails_helper"
RSpec.describe "PollVotes" do
let(:user) { create(:user) }
let(:article) { create(:article) }
let(:poll) { create(:poll, article_id: article.id) }
before { sign_in user }
describe "GET /poll_votes" do
it "returns proper results for poll" do
get "/poll_votes/#{poll.id}"
expect(response.parsed_body["voting_data"]["votes_count"]).to eq(0)
expect(response.parsed_body["voting_data"]["votes_distribution"]).to include([poll.poll_options.first.id, 0])
expect(response.parsed_body["poll_id"]).to eq(poll.id)
expect(response.parsed_body["voted"]).to be(false)
end
it "returns proper results for poll if voted" do
create(:poll_vote, user_id: user.id, poll_option_id: poll.poll_options.first.id, poll_id: poll.id)
get "/poll_votes/#{poll.id}"
expect(response.parsed_body["voting_data"]["votes_count"]).to eq(1)
expect(response.parsed_body["voting_data"]["votes_distribution"]).to include([poll.poll_options.first.id, 1])
expect(response.parsed_body["poll_id"]).to eq(poll.id)
expect(response.parsed_body["voted"]).to be(true)
end
end
describe "POST /poll_votes" do
it "votes on behalf of current user" do
post "/poll_votes", params: {
poll_vote: { poll_option_id: poll.poll_options.first.id }
}
expect(response.parsed_body["voting_data"]["votes_count"]).to eq(1)
expect(response.parsed_body["voting_data"]["votes_distribution"]).to include([poll.poll_options.first.id, 1])
expect(response.parsed_body["poll_id"]).to eq(poll.id)
expect(response.parsed_body["voted"]).to be(true)
expect(user.poll_votes.size).to eq(1)
end
it "votes on behalf of current user only once" do
post "/poll_votes", params: {
poll_vote: { poll_option_id: poll.poll_options.first.id }
}
post "/poll_votes", params: {
poll_vote: { poll_option_id: poll.poll_options.first.id }
}
expect(response.parsed_body["voting_data"]["votes_count"]).to eq(1)
expect(response.parsed_body["voting_data"]["votes_distribution"]).to include([poll.poll_options.first.id, 1])
expect(response.parsed_body["voted"]).to be(true)
expect(user.poll_votes.size).to eq(1)
end
end
end