Newer
Older
dmpopidor / spec / features / registrations_spec.rb
require 'rails_helper'

RSpec.describe "Registrations", type: :feature do

  let!(:org) { create(:org) }

  let(:user_attributes) { attributes_for(:user) }

  scenario "User creates a new acccount", :js do
    user_count = User.count

    # Setup
    visit root_path

    # Action
    click_link "Create account"
    within("#create-account-form") do
      fill_in "First Name", with: user_attributes[:firstname]
      fill_in "Last Name", with: user_attributes[:surname]
      fill_in "Email", with: user_attributes[:email]
      fill_in "Organisation", with: org.name
      # Click from the dropdown autocomplete
      find("#suggestion-1-0").click
      fill_in "Password", with: user_attributes[:password]
      check "Show password"
      check "I accept the terms and conditions"
    end
    click_button "Create account"

    # Expectations
    expect(current_path).to eql(plans_path)
    expect(page).to have_text(user_attributes[:firstname])
    expect(page).to have_text(user_attributes[:surname])
  end

  scenario "User attempts to create a new acccount with invalid atts", :js do
    user_count = User.count

    # Setup
    visit root_path

    # Action
    click_link "Create account"
    within("#create-account-form") do
      fill_in "First Name", with: user_attributes[:firstname]
      fill_in "Last Name", with: user_attributes[:surname]
      fill_in "Email", with: "invalid-email"
      fill_in "Organisation", with: org.name
      # Click from the dropdown autocomplete
      find("#suggestion-1-0").click
      fill_in "Password", with: user_attributes[:password]
      check "Show password"
      check "I accept the terms and conditions"
    end
    click_button "Create account"

    # Expectations
    expect(current_path).to eql(root_path)
    expect(User.count).to be_zero
  end

end