diff --git a/spec/controllers/api/v1/conversations/messages_controller_spec.rb b/spec/controllers/api/v1/conversations/messages_controller_spec.rb new file mode 100644 index 000000000..7febd1058 --- /dev/null +++ b/spec/controllers/api/v1/conversations/messages_controller_spec.rb @@ -0,0 +1,34 @@ +require 'rails_helper' + +RSpec.describe 'Conversation Messages API', type: :request do + let(:account) { create(:account) } + + describe 'POST /api/v1/conversations//messages' do + let(:conversation) { create(:conversation, account: account) } + + context 'when it is an unauthenticated user' do + it 'returns unauthorized' do + post api_v1_conversation_messages_url(conversation.display_id) + + 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) } + + it 'creates a new outgoing message' do + params = { message: 'test-message', private: true } + + post api_v1_conversation_messages_url(conversation.display_id), + params: params, + headers: agent.create_new_auth_token, + as: :json + + expect(response).to have_http_status(:success) + expect(conversation.messages.count).to eq(1) + expect(conversation.messages.first.content).to eq(params[:message]) + end + end + end +end