mirror of
https://github.com/mastodon/mastodon.git
synced 2025-09-05 17:31:12 +00:00
67 lines
2.1 KiB
Ruby
67 lines
2.1 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
RSpec.describe BulkImport do
|
|
describe 'Associations' do
|
|
it { is_expected.to belong_to(:account).required }
|
|
it { is_expected.to have_many(:rows).class_name('BulkImportRow').inverse_of(:bulk_import).dependent(:delete_all) }
|
|
end
|
|
|
|
describe 'Validations' do
|
|
subject { Fabricate.build :bulk_import }
|
|
|
|
it { is_expected.to validate_presence_of(:type) }
|
|
end
|
|
|
|
describe 'Scopes' do
|
|
describe '.archival_completed' do
|
|
let!(:old_import) { Fabricate :bulk_import, created_at: 1.month.ago }
|
|
let!(:new_import) { Fabricate :bulk_import, created_at: 1.day.ago }
|
|
|
|
it 'returns imports which have passed the archive window period' do
|
|
expect(described_class.archival_completed)
|
|
.to include(old_import)
|
|
.and not_include(new_import)
|
|
end
|
|
end
|
|
|
|
describe '.confirmation_missed' do
|
|
let!(:old_unconfirmed_import) { Fabricate :bulk_import, created_at: 1.week.ago, state: :unconfirmed }
|
|
let!(:old_scheduled_import) { Fabricate :bulk_import, created_at: 1.week.ago, state: :scheduled }
|
|
let!(:new_unconfirmed_import) { Fabricate :bulk_import, created_at: 1.minute.ago, state: :unconfirmed }
|
|
|
|
it 'returns imports which have passed the confirmation window without confirming' do
|
|
expect(described_class.confirmation_missed)
|
|
.to include(old_unconfirmed_import)
|
|
.and not_include(old_scheduled_import)
|
|
.and not_include(new_unconfirmed_import)
|
|
end
|
|
end
|
|
end
|
|
|
|
describe '#failure_count' do
|
|
subject { described_class.new(processed_items: 100, imported_items: 90).failure_count }
|
|
|
|
it { is_expected.to eq(10) }
|
|
end
|
|
|
|
describe '#processing_complete?' do
|
|
subject { Fabricate.build :bulk_import, processed_items:, total_items: }
|
|
|
|
context 'when processed and total are the same' do
|
|
let(:processed_items) { 100 }
|
|
let(:total_items) { 100 }
|
|
|
|
it { is_expected.to be_processing_complete }
|
|
end
|
|
|
|
context 'when processed and total are not the same' do
|
|
let(:processed_items) { 100 }
|
|
let(:total_items) { 200 }
|
|
|
|
it { is_expected.to_not be_processing_complete }
|
|
end
|
|
end
|
|
end
|