We forgot to change the `span` tag when we replaced links with buttons
in commit ba0d21b46.
74 lines
2.8 KiB
Ruby
74 lines
2.8 KiB
Ruby
require "rails_helper"
|
|
|
|
describe Comments::VotesComponent do
|
|
let(:user) { create(:user) }
|
|
let(:comment) { create(:comment, user: user) }
|
|
let(:component) { Comments::VotesComponent.new(comment) }
|
|
|
|
it "generates valid HTML" do
|
|
render_inline component
|
|
|
|
expect(page).not_to have_css "span form"
|
|
expect(page).to have_css "div.in-favor > form"
|
|
expect(page).to have_css "div.against > form"
|
|
end
|
|
|
|
describe "aria-pressed and method attributes" do
|
|
it "have expected values when the in-favor button is pressed" do
|
|
comment.vote_by(voter: user, vote: "yes")
|
|
sign_in(user)
|
|
|
|
render_inline component
|
|
|
|
page.find(".in-favor") do |in_favor_block|
|
|
expect(in_favor_block).to have_css "button[aria-pressed='true']"
|
|
expect(in_favor_block).to have_css "form[action*='votes'][method='post']"
|
|
expect(in_favor_block).to have_css "input[name='_method'][value='delete']", visible: :hidden
|
|
end
|
|
|
|
page.find(".against") do |against_block|
|
|
expect(against_block).to have_css "button[aria-pressed='false']"
|
|
expect(against_block).to have_css "form[action*='votes'][method='post']"
|
|
expect(against_block).not_to have_css "input[name='_method']", visible: :all
|
|
end
|
|
end
|
|
|
|
it "have expected values when the against button is pressed" do
|
|
comment.vote_by(voter: user, vote: "no")
|
|
sign_in(user)
|
|
|
|
render_inline component
|
|
|
|
page.find(".in-favor") do |in_favor_block|
|
|
expect(in_favor_block).to have_css "button[aria-pressed='false']"
|
|
expect(in_favor_block).to have_css "form[action*='votes'][method='post']"
|
|
expect(in_favor_block).not_to have_css "input[name='_method']", visible: :all
|
|
end
|
|
|
|
page.find(".against") do |against_block|
|
|
expect(against_block).to have_css "button[aria-pressed='true']"
|
|
expect(against_block).to have_css "form[action*='votes'][method='post']"
|
|
expect(against_block).to have_css "input[name='_method'][value='delete']", visible: :hidden
|
|
end
|
|
end
|
|
|
|
it "have expected values when neither the 'in-favor' button nor the 'against' button are pressed" do
|
|
sign_in(user)
|
|
|
|
render_inline component
|
|
|
|
page.find(".in-favor") do |in_favor_block|
|
|
expect(in_favor_block).to have_css "button[aria-pressed='false']"
|
|
expect(in_favor_block).to have_css "form[action*='votes'][method='post']"
|
|
expect(in_favor_block).not_to have_css "input[name='_method']", visible: :all
|
|
end
|
|
|
|
page.find(".against") do |against_block|
|
|
expect(against_block).to have_css "button[aria-pressed='false']"
|
|
expect(against_block).to have_css "form[action*='votes'][method='post']"
|
|
expect(against_block).not_to have_css "input[name='_method']", visible: :all
|
|
end
|
|
end
|
|
end
|
|
end
|