2023-02-22 11:55:31 +11:00
# frozen_string_literal: true
2017-04-12 05:40:14 +10:00
require 'rails_helper'
2023-05-04 13:49:53 +10:00
RSpec . describe Settings :: ImportsController do
2017-04-28 23:12:37 +10:00
render_views
2017-04-12 05:40:14 +10:00
2023-05-02 20:08:48 +10:00
let ( :user ) { Fabricate ( :user ) }
2017-04-12 05:40:14 +10:00
before do
2023-05-02 20:08:48 +10:00
sign_in user , scope : :user
2017-04-12 05:40:14 +10:00
end
2023-05-02 20:08:48 +10:00
describe 'GET #index' do
let! ( :import ) { Fabricate ( :bulk_import , account : user . account ) }
let! ( :other_import ) { Fabricate ( :bulk_import ) }
2023-04-20 00:07:29 +10:00
before do
2023-05-02 20:08:48 +10:00
get :index
end
it 'assigns the expected imports' do
expect ( assigns ( :recent_imports ) ) . to eq [ import ]
2023-04-20 00:07:29 +10:00
end
it 'returns http success' do
2018-04-22 05:35:07 +10:00
expect ( response ) . to have_http_status ( 200 )
2017-04-12 05:40:14 +10:00
end
2023-04-20 00:07:29 +10:00
it 'returns private cache control headers' do
expect ( response . headers [ 'Cache-Control' ] ) . to include ( 'private, no-store' )
end
2017-04-12 05:40:14 +10:00
end
2023-05-02 20:08:48 +10:00
describe 'GET #show' do
before do
get :show , params : { id : bulk_import . id }
end
context 'with someone else\'s import' do
let ( :bulk_import ) { Fabricate ( :bulk_import , state : :unconfirmed ) }
it 'returns http not found' do
expect ( response ) . to have_http_status ( 404 )
end
end
context 'with an already-confirmed import' do
let ( :bulk_import ) { Fabricate ( :bulk_import , account : user . account , state : :in_progress ) }
it 'returns http not found' do
expect ( response ) . to have_http_status ( 404 )
end
end
context 'with an unconfirmed import' do
let ( :bulk_import ) { Fabricate ( :bulk_import , account : user . account , state : :unconfirmed ) }
it 'returns http success' do
expect ( response ) . to have_http_status ( 200 )
end
end
end
describe 'POST #confirm' do
subject { post :confirm , params : { id : bulk_import . id } }
before do
allow ( BulkImportWorker ) . to receive ( :perform_async )
end
context 'with someone else\'s import' do
let ( :bulk_import ) { Fabricate ( :bulk_import , state : :unconfirmed ) }
it 'does not change the import\'s state' do
expect { subject } . to_not ( change { bulk_import . reload . state } )
end
it 'does not fire the import worker' do
subject
expect ( BulkImportWorker ) . to_not have_received ( :perform_async )
end
it 'returns http not found' do
subject
expect ( response ) . to have_http_status ( 404 )
end
end
context 'with an already-confirmed import' do
let ( :bulk_import ) { Fabricate ( :bulk_import , account : user . account , state : :in_progress ) }
it 'does not change the import\'s state' do
expect { subject } . to_not ( change { bulk_import . reload . state } )
end
it 'does not fire the import worker' do
subject
expect ( BulkImportWorker ) . to_not have_received ( :perform_async )
end
it 'returns http not found' do
subject
expect ( response ) . to have_http_status ( 404 )
end
end
context 'with an unconfirmed import' do
let ( :bulk_import ) { Fabricate ( :bulk_import , account : user . account , state : :unconfirmed ) }
it 'changes the import\'s state to scheduled' do
expect { subject } . to change { bulk_import . reload . state . to_sym } . from ( :unconfirmed ) . to ( :scheduled )
end
it 'fires the import worker on the expected import' do
subject
expect ( BulkImportWorker ) . to have_received ( :perform_async ) . with ( bulk_import . id )
end
it 'redirects to imports path' do
subject
expect ( response ) . to redirect_to ( settings_imports_path )
end
end
end
describe 'DELETE #destroy' do
subject { delete :destroy , params : { id : bulk_import . id } }
context 'with someone else\'s import' do
let ( :bulk_import ) { Fabricate ( :bulk_import , state : :unconfirmed ) }
it 'does not delete the import' do
expect { subject } . to_not ( change { BulkImport . exists? ( bulk_import . id ) } )
end
it 'returns http not found' do
subject
expect ( response ) . to have_http_status ( 404 )
end
end
context 'with an already-confirmed import' do
let ( :bulk_import ) { Fabricate ( :bulk_import , account : user . account , state : :in_progress ) }
it 'does not delete the import' do
expect { subject } . to_not ( change { BulkImport . exists? ( bulk_import . id ) } )
end
it 'returns http not found' do
subject
expect ( response ) . to have_http_status ( 404 )
end
end
context 'with an unconfirmed import' do
let ( :bulk_import ) { Fabricate ( :bulk_import , account : user . account , state : :unconfirmed ) }
it 'deletes the import' do
expect { subject } . to change { BulkImport . exists? ( bulk_import . id ) } . from ( true ) . to ( false )
end
it 'redirects to imports path' do
subject
expect ( response ) . to redirect_to ( settings_imports_path )
end
end
end
describe 'GET #failures' do
subject { get :failures , params : { id : bulk_import . id } , format : :csv }
shared_examples 'export failed rows' do | expected_contents |
let ( :bulk_import ) { Fabricate ( :bulk_import , account : user . account , type : import_type , state : :finished ) }
before do
bulk_import . update ( total_items : bulk_import . rows . count , processed_items : bulk_import . rows . count , imported_items : 0 )
end
it 'returns http success' do
subject
expect ( response ) . to have_http_status ( 200 )
end
it 'returns expected contents' do
subject
expect ( response . body ) . to eq expected_contents
end
end
context 'with follows' do
let ( :import_type ) { 'following' }
let! ( :rows ) do
[
{ 'acct' = > 'foo@bar' } ,
{ 'acct' = > 'user@bar' , 'show_reblogs' = > false , 'notify' = > true , 'languages' = > [ 'fr' , 'de' ] } ,
] . map { | data | Fabricate ( :bulk_import_row , bulk_import : bulk_import , data : data ) }
end
include_examples 'export failed rows' , " Account address,Show boosts,Notify on new posts,Languages \n foo@bar,true,false, \n user@bar,false,true, \" fr, de \" \n "
end
context 'with blocks' do
let ( :import_type ) { 'blocking' }
let! ( :rows ) do
[
{ 'acct' = > 'foo@bar' } ,
{ 'acct' = > 'user@bar' } ,
] . map { | data | Fabricate ( :bulk_import_row , bulk_import : bulk_import , data : data ) }
end
include_examples 'export failed rows' , " foo@bar \n user@bar \n "
end
context 'with mutes' do
let ( :import_type ) { 'muting' }
let! ( :rows ) do
[
{ 'acct' = > 'foo@bar' } ,
{ 'acct' = > 'user@bar' , 'hide_notifications' = > false } ,
] . map { | data | Fabricate ( :bulk_import_row , bulk_import : bulk_import , data : data ) }
end
include_examples 'export failed rows' , " Account address,Hide notifications \n foo@bar,true \n user@bar,false \n "
end
context 'with domain blocks' do
let ( :import_type ) { 'domain_blocking' }
let! ( :rows ) do
[
{ 'domain' = > 'bad.domain' } ,
{ 'domain' = > 'evil.domain' } ,
] . map { | data | Fabricate ( :bulk_import_row , bulk_import : bulk_import , data : data ) }
end
include_examples 'export failed rows' , " bad.domain \n evil.domain \n "
end
context 'with bookmarks' do
let ( :import_type ) { 'bookmarks' }
let! ( :rows ) do
[
{ 'uri' = > 'https://foo.com/1' } ,
{ 'uri' = > 'https://foo.com/2' } ,
] . map { | data | Fabricate ( :bulk_import_row , bulk_import : bulk_import , data : data ) }
end
include_examples 'export failed rows' , " https://foo.com/1 \n https://foo.com/2 \n "
end
end
2017-04-12 05:40:14 +10:00
describe 'POST #create' do
2023-05-02 20:08:48 +10:00
subject do
2017-04-12 05:40:14 +10:00
post :create , params : {
2023-05-02 20:08:48 +10:00
form_import : {
type : import_type ,
mode : import_mode ,
data : fixture_file_upload ( import_file ) ,
2023-02-19 01:33:41 +11:00
} ,
2017-04-12 05:40:14 +10:00
}
2023-05-02 20:08:48 +10:00
end
shared_examples 'successful import' do | type , file , mode |
let ( :import_type ) { type }
let ( :import_file ) { file }
let ( :import_mode ) { mode }
2017-04-12 05:40:14 +10:00
2023-05-02 20:08:48 +10:00
it 'creates an unconfirmed bulk_import with expected type' do
expect { subject } . to change { user . account . bulk_imports . pluck ( :state , :type ) } . from ( [ ] ) . to ( [ [ 'unconfirmed' , import_type ] ] )
end
it 'redirects to confirmation page for the import' do
subject
expect ( response ) . to redirect_to ( settings_import_path ( user . account . bulk_imports . first ) )
end
2017-04-12 05:40:14 +10:00
end
2023-05-02 20:08:48 +10:00
shared_examples 'unsuccessful import' do | type , file , mode |
let ( :import_type ) { type }
let ( :import_file ) { file }
let ( :import_mode ) { mode }
it 'does not creates an unconfirmed bulk_import' do
expect { subject } . to_not ( change { user . account . bulk_imports . count } )
end
2017-04-12 05:40:14 +10:00
2023-05-02 20:08:48 +10:00
it 'sets error to the import' do
subject
expect ( assigns ( :import ) . errors ) . to_not be_empty
end
2017-04-12 05:40:14 +10:00
end
2023-05-02 20:08:48 +10:00
it_behaves_like 'successful import' , 'following' , 'imports.txt' , 'merge'
it_behaves_like 'successful import' , 'following' , 'imports.txt' , 'overwrite'
it_behaves_like 'successful import' , 'blocking' , 'imports.txt' , 'merge'
it_behaves_like 'successful import' , 'blocking' , 'imports.txt' , 'overwrite'
it_behaves_like 'successful import' , 'muting' , 'imports.txt' , 'merge'
it_behaves_like 'successful import' , 'muting' , 'imports.txt' , 'overwrite'
it_behaves_like 'successful import' , 'domain_blocking' , 'domain_blocks.csv' , 'merge'
it_behaves_like 'successful import' , 'domain_blocking' , 'domain_blocks.csv' , 'overwrite'
it_behaves_like 'successful import' , 'bookmarks' , 'bookmark-imports.txt' , 'merge'
it_behaves_like 'successful import' , 'bookmarks' , 'bookmark-imports.txt' , 'overwrite'
it_behaves_like 'unsuccessful import' , 'following' , 'domain_blocks.csv' , 'merge'
it_behaves_like 'unsuccessful import' , 'following' , 'domain_blocks.csv' , 'overwrite'
it_behaves_like 'unsuccessful import' , 'blocking' , 'domain_blocks.csv' , 'merge'
it_behaves_like 'unsuccessful import' , 'blocking' , 'domain_blocks.csv' , 'overwrite'
it_behaves_like 'unsuccessful import' , 'muting' , 'domain_blocks.csv' , 'merge'
it_behaves_like 'unsuccessful import' , 'muting' , 'domain_blocks.csv' , 'overwrite'
it_behaves_like 'unsuccessful import' , 'following' , 'empty.csv' , 'merge'
it_behaves_like 'unsuccessful import' , 'following' , 'empty.csv' , 'overwrite'
2017-04-12 05:40:14 +10:00
end
end