fix: fix activate gestionnaire and activate administrateur

This commit is contained in:
seb-by-ouidou 2023-10-26 15:29:34 +00:00 committed by seb-by-ouidou
parent 6203b1fd05
commit a5d95b2d9d
9 changed files with 163 additions and 3 deletions

View file

@ -17,4 +17,31 @@ describe Administrateurs::ActivateController, type: :controller do
it { expect(controller).not_to have_received(:trust_device) }
end
end
describe '#create' do
let!(:administrateur) { create(:administrateur) }
let(:token) { administrateur.user.send(:set_reset_password_token) }
let(:password) { 'Another-password-ok!@#123?' }
before { post :create, params: { administrateur: { reset_password_token: token, password: password } } }
context 'when the token is ok' do
it { expect(administrateur.user.reload.valid_password?(password)).to be true }
it { expect(response).to redirect_to(admin_procedures_path) }
end
context 'when the password is not strong' do
let(:password) { 'another-password-ok?' }
it { expect(administrateur.user.reload.valid_password?(password)).to be false }
it { expect(response).to redirect_to(admin_activate_path(token: token)) }
end
context 'when the token is bad' do
let(:token) { 'bad' }
it { expect(administrateur.user.reload.valid_password?(password)).to be false }
it { expect(response).to redirect_to(admin_activate_path(token: token)) }
end
end
end