Files
openfoodnetwork/spec/support/request/authentication_workflow.rb
Luis Ramos fabddbd1c0 Merge pull request #5746 from coopdevs/remove-specs-dead-code
Remove dead specs helper method
2020-07-08 12:38:24 +01:00

75 lines
2.1 KiB
Ruby

module AuthenticationWorkflow
include Warden::Test::Helpers
def quick_login_as(user)
login_as user
end
def quick_login_as_admin
admin_role = Spree::Role.find_or_create_by!(name: 'admin')
admin_user = create(:user,
password: 'passw0rd',
password_confirmation: 'passw0rd',
remember_me: false,
persistence_token: 'pass',
login: 'admin@ofn.org')
admin_user.spree_roles << admin_role
quick_login_as admin_user
admin_user
end
def login_to_admin_section
quick_login_as_admin
visit spree.admin_dashboard_path
end
# TODO: Should probably just rename this to create_user
def create_enterprise_user( attrs = {} )
new_user = build(:user, attrs)
new_user.spree_roles = [Spree::Role.find_or_create_by!(name: 'user')]
new_user.save
if attrs.key? :enterprises
attrs[:enterprises].each do |enterprise|
enterprise.users << new_user
end
end
new_user
end
def login_to_admin_as(user)
quick_login_as user
visit spree.admin_dashboard_path
# visit spree.admin_dashboard_path
# fill_in 'spree_user_email', :with => user.email
# fill_in 'spree_user_password', :with => user.password
# click_button 'Login'
end
def fill_in_and_submit_login_form(user)
fill_in "email", with: user.email
fill_in "password", with: user.password
click_button "Login"
end
def expect_logged_in
# Ensure page has been reloaded after submitting login form
expect(page).to_not have_selector ".menu #login-link"
end
end
RSpec.configure do |config|
config.extend AuthenticationWorkflow, type: :feature
# rspec-rails 3 will no longer automatically infer an example group's spec type
# from the file location. You can explicitly opt-in to the feature using this
# config option.
# To explicitly tag specs without using automatic inference, set the `:type`
# metadata manually:
#
# describe ThingsController, :type => :controller do
# # Equivalent to being in spec/controllers
# end
config.infer_spec_type_from_file_location!
end