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

import_issues_csv_email.html.haml_spec.rb « notify « views « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2165cb6af85c4b09cc7dd4733a21f1045c0b53cc (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
79
80
81
82
83
84
85
86
87
88
89
90
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe 'notify/import_issues_csv_email.html.haml' do
  let(:user) { create(:user) }
  let(:project) { create(:project) }
  let(:correct_results) { { success: 3, parse_error: false } }
  let(:errored_results) { { success: 3, error_lines: [5, 6, 7], parse_error: false } }
  let(:parse_error_results) { { success: 0, parse_error: true } }
  let(:milestone_error_results) do
    { success: 0,
      preprocess_errors: { milestone_errors: { missing: { header: 'Milestone', titles: %w[15.10 15.11] } } } }
  end

  before do
    assign(:user, user)
    assign(:project, project)
  end

  context 'when no errors found while importing' do
    before do
      assign(:results, correct_results)
    end

    it 'renders correctly' do
      render

      expect(rendered).to have_link(project.full_name, href: project_url(project))
      expect(rendered).to have_content("3 issues imported")
      expect(rendered).not_to have_content("Errors found on line")
      expect(rendered).not_to have_content(
        "Error parsing CSV file. Please make sure it has the correct format: \
a delimited text file that uses a comma to separate values.")
    end
  end

  context 'when import errors reported' do
    before do
      assign(:results, errored_results)
    end

    it 'renders correctly' do
      render

      expect(rendered).to have_content("Errors found on lines: #{errored_results[:error_lines].join(", ")}. \
Please check if these lines have an issue title.")
      expect(rendered).not_to have_content("Error parsing CSV file. Please make sure it has the correct format: \
a delimited text file that uses a comma to separate values.")
    end
  end

  context 'when parse error reported while importing' do
    before do
      assign(:results, parse_error_results)
    end

    it 'renders with parse error' do
      render

      expect(rendered).to have_content("Error parsing CSV file. \
Please make sure it has the correct format: a delimited text file that uses a comma to separate values.")
    end
  end

  context 'when preprocess errors reported while importing' do
    before do
      assign(:results, milestone_error_results)
    end

    it 'renders with project name error' do
      render

      expect(rendered).to have_content("Could not find the following milestone values in \
#{project.full_name}: 15.10, 15.11")
    end

    context 'with a project in a group' do
      let_it_be(:group) { create(:group) }
      let_it_be(:project) { create(:project, group: group) }

      it 'renders with group clause error' do
        render

        expect(rendered).to have_content("Could not find the following milestone values in #{project.full_name} \
or its parent groups: 15.10, 15.11")
      end
    end
  end
end