mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-10-31 02:57:57 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			200 lines
		
	
	
		
			6.7 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			200 lines
		
	
	
		
			6.7 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| require 'rails_helper'
 | |
| 
 | |
| RSpec.describe 'Inboxes API', type: :request do
 | |
|   let(:account) { create(:account) }
 | |
| 
 | |
|   describe 'GET /api/v1/accounts/{account.id}/inboxes' do
 | |
|     context 'when it is an unauthenticated user' do
 | |
|       it 'returns unauthorized' do
 | |
|         get "/api/v1/accounts/#{account.id}/inboxes"
 | |
| 
 | |
|         expect(response).to have_http_status(:unauthorized)
 | |
|       end
 | |
|     end
 | |
| 
 | |
|     context 'when it is an authenticated user' do
 | |
|       let(:agent) { create(:user, account: account, role: :agent) }
 | |
|       let(:admin) { create(:user, account: account, role: :administrator) }
 | |
| 
 | |
|       before do
 | |
|         create(:inbox, account: account)
 | |
|         second_inbox = create(:inbox, account: account)
 | |
|         create(:inbox_member, user: agent, inbox: second_inbox)
 | |
|       end
 | |
| 
 | |
|       it 'returns all inboxes of current_account as administrator' do
 | |
|         get "/api/v1/accounts/#{account.id}/inboxes",
 | |
|             headers: admin.create_new_auth_token,
 | |
|             as: :json
 | |
| 
 | |
|         expect(response).to have_http_status(:success)
 | |
|         expect(JSON.parse(response.body, symbolize_names: true)[:payload].size).to eq(2)
 | |
|       end
 | |
| 
 | |
|       it 'returns only assigned inboxes of current_account as agent' do
 | |
|         get "/api/v1/accounts/#{account.id}/inboxes",
 | |
|             headers: agent.create_new_auth_token,
 | |
|             as: :json
 | |
| 
 | |
|         expect(response).to have_http_status(:success)
 | |
|         expect(JSON.parse(response.body, symbolize_names: true)[:payload].size).to eq(1)
 | |
|       end
 | |
|     end
 | |
|   end
 | |
| 
 | |
|   describe 'DELETE /api/v1/accounts/{account.id}/inboxes/:id' do
 | |
|     let(:inbox) { create(:inbox, account: account) }
 | |
| 
 | |
|     context 'when it is an unauthenticated user' do
 | |
|       it 'returns unauthorized' do
 | |
|         delete "/api/v1/accounts/#{account.id}/inboxes/#{inbox.id}"
 | |
| 
 | |
|         expect(response).to have_http_status(:unauthorized)
 | |
|       end
 | |
|     end
 | |
| 
 | |
|     context 'when it is an authenticated user' do
 | |
|       let(:admin) { create(:user, account: account, role: :administrator) }
 | |
| 
 | |
|       it 'deletes inbox' do
 | |
|         delete "/api/v1/accounts/#{account.id}/inboxes/#{inbox.id}",
 | |
|                headers: admin.create_new_auth_token,
 | |
|                as: :json
 | |
| 
 | |
|         expect(response).to have_http_status(:success)
 | |
|         expect { inbox.reload }.to raise_exception(ActiveRecord::RecordNotFound)
 | |
|       end
 | |
| 
 | |
|       it 'is unable to delete inbox of another account' do
 | |
|         other_account = create(:account)
 | |
|         other_inbox = create(:inbox, account: other_account)
 | |
| 
 | |
|         delete "/api/v1/accounts/#{account.id}/inboxes/#{other_inbox.id}",
 | |
|                headers: admin.create_new_auth_token,
 | |
|                as: :json
 | |
| 
 | |
|         expect(response).to have_http_status(:not_found)
 | |
|       end
 | |
| 
 | |
|       it 'is unable to delete inbox as agent' do
 | |
|         agent = create(:user, account: account, role: :agent)
 | |
| 
 | |
|         delete "/api/v1/accounts/#{account.id}/inboxes/#{inbox.id}",
 | |
|                headers: agent.create_new_auth_token,
 | |
|                as: :json
 | |
| 
 | |
|         expect(response).to have_http_status(:unauthorized)
 | |
|       end
 | |
|     end
 | |
|   end
 | |
| 
 | |
|   describe 'PATCH /api/v1/accounts/{account.id}/inboxes/:id' do
 | |
|     let(:inbox) { create(:inbox, account: account) }
 | |
| 
 | |
|     context 'when it is an unauthenticated user' do
 | |
|       it 'returns unauthorized' do
 | |
