d7591d46b9
Co-authored-by: viehlieb <pf@pragma-shift.net> Co-authored-by: Tobias Kneuker <tk@pragma-shift.net> seperate expects refactor login user calls add more articles to test sorting with fix: fix test for rails upgrade
28 lines
879 B
Ruby
28 lines
879 B
Ruby
# frozen_string_literal: true
|
|
|
|
module SpecTestHelper
|
|
def login(user)
|
|
user = User.where(:nick => user.nick).first if user.is_a?(Symbol)
|
|
session[:user_id] = user.id
|
|
session[:scope] = FoodsoftConfig[:default_scope] # Save scope in session to not allow switching between foodcoops with one account
|
|
session[:locale] = user.locale
|
|
end
|
|
|
|
def current_user
|
|
User.find(session[:user_id])
|
|
end
|
|
|
|
def get_with_defaults(action, params: {}, xhr: false, format: nil)
|
|
params['foodcoop'] = FoodsoftConfig[:default_scope]
|
|
get action, params: params, xhr: xhr, format: format
|
|
end
|
|
|
|
def post_with_defaults(action, params: {}, xhr: false, format: nil)
|
|
params['foodcoop'] = FoodsoftConfig[:default_scope]
|
|
post action, params: params, xhr: xhr, format: format
|
|
end
|
|
end
|
|
|
|
RSpec.configure do |config|
|
|
config.include SpecTestHelper, :type => :controller
|
|
end
|