Convert settings/migration/redirects
spec controller->system (#33905)
This commit is contained in:
parent
db59f37269
commit
b07cd11f4c
2 changed files with 42 additions and 67 deletions
|
@ -1,67 +0,0 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
require 'rails_helper'
|
||||
|
||||
RSpec.describe Settings::Migration::RedirectsController do
|
||||
render_views
|
||||
|
||||
let!(:user) { Fabricate(:user, password: 'testtest') }
|
||||
|
||||
before do
|
||||
sign_in user, scope: :user
|
||||
end
|
||||
|
||||
describe 'GET #new' do
|
||||
before do
|
||||
get :new
|
||||
end
|
||||
|
||||
it 'returns http success with private cache control headers', :aggregate_failures do
|
||||
expect(response).to have_http_status(200)
|
||||
expect(response.headers['Cache-Control']).to include('private, no-store')
|
||||
end
|
||||
end
|
||||
|
||||
describe 'POST #create' do
|
||||
context 'with valid params' do
|
||||
before { stub_resolver }
|
||||
|
||||
it 'redirects to the settings migration path' do
|
||||
post :create, params: { form_redirect: { acct: 'new@host.com', current_password: 'testtest' } }
|
||||
|
||||
expect(response).to redirect_to(settings_migration_path)
|
||||
end
|
||||
end
|
||||
|
||||
context 'with non valid params' do
|
||||
it 'returns success and renders the new page' do
|
||||
post :create, params: { form_redirect: { acct: '' } }
|
||||
|
||||
expect(response).to have_http_status(200)
|
||||
expect(response).to render_template(:new)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
describe 'DELETE #destroy' do
|
||||
let(:account) { Fabricate(:account) }
|
||||
|
||||
before do
|
||||
user.account.update(moved_to_account_id: account.id)
|
||||
end
|
||||
|
||||
it 'resets the account and sends an update' do
|
||||
delete :destroy
|
||||
|
||||
expect(response).to redirect_to(settings_migration_path)
|
||||
expect(user.account.reload.moved_to_account).to be_nil
|
||||
end
|
||||
end
|
||||
|
||||
private
|
||||
|
||||
def stub_resolver
|
||||
resolver = instance_double(ResolveAccountService, call: Fabricate(:account))
|
||||
allow(ResolveAccountService).to receive(:new).and_return(resolver)
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue