Sha256: c3df273963baafc902327e381c50713fa3b453558ecbe5a6a2a47c235c71c79f
Contents?: true
Size: 1.83 KB
Versions: 21
Compression:
Stored size: 1.83 KB
Contents
require 'spec_helper' class FakesController < ApplicationController include Spree::Core::ControllerHelpers::Auth def index; render plain: 'index'; end end describe Spree::Core::ControllerHelpers::Auth, type: :controller do controller(FakesController) {} describe '#current_ability' do it 'returns Spree::Ability instance' do expect(controller.current_ability.class).to eq Spree::Ability end end describe '#redirect_back_or_default' do controller(FakesController) do def index; redirect_back_or_default('/'); end end it 'redirects to session url' do session[:spree_user_return_to] = '/redirect' get :index expect(response).to redirect_to('/redirect') end it 'redirects to default page' do get :index expect(response).to redirect_to('/') end end describe '#set_guest_token' do controller(FakesController) do def index set_guest_token render plain: 'index' end end it 'sends cookie header' do get :index expect(response.cookies['guest_token']).not_to be_nil end end describe '#store_location' do it 'sets session return url' do allow(controller).to receive_messages(request: double(fullpath: '/redirect')) controller.store_location expect(session[:spree_user_return_to]).to eq '/redirect' end end describe '#try_spree_current_user' do it 'calls spree_current_user when define spree_current_user method' do expect(controller).to receive(:spree_current_user) controller.try_spree_current_user end it 'calls current_spree_user when define current_spree_user method' do expect(controller).to receive(:current_spree_user) controller.try_spree_current_user end it 'returns nil' do expect(controller.try_spree_current_user).to eq nil end end end
Version data entries
21 entries across 21 versions & 1 rubygems