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

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

require 'spec_helper'

RSpec.describe Gitlab::FormBuilders::GitlabUiFormBuilder do
  let_it_be(:user) { build(:user) }
  let_it_be(:fake_template) do
    Object.new.tap do |template|
      template.extend ActionView::Helpers::FormHelper
      template.extend ActionView::Helpers::FormOptionsHelper
      template.extend ActionView::Helpers::TagHelper
      template.extend ActionView::Context
    end
  end

  let_it_be(:form_builder) { described_class.new(:user, user, fake_template, {}) }

  describe '#gitlab_ui_checkbox_component' do
    let(:optional_args) { {} }

    subject(:checkbox_html) { form_builder.gitlab_ui_checkbox_component(:view_diffs_file_by_file, "Show one file at a time on merge request's Changes tab", **optional_args) }

    context 'without optional arguments' do
      it 'renders correct html' do
        expected_html = <<~EOS
          <div class="gl-form-checkbox custom-control custom-checkbox">
            <input name="user[view_diffs_file_by_file]" type="hidden" value="0" />
            <input class="custom-control-input" type="checkbox" value="1" name="user[view_diffs_file_by_file]" id="user_view_diffs_file_by_file" />
            <label class="custom-control-label" for="user_view_diffs_file_by_file">
              Show one file at a time on merge request&#39;s Changes tab
            </label>
          </div>
        EOS

        expect(checkbox_html).to eq(html_strip_whitespace(expected_html))
      end
    end

    context 'with optional arguments' do
      let(:optional_args) do
        {
          help_text: 'Instead of all the files changed, show only one file at a time.',
          checkbox_options: { class: 'checkbox-foo-bar' },
          label_options: { class: 'label-foo-bar' },
          checked_value: '3',
          unchecked_value: '1'
        }
      end

      it 'renders help text' do
        expected_html = <<~EOS
          <div class="gl-form-checkbox custom-control custom-checkbox">
            <input name="user[view_diffs_file_by_file]" type="hidden" value="1" />
            <input class="custom-control-input checkbox-foo-bar" type="checkbox" value="3" name="user[view_diffs_file_by_file]" id="user_view_diffs_file_by_file" />
            <label class="custom-control-label label-foo-bar" for="user_view_diffs_file_by_file">
              <span>Show one file at a time on merge request&#39;s Changes tab</span>
              <p class="help-text">Instead of all the files changed, show only one file at a time.</p>
            </label>
          </div>
        EOS

        expect(checkbox_html).to eq(html_strip_whitespace(expected_html))
      end

      it 'passes arguments to `check_box` method' do
        allow(fake_template).to receive(:check_box).and_return('')

        checkbox_html

        expect(fake_template).to have_received(:check_box).with(:user, :view_diffs_file_by_file, { class: %w(custom-control-input checkbox-foo-bar), object: user }, '3', '1')
      end

      it 'passes arguments to `label` method' do
        allow(fake_template).to receive(:label).and_return('')

        checkbox_html

        expect(fake_template).to have_received(:label).with(:user, :view_diffs_file_by_file, { class: %w(custom-control-label label-foo-bar), object: user })
      end
    end
  end

  private

  def html_strip_whitespace(html)
    html.lines.map(&:strip).join('')
  end
end