76 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			Ruby
		
	
	
	
			
		
		
	
	
			76 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			Ruby
		
	
	
	
# frozen_string_literal: true
 | 
						|
 | 
						|
require 'spec_helper'
 | 
						|
 | 
						|
RSpec.describe Gitlab::HookData::IssueBuilder do
 | 
						|
  let_it_be(:label) { create(:label) }
 | 
						|
  let_it_be(:issue) { create(:labeled_issue, labels: [label], project: label.project) }
 | 
						|
 | 
						|
  let(:builder) { described_class.new(issue) }
 | 
						|
 | 
						|
  describe '#build' do
 | 
						|
    let(:data) { builder.build }
 | 
						|
 | 
						|
    it 'includes safe attribute' do
 | 
						|
      %w[
 | 
						|
        assignee_id
 | 
						|
        author_id
 | 
						|
        closed_at
 | 
						|
        confidential
 | 
						|
        created_at
 | 
						|
        description
 | 
						|
        discussion_locked
 | 
						|
        due_date
 | 
						|
        id
 | 
						|
        iid
 | 
						|
        last_edited_at
 | 
						|
        last_edited_by_id
 | 
						|
        milestone_id
 | 
						|
        moved_to_id
 | 
						|
        duplicated_to_id
 | 
						|
        project_id
 | 
						|
        relative_position
 | 
						|
        state_id
 | 
						|
        time_estimate
 | 
						|
        title
 | 
						|
        updated_at
 | 
						|
        updated_by_id
 | 
						|
      ].each do |key|
 | 
						|
        expect(data).to include(key)
 | 
						|
      end
 | 
						|
    end
 | 
						|
 | 
						|
    it 'includes additional attrs' do
 | 
						|
      expect(data).to include(:total_time_spent)
 | 
						|
      expect(data).to include(:time_change)
 | 
						|
      expect(data).to include(:human_time_estimate)
 | 
						|
      expect(data).to include(:human_total_time_spent)
 | 
						|
      expect(data).to include(:human_time_change)
 | 
						|
      expect(data).to include(:assignee_ids)
 | 
						|
      expect(data).to include(:state)
 | 
						|
      expect(data).to include(:severity)
 | 
						|
      expect(data).to include('labels' => [label.hook_attrs])
 | 
						|
    end
 | 
						|
 | 
						|
    context 'when the issue has an image in the description' do
 | 
						|
      let(:issue_with_description) { create(:issue, description: 'test') }
 | 
						|
      let(:builder) { described_class.new(issue_with_description) }
 | 
						|
 | 
						|
      it 'sets the image to use an absolute URL' do
 | 
						|
        expected_path = "#{issue_with_description.project.path_with_namespace}/uploads/abc/Issue_Image.png"
 | 
						|
 | 
						|
        expect(data[:description])
 | 
						|
          .to eq("test")
 | 
						|
      end
 | 
						|
    end
 | 
						|
 | 
						|
    context 'for incident' do
 | 
						|
      let_it_be(:issue) { create(:incident, :with_escalation_status) }
 | 
						|
 | 
						|
      it 'includes additional attr' do
 | 
						|
        expect(data).to include(:escalation_status)
 | 
						|
      end
 | 
						|
    end
 | 
						|
  end
 | 
						|
end
 |