demarches-normaliennes/spec/controllers/users/profil_controller_spec.rb

61 lines
1.8 KiB
Ruby
Raw Normal View History

2018-08-24 14:19:44 +02:00
require 'spec_helper'
2019-07-02 18:15:03 +02:00
describe Users::ProfilController, type: :controller do
let(:user) { create(:user) }
before { sign_in(user) }
2019-07-02 18:15:03 +02:00
describe 'POST #renew_api_token' do
let(:administrateur) { create(:administrateur) }
2018-08-24 14:19:44 +02:00
2019-07-02 18:15:03 +02:00
before { sign_in(administrateur) }
2018-08-24 14:19:44 +02:00
before do
allow(administrateur).to receive(:renew_api_token)
allow(controller).to receive(:current_administrateur) { administrateur }
post :renew_api_token
end
it { expect(administrateur).to have_received(:renew_api_token) }
it { expect(response.status).to render_template(:show) }
it { expect(flash.notice).to eq('Votre jeton a été regénéré.') }
end
describe 'PATCH #update_email' do
context 'when everything is fine' do
before do
patch :update_email, params: { user: { email: 'loulou@lou.com' } }
user.reload
end
it { expect(user.unconfirmed_email).to eq('loulou@lou.com') }
it { expect(response).to redirect_to(profil_path) }
it { expect(flash.notice).to eq(I18n.t('devise.registrations.update_needs_confirmation')) }
end
context 'when the mail is already taken' do
let!(:user2) { create(:user) }
before do
patch :update_email, params: { user: { email: user2.email } }
user.reload
end
it { expect(response).to redirect_to(profil_path) }
it { expect(flash.notice).to eq(I18n.t('devise.registrations.update_needs_confirmation')) }
end
context 'when the mail is incorrect' do
let!(:user2) { create(:user) }
before do
patch :update_email, params: { user: { email: 'incorrect' } }
user.reload
end
it { expect(response).to redirect_to(profil_path) }
it { expect(flash.alert).to eq(['Email invalide']) }
end
end
2018-08-24 14:19:44 +02:00
end