65 lines
1.8 KiB
Ruby
65 lines
1.8 KiB
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
require 'spec_helper'
|
||
|
|
||
|
describe Issues::ImportCsvService do
|
||
|
let(:project) { create(:project) }
|
||
|
let(:user) { create(:user) }
|
||
|
|
||
|
subject do
|
||
|
uploader = FileUploader.new(project)
|
||
|
uploader.store!(file)
|
||
|
|
||
|
described_class.new(user, project, uploader.upload).execute
|
||
|
end
|
||
|
|
||
|
describe '#execute' do
|
||
|
context 'invalid file' do
|
||
|
let(:file) { fixture_file_upload('spec/fixtures/banana_sample.gif') }
|
||
|
|
||
|
it 'returns invalid file error' do
|
||
|
expect_any_instance_of(Notify).to receive(:import_issues_csv_email)
|
||
|
|
||
|
expect(subject[:success]).to eq(0)
|
||
|
expect(subject[:valid_file]).to eq(false)
|
||
|
end
|
||
|
end
|
||
|
|
||
|
context 'comma delimited file' do
|
||
|
let(:file) { fixture_file_upload('spec/fixtures/csv_comma.csv') }
|
||
|
|
||
|
it 'imports CSV without errors' do
|
||
|
expect_any_instance_of(Notify).to receive(:import_issues_csv_email)
|
||
|
|
||
|
expect(subject[:success]).to eq(3)
|
||
|
expect(subject[:errors]).to eq([])
|
||
|
expect(subject[:valid_file]).to eq(true)
|
||
|
end
|
||
|
end
|
||
|
|
||
|
context 'tab delimited file with error row' do
|
||
|
let(:file) { fixture_file_upload('spec/fixtures/csv_tab.csv') }
|
||
|
|
||
|
it 'imports CSV with some error rows' do
|
||
|
expect_any_instance_of(Notify).to receive(:import_issues_csv_email)
|
||
|
|
||
|
expect(subject[:success]).to eq(2)
|
||
|
expect(subject[:errors]).to eq([3])
|
||
|
expect(subject[:valid_file]).to eq(true)
|
||
|
end
|
||
|
end
|
||
|
|
||
|
context 'semicolon delimited file with CRLF' do
|
||
|
let(:file) { fixture_file_upload('spec/fixtures/csv_semicolon.csv') }
|
||
|
|
||
|
it 'imports CSV with a blank row' do
|
||
|
expect_any_instance_of(Notify).to receive(:import_issues_csv_email)
|
||
|
|
||
|
expect(subject[:success]).to eq(3)
|
||
|
expect(subject[:errors]).to eq([4])
|
||
|
expect(subject[:valid_file]).to eq(true)
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|