47 lines
1.8 KiB
Ruby
47 lines
1.8 KiB
Ruby
|
require 'rails_helper'
|
||
|
|
||
|
RSpec.describe 'Enterprise Inboxes API', type: :request do
|
||
|
let(:account) { create(:account) }
|
||
|
let(:admin) { create(:user, account: account, role: :administrator) }
|
||
|
|
||
|
describe 'POST /api/v1/accounts/{account.id}/inboxes' do
|
||
|
let(:inbox) { create(:inbox, account: account) }
|
||
|
|
||
|
context 'when it is an authenticated user' do
|
||
|
let(:admin) { create(:user, account: account, role: :administrator) }
|
||
|
let(:valid_params) do
|
||
|
{ name: 'test', auto_assignment_config: { max_assignment_limit: 10 }, channel: { type: 'web_widget', website_url: 'test.com' } }
|
||
|
end
|
||
|
|
||
|
it 'creates a webwidget inbox with auto assignment config' do
|
||
|
post "/api/v1/accounts/#{account.id}/inboxes",
|
||
|
headers: admin.create_new_auth_token,
|
||
|
params: valid_params,
|
||
|
as: :json
|
||
|
|
||
|
expect(response).to have_http_status(:success)
|
||
|
expect(JSON.parse(response.body)['auto_assignment_config']['max_assignment_limit']).to eq 10
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
|
||
|
describe 'PATCH /api/v1/accounts/{account.id}/inboxes/:id' do
|
||
|
let(:inbox) { create(:inbox, account: account, auto_assignment_config: { max_assignment_limit: 5 }) }
|
||
|
|
||
|
context 'when it is an authenticated user' do
|
||
|
let(:admin) { create(:user, account: account, role: :administrator) }
|
||
|
let(:valid_params) { { name: 'new test inbox', auto_assignment_config: { max_assignment_limit: 10 } } }
|
||
|
|
||
|
it 'updates inbox with auto assignment config' do
|
||
|
patch "/api/v1/accounts/#{account.id}/inboxes/#{inbox.id}",
|
||
|
headers: admin.create_new_auth_token,
|
||
|
params: valid_params,
|
||
|
as: :json
|
||
|
|
||
|
expect(response).to have_http_status(:success)
|
||
|
expect(JSON.parse(response.body)['auto_assignment_config']['max_assignment_limit']).to eq 10
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|