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

dropdowns_helper_spec.rb « helpers « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c30cb159803474cd2939330537dbdb9b0cd398a4 (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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe DropdownsHelper do
  before do
    allow(helper).to receive(:sprite_icon).and_return('<span class="icon"></span>'.html_safe)
    allow(helper).to receive(:icon).and_return('<span class="icon"></span>'.html_safe)
  end

  shared_examples 'has two icons' do
    it 'returns two icons' do
      expect(content.scan('icon').count).to eq(2)
    end
  end

  describe '#dropdown_tag' do
    let(:content) { helper.dropdown_tag('toggle', options: { wrapper_class: 'fuz' }) { 'fizzbuzz' } }

    it 'returns the container in the content' do
      expect(content).to include('dropdown fuz')
    end

    it 'returns the block in the content' do
      expect(content).to include('fizzbuzz')
    end
  end

  describe '#dropdown_toggle' do
    let(:content) { helper.dropdown_toggle('foo', { default_label: 'foo' }, { toggle_class: 'fuz' }) }

    it 'returns the button' do
      expect(content).to include('dropdown-menu-toggle fuz')
    end

    it 'returns the buttons default label data attribute' do
      expect(content).to include('data-default-label="foo"')
    end

    it 'returns the dropdown toggle text', :aggregate_failures do
      expect(content).to include('dropdown-toggle-text is-default')
      expect(content).to include('foo')
    end

    it 'returns the button icon in the content' do
      expect(content.scan('icon').count).to eq(1)
    end
  end

  describe '#dropdown_toggle_link' do
    let(:content) { dropdown_toggle_link('foo', { data: 'bar' }, { toggle_class: 'fuz' }) }

    it 'returns the link' do
      expect(content).to include('dropdown-toggle-text fuz')
    end

    it 'returns the links data attribute' do
      expect(content).to include('data-data="bar"')
    end

    it 'returns the link text' do
      expect(content).to include('foo')
    end
  end

  describe '#dropdown_title' do
    shared_examples 'has a back button' do
      it 'contains the back button' do
        expect(content).to include('dropdown-title-button dropdown-menu-back')
      end
    end

    shared_examples 'does not have a back button' do
      it 'does not contain the back button' do
        expect(content).not_to include('dropdown-title-button dropdown-menu-back')
      end
    end

    shared_examples 'does not apply the margin class to the back button' do
      it 'does not contain the back button margin class' do
        expect(content).not_to include('dropdown-title-button dropdown-menu-back gl-mr-auto')
      end
    end

    shared_examples 'has a close button' do
      it 'contains the close button' do
        expect(content).to include('dropdown-title-button dropdown-menu-close')
      end
    end

    shared_examples 'does not have a close button' do
      it 'does not contain the close button' do
        expect(content).not_to include('dropdown-title-button dropdown-menu-close')
      end
    end

    shared_examples 'does not apply the margin class to the close button' do
      it 'does not contain the close button margin class' do
        expect(content).not_to include('dropdown-title-button dropdown-menu-close gl-ml-auto')
      end
    end

    shared_examples 'has the title text' do
      it 'contains the title text' do
        expect(content).to include('Foo')
      end
    end

    shared_examples 'has the title margin class' do |margin_class: ''|
      it 'contains the title margin class' do
        expect(content).to match(/class="#{margin_class}.*"[^>]*>Foo/)
      end
    end

    shared_examples 'does not have the title margin class' do
      it 'does not have the title margin class' do
        expect(content).not_to match(/class="gl-m[r|l]-auto.*"[^>]*>Foo/)
      end
    end

    context 'with a back and close button' do
      let(:content) { helper.dropdown_title('Foo', options: { back: true, close: true }) }

      it 'applies the justification class to the container', :aggregate_failures do
        expect(content).to match(/"dropdown-title.*gl-justify-content-space-between"/)
      end

      it_behaves_like 'has a back button'
      it_behaves_like 'has the title text'
      it_behaves_like 'has a close button'
      it_behaves_like 'has two icons'
      it_behaves_like 'does not have the title margin class'
    end

    context 'with a back button' do
      let(:content) { helper.dropdown_title('Foo', options: { back: true, close: false }) }

      it_behaves_like 'has a back button'
      it_behaves_like 'has the title text'
      it_behaves_like 'has the title margin class', margin_class: 'gl-mr-auto'
      it_behaves_like 'does not have a close button'

      it 'returns the back button icon' do
        expect(content.scan('icon').count).to eq(1)
      end
    end

    context 'with a close button' do
      let(:content) { helper.dropdown_title('Foo', options: { back: false, close: true }) }

      it_behaves_like 'does not have a back button'
      it_behaves_like 'has the title text'
      it_behaves_like 'has the title margin class', margin_class: 'gl-ml-auto'
      it_behaves_like 'has a close button'

      it 'returns the close button icon' do
        expect(content.scan('icon').count).to eq(1)
      end
    end

    context 'without any buttons' do
      let(:content) { helper.dropdown_title('Foo', options: { back: false, close: false }) }

      it_behaves_like 'does not have a back button'
      it_behaves_like 'has the title text'
      it_behaves_like 'does not have the title margin class'
      it_behaves_like 'does not have a close button'

      it 'returns no button icons' do
        expect(content.scan('icon').count).to eq(0)
      end
    end
  end

  describe '#dropdown_filter' do
    let(:content) { helper.dropdown_filter('foo') }

    it_behaves_like 'has two icons'

    it 'returns the container' do
      expect(content).to include('dropdown-input')
    end

    it 'returns the search input', :aggregate_failures do
      expect(content).to include('dropdown-input-field')
      expect(content).to include('placeholder="foo"')
    end
  end

  describe '#dropdown_content' do
    shared_examples 'contains the container' do
      it 'returns the container in the content' do
        expect(content).to include('dropdown-content')
      end
    end

    context 'without block' do
      let(:content) { helper.dropdown_content }

      it_behaves_like 'contains the container'
    end

    context 'with block' do
      let(:content) { helper.dropdown_content { 'foo' } }

      it_behaves_like 'contains the container'

      it 'returns the block in the content' do
        expect(content).to include('foo')
      end
    end
  end

  describe '#dropdown_footer' do
    shared_examples 'contains the content' do
      it 'returns the container in the content' do
        expect(content).to include('dropdown-footer')
      end

      it 'returns the block in the content' do
        expect(content).to include('foo')
      end
    end

    context 'without a content class' do
      let(:content) { helper.dropdown_footer { 'foo' } }

      it_behaves_like 'contains the content'
    end

    context 'without a content class' do
      let(:content) { helper.dropdown_footer(add_content_class: true) { 'foo' } }

      it_behaves_like 'contains the content'

      it 'returns the footer in the content' do
        expect(content).to include('dropdown-footer-content')
      end
    end
  end

  describe '#dropdown_loading' do
    let(:content) { helper.dropdown_loading }

    it 'returns the container in the content' do
      expect(content).to include('dropdown-loading')
    end

    it 'returns a gl-spinner in the content' do
      expect(content).to include('gl-spinner')
    end
  end
end