2016-11-17 12:29:11 +01:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
RSpec.describe Auth::RegistrationsController, type: :controller do
|
|
|
|
render_views
|
|
|
|
|
|
|
|
describe 'GET #new' do
|
|
|
|
before do
|
2017-04-09 20:23:14 +02:00
|
|
|
Setting.open_registrations = true
|
2016-11-17 12:29:11 +01:00
|
|
|
request.env["devise.mapping"] = Devise.mappings[:user]
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns http success' do
|
|
|
|
get :new
|
|
|
|
expect(response).to have_http_status(:success)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'POST #create' do
|
2017-04-17 10:29:08 +02:00
|
|
|
let(:accept_language) { Rails.application.config.i18n.available_locales.sample.to_s }
|
|
|
|
|
2016-11-17 12:29:11 +01:00
|
|
|
before do
|
2017-04-09 20:23:14 +02:00
|
|
|
Setting.open_registrations = true
|
2016-11-17 12:29:11 +01:00
|
|
|
request.env["devise.mapping"] = Devise.mappings[:user]
|
2017-04-17 10:29:08 +02:00
|
|
|
request.headers["Accept-Language"] = accept_language
|
2016-11-17 12:29:11 +01:00
|
|
|
post :create, params: { user: { account_attributes: { username: 'test' }, email: 'test@example.com', password: '12345678', password_confirmation: '12345678' } }
|
|
|
|
end
|
|
|
|
|
2017-01-04 15:31:25 +01:00
|
|
|
it 'redirects to login page' do
|
|
|
|
expect(response).to redirect_to new_user_session_path
|
2016-11-17 12:29:11 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'creates user' do
|
2017-04-17 10:29:08 +02:00
|
|
|
user = User.find_by(email: 'test@example.com')
|
|
|
|
expect(user).to_not be_nil
|
|
|
|
expect(user.locale).to eq(accept_language)
|
2016-11-17 12:29:11 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|