Chore: labels to Conversations [#245]

This commit is contained in:
Sojan 2019-12-24 15:31:10 +05:30 committed by Pranav Raj S
parent 7d85f2e046
commit 97ab82892d
4 changed files with 111 additions and 2 deletions

View file

@ -2,8 +2,8 @@ class Api::V1::Conversations::LabelsController < Api::BaseController
before_action :set_conversation, only: [:create, :index]
def create
@conversation.update_labels(params[:labels].values) # .values is a hack
head :ok
@conversation.update_labels(params[:labels])
@labels = @conversation.label_list
end
def index # all labels of the current conversation

View file

@ -0,0 +1,8 @@
json.data do
json.meta do
end
json.payload do
json.labels @labels
end
end

View file

@ -0,0 +1,67 @@
require 'rails_helper'
RSpec.describe 'Conversation Label API', type: :request do
let(:account) { create(:account) }
describe 'GET /api/v1/conversations/<id>/labels' do
let(:conversation) { create(:conversation, account: account) }
before do
conversation.update_labels('label1, label2')
end
context 'when it is an unauthenticated user' do
it 'returns unauthorized' do
get api_v1_conversation_labels_url(conversation)
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 'returns all the labels for the conversation' do
get api_v1_conversation_labels_url(conversation.display_id),
headers: agent.create_new_auth_token,
as: :json
expect(response).to have_http_status(:success)
expect(response.body).to include('label1')
expect(response.body).to include('label2')
end
end
end
describe 'POST /api/v1/conversations/<id>/labels' do
let(:conversation) { create(:conversation, account: account) }
before do
conversation.update_labels('label1, label2')
end
context 'when it is an unauthenticated user' do
it 'returns unauthorized' do
post api_v1_conversation_labels_url(conversation.display_id),
params: { labels: 'label3,label4' },
as: :json
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 labels for the conversation' do
post api_v1_conversation_labels_url(conversation.display_id),
params: { labels: 'label3,label4' },
headers: agent.create_new_auth_token,
as: :json
expect(response).to have_http_status(:success)
expect(response.body).to include('label3')
expect(response.body).to include('label4')
end
end
end
end

View file

@ -0,0 +1,34 @@
require 'rails_helper'
RSpec.describe 'Label API', type: :request do
let(:account) { create(:account) }
let(:conversation) { create(:conversation, account: account) }
before do
conversation.update_labels('label1, label2')
end
describe 'GET /api/v1/labels' do
context 'when it is an unauthenticated user' do
it 'returns unauthorized' do
get '/api/v1/labels'
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 'returns all the labels in account' do
get '/api/v1/labels',
headers: agent.create_new_auth_token,
as: :json
expect(response).to have_http_status(:success)
expect(response.body).to include('label1')
expect(response.body).to include('label2')
end
end
end
end