docbrown/spec/requests/admin/podcasts_spec.rb
rhymes b6360fb80c
Upgrade Rails to 6.1.3.1 (#11333)
* Upgrade Rails to 6.1

* Switch to unreleased bullet

* Run rails app:update

* Add deprecation notices after reading changelogs

* Fix app:update error

* Move middleware in the correct place

* Temporarily disable ransack which does not support Rails 6.1

* Remove wrongly merged file

* Re-run spring binstub

* Fix double quotes

* Track ransack branch with Rails 6.1 support

* Fix deprecation

* Switch to Ransack 2.4 which supports Rails 6.1 rc1

* Fix missing default params for the duration substitution

* Fix new behavior of relation.pluck with contradictory queries

* Fix uploaders specs by tracking rspec-rails main repo

* Disable bullet temporarily

* Fix remaining fixture_file_upload usages

* Add default seconds for video article duration

* Trigger Travis CI

* Upgrade Rails to 6.1.0.rc2

* Remove file deleted on master

* Add Rails 6.1 gem to Gemfile

* Trigger Travis CI

* Revert "Disable bullet temporarily"

This reverts commit cee0c2ce61fb72cbc16d52c94b12ee681e873031.

* Fix bullet version

* Upgrade to acts-as-taggable 7 and fix conflict

* Update Gemfile and rspec-* gems

* Fix nokogiri in Gemfile.lock

* Switch to rspec-rails main branch

* Remove leftover vendored cached items

* Fix path for Rails 6.1

* Use latest release of erb_lint

* Re-run rails app:update to incorporate new changes

* Disable erb_lint's ErbSafety checks

* Fix Gemfile.lock and re-add platform specific gems of Nokogiri

* Add mini_portile2 as well

* Fix latest merge conflict by removing now unused faraday_middleware

* Upgrade to Rails 6.1.3.1

* Regenerate Gemfile.lock and vendor/cache

* Add x86_64 linux gem

* Mark spec as flaky

* Revert "Mark spec as flaky"

This reverts commit 3caba94b33645f9b59c84ba78ee8df042fc7aee0.

Co-authored-by: Mac Siri <krairit.siri@gmail.com>
2021-04-05 10:39:48 -04:00

120 lines
4.4 KiB
Ruby

require "rails_helper"
RSpec.describe "/admin/podcasts", type: :request do
let(:admin) { create(:user, :super_admin) }
let(:podcast) { create(:podcast, published: false) }
let(:user) { create(:user) }
let(:podcast_ownership) { create(:podcast_ownership) }
before do
sign_in admin
end
describe "GET /admin/podcasts" do
let!(:no_eps_podcast) { create(:podcast, title: Faker::Book.title) }
before do
create(:podcast_episode, podcast: podcast)
end
it "renders success" do
get admin_podcasts_path
expect(response).to be_successful
end
it "displays podcasts with and without episodes" do
get admin_podcasts_path
expect(response.body).to include(CGI.escapeHTML(no_eps_podcast.title))
expect(response.body).to include(CGI.escapeHTML(podcast.title))
end
end
describe "Adding owner" do
it "adds an owner" do
expect do
post add_owner_admin_podcast_path(podcast.id), params: { podcast: { user_id: user.id } }
end.to change(PodcastOwnership, :count).by(1)
end
it "does nothing when adding a non-existent user as owner" do
post add_owner_admin_podcast_path(podcast.id), params: { podcast: { user_id: user.id + 1 } }
expect(response).to redirect_to(edit_admin_podcast_path(podcast))
end
end
describe "Updating" do
let(:update_params) do
{
title: "hello",
feed_url: "https://pod.example.com/rss.rss",
description: "Description",
itunes_url: "https://itunes.example.com",
overcast_url: "https://overcast.example.com",
android_url: "https://android.example.com",
soundcloud_url: "https://soundcloud.example.com",
website_url: "https://example.com",
twitter_username: "@ThePracticalDev",
pattern_image: fixture_file_upload("800x600.png", "image/png"),
main_color_hex: "ffffff",
image: fixture_file_upload("podcast.png", "image/png"),
slug: "postcast-test-url",
reachable: true,
published: true
}
end
# rubocop:disable RSpec/MultipleExpectations
it "updates the podcast" do
put admin_podcast_path(podcast), params: { podcast: update_params }
podcast.reload
expect(podcast.title).to eq("hello")
expect(podcast.feed_url).to eq("https://pod.example.com/rss.rss")
expect(podcast.description).to eq("Description")
expect(podcast.itunes_url).to eq("https://itunes.example.com")
expect(podcast.overcast_url).to eq("https://overcast.example.com")
expect(podcast.android_url).to eq("https://android.example.com")
expect(podcast.soundcloud_url).to eq("https://soundcloud.example.com")
expect(podcast.website_url).to eq("https://example.com")
expect(podcast.twitter_username).to eq("@ThePracticalDev")
expect(podcast.main_color_hex).to eq("ffffff")
expect(podcast.slug).to eq("postcast-test-url")
expect(podcast.reachable).to eq(true)
expect(podcast.published).to eq(true)
end
# rubocop:enable RSpec/MultipleExpectations
it "updates image & pattern_image" do
expect do
put admin_podcast_path(podcast), params: { podcast: update_params }
podcast.reload
end.to change(podcast, :image) && change(podcast, :pattern_image)
end
it "redirects after update" do
put admin_podcast_path(podcast), params: { podcast: update_params }
expect(response).to redirect_to(admin_podcasts_path)
end
end
describe "POST /admin/podcasts/:id/fetch_podcasts" do
it "redirects back to index with a notice" do
post fetch_admin_podcast_path(podcast.id)
expect(response).to redirect_to(admin_podcasts_path)
expect(flash[:notice]).to include("Podcast's episodes fetching was scheduled (#{podcast.title}, ##{podcast.id})")
end
it "schedules a worker to fetch episodes" do
sidekiq_assert_enqueued_with(job: Podcasts::GetEpisodesWorker,
args: [{ podcast_id: podcast.id, limit: 5, force: false }]) do
post fetch_admin_podcast_path(podcast.id), params: { limit: "5", force: nil }
end
end
it "schedules a worker without limit and with force" do
sidekiq_assert_enqueued_with(job: Podcasts::GetEpisodesWorker,
args: [{ podcast_id: podcast.id, force: true, limit: nil }]) do
post fetch_admin_podcast_path(podcast.id), params: { force: "1", limit: "" }
end
end
end
end