112 lines
3.4 KiB
Ruby
112 lines
3.4 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
|
|
RSpec.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).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(Notify).to receive_message_chain(:import_issues_csv_email, :deliver_later)
|
|
|
|
expect(subject[:success]).to eq(0)
|
|
expect(subject[:parse_error]).to eq(true)
|
|
end
|
|
end
|
|
|
|
context 'with a file generated by Gitlab CSV export' do
|
|
let(:file) { fixture_file_upload('spec/fixtures/csv_gitlab_export.csv') }
|
|
|
|
it 'imports the CSV without errors' do
|
|
expect(Notify).to receive_message_chain(:import_issues_csv_email, :deliver_later)
|
|
|
|
expect(subject[:success]).to eq(4)
|
|
expect(subject[:error_lines]).to eq([])
|
|
expect(subject[:parse_error]).to eq(false)
|
|
end
|
|
|
|
it 'correctly sets the issue attributes' do
|
|
expect { subject }.to change { project.issues.count }.by 4
|
|
|
|
expect(project.issues.reload.last).to have_attributes(
|
|
title: 'Test Title',
|
|
description: 'Test Description'
|
|
)
|
|
end
|
|
end
|
|
|
|
context 'comma delimited file' do
|
|
let(:file) { fixture_file_upload('spec/fixtures/csv_comma.csv') }
|
|
|
|
it 'imports CSV without errors' do
|
|
expect(Notify).to receive_message_chain(:import_issues_csv_email, :deliver_later)
|
|
|
|
expect(subject[:success]).to eq(3)
|
|
expect(subject[:error_lines]).to eq([])
|
|
expect(subject[:parse_error]).to eq(false)
|
|
end
|
|
|
|
it 'correctly sets the issue attributes' do
|
|
expect { subject }.to change { project.issues.count }.by 3
|
|
|
|
expect(project.issues.reload.last).to have_attributes(
|
|
title: 'Title with quote"',
|
|
description: 'Description'
|
|
)
|
|
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(Notify).to receive_message_chain(:import_issues_csv_email, :deliver_later)
|
|
|
|
expect(subject[:success]).to eq(2)
|
|
expect(subject[:error_lines]).to eq([3])
|
|
expect(subject[:parse_error]).to eq(false)
|
|
end
|
|
|
|
it 'correctly sets the issue attributes' do
|
|
expect { subject }.to change { project.issues.count }.by 2
|
|
|
|
expect(project.issues.reload.last).to have_attributes(
|
|
title: 'Hello',
|
|
description: 'World'
|
|
)
|
|
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(Notify).to receive_message_chain(:import_issues_csv_email, :deliver_later)
|
|
|
|
expect(subject[:success]).to eq(3)
|
|
expect(subject[:error_lines]).to eq([4])
|
|
expect(subject[:parse_error]).to eq(false)
|
|
end
|
|
|
|
it 'correctly sets the issue attributes' do
|
|
expect { subject }.to change { project.issues.count }.by 3
|
|
|
|
expect(project.issues.reload.last).to have_attributes(
|
|
title: 'Hello',
|
|
description: 'World'
|
|
)
|
|
end
|
|
end
|
|
end
|
|
end
|