2020-01-03 02:44:06 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'rails_helper'
|
|
|
|
|
2024-09-04 07:12:25 +02:00
|
|
|
RSpec.describe 'Profile' do
|
2020-01-03 02:44:06 +01:00
|
|
|
include ProfileStories
|
|
|
|
|
2023-02-18 22:59:00 +01:00
|
|
|
subject { page }
|
|
|
|
|
2024-06-03 11:15:58 +02:00
|
|
|
let(:local_domain) { Rails.configuration.x.local_domain }
|
2020-01-03 02:44:06 +01:00
|
|
|
|
2023-02-18 22:59:00 +01:00
|
|
|
before do
|
2020-01-03 02:44:06 +01:00
|
|
|
as_a_logged_in_user
|
|
|
|
with_alice_as_local_user
|
|
|
|
end
|
|
|
|
|
2023-02-18 22:59:00 +01:00
|
|
|
it 'I can view Annes public account' do
|
2020-01-03 02:44:06 +01:00
|
|
|
visit account_path('alice')
|
|
|
|
|
2023-02-20 05:00:48 +01:00
|
|
|
expect(subject).to have_title("alice (@alice@#{local_domain})")
|
2020-01-03 02:44:06 +01:00
|
|
|
end
|
|
|
|
|
2023-02-18 22:59:00 +01:00
|
|
|
it 'I can change my account' do
|
2020-01-03 02:44:06 +01:00
|
|
|
visit settings_profile_path
|
2022-10-20 14:35:29 +02:00
|
|
|
|
2020-01-03 02:44:06 +01:00
|
|
|
fill_in 'Display name', with: 'Bob'
|
|
|
|
fill_in 'Bio', with: 'Bob is silent'
|
|
|
|
|
2022-10-20 14:35:29 +02:00
|
|
|
first('button[type=submit]').click
|
2020-01-03 02:44:06 +01:00
|
|
|
|
2023-02-20 05:00:48 +01:00
|
|
|
expect(subject).to have_content 'Changes successfully saved!'
|
2020-01-03 02:44:06 +01:00
|
|
|
end
|
|
|
|
end
|