62 lines
1.8 KiB
Ruby
62 lines
1.8 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe :self_registration do
|
|
|
|
subject { page }
|
|
|
|
class Group::SelfRegistrationGroup < Group
|
|
self.layer = true
|
|
|
|
class ReadOnly < ::Role
|
|
self.permissions = [:group_read]
|
|
end
|
|
|
|
roles ReadOnly
|
|
end
|
|
|
|
let(:group) do
|
|
Group::SelfRegistrationGroup.create!(name: 'Self-Registration Group')
|
|
end
|
|
|
|
let(:self_registration_role) { group.decorate.allowed_roles_for_self_registration.first }
|
|
|
|
before do
|
|
group.self_registration_role_type = self_registration_role
|
|
group.save!
|
|
|
|
allow(Settings.groups.self_registration).to receive(:enabled).and_return(true)
|
|
end
|
|
|
|
it 'self registers and creates new person' do
|
|
visit group_self_registration_path(group_id: group)
|
|
|
|
fill_in 'Vorname', with: 'Max'
|
|
fill_in 'Nachname', with: 'Muster'
|
|
fill_in 'Haupt-E-Mail', with: 'max.muster@hitobito.example.com'
|
|
|
|
expect do
|
|
find_all('.btn-toolbar.bottom .btn-group button[type="submit"]').first.click # submit
|
|
end.to change { Person.count }.by(1)
|
|
.and change { ActionMailer::Base.deliveries.count }.by(1)
|
|
|
|
is_expected.to have_text('Du hast Dich erfolgreich registriert. Du erhältst in Kürze eine E-Mail mit der Anleitung, wie Du Deinen Account freischalten kannst.')
|
|
|
|
person = Person.find_by(email: 'max.muster@hitobito.example.com')
|
|
expect(person).to be_present
|
|
|
|
person.confirm # confirm email
|
|
|
|
person.password = person.password_confirmation = 'really_b4dPassw0rD'
|
|
person.save!
|
|
|
|
fill_in 'Haupt-E-Mail', with: 'max.muster@hitobito.example.com'
|
|
fill_in 'Passwort', with: 'really_b4dPassw0rD'
|
|
|
|
click_button 'Anmelden'
|
|
|
|
expect(person.roles.map(&:type)).to eq([self_registration_role.to_s])
|
|
expect(current_path).to eq("/de#{group_person_path(group_id: group, id: person)}.html")
|
|
end
|
|
|
|
|
|
end
|