1234567891011121314151617181920212223242526272829303132333435 |
- # Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
- require 'rails_helper'
- RSpec.describe 'Signup', type: :system, authenticated_as: false do
- before do
- visit 'signup'
- end
- it 'creates an accoutn successfully' do
- fill_in 'firstname', with: 'Test'
- fill_in 'lastname', with: 'Test'
- fill_in 'email', with: 'test@example.com'
- fill_in 'password', with: 'SOme-pass1'
- fill_in 'password_confirm', with: 'SOme-pass1'
- click '.js-submit'
- expect(page).to have_css '.signup', text: 'Registration successful!'
- end
- it 'with a weak password show password strength error' do
- fill_in 'firstname', with: 'Test'
- fill_in 'lastname', with: 'Test'
- fill_in 'email', with: 'test@example.com'
- fill_in 'password', with: 'asdasdasdasd'
- fill_in 'password_confirm', with: 'asdasdasdasd'
- click '.js-submit'
- within '.js-danger' do
- expect(page).to have_text('Invalid password,').and(have_no_text('["'))
- end
- end
- end
|