debian-mirror-gitlab/spec/components/pajamas/button_component_spec.rb

286 lines
7.9 KiB
Ruby
Raw Normal View History

2022-07-23 23:45:48 +05:30
# frozen_string_literal: true
require "spec_helper"
RSpec.describe Pajamas::ButtonComponent, type: :component do
subject do
described_class.new(**options)
end
let(:content) { "Button content" }
let(:options) { {} }
2022-08-27 11:52:29 +05:30
RSpec.shared_examples 'basic button behavior' do
2022-07-23 23:45:48 +05:30
before do
render_inline(subject) do |c|
content
end
end
it 'renders its content' do
2022-08-13 15:12:31 +05:30
expect(page).to have_text content
2022-07-23 23:45:48 +05:30
end
it 'adds default styling' do
2022-08-13 15:12:31 +05:30
expect(page).to have_css ".btn.btn-default.btn-md.gl-button"
2022-07-23 23:45:48 +05:30
end
describe 'button_options' do
let(:options) { { button_options: { id: 'baz', data: { foo: 'bar' } } } }
it 'are added to the button' do
2022-08-13 15:12:31 +05:30
expect(page).to have_css ".gl-button#baz[data-foo='bar']"
2022-07-23 23:45:48 +05:30
end
context 'with custom classes' do
let(:options) { { variant: :danger, category: :tertiary, button_options: { class: 'custom-class' } } }
it 'don\'t conflict with internal button_classes' do
2022-08-13 15:12:31 +05:30
expect(page).to have_css '.gl-button.btn-danger.btn-danger-tertiary.custom-class'
2022-07-23 23:45:48 +05:30
end
end
context 'overriding base attributes' do
let(:options) { { button_options: { type: 'submit' } } }
it 'overrides type' do
2022-08-13 15:12:31 +05:30
expect(page).to have_css '[type="submit"]'
2022-07-23 23:45:48 +05:30
end
end
end
describe 'button_text_classes' do
let(:options) { { button_text_classes: 'custom-text-class' } }
it 'is added to the button text' do
2022-08-13 15:12:31 +05:30
expect(page).to have_css ".gl-button-text.custom-text-class"
2022-07-23 23:45:48 +05:30
end
end
describe 'disabled' do
context 'by default (false)' do
it 'does not have disabled styling and behavior' do
2022-08-27 11:52:29 +05:30
expect(page).not_to have_css ".disabled[disabled][aria-disabled]"
2022-07-23 23:45:48 +05:30
end
end
context 'when set to true' do
let(:options) { { disabled: true } }
it 'has disabled styling and behavior' do
2022-08-27 11:52:29 +05:30
expect(page).to have_css ".disabled[disabled][aria-disabled]"
2022-07-23 23:45:48 +05:30
end
end
end
describe 'loading' do
context 'by default (false)' do
it 'is not disabled' do
2022-08-27 11:52:29 +05:30
expect(page).not_to have_css ".disabled[disabled]"
2022-07-23 23:45:48 +05:30
end
it 'does not render a spinner' do
2022-08-13 15:12:31 +05:30
expect(page).not_to have_css ".gl-spinner[aria-label='Loading']"
2022-07-23 23:45:48 +05:30
end
end
context 'when set to true' do
let(:options) { { loading: true } }
it 'is disabled' do
2022-08-27 11:52:29 +05:30
expect(page).to have_css ".disabled[disabled]"
2022-07-23 23:45:48 +05:30
end
it 'renders a spinner' do
2022-08-13 15:12:31 +05:30
expect(page).to have_css ".gl-spinner[aria-label='Loading']"
2022-07-23 23:45:48 +05:30
end
end
end
describe 'block' do
context 'by default (false)' do
it 'is inline' do
2022-08-13 15:12:31 +05:30
expect(page).not_to have_css ".btn-block"
2022-07-23 23:45:48 +05:30
end
end
context 'when set to true' do
let(:options) { { block: true } }
it 'is block element' do
2022-08-13 15:12:31 +05:30
expect(page).to have_css ".btn-block"
2022-07-23 23:45:48 +05:30
end
end
end
describe 'selected' do
context 'by default (false)' do
it 'does not have selected styling and behavior' do
2022-08-13 15:12:31 +05:30
expect(page).not_to have_css ".selected"
2022-07-23 23:45:48 +05:30
end
end
context 'when set to true' do
let(:options) { { selected: true } }
it 'has selected styling and behavior' do
2022-08-13 15:12:31 +05:30
expect(page).to have_css ".selected"
2022-07-23 23:45:48 +05:30
end
end
end
describe 'category & variant' do
context 'with category variants' do
where(:variant) { [:default, :confirm, :danger] }
let(:options) { { variant: variant, category: :tertiary } }
with_them do
it 'renders the button in correct variant && category' do
2022-08-13 15:12:31 +05:30
expect(page).to have_css(".#{described_class::VARIANT_CLASSES[variant]}")
expect(page).to have_css(".#{described_class::VARIANT_CLASSES[variant]}-tertiary")
2022-07-23 23:45:48 +05:30
end
end
end
context 'with non-category variants' do
where(:variant) { [:dashed, :link, :reset] }
let(:options) { { variant: variant, category: :tertiary } }
with_them do
it 'renders the button in correct variant && category' do
2022-08-13 15:12:31 +05:30
expect(page).to have_css(".#{described_class::VARIANT_CLASSES[variant]}")
expect(page).not_to have_css(".#{described_class::VARIANT_CLASSES[variant]}-tertiary")
2022-07-23 23:45:48 +05:30
end
end
end
context 'with primary category' do
where(:variant) { [:default, :confirm, :danger] }
let(:options) { { variant: variant, category: :primary } }
with_them do
it 'renders the button in correct variant && category' do
2022-08-13 15:12:31 +05:30
expect(page).to have_css(".#{described_class::VARIANT_CLASSES[variant]}")
expect(page).not_to have_css(".#{described_class::VARIANT_CLASSES[variant]}-primary")
2022-07-23 23:45:48 +05:30
end
end
end
end
describe 'size' do
context 'by default (medium)' do
it 'applies medium class' do
2022-08-13 15:12:31 +05:30
expect(page).to have_css ".btn-md"
2022-07-23 23:45:48 +05:30
end
end
context 'when set to small' do
let(:options) { { size: :small } }
it "applies the small class to the button" do
2022-08-13 15:12:31 +05:30
expect(page).to have_css ".btn-sm"
2022-07-23 23:45:48 +05:30
end
end
end
describe 'icon' do
it 'has none by default' do
2022-08-13 15:12:31 +05:30
expect(page).not_to have_css ".gl-icon"
2022-07-23 23:45:48 +05:30
end
context 'with icon' do
let(:options) { { icon: 'star-o', icon_classes: 'custom-icon' } }
it 'renders an icon with custom CSS class' do
2022-08-13 15:12:31 +05:30
expect(page).to have_css "svg.gl-icon.gl-button-icon.custom-icon[data-testid='star-o-icon']"
expect(page).not_to have_css ".btn-icon"
2022-07-23 23:45:48 +05:30
end
end
context 'with icon only and no content' do
let(:content) { nil }
let(:options) { { icon: 'star-o' } }
it 'adds a "btn-icon" CSS class' do
2022-08-13 15:12:31 +05:30
expect(page).to have_css ".btn.btn-icon"
2022-07-23 23:45:48 +05:30
end
end
context 'with icon only and when loading' do
let(:content) { nil }
let(:options) { { icon: 'star-o', loading: true } }
it 'renders only a loading icon' do
2022-08-13 15:12:31 +05:30
expect(page).not_to have_css "svg.gl-icon.gl-button-icon.custom-icon[data-testid='star-o-icon']"
expect(page).to have_css ".gl-spinner[aria-label='Loading']"
2022-07-23 23:45:48 +05:30
end
end
end
2022-08-27 11:52:29 +05:30
end
context 'button component renders a button' do
include_examples 'basic button behavior'
2022-07-23 23:45:48 +05:30
describe 'type' do
2022-08-27 11:52:29 +05:30
context 'by default' do
2022-07-23 23:45:48 +05:30
it 'has type "button"' do
2022-08-13 15:12:31 +05:30
expect(page).to have_css "button[type='button']"
2022-07-23 23:45:48 +05:30
end
end
context 'when set to known type' do
where(:type) { [:button, :reset, :submit] }
let(:options) { { type: type } }
with_them do
it 'has the correct type' do
2022-08-13 15:12:31 +05:30
expect(page).to have_css "button[type='#{type}']"
2022-07-23 23:45:48 +05:30
end
end
end
2022-08-27 11:52:29 +05:30
context 'when set to unknown type' do
2022-07-23 23:45:48 +05:30
let(:options) { { type: :madeup } }
it 'has type "button"' do
2022-08-13 15:12:31 +05:30
expect(page).to have_css "button[type='button']"
2022-07-23 23:45:48 +05:30
end
end
2022-08-27 11:52:29 +05:30
end
end
2022-07-23 23:45:48 +05:30
2022-08-27 11:52:29 +05:30
context 'button component renders a link' do
let(:options) { { href: 'https://gitlab.com', target: '_blank' } }
2022-07-23 23:45:48 +05:30
2022-08-27 11:52:29 +05:30
it "renders a link instead of the button" do
expect(page).not_to have_css "button[type='button']"
expect(page).to have_css "a[href='https://gitlab.com'][target='_blank']"
2022-07-23 23:45:48 +05:30
end
2022-08-27 11:52:29 +05:30
include_examples 'basic button behavior'
describe 'type' do
let(:options) { { href: 'https://example.com', type: :reset } }
it 'ignores type' do
expect(page).not_to have_css "[type]"
2022-07-23 23:45:48 +05:30
end
2022-08-27 11:52:29 +05:30
end
describe 'method' do
where(:method) { [:get, :post, :put, :delete, :patch] }
2022-07-23 23:45:48 +05:30
2022-08-27 11:52:29 +05:30
let(:options) { { href: 'https://gitlab.com', method: method } }
2022-07-23 23:45:48 +05:30
2022-08-27 11:52:29 +05:30
with_them do
it 'has the correct data-method attribute' do
expect(page).to have_css "a[data-method='#{method}']"
2022-07-23 23:45:48 +05:30
end
end
end
end
end