docbrown/spec/requests/videos_spec.rb
Anna Buianova 7d053471f8
Rubocop fixes in spec/requests (#18946)
* Rubocop fixes in spec/requests

* Fixed spec/requests/api/v0/articles_spec.rb

Co-authored-by: Ridhwana <Ridhwana.Khan16@gmail.com>

Co-authored-by: Ridhwana <Ridhwana.Khan16@gmail.com>
2023-01-12 19:10:16 +03:00

74 lines
2.2 KiB
Ruby

require "rails_helper"
RSpec.describe "Videos" do
let(:unauthorized_user) { create(:user) }
let(:authorized_user) { create(:user, created_at: 1.month.ago) }
before { allow(Settings::General).to receive(:enable_video_upload).and_return(true) }
describe "GET /videos" do
it "shows video page" do
get "/videos"
expect(response.body).to include "#{community_name} on Video"
end
it "shows articles with video" do
not_video_article = create(:article)
video_article = create(:article)
video_article.update_columns(
video: "video",
video_thumbnail_url: "https://dummyimage.com/240x180.jpg",
title: "this video",
)
get "/videos"
expect(response.body).to include video_article.title
expect(response.body).not_to include not_video_article.title
end
end
describe "GET /videos/new" do
context "when not authorized" do
it "redirects non-logged in users" do
expect { get "/videos/new" }.to raise_error(Pundit::NotAuthorizedError)
end
it "redirects logged in users" do
sign_in unauthorized_user
expect { get "/videos/new" }.to raise_error(Pundit::NotAuthorizedError)
end
end
context "when authorized" do
it "allows authorized users" do
sign_in authorized_user
get "/videos/new"
expect(response.body).to include "Upload Video File"
end
end
end
describe "POST /videos" do
context "when not authorized" do
it "redirects non-logged in users" do
expect { post "/videos" }.to raise_error(Pundit::NotAuthorizedError)
end
it "redirects logged in users" do
sign_in unauthorized_user
expect { post "/videos" }.to raise_error(Pundit::NotAuthorizedError)
end
end
context "when authorized" do
before do
sign_in authorized_user
end
it "redirects to the article's edit page for the logged in user" do
stub_request(:get, %r{dw71fyauz7yz9\.cloudfront\.net/}).to_return(status: 200, body: "", headers: {})
post "/videos", params: { article: { video: "https://www.something.com/something.mp4" } }
expect(response).to have_http_status(:found)
end
end
end
end