59 lines
1.6 KiB
Ruby
59 lines
1.6 KiB
Ruby
require "rails_helper"
|
|
|
|
RSpec.describe "Editing A Comment", :js do
|
|
let(:user) { create(:user) }
|
|
let!(:article) { create(:article, show_comments: true) }
|
|
let(:new_comment_text) { "This is an editted text" }
|
|
let!(:comment) do
|
|
create(:comment,
|
|
commentable: article,
|
|
user: user,
|
|
body_markdown: Faker::Lorem.paragraph)
|
|
end
|
|
let(:iso8601_datetime_regexp) { /^((\d{4})-(\d{2})-(\d{2})T(\d{2}):(\d{2}):(\d{2})Z)$/ }
|
|
|
|
before do
|
|
sign_in user
|
|
end
|
|
|
|
def assert_updated
|
|
expect(page).to have_css("textarea")
|
|
expect(page).to have_text("Editing comment")
|
|
find("textarea").send_keys(new_comment_text)
|
|
|
|
click_link_or_button("Submit")
|
|
|
|
expect(page).to have_text("Edited on").and have_text(new_comment_text)
|
|
|
|
# using .last here because the first `<time>` element is the creation date,
|
|
# the second one is the time of editing
|
|
timestamp = page.all(".comment-date time").last[:datetime]
|
|
expect(timestamp).to match(iso8601_datetime_regexp)
|
|
end
|
|
|
|
context "when user edits comment on the bottom of the article" do
|
|
it "updates" do
|
|
visit article.path.to_s
|
|
wait_for_javascript
|
|
|
|
click_on(class: "comment__dropdown-trigger")
|
|
click_link_or_button("Edit")
|
|
assert_updated
|
|
end
|
|
end
|
|
|
|
context "when user edits via permalinks" do
|
|
it "updates" do
|
|
user.reload
|
|
|
|
visit user.comments.last.path.to_s
|
|
|
|
wait_for_javascript
|
|
|
|
click_on(class: "comment__dropdown-trigger")
|
|
click_link_or_button("Edit")
|
|
expect(page).to have_link("Dismiss")
|
|
assert_updated
|
|
end
|
|
end
|
|
end
|