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.
111 lines
3.4 KiB
Ruby
111 lines
3.4 KiB
Ruby
require "rails_helper"
|
|
|
|
describe "Admin valuators", :admin do
|
|
let!(:user) { create(:user, username: "Jose Luis Balbin") }
|
|
let!(:valuator) { create(:valuator, description: "Very reliable") }
|
|
|
|
before { visit admin_valuators_path }
|
|
|
|
scenario "Show" do
|
|
visit admin_valuator_path(valuator)
|
|
|
|
expect(page).to have_content valuator.name
|
|
expect(page).to have_content "Very reliable"
|
|
expect(page).to have_content valuator.email
|
|
expect(page).to have_content "Can comment, Can edit dossier"
|
|
end
|
|
|
|
scenario "Index" do
|
|
expect(page).to have_content(valuator.name)
|
|
expect(page).to have_content(valuator.email)
|
|
expect(page).not_to have_content(user.name)
|
|
end
|
|
|
|
scenario "Create" do
|
|
fill_in "search", with: user.email
|
|
click_button "Search"
|
|
|
|
expect(page).to have_content(user.name)
|
|
click_button "Add to valuators"
|
|
|
|
within("#valuators") do
|
|
expect(page).to have_content(user.name)
|
|
end
|
|
end
|
|
|
|
scenario "Edit" do
|
|
visit edit_admin_valuator_path(valuator)
|
|
|
|
expect(page).to have_field("Can create comments", checked: true)
|
|
expect(page).to have_field("Can edit dossiers", checked: true)
|
|
|
|
fill_in "valuator_description", with: "Valuator for health"
|
|
uncheck "Can edit dossiers"
|
|
click_button "Update Valuator"
|
|
|
|
expect(page).to have_content "Valuator updated successfully"
|
|
expect(page).to have_content valuator.email
|
|
expect(page).to have_content "Valuator for health"
|
|
expect(page).to have_content "Can comment"
|
|
expect(page).not_to have_content "Can edit dossier"
|
|
end
|
|
|
|
scenario "Destroy" do
|
|
accept_confirm { click_link "Delete" }
|
|
|
|
within("#valuators") do
|
|
expect(page).not_to have_content(valuator.name)
|
|
end
|
|
end
|
|
|
|
context "Search" do
|
|
let!(:user1) { create(:user, username: "David Foster Wallace", email: "david@wallace.com") }
|
|
let!(:user2) { create(:user, username: "Steven Erikson", email: "steven@erikson.com") }
|
|
let!(:valuator1) { create(:valuator, user: user1) }
|
|
let!(:valuator2) { create(:valuator, user: user2) }
|
|
|
|
before do
|
|
visit admin_valuators_path
|
|
end
|
|
|
|
scenario "returns no results if search term is empty" do
|
|
expect(page).to have_content(valuator1.name)
|
|
expect(page).to have_content(valuator2.name)
|
|
|
|
fill_in "search", with: " "
|
|
click_button "Search"
|
|
|
|
expect(page).to have_content("Valuators: User search")
|
|
expect(page).to have_content("No results found")
|
|
expect(page).not_to have_content(valuator1.name)
|
|
expect(page).not_to have_content(valuator2.name)
|
|
end
|
|
|
|
scenario "search by name" do
|
|
expect(page).to have_content(valuator1.name)
|
|
expect(page).to have_content(valuator2.name)
|
|
|
|
fill_in "search", with: "Foster"
|
|
click_button "Search"
|
|
|
|
expect(page).to have_content("Valuators: User search")
|
|
expect(page).to have_field "search", with: "Foster"
|
|
expect(page).to have_content(valuator1.name)
|
|
expect(page).not_to have_content(valuator2.name)
|
|
end
|
|
|
|
scenario "search by email" do
|
|
expect(page).to have_content(valuator1.email)
|
|
expect(page).to have_content(valuator2.email)
|
|
|
|
fill_in "search", with: valuator2.email
|
|
click_button "Search"
|
|
|
|
expect(page).to have_content("Valuators: User search")
|
|
expect(page).to have_field "search", with: valuator2.email
|
|
expect(page).to have_content(valuator2.email)
|
|
expect(page).not_to have_content(valuator1.email)
|
|
end
|
|
end
|
|
end
|