docbrown/spec/requests/api/v1/articles_spec.rb
Fernando Valverde 8c836430ca
API V1 transition (#17835)
* API Articles v0-v1 restructure

* Remove unused helper

* Bulk move API controllers into concerns + add V1 controllers

* Extract API routes + some fixes

* Fix v1 api_controller authenticate! + add more article_controller specs

* Completed spec/requests/api/v1/articles_spec.rb

* specs up to listings

* All v1 specs except for 9 skips

* mime_types cleanup + authenticate! relocation

Co-authored-by: Fernando Valverde <fernando@visualcosita.com>
2022-06-23 14:26:00 -06:00

1201 lines
48 KiB
Ruby

require "rails_helper"
RSpec.describe "Api::V1::Articles", type: :request do
let(:organization) { create(:organization) } # not used by every spec but lower times overall
let(:tag) { create(:tag, name: "discuss") }
let(:article) { create(:article, featured: true, tags: "discuss") }
let(:new_article) { create(:article) }
let(:api_secret) { create(:api_secret) }
let(:v1_headers) { { "Accept" => "application/vnd.forem.api-v1+json", "api-key" => api_secret.secret } }
before do
stub_const("FlareTag::FLARE_TAG_IDS_HASH", { "discuss" => tag.id })
allow(FeatureFlag).to receive(:enabled?).with(:api_v1).and_return(true)
end
describe "GET /api/articles" do
before { article }
it "returns 401 when unauthenticated" do
get api_articles_path, headers: { "Accept" => "application/vnd.forem.api-v1+json" }
expect(response).to have_http_status(:unauthorized)
end
it "returns CORS headers" do
origin = "http://example.com"
get api_articles_path, headers: v1_headers.merge({ origin: origin })
expect(response).to have_http_status(:ok)
expect(response.headers["Access-Control-Allow-Origin"]).to eq(origin)
expect(response.headers["Access-Control-Allow-Methods"]).to eq("HEAD, GET, OPTIONS")
expect(response.headers["Access-Control-Expose-Headers"]).to be_empty
expect(response.headers["Access-Control-Max-Age"]).to eq(2.hours.to_i.to_s)
end
it "has correct keys in the response" do
article.update_columns(organization_id: organization.id)
get api_articles_path, headers: v1_headers
index_keys = %w[
type_of id title description cover_image readable_publish_date social_image
tag_list tags slug path url canonical_url comments_count public_reactions_count positive_reactions_count
collection_id created_at edited_at crossposted_at published_at last_comment_at
published_timestamp user organization flare_tag reading_time_minutes
]
expect(response.parsed_body.first.keys).to match_array index_keys
end
it "returns correct tag list" do
get api_articles_path, headers: v1_headers
expect(response.parsed_body.first["tag_list"]).to be_a_kind_of Array
end
it "returns correct tags" do
get api_articles_path, headers: v1_headers
expect(response.parsed_body.first["tags"]).to be_a_kind_of String
end
context "without params" do
it "returns json response" do
get api_articles_path, headers: v1_headers
expect(response.media_type).to eq("application/json")
end
it "returns nothing if params state=all is not found" do
get api_articles_path(state: "all"), headers: v1_headers
expect(response.parsed_body.size).to eq(0)
end
it "returns featured articles if no param is given" do
article.update_column(:featured, true)
get api_articles_path, headers: v1_headers
expect(response.parsed_body.size).to eq(1)
end
it "supports pagination" do
create_list(:article, 2, featured: true)
get api_articles_path, params: { page: 1, per_page: 2 }, headers: v1_headers
expect(response.parsed_body.length).to eq(2)
get api_articles_path, params: { page: 2, per_page: 2 }, headers: v1_headers
expect(response.parsed_body.length).to eq(1)
end
it "returns flare tag in the response" do
get api_articles_path, headers: v1_headers
response_article = response.parsed_body.first
expect(response_article["flare_tag"]).to be_present
expect(response_article["flare_tag"].keys).to eq(%w[name bg_color_hex text_color_hex])
expect(response_article["flare_tag"]["name"]).to eq("discuss")
end
it "sets the correct edge caching surrogate key" do
get api_articles_path, headers: v1_headers
expected_key = ["articles", article.record_key].to_set
expect(response.headers["surrogate-key"].split.to_set).to eq(expected_key)
end
end
context "with username param" do
it "returns user's articles for the given username" do
create(:article, user: article.user)
get api_articles_path(username: article.user.username), headers: v1_headers
expect(response.parsed_body.size).to eq(2)
end
it "returns nothing if given user is not found" do
get api_articles_path(username: "foobar"), headers: v1_headers
expect(response.parsed_body.size).to eq(0)
end
it "returns org's articles if org's slug is given" do
create(:article, user: article.user, organization: organization)
get api_articles_path(username: organization.slug), headers: v1_headers
expect(response.parsed_body.size).to eq(1)
end
it "supports pagination" do
create_list(:article, 2, user: article.user)
get api_articles_path(username: article.user.username), params: { page: 1, per_page: 2 }, headers: v1_headers
expect(response.parsed_body.length).to eq(2)
get api_articles_path(username: article.user.username), params: { page: 2, per_page: 2 }, headers: v1_headers
expect(response.parsed_body.length).to eq(1)
end
it "sets the correct edge caching surrogate key" do
new_article = create(:article, user: article.user)
get api_articles_path(username: article.user.username), headers: v1_headers
expected_key = ["articles", article.record_key, new_article.record_key].to_set
expect(response.headers["surrogate-key"].split.to_set).to eq(expected_key)
end
end
context "with tag param" do
it "returns tag's articles" do
get api_articles_path(tag: article.tag_list.first), headers: v1_headers
expect(response.parsed_body.size).to eq(1)
end
it "returns top tag articles if tag and top param is present" do
get api_articles_path(tag: article.tag_list.first, top: "7"), headers: v1_headers
expect(response.parsed_body.size).to eq(1)
end
it "returns not tag articles if article and tag are not approved" do
article.update_column(:approved, false)
tag = Tag.find_by(name: article.tag_list.first)
tag.update(requires_approval: true)
get api_articles_path(tag: tag.name), headers: v1_headers
expect(response.parsed_body.size).to eq(0)
end
it "supports pagination" do
create_list(:article, 2, tags: "discuss")
get api_articles_path(tag: article.tag_list.first), params: { page: 1, per_page: 2 }, headers: v1_headers
expect(response.parsed_body.length).to eq(2)
get api_articles_path(tag: article.tag_list.first), params: { page: 2, per_page: 2 }, headers: v1_headers
expect(response.parsed_body.length).to eq(1)
end
it "sets the correct edge caching surrogate key" do
get api_articles_path(tag: article.tag_list.first), headers: v1_headers
expected_key = ["articles", article.record_key].to_set
expect(response.headers["surrogate-key"].split.to_set).to eq(expected_key)
end
end
context "with tags param" do
it "returns articles with any of the specified tags" do
create(:article, published: true)
get api_articles_path(tags: "javascript, css, not-existing-tag"), headers: v1_headers
expect(response.parsed_body.size).to eq(1)
end
end
context "with tags_exclude param" do
it "returns articles that do not contain any of excluded tag" do
create(:article, published: true)
get api_articles_path(tags_exclude: "node, java"), headers: v1_headers
expect(response.parsed_body.size).to eq(2)
create(:article, published: true, tags: "node")
get api_articles_path(tags_exclude: "node, java"), headers: v1_headers
expect(response.parsed_body.size).to eq(2)
end
end
context "with tags and tags_exclude params" do
it "returns proper scope" do
create(:article, published: true)
get api_articles_path(tags: "javascript, css", tags_exclude: "node, java"), headers: v1_headers
expect(response.parsed_body.size).to eq(1)
end
end
context "when tags and tags_exclude contain the same tag" do
it "returns empty set" do
create(:article, published: true, tags: "java")
get api_articles_path(tags: "java", tags_exclude: "java"), headers: v1_headers
expect(response.parsed_body.size).to eq(0)
end
end
context "with top param" do
it "only returns fresh top articles if top param is present" do
# TODO: slight duplication, test should be removed
old_article = create(:article)
old_article.update_column(:published_at, 10.days.ago)
get api_articles_path(top: "7"), headers: v1_headers
expect(response.parsed_body.size).to eq(1)
end
it "supports pagination" do
old_articles = create_list(:article, 2, featured: true)
old_articles.each do |old_article|
old_article.update_column(:published_at, 10.days.ago)
end
get api_articles_path(top: "11"), params: { page: 1, per_page: 2 }, headers: v1_headers
expect(response.parsed_body.length).to eq(2)
get api_articles_path(top: "11"), params: { page: 2, per_page: 2 }, headers: v1_headers
expect(response.parsed_body.length).to eq(1)
end
it "sets the correct edge caching surrogate key" do
get api_articles_path(top: "7"), headers: v1_headers
expected_key = ["articles", article.record_key].to_set
expect(response.headers["surrogate-key"].split.to_set).to eq(expected_key)
end
end
context "with collection_id param" do
it "returns a collection id" do
collection = create(:collection, user: article.user)
article.update_columns(collection_id: collection.id)
get api_articles_path(collection_id: collection.id), headers: v1_headers
expect(response.parsed_body[0]["collection_id"]).to eq collection.id
end
it "supports pagination" do
collection = create(:collection, user: article.user)
article.update_columns(collection_id: collection.id)
collection_articles = create_list(:article, 2, featured: true)
collection_articles.each do |collection_article|
collection_article.update_columns(collection_id: collection.id)
end
get api_articles_path(collection_id: collection.id), params: { page: 1, per_page: 2 }, headers: v1_headers
expect(response.parsed_body.length).to eq(2)
get api_articles_path(collection_id: collection.id), params: { page: 2, per_page: 2 }, headers: v1_headers
expect(response.parsed_body.length).to eq(1)
end
it "sets the correct edge caching surrogate key" do
collection = create(:collection, user: article.user)
article.update_columns(collection_id: collection.id)
get api_articles_path(collection_id: collection.id), headers: v1_headers
expected_key = ["articles", article.record_key].to_set
expect(response.headers["surrogate-key"].split.to_set).to eq(expected_key)
end
end
context "with state param" do
it "returns fresh articles" do
article.update_columns(public_reactions_count: 1, score: 1)
get api_articles_path(state: "fresh"), headers: v1_headers
expect(response.parsed_body.size).to eq(1)
end
it "returns rising articles" do
article.update_columns(public_reactions_count: 32, score: 1, featured_number: 2.days.ago.to_i)
get api_articles_path(state: "rising"), headers: v1_headers
expect(response.parsed_body.size).to eq(1)
end
it "returns articles sorted by publish date" do
article.update_columns(published_at: 500.years.ago)
new_article.update_columns(published_at: 1.minute.ago)
get latest_api_articles_path, headers: v1_headers
first_article_published_at = response.parsed_body.first["published_at"]
last_article_published_at = response.parsed_body.last["published_at"]
expect(first_article_published_at.to_date).to be > last_article_published_at.to_date
end
it "returns nothing if the state is unknown" do
get api_articles_path(state: "foobar"), headers: v1_headers
expect(response.parsed_body).to be_empty
end
it "supports pagination" do
create_list(:article, 2, tags: "discuss", public_reactions_count: 1, score: 1)
get api_articles_path(state: "fresh"), params: { page: 1, per_page: 2 }, headers: v1_headers
expect(response.parsed_body.length).to eq(2)
get api_articles_path(state: "fresh"), params: { page: 2, per_page: 2 }, headers: v1_headers
expect(response.parsed_body.length).to eq(1)
end
it "sets the correct edge caching surrogate key" do
article.update_columns(public_reactions_count: 1, score: 1)
get api_articles_path(state: "fresh"), headers: v1_headers
expected_key = ["articles", article.record_key].to_set
expect(response.headers["surrogate-key"].split.to_set).to eq(expected_key)
end
end
context "with regression tests" do
it "works if both the social image and the main image are missing" do
article.update_columns(social_image: nil, main_image: nil)
get api_articles_path, headers: v1_headers
expect(response).to have_http_status(:ok)
end
end
end
describe "GET /api/articles/:id" do
it "returns 401 when unauthenticated" do
get api_article_path(article.id), headers: { "Accept" => "application/vnd.forem.api-v1+json" }
expect(response).to have_http_status(:unauthorized)
end
it "returns CORS headers" do
origin = "http://example.com"
get api_article_path(article.id), headers: v1_headers.merge({ origin: origin })
expect(response).to have_http_status(:ok)
expect(response.headers["Access-Control-Allow-Origin"]).to eq(origin)
expect(response.headers["Access-Control-Allow-Methods"]).to eq("HEAD, GET, OPTIONS")
expect(response.headers["Access-Control-Expose-Headers"]).to be_empty
expect(response.headers["Access-Control-Max-Age"]).to eq(2.hours.to_i.to_s)
end
it "has correct keys in the response" do
article.update_columns(organization_id: organization.id)
get api_article_path(article.id), headers: v1_headers
show_keys = %w[
type_of id title description cover_image readable_publish_date social_image
tag_list tags slug path url canonical_url comments_count public_reactions_count positive_reactions_count
collection_id created_at edited_at crossposted_at published_at last_comment_at
published_timestamp body_html body_markdown user organization flare_tag reading_time_minutes
]
expect(response.parsed_body.keys).to match_array show_keys
end
it "returns correct tag list" do
get api_article_path(article.id), headers: v1_headers
expect(response.parsed_body["tag_list"]).to be_a_kind_of String
end
it "returns correct tags" do
get api_article_path(article.id), headers: v1_headers
expect(response.parsed_body["tags"]).to be_a_kind_of Array
end
it "returns proper article" do
get api_article_path(article.id), headers: v1_headers
expect(response.parsed_body).to include(
"title" => article.title,
"body_markdown" => article.body_markdown,
"tags" => article.decorate.cached_tag_list_array,
)
end
it "returns all the relevant datetimes" do
article.update_columns(
edited_at: 1.minute.from_now, crossposted_at: 2.minutes.ago, last_comment_at: 30.seconds.ago,
)
get api_article_path(article.id), headers: v1_headers
expect(response.parsed_body).to include(
"created_at" => article.created_at.utc.iso8601,
"edited_at" => article.edited_at.utc.iso8601,
"crossposted_at" => article.crossposted_at.utc.iso8601,
"published_at" => article.published_at.utc.iso8601,
"last_comment_at" => article.last_comment_at.utc.iso8601,
)
end
it "fails with an unpublished article" do
article.update_columns(published: false, published_at: nil)
get api_article_path(article.id), headers: v1_headers
expect(response).to have_http_status(:not_found)
end
it "fails with an unknown article ID" do
get api_article_path("9999"), headers: v1_headers
expect(response).to have_http_status(:not_found)
end
it "sets the correct edge caching surrogate key" do
get api_article_path(article), headers: v1_headers
expected_key = [article.record_key].to_set
expect(response.headers["surrogate-key"].split.to_set).to eq(expected_key)
end
end
describe "GET /api/articles/:username/:slug" do
it "returns CORS headers" do
origin = "http://example.com"
get "/api/articles/#{article.username}/#{article.slug}", headers: v1_headers.merge({ origin: origin })
expect(response).to have_http_status(:ok)
expect(response.headers["Access-Control-Allow-Origin"]).to eq(origin)
expect(response.headers["Access-Control-Allow-Methods"]).to eq("HEAD, GET, OPTIONS")
expect(response.headers["Access-Control-Expose-Headers"]).to be_empty
expect(response.headers["Access-Control-Max-Age"]).to eq(2.hours.to_i.to_s)
end
it "returns correct tags" do
get "/api/articles/#{article.username}/#{article.slug}", headers: v1_headers
expect(response.parsed_body["tags"]).to eq(article.tag_list)
expect(response.parsed_body["tag_list"]).to eq(article.tags[0].name)
end
it "returns proper article" do
get "/api/articles/#{article.username}/#{article.slug}", headers: v1_headers
expect(response.parsed_body).to include(
"title" => article.title,
"body_markdown" => article.body_markdown,
"tags" => article.decorate.cached_tag_list_array,
)
end
it "returns all the relevant datetimes" do
article.update_columns(
edited_at: 1.minute.from_now, crossposted_at: 2.minutes.ago, last_comment_at: 30.seconds.ago,
)
get "/api/articles/#{article.username}/#{article.slug}", headers: v1_headers
expect(response.parsed_body).to include(
"created_at" => article.created_at.utc.iso8601,
"edited_at" => article.edited_at.utc.iso8601,
"crossposted_at" => article.crossposted_at.utc.iso8601,
"published_at" => article.published_at.utc.iso8601,
"last_comment_at" => article.last_comment_at.utc.iso8601,
)
end
it "fails with an unpublished article" do
article.update_columns(published: false, published_at: nil)
get "/api/articles/#{article.username}/#{article.slug}", headers: v1_headers
expect(response).to have_http_status(:not_found)
end
it "fails with an unknown article path" do
get "/api/articles/chrisevans/#{article.slug}", headers: v1_headers
expect(response).to have_http_status(:not_found)
end
it "sets the correct edge caching surrogate key" do
get "/api/articles/#{article.username}/#{article.slug}", headers: v1_headers
expected_key = [article.record_key].to_set
expect(response.headers["surrogate-key"].split.to_set).to eq(expected_key)
end
end
describe "GET /api/articles/me(/:status)" do
context "when request is unauthenticated" do
it "return unauthorized" do
get "/api/articles/me", headers: { "Accept" => "application/vnd.forem.api-v1+json" }
expect(response).to have_http_status(:unauthorized)
end
end
context "when request is authenticated" do
let(:user) { api_secret.user }
it "returns proper response specification" do
get "/api/articles/me", headers: v1_headers
expect(response.media_type).to eq("application/json")
expect(response).to have_http_status(:ok)
end
it "returns success when requesting published articles with public token" do
get "/api/articles/me/published", headers: v1_headers
expect(response.media_type).to eq("application/json")
expect(response).to have_http_status(:ok)
end
it "return only user's articles including markdown" do
create(:article, user: user)
create(:article)
get "/api/articles/me", headers: v1_headers
expect(response.parsed_body.length).to eq(1)
expect(response.parsed_body[0]["body_markdown"]).not_to be_nil
end
it "supports pagination" do
create_list(:article, 3, user: user)
get "/api/articles/me", headers: v1_headers, params: { page: 2, per_page: 2 }
expect(response.parsed_body.length).to eq(1)
end
it "has correct keys in the response" do
article = create(:article, user: user)
article.update_columns(organization_id: organization.id)
get "/api/articles/me", headers: v1_headers
keys = %w[
type_of id title description published published_at slug path url
comments_count public_reactions_count page_views_count
published_timestamp body_markdown positive_reactions_count cover_image
tag_list canonical_url reading_time_minutes user organization flare_tag
]
expect(response.parsed_body.first.keys).to match_array(keys)
end
it "only includes published articles by default" do
create(:article, published: false, published_at: nil, user: user)
get "/api/articles/me", headers: v1_headers
expect(response.parsed_body.length).to eq(0)
end
it "only includes published articles when asking for published articles" do
create(:article, published: false, published_at: nil, user: user)
get "/api/articles/me/published", headers: v1_headers
expect(response.parsed_body.length).to eq(0)
end
it "only includes unpublished articles when asking for unpublished articles" do
create(:article, published: false, published_at: nil, user: user)
get "/api/articles/me/unpublished", headers: v1_headers
expect(response.parsed_body.length).to eq(1)
end
it "orders unpublished articles by reverse order when asking for unpublished articles" do
older = create(:article, published: false, published_at: nil, user: user)
newer = nil
Timecop.travel(1.day.from_now) do
newer = create(:article, published: false, published_at: nil, user: user)
end
get "/api/articles/me/unpublished", headers: v1_headers
expected_order = response.parsed_body.map { |resp| resp["id"] }
expect(expected_order).to eq([newer.id, older.id])
end
it "puts unpublished articles at the top when asking for all articles" do
create(:article, user: user)
create(:article, published: false, published_at: nil, user: user)
get "/api/articles/me/all", headers: v1_headers
expected_order = response.parsed_body.map { |resp| resp["published"] }
expect(expected_order).to eq([false, true])
end
it "correctly returns reading time in minutes" do
create(:article, user: user)
get "/api/articles/me", headers: v1_headers
expect(response.parsed_body.first["reading_time_minutes"]).to eq(article.reading_time)
end
end
end
describe "POST /api/articles" do
# As written, it's envisioned that the subject and these "let" statements create a valid
# authentication and authorization.
subject(:the_response) do
# This looks a bit funny, I want to issue the request but test the response. The "post"
# method does not return a "response" object.
post api_articles_path, params: { article: params }.to_json, headers: post_headers
response
end
let(:user) { api_secret.user }
let(:post_headers) do
{ "api-key" => api_secret.secret, "Accept" => "application/vnd.forem.api-v1+json",
"content-type" => "application/json" }
end
let(:params) { {} }
context "when user suspended" do
before { user.add_role(:suspended) }
it { is_expected.to have_http_status(:unauthorized) }
end
context "when no api key provided" do
let(:post_headers) { { "Accept" => "application/vnd.forem.api-v1+json", "content-type" => "application/json" } }
it { is_expected.to have_http_status(:unauthorized) }
end
context "when given invalid api key" do
let(:post_headers) do
{ "api-key" => "no you're never gonna get it", "Accept" => "application/vnd.forem.api-v1+json",
"content-type" => "application/json" }
end
it { is_expected.to have_http_status(:unauthorized) }
end
context "when security comparision fails" do
before { allow(ActiveSupport::SecurityUtils).to receive(:secure_compare).and_return(false) }
it { is_expected.to have_http_status(:unauthorized) }
end
context "when only admins can post to site" do
# [@jeremyf] Part of me loaths the idea of writing this specific policy implementation.
# Another option is to do some "allow_any_instance_of" antics. For now, this is
# the concession, but as we move through further policy changes, I'm uncertain if
# we want our requests to bombard the nuances of policy.
before { allow(ArticlePolicy).to receive(:limit_post_creation_to_admins?).and_return(true) }
it { is_expected.to have_http_status(:unauthorized) }
end
describe "when authorized" do
let(:default_params) { { body_markdown: "" } }
def post_article(**params)
params = default_params.merge params
post api_articles_path, params: { article: params }.to_json, headers: post_headers
end
it "returns a 429 status code if the rate limit is reached" do
rate_limit_checker = instance_double(RateLimitChecker)
retry_after_val = RateLimitChecker::ACTION_LIMITERS.dig(:published_article_creation, :retry_after)
rate_limit_error = RateLimitChecker::LimitReached.new(retry_after_val)
allow(RateLimitChecker).to receive(:new).and_return(rate_limit_checker)
allow(rate_limit_checker).to receive(:check_limit!).and_raise(rate_limit_error)
post_article
expect(response).to have_http_status(:too_many_requests)
expect(response.headers["retry-after"]).to eq(retry_after_val)
end
it "fails if no params are given" do
post_article
expect(response).to have_http_status(:unprocessable_entity)
end
it "fails if missing required params" do
tags = %w[meta discussion]
post_article(body_markdown: "Yo ho ho", tags: tags)
expect(response).to have_http_status(:unprocessable_entity)
expect(response.parsed_body["error"]).to be_present
end
it "fails if article contains tags with non-alphanumeric characters" do
tags = %w[#discuss .help]
post_article(title: "Test Article Title", tags: tags)
expect(response).to have_http_status(:unprocessable_entity)
end
it "fails if params are not a Hash" do
# Not using the nifty post_article helper method because it expects a Hash
string_params = "this_string_is_definitely_not_a_hash"
post api_articles_path, params: { article: string_params }.to_json, headers: post_headers
expect(response).to have_http_status(:unprocessable_entity)
expect(response.parsed_body["error"]).to be_present
end
it "fails if params are unwrapped" do
post api_articles_path, params: { body_markdown: "Body", title: "Title" }.to_json, headers: post_headers
expect(response).to have_http_status(:unprocessable_entity)
expect(response.parsed_body["error"]).to be_present
end
it "creates an article belonging to the user" do
post_article(title: Faker::Book.title)
expect(response).to have_http_status(:created)
expect(Article.find(response.parsed_body["id"]).user).to eq(user)
end
it "creates an unpublished article by default" do
post_article(title: Faker::Book.title)
expect(response).to have_http_status(:created)
expect(Article.find(response.parsed_body["id"]).published).to be(false)
end
it "returns the location of the article" do
post_article(title: Faker::Book.title)
expect(response).to have_http_status(:created)
expect(response.location).not_to be_blank
end
it "creates an article with only a title" do
title = Faker::Book.title
expect do
post_article(title: title)
expect(response).to have_http_status(:created)
end.to change(Article, :count).by(1)
expect(Article.find(response.parsed_body["id"]).title).to eq(title)
end
it "creates a published article" do
title = Faker::Book.title
expect do
post_article(title: title, published: true)
expect(response).to have_http_status(:created)
end.to change(Article, :count).by(1)
expect(Article.find(response.parsed_body["id"]).published).to be(true)
end
it "creates an article with a title and the markdown body" do
body_markdown = "Yo ho ho"
expect do
post_article(
title: Faker::Book.title,
body_markdown: body_markdown,
)
expect(response).to have_http_status(:created)
end.to change(Article, :count).by(1)
expect(Article.find(response.parsed_body["id"]).body_markdown).to eq(body_markdown)
end
it "creates an article with a title, body and a list of tags" do
tags = %w[meta discussion]
expect do
post_article(
title: Faker::Book.title,
body_markdown: "Yo ho ho",
tags: tags,
)
expect(response).to have_http_status(:created)
end.to change(Article, :count).by(1)
expect(Article.find(response.parsed_body["id"]).cached_tag_list).to eq(tags.join(", "))
end
it "creates an unpublished article with the front matter in the body" do
body_markdown = file_fixture("article_unpublished.txt").read
expect do
post_article(body_markdown: body_markdown)
expect(response).to have_http_status(:created)
end.to change(Article, :count).by(1)
article = Article.find(response.parsed_body["id"])
expect(article.title).to eq("Sample Article")
expect(article.published).to be(false)
end
it "creates published article with the front matter in the body" do
body_markdown = file_fixture("article_published.txt").read
expect do
post_article(body_markdown: body_markdown)
expect(response).to have_http_status(:created)
end.to change(Article, :count).by(1)
article = Article.find(response.parsed_body["id"])
expect(article.title).to eq("Sample Article")
expect(article.published).to be(true)
end
it "creates an article within a series" do
series = "a series"
post_article(
title: Faker::Book.title,
body_markdown: "Yo ho ho",
series: series,
)
expect(response).to have_http_status(:created)
article = Article.find(response.parsed_body["id"])
expect(article.collection).to eq(Collection.find_by(slug: series))
expect(article.collection.user).to eq(user)
end
it "creates article within a series using the front matter" do
body_markdown = file_fixture("article_published_series.txt").read
expect do
post_article(body_markdown: body_markdown)
expect(response).to have_http_status(:created)
end.to change(Article, :count).by(1)
article = Article.find(response.parsed_body["id"])
expect(article.collection).to eq(Collection.find_by(slug: "a series"))
expect(article.collection.user).to eq(user)
end
it "creates an article on behalf of an organization" do
organization = create(:organization)
create(:organization_membership, user: user, organization: organization)
expect do
post_article(
title: Faker::Book.title,
organization_id: organization.id,
)
expect(response).to have_http_status(:created)
end.to change(Article, :count).by(1)
expect(Article.find(response.parsed_body["id"]).organization).to eq(organization)
end
it "creates an article with a main/cover image" do
image_url = "https://dummyimage.com/100x100"
expect do
post_article(
title: Faker::Book.title,
body_markdown: "Yo ho ho",
main_image: image_url,
)
expect(response).to have_http_status(:created)
end.to change(Article, :count).by(1)
expect(Article.find(response.parsed_body["id"]).main_image).to eq(image_url)
end
it "creates an article with a main/cover image in the front matter" do
image_url = "https://dummyimage.com/100x100"
body_markdown = file_fixture("article_published_cover_image.txt").read
expect do
post_article(body_markdown: body_markdown)
expect(response).to have_http_status(:created)
end.to change(Article, :count).by(1)
expect(Article.find(response.parsed_body["id"]).main_image).to eq(image_url)
end
it "creates an article with a canonical url" do
canonical_url = "https://example.com/"
expect do
post_article(
title: Faker::Book.title,
body_markdown: "Yo ho ho",
canonical_url: canonical_url,
)
expect(response).to have_http_status(:created)
end.to change(Article, :count).by(1)
expect(Article.find(response.parsed_body["id"]).canonical_url).to eq(canonical_url)
end
it "creates an article with a canonical url in the front matter" do
canonical_url = "https://example.com/"
body_markdown = file_fixture("article_published_canonical_url.txt").read
expect do
post_article(body_markdown: body_markdown)
expect(response).to have_http_status(:created)
end.to change(Article, :count).by(1)
expect(Article.find(response.parsed_body["id"]).canonical_url).to eq(canonical_url)
end
it "creates an article with the given description" do
description = "this is a very interesting article"
expect do
post_article(
title: Faker::Book.title,
body_markdown: "Yo ho ho",
description: description,
)
expect(response).to have_http_status(:created)
end.to change(Article, :count).by(1)
expect(Article.find(response.parsed_body["id"]).description).to eq(description)
end
it "creates an article with description in the front matter" do
description = "this is a very interesting article"
body_markdown = file_fixture("article_published_canonical_url.txt").read
expect do
post_article(
body_markdown: body_markdown,
description: description,
)
expect(response).to have_http_status(:created)
end.to change(Article, :count).by(1)
expect(Article.find(response.parsed_body["id"]).description).not_to eq(description)
end
it "creates an article with a part of the body as a description" do
expect do
post_article(
title: Faker::Book.title,
body_markdown: "yoooo" * 100,
)
expect(response).to have_http_status(:created)
end.to change(Article, :count).by(1)
expect(Article.find(response.parsed_body["id"]).description).to eq("#{'yoooo' * 20}y...")
end
it "does not raise an error if article params are missing" do
expect do
post api_articles_path, params: {}.to_json, headers: post_headers
end.not_to raise_error
expect(response.status).to eq(422)
end
it "fails with a nil body markdown" do
post_article(title: Faker::Book.title, body_markdown: nil)
expect(response).to have_http_status(:unprocessable_entity)
expect(response.parsed_body["error"]).to be_present
end
end
end
describe "PUT /api/articles/:id" do
let!(:user) { api_secret.user }
let(:article) { create(:article, user: user, published: false, published_at: nil) }
let(:path) { api_article_path(article.id) }
let!(:organization) { create(:organization) }
describe "when unauthorized" do
it "fails with no api key" do
put path, headers: { "content-type" => "application/json", "Accept" => "application/vnd.forem.api-v1+json" }
expect(response).to have_http_status(:unauthorized)
end
it "fails with the wrong api key" do
put path,
headers: { "api-key" => "foobar", "content-type" => "application/json",
"Accept" => "application/vnd.forem.api-v1+json" }
expect(response).to have_http_status(:unauthorized)
end
it "fails with a failing secure compare" do
allow(ActiveSupport::SecurityUtils)
.to receive(:secure_compare).and_return(false)
put path,
headers: { "api-key" => api_secret.secret, "content-type" => "application/json",
"Accept" => "application/vnd.forem.api-v1+json" }
expect(response).to have_http_status(:unauthorized)
end
end
describe "when authorized" do
let(:put_headers) do
{ "api-key" => api_secret.secret, "content-type" => "application/json",
"Accept" => "application/vnd.forem.api-v1+json" }
end
def put_article(**params)
put path, params: { article: params }.to_json, headers: put_headers
end
it "returns a 429 status code if the rate limit is reached" do
rate_limit_checker = instance_double(RateLimitChecker)
retry_after_val = RateLimitChecker::ACTION_LIMITERS.dig(:article_update, :retry_after)
rate_limit_error = RateLimitChecker::LimitReached.new(retry_after_val)
allow(RateLimitChecker).to receive(:new).and_return(rate_limit_checker)
allow(rate_limit_checker).to receive(:check_limit!).and_raise(rate_limit_error)
put_article(title: Faker::Book.title, body_markdown: "foobar")
expect(response).to have_http_status(:too_many_requests)
expect(response.headers["retry-after"]).to eq(retry_after_val)
end
it "returns not found if the article does not belong to the user" do
article = create(:article, user: create(:user))
params = { article: { title: "foobar" } }.to_json
put "/api/articles/#{article.id}", params: params, headers: put_headers
expect(response).to have_http_status(:not_found)
end
it "lets a super admin update an article belonging to another user" do
user.add_role(:super_admin)
article = create(:article, user: create(:user))
params = { article: { title: "foobar" } }.to_json
put "/api/articles/#{article.id}", params: params, headers: put_headers
expect(response).to have_http_status(:ok)
end
it "does not update title if only given a title because the article has a front matter" do
put_article(title: Faker::Book.title)
expect(response).to have_http_status(:ok)
expect(article.reload.title).to eq(article.title)
expect(response.parsed_body["title"]).to eq(article.title)
end
it "updates the title and the body if given a title and a body" do
title = Faker::Book.title
body_markdown = "foobar"
put_article(title: title, body_markdown: body_markdown)
expect(response).to have_http_status(:ok)
expect(article.reload.title).to eq(title)
expect(article.body_markdown).to eq(body_markdown)
end
it "updates the main_image to be empty if given an empty cover_image" do
image = Faker::Avatar.image
article.update(main_image: image)
expect(article.main_image).to eq(image)
body_markdown = file_fixture("article_published_empty_cover_image.txt").read
put_article(
title: Faker::Book.title,
body_markdown: body_markdown,
)
expect(response).to have_http_status(:ok)
expect(article.reload.main_image).to be_nil
end
it "updates the main_image to be empty if given a different cover_image" do
image = Faker::Avatar.image
article.update(main_image: image)
expect(article.main_image).to eq(image)
body_markdown = file_fixture("article_published_cover_image.txt").read
put_article(
title: Faker::Book.title,
body_markdown: body_markdown,
)
expect(response).to have_http_status(:ok)
expect(article.reload.main_image).to eq("https://dummyimage.com/100x100")
end
it "updates the tags" do
expect do
put_article(
body_markdown: "something else here",
tags: %w[meta discussion],
)
article.reload
end.to change(article, :body_markdown) && change(article, :cached_tag_list)
end
it "assigns the article to a new series belonging to the user" do
expect do
put_article(
title: Faker::Book.title,
body_markdown: "Yo ho ho",
series: "a series",
)
end.to change(Collection, :count).by(1)
expect(response).to have_http_status(:ok)
expect(article.reload.collection).not_to be_nil
end
it "assigns the article to an existing series belonging to the user" do
collection = create(:collection, user: user)
expect do
put_article(
title: Faker::Book.title,
body_markdown: "Yo ho ho",
series: collection.slug,
)
end.not_to change(Collection, :count)
expect(response).to have_http_status(:ok)
expect(article.reload.collection).to eq(collection)
end
it "does not remove the article from a series" do
collection = create(:collection, user: user)
body_markdown = "Yo ho ho"
article.update!(body_markdown: body_markdown, collection: collection)
expect(article.collection).not_to be_nil
put_article(
title: Faker::Book.title,
body_markdown: body_markdown,
)
expect(response).to have_http_status(:ok)
expect(article.reload.collection).to eq(collection)
end
it "removes the article from a series if asked explicitly" do
body_markdown = "Yo ho ho"
article.update!(body_markdown: body_markdown, collection: create(:collection, user: user))
expect(article.collection).not_to be_nil
put_article(
title: Faker::Book.title,
body_markdown: body_markdown,
series: nil, # nil will assign the article to no collections
)
expect(response).to have_http_status(:ok)
expect(article.reload.collection).to be_nil
end
it "assigns the article to a series belonging to the article's owner, not the admin" do
user.add_role(:super_admin)
article = create(:article, user: create(:user))
params = { article: { title: Faker::Book.title,
body_markdown: "Yo ho ho",
series: "a series" } }
expect do
put "/api/articles/#{article.id}", params: params.to_json, headers: put_headers
expect(response).to have_http_status(:ok)
end.to change(Collection, :count).by(1)
expect(article.reload.collection.user).to eq(article.user)
end
it "publishes an article" do
expect(article.published).to be(false)
put_article(body_markdown: "Yo ho ho", published: true)
expect(response).to have_http_status(:ok)
expect(article.reload.published).to be(true)
end
it "sends a notification when the article gets published" do
expect(article.published).to be(false)
allow(Notification).to receive(:send_to_followers)
put_article(body_markdown: "Yo ho ho", published: true)
expect(response).to have_http_status(:ok)
expect(Notification).to have_received(:send_to_followers).with(article, "Published").once
end
it "only sends a notification the first time the article gets published" do
expect(article.published).to be(false)
allow(Notification).to receive(:send_to_followers)
put_article(body_markdown: "Yo ho ho", published: true)
expect(response).to have_http_status(:ok)
article.update_columns(published: false)
put_article(published: true)
expect(response).to have_http_status(:ok)
expect(Notification).to have_received(:send_to_followers).with(article, "Published").once
end
it "does not update the editing time when updated before publication" do
article.update_columns(edited_at: nil)
expect(article.published).to be(false)
put_article(
title: Faker::Book.title,
body_markdown: "Yo ho ho",
)
expect(response).to have_http_status(:ok)
expect(article.reload.edited_at).to be_nil
end
it "updates the editing time when updated after publication" do
article.update_columns(published: true)
put_article(
title: Faker::Book.title,
body_markdown: "Yo ho ho",
)
expect(response).to have_http_status(:ok)
expect(article.reload.edited_at).not_to be_nil
end
it "does not update the editing time before publication if changed by an admin" do
article.update_columns(edited_at: nil)
expect(article.published).to be(false)
user.add_role(:super_admin)
article = create(:article, user: create(:user))
params = { article: { title: Faker::Book.title,
body_markdown: "Yo ho ho" } }.to_json
put "/api/articles/#{article.id}", params: params, headers: put_headers
expect(response).to have_http_status(:ok)
expect(article.reload.edited_at).to be_nil
end
it "does not update the editing time after publication if changed by an admin" do
user.add_role(:super_admin)
new_article = create(:article, user: create(:user))
params = { article: { title: Faker::Book.title } }.to_json
expect do
put "/api/articles/#{new_article.id}", params: params, headers: put_headers
article.reload
end.not_to change(article, :edited_at)
end
it "updates the editing time when updated after publication if the owner is an admin" do
user.add_role(:super_admin)
article.update_columns(edited_at: nil, published: true)
put_article(
title: Faker::Book.title,
body_markdown: "Yo ho ho",
)
expect(response).to have_http_status(:ok)
expect(article.reload.edited_at).not_to be_nil
end
it "updates a description" do
description = "this is a very interesting article"
put_article(
body_markdown: "Yo ho ho bsddsdsobo",
description: description,
)
expect(response).to have_http_status(:ok)
expect(article.reload.description).to eq(description)
end
it "assigns the article to the organization" do
expect(article.organization).to be_nil
create(:organization_membership, user: user, organization: organization)
put_article(organization_id: organization.id)
expect(response).to have_http_status(:ok)
expect(article.reload.organization).to eq(organization)
end
it "fails if params are not a Hash" do
# Not using the nifty put_article helper method because it expects a Hash
string_params = "this_string_is_definitely_not_a_hash"
put path, params: { article: string_params }.to_json, headers: put_headers
expect(response).to have_http_status(:unprocessable_entity)
expect(response.parsed_body["error"]).to be_present
end
it "fails when article is not saved" do
put_article(title: nil, body_markdown: nil)
expect(response).to have_http_status(:unprocessable_entity)
expect(response.parsed_body["error"]).to be_present
end
end
end
end