0
0
Fork 0

Convert settings/login_activities controller spec to system spec (#33306)

This commit is contained in:
Matt Jankowski 2024-12-16 03:12:36 -05:00 committed by GitHub
parent 3d00b95359
commit a596f3479b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 34 additions and 29 deletions

View file

@ -0,0 +1,34 @@
# frozen_string_literal: true
require 'rails_helper'
RSpec.describe 'Login activities page' do
let!(:user) { Fabricate :user }
let!(:login_activity) { Fabricate :login_activity, user: user }
context 'when signed in' do
before { sign_in user }
describe 'Viewing the login activities page' do
it 'shows the login activity history' do
visit edit_user_registration_path
click_on I18n.t('sessions.view_authentication_history')
expect(page)
.to have_content(browser_description)
.and have_content(login_activity.authentication_method)
.and have_content(login_activity.ip)
.and have_private_cache_control
end
def browser_description
I18n.t(
'sessions.description',
browser: I18n.t("sessions.browsers.#{login_activity.browser}", default: login_activity.browser),
platform: I18n.t("sessions.platforms.#{login_activity.platform}", default: login_activity.platform)
)
end
end
end
end