* Add #purchase to Credit * Assigns spent credits to the listing * Add Credits::Ledger and use it * Localize ledger datetimes * Add organization to the ledger * Add tests for ledger * Remove unused class * Fix scope error * Compare UTC times * Fix broken specs * Wrap listing create in a transaction * Wrap listings bump into a transaction * Avoid microseconds issue with datetimes in tests * Use .detect instead of .select.first * Fix spec description
129 lines
3.8 KiB
Ruby
129 lines
3.8 KiB
Ruby
require "rails_helper"
|
|
|
|
RSpec.describe "Comments", type: :request do
|
|
let(:user) { create(:user) }
|
|
let(:article) { create(:article, user_id: user.id) }
|
|
let(:podcast) { create(:podcast) }
|
|
let(:podcast_episode) { create(:podcast_episode, podcast_id: podcast.id) }
|
|
let(:comment) do
|
|
create(:comment,
|
|
commentable_id: article.id,
|
|
commentable_type: "Article",
|
|
user_id: user.id)
|
|
end
|
|
let(:podcast_comment) do
|
|
create(:comment,
|
|
commentable_id: podcast_episode.id,
|
|
commentable_type: "PodcastEpisode",
|
|
user_id: user.id)
|
|
end
|
|
|
|
describe "GET comment index" do
|
|
it "returns 200" do
|
|
get comment.path
|
|
expect(response).to have_http_status(:ok)
|
|
end
|
|
|
|
it "displays a comment" do
|
|
get comment.path
|
|
expect(response.body).to include(comment.processed_html)
|
|
end
|
|
|
|
it "displays full discussion text" do
|
|
get comment.path
|
|
expect(response.body).to include("FULL DISCUSSION")
|
|
end
|
|
|
|
context "when the comment a root" do
|
|
it "does not display top of thread button" do
|
|
get comment.path
|
|
expect(response.body).not_to include("TOP OF THREAD")
|
|
end
|
|
end
|
|
|
|
context "when the a child comment" do
|
|
it "displays proper button and text for child comment" do
|
|
child = create(:comment,
|
|
parent_id: comment.id,
|
|
commentable_id: article.id,
|
|
commentable_type: "Article",
|
|
user_id: user.id)
|
|
get child.path
|
|
expect(response.body).to include("TOP OF THREAD")
|
|
expect(response.body).to include(CGI.escapeHTML(comment.title(150)))
|
|
expect(response.body).to include(child.processed_html)
|
|
end
|
|
end
|
|
|
|
context "when the comment is for a podcast's episode" do
|
|
it "works" do
|
|
get podcast_comment.path
|
|
expect(response).to have_http_status(:ok)
|
|
end
|
|
end
|
|
|
|
context "when the article is unpublished" do
|
|
before do
|
|
new_markdown = article.body_markdown.gsub("published: true", "published: false")
|
|
comment
|
|
article.update(body_markdown: new_markdown)
|
|
end
|
|
|
|
it "raises a Not Found error" do
|
|
expect { get comment.path }.to raise_error("Not Found")
|
|
end
|
|
end
|
|
end
|
|
|
|
describe "GET /:username/:slug/comments/:id_code/edit" do
|
|
context "when not logged-in" do
|
|
it "returns unauthorized error" do
|
|
expect do
|
|
get "/#{user.username}/#{article.slug}/comments/#{comment.id_code_generated}/edit"
|
|
end.to raise_error(Pundit::NotAuthorizedError)
|
|
end
|
|
end
|
|
|
|
context "when logged-in" do
|
|
before do
|
|
sign_in user
|
|
end
|
|
|
|
it "returns 200" do
|
|
get "/#{user.username}/#{article.slug}/comments/#{comment.id_code_generated}/edit"
|
|
expect(response).to have_http_status(:ok)
|
|
end
|
|
|
|
it "returns the comment" do
|
|
get "/#{user.username}/#{article.slug}/comments/#{comment.id_code_generated}/edit"
|
|
expect(response.body).to include CGI.escapeHTML(comment.body_markdown)
|
|
end
|
|
end
|
|
end
|
|
|
|
describe "POST /comments/preview" do
|
|
it "returns 401 if user is not logged in" do
|
|
post "/comments/preview",
|
|
params: { comment: { body_markdown: "hi" } },
|
|
headers: { HTTP_ACCEPT: "application/json" }
|
|
expect(response).to have_http_status(:unauthorized)
|
|
end
|
|
|
|
context "when logged-in" do
|
|
before do
|
|
sign_in user
|
|
post "/comments/preview",
|
|
params: { comment: { body_markdown: "hi" } },
|
|
headers: { HTTP_ACCEPT: "application/json" }
|
|
end
|
|
|
|
it "returns 200 on good request" do
|
|
expect(response).to have_http_status(:ok)
|
|
end
|
|
|
|
it "returns json" do
|
|
expect(response.content_type).to eq("application/json")
|
|
end
|
|
end
|
|
end
|
|
end
|