2018-12-03 10:23:38 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-06-24 02:09:01 -04:00
|
|
|
RSpec.describe IssueBoardEntity do
|
2022-05-13 05:07:54 -04:00
|
|
|
include Gitlab::Routing.url_helpers
|
|
|
|
|
2020-01-15 07:08:34 -05:00
|
|
|
let_it_be(:project) { create(:project) }
|
|
|
|
let_it_be(:resource) { create(:issue, project: project) }
|
|
|
|
let_it_be(:user) { create(:user) }
|
|
|
|
let_it_be(:milestone) { create(:milestone, project: project) }
|
|
|
|
let_it_be(:label) { create(:label, project: project, title: 'Test Label') }
|
2021-04-14 11:09:04 -04:00
|
|
|
|
2020-01-15 07:08:34 -05:00
|
|
|
let(:request) { double('request', current_user: user) }
|
2018-12-03 10:23:38 -05:00
|
|
|
|
|
|
|
subject { described_class.new(resource, request: request).as_json }
|
|
|
|
|
|
|
|
it 'has basic attributes' do
|
|
|
|
expect(subject).to include(:id, :iid, :title, :confidential, :due_date, :project_id, :relative_position,
|
2021-06-15 17:10:04 -04:00
|
|
|
:labels, :assignees, project: hash_including(:id, :path, :path_with_namespace))
|
2018-12-03 10:23:38 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'has path and endpoints' do
|
|
|
|
expect(subject).to include(:reference_path, :real_path, :issue_sidebar_endpoint,
|
|
|
|
:toggle_subscription_endpoint, :assignable_labels_endpoint)
|
|
|
|
end
|
2018-12-13 12:47:50 -05:00
|
|
|
|
|
|
|
it 'has milestone attributes' do
|
|
|
|
resource.milestone = milestone
|
|
|
|
|
|
|
|
expect(subject).to include(milestone: hash_including(:id, :title))
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'has assignee attributes' do
|
|
|
|
resource.assignees = [user]
|
|
|
|
|
|
|
|
expect(subject).to include(assignees: array_including(hash_including(:id, :name, :username, :avatar_url)))
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'has label attributes' do
|
|
|
|
resource.labels = [label]
|
|
|
|
|
|
|
|
expect(subject).to include(labels: array_including(hash_including(:id, :title, :color, :description, :text_color, :priority)))
|
|
|
|
end
|
2022-05-13 05:07:54 -04:00
|
|
|
|
2022-05-23 14:08:14 -04:00
|
|
|
describe 'type' do
|
|
|
|
it 'has an issue type' do
|
|
|
|
expect(subject[:type]).to eq('ISSUE')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-05-13 05:07:54 -04:00
|
|
|
describe 'real_path' do
|
|
|
|
it 'has an issue path' do
|
|
|
|
expect(subject[:real_path]).to eq(project_issue_path(project, resource.iid))
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when issue is of type task' do
|
|
|
|
let(:resource) { create(:issue, :task, project: project) }
|
|
|
|
|
|
|
|
it 'has a work item path' do
|
|
|
|
expect(subject[:real_path]).to eq(project_work_items_path(project, resource.id))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2018-12-03 10:23:38 -05:00
|
|
|
end
|