Sha256: 1f25c2280519c5f93420730fde0b87185757b1d61ba3b7d2bffbf4f69e24193a

Contents?: true

Size: 1.63 KB

Versions: 12

Compression:

Stored size: 1.63 KB

Contents

require 'spec_helper'

feature 'Login Flow', organization_workspace: :test do
  let!(:chapter) do
    create(:chapter, name: 'C1', lessons: [
      create(:lesson, language: create(:language), name: 'awesomeRubyGuide', description: 'rubist baz guide', exercises: [
        create(:exercise)
      ])
    ])
  end

  let!(:user) { create :user, first_name: 'John', last_name: 'Doe', uid: 'johndoe@test.com' }

  before { reindex_current_organization! }

  scenario 'can login' do
    visit '/'

    click_on 'Sign in'

    expect(page).to have_text('Start Practicing!')
    expect(page).to have_text('Chapters')
    expect(page).to_not have_text('Sign in')
    expect(page).to have_text('Sign Out')
  end

  scenario 'can login and keeps session', :navigation_error do
    visit '/'

    click_on 'Sign in'

    visit '/'

    expect(page).to_not have_text('Sign in')
    expect(page).to have_text('Sign Out')
  end

  scenario 'can login in non root' do
    visit "/chapters/#{chapter.id}"

    click_on 'Sign in'

    expect(page).to_not have_text('Sign in')
    expect(page).to have_text('Sign Out')
    expect(page).to have_text('awesomeRubyGuide')
  end

  scenario 'can logout', :element_not_interactable_error do
    visit '/'

    click_on 'Sign in'

    expect(page).to have_text('Sign Out')
    click_on 'Sign Out'

    expect(page).to have_text('Chapters')

    expect(page).to have_text('Sign in')
    expect(page).to_not have_text('Sign out')
  end

  scenario 'user can be prompted for login' do
    visit '/user'

    expect(page).to_not have_text('Sign in')
    expect(page).to have_text('Sign Out')
    expect(page).to have_text('Profile')
  end
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
mumuki-laboratory-8.2.1 spec/features/login_flow_spec.rb
mumuki-laboratory-8.2.0 spec/features/login_flow_spec.rb
mumuki-laboratory-8.1.3 spec/features/login_flow_spec.rb
mumuki-laboratory-8.1.2 spec/features/login_flow_spec.rb
mumuki-laboratory-8.1.1 spec/features/login_flow_spec.rb
mumuki-laboratory-8.1.0 spec/features/login_flow_spec.rb
mumuki-laboratory-7.12.3 spec/features/login_flow_spec.rb
mumuki-laboratory-8.0.0 spec/features/login_flow_spec.rb
mumuki-laboratory-7.12.1 spec/features/login_flow_spec.rb
mumuki-laboratory-7.12.0 spec/features/login_flow_spec.rb
mumuki-laboratory-7.11.1 spec/features/login_flow_spec.rb
mumuki-laboratory-7.11.0 spec/features/login_flow_spec.rb