2023-02-22 01:55:31 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-04-11 22:00:43 +02:00
|
|
|
require 'rails_helper'
|
|
|
|
|
2024-09-04 07:12:25 +02:00
|
|
|
RSpec.describe Export do
|
2024-10-02 11:43:04 +02:00
|
|
|
subject { described_class.new(account) }
|
|
|
|
|
2017-06-19 11:30:27 +02:00
|
|
|
let(:account) { Fabricate(:account) }
|
|
|
|
let(:target_accounts) do
|
2024-10-02 11:43:04 +02:00
|
|
|
[
|
|
|
|
Fabricate(:account),
|
|
|
|
Fabricate(:account, username: 'one', domain: 'local.host'),
|
|
|
|
]
|
2017-06-19 11:30:27 +02:00
|
|
|
end
|
2017-04-13 15:29:30 +02:00
|
|
|
|
2024-10-02 11:43:04 +02:00
|
|
|
describe '#to_bookmarks_csv' do
|
|
|
|
before { Fabricate.times(2, :bookmark, account: account) }
|
2017-06-19 11:30:27 +02:00
|
|
|
|
2024-10-02 11:43:04 +02:00
|
|
|
let(:export) { CSV.parse(subject.to_bookmarks_csv) }
|
2017-04-13 15:29:30 +02:00
|
|
|
|
2024-10-02 11:43:04 +02:00
|
|
|
it 'returns a csv of bookmarks' do
|
|
|
|
expect(export)
|
|
|
|
.to contain_exactly(
|
|
|
|
include(/statuses/),
|
|
|
|
include(/statuses/)
|
|
|
|
)
|
2017-04-13 15:29:30 +02:00
|
|
|
end
|
2024-10-02 11:43:04 +02:00
|
|
|
end
|
2017-04-13 15:29:30 +02:00
|
|
|
|
2024-10-02 11:43:04 +02:00
|
|
|
describe '#to_blocked_accounts_csv' do
|
|
|
|
before { target_accounts.each { |target_account| account.block!(target_account) } }
|
|
|
|
|
|
|
|
let(:export) { CSV.parse(subject.to_blocked_accounts_csv) }
|
|
|
|
|
|
|
|
it 'returns a csv of the blocked accounts' do
|
|
|
|
expect(export)
|
|
|
|
.to contain_exactly(
|
|
|
|
include('one@local.host'),
|
|
|
|
include(be_present)
|
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
2017-06-19 11:30:27 +02:00
|
|
|
|
2024-10-02 11:43:04 +02:00
|
|
|
describe '#to_muted_accounts_csv' do
|
|
|
|
before { target_accounts.each { |target_account| account.mute!(target_account) } }
|
2017-04-13 15:29:30 +02:00
|
|
|
|
2024-10-02 11:43:04 +02:00
|
|
|
let(:export) { CSV.parse(subject.to_muted_accounts_csv) }
|
|
|
|
|
|
|
|
it 'returns a csv of the muted accounts' do
|
|
|
|
expect(export)
|
|
|
|
.to contain_exactly(
|
|
|
|
contain_exactly('Account address', 'Hide notifications'),
|
|
|
|
include('one@local.host', 'true'),
|
|
|
|
include(be_present)
|
|
|
|
)
|
2017-04-13 15:29:30 +02:00
|
|
|
end
|
2024-10-02 11:43:04 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
describe '#to_following_accounts_csv' do
|
|
|
|
before { target_accounts.each { |target_account| account.follow!(target_account) } }
|
|
|
|
|
|
|
|
let(:export) { CSV.parse(subject.to_following_accounts_csv) }
|
2017-04-13 15:29:30 +02:00
|
|
|
|
|
|
|
it 'returns a csv of the following accounts' do
|
2024-10-02 11:43:04 +02:00
|
|
|
expect(export)
|
|
|
|
.to contain_exactly(
|
|
|
|
contain_exactly('Account address', 'Show boosts', 'Notify on new posts', 'Languages'),
|
|
|
|
include('one@local.host', 'true', 'false', be_blank),
|
|
|
|
include(be_present)
|
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#to_lists_csv' do
|
|
|
|
before do
|
|
|
|
target_accounts.each do |target_account|
|
|
|
|
account.follow!(target_account)
|
|
|
|
Fabricate(:list, account: account).accounts << target_account
|
|
|
|
end
|
|
|
|
end
|
2017-06-19 11:30:27 +02:00
|
|
|
|
2024-10-02 11:43:04 +02:00
|
|
|
let(:export) { CSV.parse(subject.to_lists_csv) }
|
2017-04-11 22:00:43 +02:00
|
|
|
|
2024-10-02 11:43:04 +02:00
|
|
|
it 'returns a csv of the lists' do
|
|
|
|
expect(export)
|
|
|
|
.to contain_exactly(
|
|
|
|
include('one@local.host'),
|
|
|
|
include(be_present)
|
|
|
|
)
|
2017-04-11 22:00:43 +02:00
|
|
|
end
|
|
|
|
end
|
2017-06-19 11:30:27 +02:00
|
|
|
|
2024-10-02 11:43:04 +02:00
|
|
|
describe '#to_blocked_domains_csv' do
|
|
|
|
before { Fabricate.times(2, :account_domain_block, account: account) }
|
|
|
|
|
|
|
|
let(:export) { CSV.parse(subject.to_blocked_domains_csv) }
|
|
|
|
|
|
|
|
it 'returns a csv of the blocked domains' do
|
|
|
|
expect(export)
|
|
|
|
.to contain_exactly(
|
|
|
|
include(/example/),
|
|
|
|
include(/example/)
|
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
2017-04-11 22:00:43 +02:00
|
|
|
end
|