summaryrefslogtreecommitdiff
path: root/spec/features/signup_spec.rb
blob: 01472743b2aaa3593bba79b75d50e595d827dd9c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
require 'spec_helper'

feature 'Signup', feature: true do
  describe 'signup with no errors' do
    it 'creates the user account and sends a confirmation email' do
      user = build(:user)

      visit root_path

      fill_in 'user_name',                with: user.name
      fill_in 'user_username',            with: user.username
      fill_in 'user_email',               with: user.email
      fill_in 'user_password_sign_up',    with: user.password
      click_button "Sign up"

      expect(current_path).to eq user_session_path
      expect(page).to have_content("A message with a confirmation link has been sent to your email address.")
    end
  end

  describe 'signup with errors' do
    it "displays the errors" do
      existing_user = create(:user)
      user = build(:user)

      visit root_path

      fill_in 'user_name',                with: user.name
      fill_in 'user_username',            with: user.username
      fill_in 'user_email',               with: existing_user.email
      fill_in 'user_password_sign_up',    with: user.password
      click_button "Sign up"

      expect(current_path).to eq user_registration_path
      expect(page).to have_content("error prohibited this user from being saved")
      expect(page).to have_content("Email has already been taken")
    end

    it 'does not redisplay the password' do
      existing_user = create(:user)
      user = build(:user)

      visit root_path

      fill_in 'user_name',                with: user.name
      fill_in 'user_username',            with: user.username
      fill_in 'user_email',               with: existing_user.email
      fill_in 'user_password_sign_up',    with: user.password
      click_button "Sign up"

      expect(current_path).to eq user_registration_path
      expect(page.body).not_to match(/#{user.password}/)
    end
  end
end