54 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			54 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
# frozen_string_literal: true
 | 
						|
 | 
						|
require 'rails_helper'
 | 
						|
 | 
						|
RSpec.describe 'Profile' do
 | 
						|
  include ProfileStories
 | 
						|
 | 
						|
  before do
 | 
						|
    as_a_logged_in_user
 | 
						|
    Fabricate(:user, account: Fabricate(:account, username: 'alice'))
 | 
						|
  end
 | 
						|
 | 
						|
  it 'I can view public account page for Alice' do
 | 
						|
    visit account_path('alice')
 | 
						|
 | 
						|
    expect(page)
 | 
						|
      .to have_title("alice (@alice@#{local_domain_uri.host})")
 | 
						|
  end
 | 
						|
 | 
						|
  it 'I can change my account' do
 | 
						|
    visit settings_profile_path
 | 
						|
 | 
						|
    fill_in 'Display name', with: 'Bob'
 | 
						|
    fill_in 'Bio', with: 'Bob is silent'
 | 
						|
 | 
						|
    fill_in 'account_fields_attributes_0_name', with: 'Personal Website'
 | 
						|
    fill_in 'account_fields_attributes_0_value', with: 'https://host.example/personal'
 | 
						|
 | 
						|
    fill_in 'account_fields_attributes_1_name', with: 'Professional Biography'
 | 
						|
    fill_in 'account_fields_attributes_1_value', with: 'https://host.example/pro'
 | 
						|
 | 
						|
    expect { submit_form }
 | 
						|
      .to change { bob.account.reload.display_name }.to('Bob')
 | 
						|
      .and(change_account_fields)
 | 
						|
    expect(page)
 | 
						|
      .to have_content 'Changes successfully saved!'
 | 
						|
  end
 | 
						|
 | 
						|
  def submit_form
 | 
						|
    first('button[type=submit]').click
 | 
						|
  end
 | 
						|
 | 
						|
  def change_account_fields
 | 
						|
    change { bob.account.reload.fields }
 | 
						|
      .from([])
 | 
						|
      .to(
 | 
						|
        contain_exactly(
 | 
						|
          be_a(Account::Field),
 | 
						|
          be_a(Account::Field)
 | 
						|
        )
 | 
						|
      )
 | 
						|
  end
 | 
						|
end
 |