2017-04-11 21:40:14 +02:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
RSpec.describe Settings::ImportsController, type: :controller do
|
2017-04-28 15:12:37 +02:00
|
|
|
render_views
|
2017-04-11 21:40:14 +02:00
|
|
|
|
|
|
|
before do
|
|
|
|
sign_in Fabricate(:user), scope: :user
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "GET #show" do
|
|
|
|
it "returns http success" do
|
|
|
|
get :show
|
2018-04-21 21:35:07 +02:00
|
|
|
expect(response).to have_http_status(200)
|
2017-04-11 21:40:14 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'POST #create' do
|
|
|
|
it 'redirects to settings path with successful following import' do
|
|
|
|
service = double(call: nil)
|
2018-01-22 14:25:09 +01:00
|
|
|
allow(ResolveAccountService).to receive(:new).and_return(service)
|
2017-04-11 21:40:14 +02:00
|
|
|
post :create, params: {
|
|
|
|
import: {
|
|
|
|
type: 'following',
|
2021-03-24 10:44:31 +01:00
|
|
|
data: fixture_file_upload('imports.txt')
|
2017-04-11 21:40:14 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
expect(response).to redirect_to(settings_import_path)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'redirects to settings path with successful blocking import' do
|
|
|
|
service = double(call: nil)
|
2018-01-22 14:25:09 +01:00
|
|
|
allow(ResolveAccountService).to receive(:new).and_return(service)
|
2017-04-11 21:40:14 +02:00
|
|
|
post :create, params: {
|
|
|
|
import: {
|
|
|
|
type: 'blocking',
|
2021-03-24 10:44:31 +01:00
|
|
|
data: fixture_file_upload('imports.txt')
|
2017-04-11 21:40:14 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
expect(response).to redirect_to(settings_import_path)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|