docbrown/spec/requests/videos_spec.rb
ludwiczakpawel ca108aa9c8
Videos UI update (#15177)
* videos ui updates

* move cheese around

* .

* .

* thumbnail yolo

* thumbnail yolo

* object fit

* aspect ratio yolo

* .

* loading videos

* Make Travis and asset pipeline happy with .mp4 extension

* Use Cloudinary video url, testing for Travis

* Try weird things

* Try a real image url

* Use a real image instead of 'video' string

* Update views.scss

Co-authored-by: Andy Z <17884966+Zhao-Andy@users.noreply.github.com>
2021-10-28 09:34:44 +02:00

72 lines
2.1 KiB
Ruby

require "rails_helper"
RSpec.describe "Videos", type: :request do
let(:unauthorized_user) { create(:user) }
let(:authorized_user) { create(:user, created_at: 1.month.ago) }
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.status).to eq(302)
end
end
end
end