JavaScript is used by about 98% of web users, so by testing without it enabled, we're only testing that the application works for a very reduced number of users. We proceeded this way in the past because CONSUL started using Rails 4.2 and truncating the database between JavaScript tests with database cleaner, which made these tests terribly slow. When we upgraded to Rails 5.1 and introduced system tests, we started using database transactions in JavaScript tests, making these tests much faster. So now we can use JavaScript tests everywhere without critically slowing down our test suite.
96 lines
2.8 KiB
Ruby
96 lines
2.8 KiB
Ruby
require "rails_helper"
|
|
|
|
describe "Admin moderators", :admin do
|
|
let!(:user) { create(:user, username: "Jose Luis Balbin") }
|
|
let!(:moderator) { create(:moderator) }
|
|
|
|
before do
|
|
visit admin_moderators_path
|
|
end
|
|
|
|
scenario "Index" do
|
|
expect(page).to have_content moderator.name
|
|
expect(page).to have_content moderator.email
|
|
expect(page).not_to have_content user.name
|
|
end
|
|
|
|
scenario "Create Moderator" do
|
|
fill_in "search", with: user.email
|
|
click_button "Search"
|
|
|
|
expect(page).to have_content user.name
|
|
click_link "Add"
|
|
within("#moderators") do
|
|
expect(page).to have_content user.name
|
|
end
|
|
end
|
|
|
|
scenario "Delete Moderator" do
|
|
accept_confirm { click_link "Delete" }
|
|
|
|
within("#moderators") do
|
|
expect(page).not_to have_content moderator.name
|
|
end
|
|
end
|
|
|
|
context "Search" do
|
|
let(:user) { create(:user, username: "Elizabeth Bathory", email: "elizabeth@bathory.com") }
|
|
let(:user2) { create(:user, username: "Ada Lovelace", email: "ada@lovelace.com") }
|
|
let!(:moderator1) { create(:moderator, user: user) }
|
|
let!(:moderator2) { create(:moderator, user: user2) }
|
|
|
|
before do
|
|
visit admin_moderators_path
|
|
end
|
|
|
|
scenario "returns no results if search term is empty" do
|
|
expect(page).to have_content(moderator1.name)
|
|
expect(page).to have_content(moderator2.name)
|
|
|
|
fill_in "search", with: " "
|
|
click_button "Search"
|
|
|
|
expect(page).to have_content("Moderators: User search")
|
|
expect(page).to have_content("No results found")
|
|
expect(page).not_to have_content(moderator1.name)
|
|
expect(page).not_to have_content(moderator2.name)
|
|
end
|
|
|
|
scenario "search by name" do
|
|
expect(page).to have_content(moderator1.name)
|
|
expect(page).to have_content(moderator2.name)
|
|
|
|
fill_in "search", with: "Eliz"
|
|
click_button "Search"
|
|
|
|
expect(page).to have_content("Moderators: User search")
|
|
expect(page).to have_field "search", with: "Eliz"
|
|
expect(page).to have_content(moderator1.name)
|
|
expect(page).not_to have_content(moderator2.name)
|
|
end
|
|
|
|
scenario "search by email" do
|
|
expect(page).to have_content(moderator1.email)
|
|
expect(page).to have_content(moderator2.email)
|
|
|
|
fill_in "search", with: moderator2.email
|
|
click_button "Search"
|
|
|
|
expect(page).to have_content("Moderators: User search")
|
|
expect(page).to have_field "search", with: moderator2.email
|
|
expect(page).to have_content(moderator2.email)
|
|
expect(page).not_to have_content(moderator1.email)
|
|
end
|
|
|
|
scenario "Delete after searching" do
|
|
fill_in "Search user by name or email", with: moderator2.email
|
|
click_button "Search"
|
|
|
|
accept_confirm { click_link "Delete" }
|
|
|
|
expect(page).to have_content(moderator1.email)
|
|
expect(page).not_to have_content(moderator2.email)
|
|
end
|
|
end
|
|
end
|