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

issuable_export_csv_worker_spec.rb « workers « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a18d10ad3dfaaafeb9703cd1618b350d4db754e4 (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
73
74
75
76
77
78
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe IssuableExportCsvWorker do
  let(:user) { create(:user) }
  let(:project) { create(:project, creator: user) }
  let(:params) { {} }

  subject { described_class.new.perform(issuable_type, user.id, project.id, params) }

  context 'when issuable type is Issue' do
    let(:issuable_type) { :issue }

    it 'emails a CSV' do
      expect { subject }.to change(ActionMailer::Base.deliveries, :size).by(1)
    end

    it 'ensures that project_id is passed to issues_finder' do
      expect(IssuesFinder).to receive(:new).with(anything, hash_including(project_id: project.id)).and_call_original

      subject
    end

    it 'removes sort parameter' do
      expect(IssuesFinder).to receive(:new).with(anything, hash_not_including(:sort)).and_call_original

      subject
    end

    it 'calls the issue export service' do
      expect(Issues::ExportCsvService).to receive(:new).once.and_call_original

      subject
    end

    context 'with params' do
      let(:params) { { 'test_key' => true, 'not' => { 'label_name' => ['SomeLabel'] } } }

      it 'allows symbol access for IssuesFinder' do
        expect(IssuesFinder).to receive(:new).and_wrap_original do |method, user, params|
          expect(params[:test_key]).to eq(true)
          expect(params[:not][:label_name]).to eq(['SomeLabel'])

          method.call(user, params)
        end

        subject
      end
    end
  end

  context 'when issuable type is MergeRequest' do
    let(:issuable_type) { :merge_request }

    it 'emails a CSV' do
      expect { subject }.to change(ActionMailer::Base.deliveries, :size).by(1)
    end

    it 'calls the MR export service' do
      expect(MergeRequests::ExportCsvService).to receive(:new).with(anything, project).once.and_call_original

      subject
    end

    it 'calls the MergeRequest finder' do
      expect(MergeRequestsFinder).to receive(:new).once.and_call_original

      subject
    end
  end

  context 'when issuable type is User' do
    let(:issuable_type) { :user }

    it { expect { subject }.to raise_error(ArgumentError) }
  end
end