summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/github_import/importer/events/closed_spec.rb
blob: 116917d3e06ce4e42022f6913cea350492b57c9d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Gitlab::GithubImport::Importer::Events::Closed do
  subject(:importer) { described_class.new(project, user.id) }

  let_it_be(:project) { create(:project, :repository) }
  let_it_be(:user) { create(:user) }

  let(:issue) { create(:issue, project: project) }
  let(:commit_id) { nil }

  let(:issue_event) do
    Gitlab::GithubImport::Representation::IssueEvent.from_json_hash(
      'id' => 6501124486,
      'node_id' => 'CE_lADOHK9fA85If7x0zwAAAAGDf0mG',
      'url' => 'https://api.github.com/repos/elhowm/test-import/issues/events/6501124486',
      'actor' => { 'id' => 4, 'login' => 'alice' },
      'event' => 'closed',
      'created_at' => '2022-04-26 18:30:53 UTC',
      'commit_id' => commit_id,
      'issue_db_id' => issue.id
    )
  end

  let(:expected_event_attrs) do
    {
      project_id: project.id,
      author_id: user.id,
      target_id: issue.id,
      target_type: Issue.name,
      action: 'closed',
      created_at: issue_event.created_at,
      updated_at: issue_event.created_at
    }.stringify_keys
  end

  let(:expected_state_event_attrs) do
    {
      user_id: user.id,
      issue_id: issue.id,
      state: 'closed',
      created_at: issue_event.created_at
    }.stringify_keys
  end

  it 'creates expected event and state event' do
    importer.execute(issue_event)

    expect(issue.events.count).to eq 1
    expect(issue.events[0].attributes)
      .to include expected_event_attrs

    expect(issue.resource_state_events.count).to eq 1
    expect(issue.resource_state_events[0].attributes)
      .to include expected_state_event_attrs
  end

  context 'when closed by commit' do
    let!(:closing_commit) { create(:commit, project: project) }
    let(:commit_id) { closing_commit.id }

    it 'creates expected event and state event' do
      importer.execute(issue_event)

      expect(issue.events.count).to eq 1
      state_event = issue.resource_state_events.last
      expect(state_event.source_commit).to eq commit_id[0..40]
    end
  end
end