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: c3d320a837bf0f2bf2cf667a3bfbc7c206ba065d (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
# 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 } }

  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
end