Sha256: fe8e84fbc3f13ecff920060cdb1e0b1e7289adf071dfbd14018d1a2070a9e78a

Contents?: true

Size: 712 Bytes

Versions: 2

Compression:

Stored size: 712 Bytes

Contents

require 'spec_helper'
require 'support/features/feature_helpers'

feature 'visitor has consecutive bad logins' do
  before(:each) do
    @user = create(:user)
  end

  scenario 'visitor logs in and subsequent click within lifetime' do
    sign_in_with @user.email, @user.password
    expect_user_to_be_signed_in

    Timecop.travel 10.minutes do
      visit root_path
      expect_user_to_be_signed_in
    end
  end

  scenario 'visitor logs in and lets session live too long' do
    sign_in_with @user.email, @user.password
    expect_user_to_be_signed_in

    Timecop.travel 21.minutes do
      visit root_path
      expect(current_path).to eq sign_in_path
      expect_user_to_be_signed_out
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
authenticate-0.3.3 spec/features/max_session_lifetime_spec.rb
authenticate-0.3.2 spec/features/max_session_lifetime_spec.rb