require "rails_helper" RSpec.describe "Articles", type: :request do let(:user) { create(:user) } let(:tag) { build_stubbed(:tag) } describe "GET /feed" do it "returns rss+xml content" do create(:article, featured: true) get "/feed" expect(response.status).to eq(200) expect(response.media_type).to eq("application/rss+xml") end it "contains the full app URL" do create(:article, featured: true) get feed_path expect(response.body).to include("#{URL.url}") end it "returns not found if no articles" do expect { get "/feed" }.to raise_error(ActiveRecord::RecordNotFound) expect { get "/feed/#{user.username}" }.to raise_error(ActiveRecord::RecordNotFound) expect { get "/feed/#{tag.name}" }.to raise_error(ActiveRecord::RecordNotFound) end it "sets Fastly Cache-Control headers" do create(:article, featured: true) get "/feed" expect(response.status).to eq(200) expected_cache_control_headers = %w[public no-cache] expect(response.headers["Cache-Control"].split(", ")).to match_array(expected_cache_control_headers) end it "sets Fastly Surrogate-Control headers" do create(:article, featured: true) get "/feed" expect(response.status).to eq(200) expected_surrogate_control_headers = %w[max-age=600 stale-while-revalidate=30 stale-if-error=86400] expect(response.headers["Surrogate-Control"].split(", ")).to match_array(expected_surrogate_control_headers) end it "sets Fastly Surrogate-Key headers" do create(:article, featured: true) get "/feed" expect(response.status).to eq(200) expected_surrogate_key_headers = %w[feed] expect(response.headers["Surrogate-Key"].split(", ")).to match_array(expected_surrogate_key_headers) end context "when :username param is not given" do let!(:featured_article) { create(:article, featured: true) } let!(:not_featured_article) { create(:article, featured: false) } before { get "/feed" } it "returns only featured articles" do expect(response.body).to include(featured_article.title) expect(response.body).not_to include(not_featured_article.title) end end shared_context "when user/organization articles exist" do let(:user) { create(:user) } let(:organization) { create(:organization) } end context "when :username param is given and belongs to a user" do include_context "when user/organization articles exist" let!(:user_article) { create(:article, user: user) } let!(:organization_article) { create(:article, organization: organization) } before { get user_feed_path(user.username) } it "returns only articles for that user" do expect(response.body).to include(user_article.title) expect(response.body).not_to include(organization_article.title) end it "contains the full user URL" do expect(response.body).to include("#{URL.user(user)}") end end context "when :username param is given and belongs to an organization" do include_context "when user/organization articles exist" let!(:user_article) { create(:article, user: user) } let!(:organization_article) { create(:article, organization: organization) } before { get user_feed_path(organization.slug) } it "returns only articles for that organization" do expect(response.body).not_to include(user_article.title) expect(response.body).to include(organization_article.title) end it "contains the full organization URL" do expect(response.body).to include("#{URL.organization(organization)}") end end context "when :username param is given but it belongs to neither user nor organization" do it "renders empty body" do expect do get feed_path("unknown") end.to raise_error(ActiveRecord::RecordNotFound) end end context "when format is invalid" do it "returns a 404 response" do expect { get "/feed.zip" }.to raise_error(ActiveRecord::RecordNotFound) end end it "contains tags as categories" do article = create(:article, featured: true) get feed_path rss_feed = Feedjira.parse(response.body) expect(rss_feed.entries.first.categories).to match_array(article.tag_list) end end describe "GET /feed/tag" do context "when :tag param is given and tag exists" do before do create(:article, tags: tag.name) end it "returns only articles for that tag" do article = create(:article, tags: ["foobar"]) # tag_article = create(:article, tags: tag.name) get tag_feed_path(tag.name) rss_feed = Feedjira.parse(response.body) titles = rss_feed.entries.map(&:title) expect(titles).not_to include(article.title) tag_article = Article.cached_tagged_with(tag.name).take expect(titles).to include(tag_article.title) end it "contains the tag as a category" do get tag_feed_path(tag.name) rss_feed = Feedjira.parse(response.body) expect(rss_feed.entries.first.categories).to include(tag.name) end it "contains the full app URL" do get tag_feed_path(tag.name) expect(response.body).to include("#{URL.url}") end end context "when :tag param is given and tag exists and is an alias" do before do create(:article, tags: tag.name) alias_tag = create(:tag, alias_for: tag.name) get "/feed/tag/#{alias_tag.name}" end it "returns only articles for the aliased for tag" do tag_article = Article.cached_tagged_with(tag.name).take expect(response.body).to include(tag_article.title) end end context "when :tag param is given and tag does not exist" do it "renders empty body" do expect { get "/feed/tag/unknown" }.to raise_error(ActiveRecord::RecordNotFound) end end end describe "GET /new" do before { sign_in user } context "with authorized user" do it "returns a new article" do get "/new" expect(response).to have_http_status(:ok) end end context "with authorized user with tag param" do it "returns a new article" do get "/new", params: { slug: "shecoded" } expect(response).to have_http_status(:ok) end end it "sets canonical url with base" do get "/new" expect(response.body).to include('') end it "sets canonical url with prefil" do get "/new?prefill=dsdweewewew" expect(response.body).to include('') end end describe "GET /:path/edit" do before { sign_in user } it "shows v1 if article has frontmatter" do article = create(:article, user_id: user.id) get "#{article.path}/edit" expect(response.body).to include("crayons-article-form--v1") end end describe "GET /:path/manage" do before { sign_in user } it "works successfully" do article = create(:article, user: user) get "#{article.path}/manage" expect(response).to have_http_status(:ok) expect(response.body).to include("Manage Your Post") end it "returns unauthorized if the user is not the author" do second_user = create(:user) article = create(:article, user: second_user) expect { get "#{article.path}/manage" }.to raise_error(Pundit::NotAuthorizedError) end end describe "GET /:path/stats" do before { sign_in user } it "returns unauthorized if the user is not the author" do second_user = create(:user) article = create(:article, user: second_user) expect { get "#{article.path}/stats" }.to raise_error(Pundit::NotAuthorizedError) end it "returns unauthorized if the user is not pro" do article = create(:article, user: user) expect { get "#{article.path}/stats" }.to raise_error(Pundit::NotAuthorizedError) end it "works successfully" do user.add_role(:pro) article = create(:article, user: user) get "#{article.path}/stats" expect(response).to have_http_status(:ok) expect(response.body).to include("Stats for Your Article") end end describe "GET /delete_confirm" do before { sign_in user } context "without an article" do it "renders not_found" do article = create(:article, user: user) expect do get "#{article.path}_1/delete_confirm" end.to raise_error(ActiveRecord::RecordNotFound) end end end end