Welcome to mirror list, hosted at ThFree Co, Russian Federation.

changed_label_spec.rb « events « importer « github_import « gitlab « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e21672aa430a1ea81c9d766271bf3bc7a46dd5cb (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Gitlab::GithubImport::Importer::Events::ChangedLabel do
  subject(:importer) { described_class.new(project, client) }

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

  let(:client) { instance_double('Gitlab::GithubImport::Client') }
  let(:issue) { create(:issue, project: project) }
  let!(:label) { create(:label, project: project) }

  let(:issue_event) do
    Gitlab::GithubImport::Representation::IssueEvent.from_json_hash(
      'id' => 6501124486,
      'actor' => { 'id' => user.id, 'login' => user.username },
      'event' => event_type,
      'commit_id' => nil,
      'label_title' => label.title,
      'issue_db_id' => issue.id,
      'created_at' => '2022-04-26 18:30:53 UTC',
      'issue' => { 'number' => issue.iid }
    )
  end

  let(:event_attrs) do
    {
      user_id: user.id,
      issue_id: issue.id,
      label_id: label.id,
      created_at: issue_event.created_at
    }.stringify_keys
  end

  shared_examples 'new event' do
    it 'creates a new label event' do
      expect { importer.execute(issue_event) }.to change { issue.resource_label_events.count }
        .from(0).to(1)
      expect(issue.resource_label_events.last)
        .to have_attributes(expected_event_attrs)
    end
  end

  before do
    allow(Gitlab::Cache::Import::Caching).to receive(:read_integer).and_return(label.id)
    allow_next_instance_of(Gitlab::GithubImport::IssuableFinder) do |finder|
      allow(finder).to receive(:database_id).and_return(issue.id)
    end
    allow_next_instance_of(Gitlab::GithubImport::UserFinder) do |finder|
      allow(finder).to receive(:find).with(user.id, user.username).and_return(user.id)
    end
  end

  context 'when importing a labeled event' do
    let(:event_type) { 'labeled' }
    let(:expected_event_attrs) { event_attrs.merge(action: 'add') }

    it_behaves_like 'new event'
  end

  context 'when importing an unlabeled event' do
    let(:event_type) { 'unlabeled' }
    let(:expected_event_attrs) { event_attrs.merge(action: 'remove') }

    it_behaves_like 'new event'
  end
end