Note we're excluding a few files: * Configuration files that weren't generated by us * Migration files that weren't generated by us * The Gemfile, since it includes an important comment that must be on the same line as the gem declaration * The Budget::Stats class, since the heading statistics are a mess and having shorter lines would require a lot of refactoring
96 lines
3.1 KiB
Ruby
96 lines
3.1 KiB
Ruby
require "rails_helper"
|
|
|
|
describe "Admin hidden users", :admin do
|
|
scenario "Show user activity" do
|
|
user = create(:user, :hidden)
|
|
|
|
debate1 = create(:debate, :hidden, author: user)
|
|
debate2 = create(:debate, author: user)
|
|
comment1 = create(:comment, :hidden, user: user,
|
|
commentable: debate2,
|
|
body: "You have the manners of a beggar")
|
|
comment2 = create(:comment, user: user, commentable: debate2, body: "Not Spam")
|
|
|
|
visit admin_hidden_user_path(user)
|
|
|
|
expect(page).to have_content(debate1.title)
|
|
expect(page).to have_content(debate2.title)
|
|
expect(page).to have_content(comment1.body)
|
|
expect(page).to have_content(comment2.body)
|
|
end
|
|
|
|
scenario "Restore" do
|
|
user = create(:user, :hidden)
|
|
visit admin_hidden_users_path
|
|
|
|
accept_confirm("Are you sure? Restore \"#{user.name}\"") { click_button "Restore" }
|
|
|
|
expect(page).not_to have_content(user.username)
|
|
|
|
visit user_path(user)
|
|
|
|
expect(page).to have_content(user.username)
|
|
end
|
|
|
|
scenario "Confirm hide" do
|
|
user = create(:user, :hidden)
|
|
visit admin_hidden_users_path
|
|
|
|
click_button "Confirm moderation"
|
|
|
|
expect(page).not_to have_content(user.username)
|
|
click_link("Confirmed")
|
|
expect(page).to have_content(user.username)
|
|
end
|
|
|
|
scenario "Current filter is properly highlighted" do
|
|
visit admin_hidden_users_path
|
|
expect(page).not_to have_link("Pending")
|
|
expect(page).to have_link("All")
|
|
expect(page).to have_link("Confirmed")
|
|
|
|
visit admin_hidden_users_path(filter: "Pending")
|
|
expect(page).not_to have_link("Pending")
|
|
expect(page).to have_link("All")
|
|
expect(page).to have_link("Confirmed")
|
|
|
|
visit admin_hidden_users_path(filter: "all")
|
|
expect(page).to have_link("Pending")
|
|
expect(page).not_to have_link("All")
|
|
expect(page).to have_link("Confirmed")
|
|
|
|
visit admin_hidden_users_path(filter: "with_confirmed_hide")
|
|
expect(page).to have_link("All")
|
|
expect(page).to have_link("Pending")
|
|
expect(page).not_to have_link("Confirmed")
|
|
end
|
|
|
|
scenario "Filtering users" do
|
|
create(:user, :hidden, username: "Unconfirmed")
|
|
create(:user, :hidden, :with_confirmed_hide, username: "Confirmed user")
|
|
|
|
visit admin_hidden_users_path(filter: "all")
|
|
expect(page).to have_content("Unconfirmed")
|
|
expect(page).to have_content("Confirmed user")
|
|
|
|
visit admin_hidden_users_path(filter: "with_confirmed_hide")
|
|
expect(page).not_to have_content("Unconfirmed")
|
|
expect(page).to have_content("Confirmed user")
|
|
end
|
|
|
|
scenario "Action links remember the pagination setting and the filter" do
|
|
allow(User).to receive(:default_per_page).and_return(2)
|
|
|
|
users = 4.times.map { create(:user, :hidden, :with_confirmed_hide) }
|
|
|
|
visit admin_hidden_users_path(filter: "with_confirmed_hide", page: 2)
|
|
|
|
accept_confirm("Are you sure? Restore \"#{users[-3].name}\"") do
|
|
click_button "Restore", match: :first, exact: true
|
|
end
|
|
|
|
expect(page).to have_current_path(/filter=with_confirmed_hide/)
|
|
expect(page).to have_current_path(/page=2/)
|
|
end
|
|
end
|