summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/jira_import/issue_serializer_spec.rb
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-03-27 12:07:43 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2020-03-27 12:07:43 +0000
commit39fa7d1eeb2dba52f0601128f3ac91f57d19866e (patch)
treeda042d34ff762dd1957e51666a34202295a081b9 /spec/lib/gitlab/jira_import/issue_serializer_spec.rb
parent6ac4a6713ed3196af899011f7e18658e16ebaac0 (diff)
downloadgitlab-ce-39fa7d1eeb2dba52f0601128f3ac91f57d19866e.tar.gz
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/lib/gitlab/jira_import/issue_serializer_spec.rb')
-rw-r--r--spec/lib/gitlab/jira_import/issue_serializer_spec.rb89
1 files changed, 89 insertions, 0 deletions
diff --git a/spec/lib/gitlab/jira_import/issue_serializer_spec.rb b/spec/lib/gitlab/jira_import/issue_serializer_spec.rb
new file mode 100644
index 00000000000..03631a3e941
--- /dev/null
+++ b/spec/lib/gitlab/jira_import/issue_serializer_spec.rb
@@ -0,0 +1,89 @@
+# frozen_string_literal: true
+
+require 'spec_helper'
+
+describe Gitlab::JiraImport::IssueSerializer do
+ describe '#execute' do
+ let_it_be(:project) { create(:project) }
+
+ let(:iid) { 5 }
+ let(:key) { 'PROJECT-5' }
+ let(:summary) { 'some title' }
+ let(:description) { 'basic description' }
+ let(:created_at) { '2020-01-01 20:00:00' }
+ let(:updated_at) { '2020-01-10 20:00:00' }
+ let(:assignee) { double(displayName: 'Solver') }
+ let(:jira_status) { 'new' }
+ let(:jira_issue) do
+ double(
+ id: '1234',
+ key: key,
+ summary: summary,
+ description: description,
+ created: created_at,
+ updated: updated_at,
+ assignee: assignee,
+ reporter: double(displayName: 'Reporter'),
+ status: double(statusCategory: { 'key' => jira_status })
+ )
+ end
+ let(:params) { { iid: iid } }
+
+ let(:expected_description) do
+ <<~MD
+ *Created by: Reporter*
+
+ *Assigned to: Solver*
+
+ basic description
+ MD
+ end
+
+ subject { described_class.new(project, jira_issue, params).execute }
+
+ context 'attributes setting' do
+ it 'sets the basic attributes' do
+ expect(subject).to eq(
+ iid: iid,
+ project_id: project.id,
+ description: expected_description.strip,
+ title: "[#{key}] #{summary}",
+ state_id: 1,
+ updated_at: updated_at,
+ created_at: created_at,
+ author_id: project.creator_id
+ )
+ end
+ end
+
+ context 'with done status' do
+ let(:jira_status) { 'done' }
+
+ it 'maps the status to closed' do
+ expect(subject[:state_id]).to eq(2)
+ end
+ end
+
+ context 'without the assignee' do
+ let(:assignee) { nil }
+
+ it 'does not include assignee in the description' do
+ expected_description = <<~MD
+ *Created by: Reporter*
+
+ basic description
+ MD
+
+ expect(subject[:description]).to eq(expected_description.strip)
+ end
+ end
+
+ context 'without the iid' do
+ let(:params) { {} }
+
+ it 'does not set the iid' do
+ expect(subject[:iid]).to be_nil
+ end
+ end
+ end
+end