|         patch "/api/v1/accounts/#{account.id}/inboxes/#{inbox.id}"
 | |
| 
 | |
|         expect(response).to have_http_status(:unauthorized)
 | |
|       end
 | |
|     end
 | |
| 
 | |
|     context 'when it is an authenticated user' do
 | |
|       let(:admin) { create(:user, account: account, role: :administrator) }
 | |
|       let(:valid_params) { { inbox: { enable_auto_assignment: false } } }
 | |
| 
 | |
|       it 'updates inbox' 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(inbox.reload.enable_auto_assignment).to be_falsey
 | |
|       end
 | |
| 
 | |
|       it 'updates avatar' do
 | |
|         # no avatar before upload
 | |
|         expect(inbox.avatar.attached?).to eq(false)
 | |
|         file = fixture_file_upload(Rails.root.join('spec/assets/avatar.png'), 'image/png')
 | |
|         patch "/api/v1/accounts/#{account.id}/inboxes/#{inbox.id}",
 | |
|               params: { inbox: { avatar: file } },
 | |
|               headers: admin.create_new_auth_token
 | |
| 
 | |
|         expect(response).to have_http_status(:success)
 | |
|         inbox.reload
 | |
|         expect(inbox.avatar.attached?).to eq(true)
 | |
|       end
 | |
| 
 | |
|       it 'will not update inbox for agent' do
 | |
|         agent = create(:user, account: account, role: :agent)
 | |
| 
 | |
|         patch "/api/v1/accounts/#{account.id}/inboxes/#{inbox.id}",
 | |
|               headers: agent.create_new_auth_token,
 | |
|               params: valid_params,
 | |
|               as: :json
 | |
| 
 | |
|         expect(response).to have_http_status(:unauthorized)
 | |
|       end
 | |
|     end
 | |
|   end
 | |
| 
 | |
|   describe 'POST /api/v1/accounts/{account.id}/inboxes/:id/set_agent_bot' do
 | |
|     let(:inbox) { create(:inbox, account: account) }
 | |
|     let(:agent_bot) { create(:agent_bot) }
 | |
| 
 | |
|     context 'when it is an unauthenticated user' do
 | |
|       it 'returns unauthorized' do
 | |
|         post "/api/v1/accounts/#{account.id}/inboxes/#{inbox.id}/set_agent_bot"
 | |
| 
 | |
|         expect(response).to have_http_status(:unauthorized)
 | |
|       end
 | |
|     end
 | |
| 
 | |
|     context 'when it is an authenticated user' do
 | |
|       let(:admin) { create(:user, account: account, role: :administrator) }
 | |
|       let(:valid_params) { { agent_bot: agent_bot.id } }
 | |
| 
 | |
|       it 'sets the agent bot' do
 | |
|         post "/api/v1/accounts/#{account.id}/inboxes/#{inbox.id}/set_agent_bot",
 | |
|              headers: admin.create_new_auth_token,
 | |
|              params: valid_params,
 | |
|              as: :json
 | |
| 
 | |
|         expect(response).to have_http_status(:success)
 | |
|         expect(inbox.reload.agent_bot.id).to eq agent_bot.id
 | |
|       end
 | |
| 
 | |
|       it 'throw error when invalid agent bot id' do
 | |
|         post "/api/v1/accounts/#{account.id}/inboxes/#{inbox.id}/set_agent_bot",
 | |
|              headers: admin.create_new_auth_token,
 | |
|              params: { agent_bot: 0 },
 | |
|              as: :json
 | |
| 
 | |
|         expect(response).to have_http_status(:not_found)
 | |
|       end
 | |
| 
 | |
|       it 'disconnects the agent bot' do
 | |
|         post "/api/v1/accounts/#{account.id}/inboxes/#{inbox.id}/set_agent_bot",
 | |
|              headers: admin.create_new_auth_token,
 | |
|              params: { agent_bot: nil },
 | |
|              as: :json
 | |
| 
 | |
|         expect(response).to have_http_status(:success)
 | |
|         expect(inbox.reload.agent_bot).to be_falsey
 | |
|       end
 | |
| 
 | |
|       it 'will not update agent bot when its an agent' do
 | |
|         agent = create(:user, account: account, role: :agent)
 | |
| 
 | |
|         post "/api/v1/accounts/#{account.id}/inboxes/#{inbox.id}/set_agent_bot",
 | |
|              headers: agent.create_new_auth_token,
 | |
|              params: valid_params,
 | |
|              as: :json
 | |
| 
 | |
|         expect(response).to have_http_status(:unauthorized)
 | |
|       end
 | |
|     end
 | |
|   end
 | |
| end
 | 
