mirror of
https://github.com/mastodon/mastodon.git
synced 2025-03-21 06:29:19 +01:00
Convert disputes/strikes
spec controller->request/system (#34191)
This commit is contained in:
parent
8ef546fe6b
commit
795d465f8d
3 changed files with 49 additions and 32 deletions
spec
controllers/disputes
requests/disputes
system/disputes
|
@ -1,32 +0,0 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
require 'rails_helper'
|
||||
|
||||
RSpec.describe Disputes::StrikesController do
|
||||
render_views
|
||||
|
||||
before { sign_in current_user, scope: :user }
|
||||
|
||||
describe '#show' do
|
||||
let(:current_user) { Fabricate(:user) }
|
||||
let(:strike) { Fabricate(:account_warning, target_account: current_user.account) }
|
||||
|
||||
before do
|
||||
get :show, params: { id: strike.id }
|
||||
end
|
||||
|
||||
context 'when meant for the user' do
|
||||
it 'returns http success' do
|
||||
expect(response).to have_http_status(:success)
|
||||
end
|
||||
end
|
||||
|
||||
context 'when meant for a different user' do
|
||||
let(:strike) { Fabricate(:account_warning) }
|
||||
|
||||
it 'returns http forbidden' do
|
||||
expect(response).to have_http_status(403)
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
22
spec/requests/disputes/strikes_spec.rb
Normal file
22
spec/requests/disputes/strikes_spec.rb
Normal file
|
@ -0,0 +1,22 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
require 'rails_helper'
|
||||
|
||||
RSpec.describe 'Disputes Strikes' do
|
||||
before { sign_in current_user }
|
||||
|
||||
describe 'GET /disputes/strikes/:id' do
|
||||
let(:current_user) { Fabricate(:user) }
|
||||
|
||||
context 'when meant for a different user' do
|
||||
let(:strike) { Fabricate(:account_warning) }
|
||||
|
||||
it 'returns http forbidden' do
|
||||
get disputes_strike_path(strike)
|
||||
|
||||
expect(response)
|
||||
.to have_http_status(403)
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
27
spec/system/disputes/strikes_spec.rb
Normal file
27
spec/system/disputes/strikes_spec.rb
Normal file
|
@ -0,0 +1,27 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
require 'rails_helper'
|
||||
|
||||
RSpec.describe 'Disputes Strikes' do
|
||||
before { sign_in(current_user) }
|
||||
|
||||
describe 'viewing strike disputes' do
|
||||
let(:current_user) { Fabricate(:user) }
|
||||
let!(:strike) { Fabricate(:account_warning, target_account: current_user.account) }
|
||||
|
||||
it 'shows a list of strikes and details for each' do
|
||||
visit disputes_strikes_path
|
||||
expect(page)
|
||||
.to have_title(I18n.t('settings.strikes'))
|
||||
|
||||
find('.strike-entry').click
|
||||
expect(page)
|
||||
.to have_title(strike_page_title)
|
||||
.and have_content(strike.text)
|
||||
end
|
||||
|
||||
def strike_page_title
|
||||
I18n.t('disputes.strikes.title', action: I18n.t(strike.action, scope: 'disputes.strikes.title_actions'), date: I18n.l(strike.created_at.to_date))
|
||||
end
|
||||
end
|
||||
end
|
Loading…
Add table
Reference in a new issue