This rule was added in rubocop-rspec 2.9.0. We were using `be_nil` 50% of the time, and `be nil` the rest of the time. No strong preference for either one, but IMHO we don't lose anything be being consistent.
95 lines
3.3 KiB
Ruby
95 lines
3.3 KiB
Ruby
require "rails_helper"
|
|
|
|
describe "Registration form" do
|
|
scenario "username is not available" do
|
|
user = create(:user)
|
|
|
|
visit new_user_registration_path
|
|
expect(page).not_to have_content I18n.t("devise_views.users.registrations.new.username_is_not_available")
|
|
|
|
fill_in "user_username", with: user.username
|
|
check "user_terms_of_service"
|
|
|
|
expect(page).to have_content I18n.t("devise_views.users.registrations.new.username_is_not_available")
|
|
end
|
|
|
|
scenario "username is available" do
|
|
visit new_user_registration_path
|
|
expect(page).not_to have_content I18n.t("devise_views.users.registrations.new.username_is_available")
|
|
|
|
fill_in "user_username", with: "available username"
|
|
check "user_terms_of_service"
|
|
|
|
expect(page).to have_content I18n.t("devise_views.users.registrations.new.username_is_available")
|
|
end
|
|
|
|
scenario "do not save blank user_email" do
|
|
Setting["feature.user.skip_verification"] = true
|
|
visit new_user_registration_path
|
|
|
|
fill_in "user_username", with: "NewUser"
|
|
fill_in "user_password", with: "password"
|
|
fill_in "user_password_confirmation", with: "password"
|
|
|
|
check "user_terms_of_service"
|
|
|
|
click_button "Register"
|
|
|
|
expect(page).to have_content "can't be blank"
|
|
end
|
|
|
|
scenario "do not save blank redeemable codes" do
|
|
visit new_user_registration_path(use_redeemable_code: "true")
|
|
|
|
fill_in "user_username", with: "NewUserWithCode77"
|
|
fill_in "user_email", with: "new@consul.dev"
|
|
fill_in "user_password", with: "password"
|
|
fill_in "user_password_confirmation", with: "password"
|
|
fill_in "user_redeemable_code", with: " "
|
|
check "user_terms_of_service"
|
|
|
|
click_button "Register"
|
|
|
|
expect(page).to have_title "Confirm your email address"
|
|
expect(page).to have_content "Thank you for registering"
|
|
|
|
new_user = User.last
|
|
expect(new_user.username).to eq("NewUserWithCode77")
|
|
expect(new_user.redeemable_code).to be nil
|
|
end
|
|
|
|
scenario "Create with invisible_captcha honeypot field", :no_js do
|
|
visit new_user_registration_path
|
|
|
|
fill_in "user_username", with: "robot"
|
|
fill_in "user_address", with: "This is the honeypot field"
|
|
fill_in "user_email", with: "robot@robot.com"
|
|
fill_in "user_password", with: "destroyallhumans"
|
|
fill_in "user_password_confirmation", with: "destroyallhumans"
|
|
check "user_terms_of_service"
|
|
|
|
click_button "Register"
|
|
|
|
expect(page.status_code).to eq(200)
|
|
expect(page.html).to be_empty
|
|
expect(page).to have_current_path(user_registration_path)
|
|
end
|
|
|
|
scenario "Create organization too fast" do
|
|
allow(InvisibleCaptcha).to receive(:timestamp_threshold).and_return(Float::INFINITY)
|
|
visit new_user_registration_path
|
|
|
|
fill_in "user_username", with: "robot"
|
|
fill_in "user_email", with: "robot@robot.com"
|
|
fill_in "user_password", with: "destroyallhumans"
|
|
fill_in "user_password_confirmation", with: "destroyallhumans"
|
|
check "user_terms_of_service"
|
|
|
|
click_button "Register"
|
|
|
|
expect(page).to have_content "Sorry, that was too quick! Please resubmit"
|
|
|
|
expect(page).to have_current_path(new_user_registration_path)
|
|
end
|
|
end
|