docbrown/spec/system/admin/admin_awards_badges_spec.rb
Mac Siri 842e6880b8
Routine rubocop fix on /spec (#19217)
* Softrun rubocop

* Hardrun rubocop (-A)

* Change a rubocop rule

* Add missing cops

* Undo & redo rubocop -A
2023-03-21 09:55:26 -04:00

56 lines
1.6 KiB
Ruby

require "rails_helper"
RSpec.describe "Admin awards badges" do
let(:admin) { create(:user, :super_admin) }
let(:user) { create(:user) }
let(:user2) { create(:user) }
let(:badges) { Badge.pluck(:title) }
def award_two_badges
find(:xpath, "//option[contains(text(), \"#{badges.last}\")]").select_option
fill_in "usernames", with: "#{user.username}, #{user2.username}"
fill_in "message_markdown", with: "He who controls the spice controls the universe."
click_on "Award Badges"
end
def award_no_badges
fill_in "usernames", with: "#{user.username}, #{user2.username}"
fill_in "message_markdown", with: "He who controls the spice controls the universe."
click_on "Award Badges"
end
before do
create_list(:badge, 5)
sign_in admin
visit admin_badge_achievements_award_badges_path
end
it "loads the view" do
expect(page).to have_content("Badges")
end
it "lists the badges" do
badges.each do |badge|
expect(page).to have_content(badge)
end
end
it "awards badges" do
expect do
sidekiq_perform_enqueued_jobs { award_two_badges }
end.to change { user.badges.count }.by(1).and change { user2.badges.count }.by(1)
expect(page).to have_content("Badges are being rewarded. The task will finish shortly")
visit "/#{user.username}/"
expect(page).to have_css("img[src='#{Badge.last.badge_image.url}']")
end
it "does not award badges if no badge is selected", js: true do
expect do
sidekiq_perform_enqueued_jobs { award_no_badges }
end.not_to change { user.badges.count }
expect(page).to have_content("Please choose a badge to award")
end
end