2023-02-22 01:55:31 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-03-03 22:18:23 +01:00
|
|
|
require 'rails_helper'
|
|
|
|
|
2024-03-01 17:24:45 +01:00
|
|
|
RSpec.describe 'API V1 Polls Votes' do
|
2022-01-28 00:46:42 +01:00
|
|
|
let(:user) { Fabricate(:user) }
|
2019-03-03 22:18:23 +01:00
|
|
|
let(:scopes) { 'write:statuses' }
|
|
|
|
let(:token) { Fabricate(:accessible_access_token, resource_owner_id: user.id, scopes: scopes) }
|
2024-03-01 17:24:45 +01:00
|
|
|
let(:headers) { { 'Authorization' => "Bearer #{token.token}" } }
|
2019-03-03 22:18:23 +01:00
|
|
|
|
2024-03-01 17:24:45 +01:00
|
|
|
describe 'POST /api/v1/polls/:poll_id/votes' do
|
2019-03-03 22:18:23 +01:00
|
|
|
let(:poll) { Fabricate(:poll) }
|
2024-07-09 14:41:49 +02:00
|
|
|
let(:params) { { choices: %w(1) } }
|
2019-03-03 22:18:23 +01:00
|
|
|
|
|
|
|
before do
|
2024-07-09 14:41:49 +02:00
|
|
|
post "/api/v1/polls/#{poll.id}/votes", params: params, headers: headers
|
2019-03-03 22:18:23 +01:00
|
|
|
end
|
|
|
|
|
2023-10-13 14:42:09 +02:00
|
|
|
it 'creates a vote', :aggregate_failures do
|
2019-03-03 22:18:23 +01:00
|
|
|
expect(response).to have_http_status(200)
|
|
|
|
|
|
|
|
expect(vote).to_not be_nil
|
|
|
|
expect(vote.choice).to eq 1
|
|
|
|
|
|
|
|
expect(poll.reload.cached_tallies).to eq [0, 1]
|
|
|
|
end
|
2024-03-01 17:24:45 +01:00
|
|
|
|
2024-07-09 14:41:49 +02:00
|
|
|
context 'when the required choices param is not provided' do
|
|
|
|
let(:params) { {} }
|
|
|
|
|
|
|
|
it 'returns http bad request' do
|
|
|
|
expect(response).to have_http_status(400)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2024-03-01 17:24:45 +01:00
|
|
|
private
|
|
|
|
|
|
|
|
def vote
|
|
|
|
poll.votes.where(account: user.account).first
|
|
|
|
end
|
2019-03-03 22:18:23 +01:00
|
|
|
end
|
|
|
|
end
|