mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-02 20:18:08 +00:00
- Reorganizing installation config settings to move more configurations into UI from environment variables - Changes to installation config to support premium plans in the enterprise edition - Fixes the broken premium indicator in account/show and accounts/edit page
48 lines
1.6 KiB
Ruby
48 lines
1.6 KiB
Ruby
require 'rails_helper'
|
|
|
|
RSpec.describe 'Super Admin Application Config API', type: :request do
|
|
let(:super_admin) { create(:super_admin) }
|
|
|
|
describe 'GET /super_admin/app_config' do
|
|
context 'when it is an unauthenticated super admin' do
|
|
it 'returns unauthorized' do
|
|
get '/super_admin/app_config'
|
|
expect(response).to have_http_status(:redirect)
|
|
end
|
|
end
|
|
|
|
context 'when it is an authenticated super admin' do
|
|
let!(:config) { create(:installation_config, { name: 'FB_APP_ID', value: 'TESTVALUE' }) }
|
|
|
|
it 'shows the app_config page' do
|
|
sign_in(super_admin, scope: :super_admin)
|
|
get '/super_admin/app_config?config=facebook'
|
|
expect(response).to have_http_status(:success)
|
|
expect(response.body).to include(config.value)
|
|
end
|
|
end
|
|
end
|
|
|
|
describe 'POST /super_admin/app_config' do
|
|
context 'when it is an unauthenticated super admin' do
|
|
it 'returns unauthorized' do
|
|
post '/super_admin/app_config', params: { app_config: { TESTKEY: 'TESTVALUE' } }
|
|
expect(response).to have_http_status(:redirect)
|
|
end
|
|
end
|
|
|
|
context 'when it is an aunthenticated super admin' do
|
|
it 'shows the app_config page' do
|
|
sign_in(super_admin, scope: :super_admin)
|
|
post '/super_admin/app_config?config=facebook', params: { app_config: { FB_APP_ID: 'FB_APP_ID' } }
|
|
|
|
expect(response).to have_http_status(:found)
|
|
expect(response).to redirect_to(super_admin_settings_path)
|
|
|
|
config = GlobalConfig.get('FB_APP_ID')
|
|
expect(config['FB_APP_ID']).to eq('FB_APP_ID')
|
|
end
|
|
end
|
|
end
|
|
end
|