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

checkbox_tag_component_spec.rb « pajamas « components « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bca7a6005d518d28bfffde5e6a4c6bbb358e2863 (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
# frozen_string_literal: true
require "spec_helper"

RSpec.describe Pajamas::CheckboxTagComponent, :aggregate_failures, type: :component do
  let_it_be(:name) { :view_diffs_file_by_file }
  let_it_be(:label) { "Show one file at a time on merge request's Changes tab" }
  let_it_be(:help_text) { 'Instead of all the files changed, show only one file at a time.' }

  context 'with default options' do
    before do
      render_inline(described_class.new(name: name)) do |c|
        c.label { label }
      end
    end

    include_examples 'it renders unchecked checkbox with value of `1`'
    include_examples 'it does not render help text'
  end

  context 'with custom options' do
    let_it_be(:value) { 'yes' }
    let_it_be(:checkbox_options) { { class: 'checkbox-foo-bar', checked: true } }
    let_it_be(:label_options) { { class: 'label-foo-bar' } }

    before do
      render_inline(
        described_class.new(
          name: name,
          value: value,
          checked: true,
          checkbox_options: checkbox_options,
          label_options: label_options
        )
      ) do |c|
        c.label { label }
      end
    end

    it 'renders checked checkbox with value of `yes`' do
      expect(page).to have_checked_field(label, with: value, class: checkbox_options[:class])
    end

    it 'adds CSS class to label' do
      expect(page).to have_selector('label.label-foo-bar')
    end
  end

  context 'with `help_text` slot' do
    before do
      render_inline(described_class.new(name: name)) do |c|
        c.label { label }
        c.help_text { help_text }
      end
    end

    include_examples 'it renders unchecked checkbox with value of `1`'
    include_examples 'it renders help text'
  end
end