Feature: Add new notification settings for user (#569)

Added new notification settings API for user 

Co-authored-by: Sojan Jose <sojan@pepalo.com>
This commit is contained in:
Sony Mathew
2020-02-29 20:41:09 +05:30
committed by GitHub
co-authored by Sojan Jose
parent bbd9968d4b
commit 7f26b34b15
15 changed files with 418 additions and 224 deletions
@@ -0,0 +1,58 @@
require 'rails_helper'
RSpec.describe 'Notification Settings API', type: :request do
let(:account) { create(:account) }
describe 'GET /api/v1/user/notification_settings' do
context 'when it is an unauthenticated user' do
it 'returns unauthorized' do
get '/api/v1/user/notification_settings'
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 current user notification settings' do
get '/api/v1/user/notification_settings',
headers: agent.create_new_auth_token,
as: :json
expect(response).to have_http_status(:success)
json_response = JSON.parse(response.body)
expect(json_response['user_id']).to eq(agent.id)
expect(json_response['account_id']).to eq(account.id)
end
end
end
describe 'PUT /api/v1/user/notification_settings' do
context 'when it is an unauthenticated user' do
it 'returns unauthorized' do
put '/api/v1/user/notification_settings'
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 'updates the email related notification flags' do
put '/api/v1/user/notification_settings',
params: { notification_settings: { selected_email_flags: ['conversation_assignment'] } },
headers: agent.create_new_auth_token,
as: :json
expect(response).to have_http_status(:success)
json_response = JSON.parse(response.body)
agent.reload
expect(json_response['user_id']).to eq(agent.id)
expect(json_response['account_id']).to eq(account.id)
expect(json_response['selected_email_flags']).to eq(['conversation_assignment'])
end
end
end
end
+1
View File
@@ -15,4 +15,5 @@ RSpec.describe Account do
it { is_expected.to have_many(:web_widgets).class_name('::Channel::WebWidget').dependent(:destroy) }
it { is_expected.to have_one(:subscription).dependent(:destroy) }
it { is_expected.to have_many(:webhooks).dependent(:destroy) }
it { is_expected.to have_many(:notification_settings).dependent(:destroy) }
end
+10
View File
@@ -0,0 +1,10 @@
# frozen_string_literal: true
require 'rails_helper'
RSpec.describe NotificationSetting do
context 'with associations' do
it { is_expected.to belong_to(:account) }
it { is_expected.to belong_to(:user) }
end
end
+10
View File
@@ -16,6 +16,7 @@ RSpec.describe User do
it { is_expected.to belong_to(:inviter).class_name('User').required(false) }
it { is_expected.to have_many(:assigned_conversations).class_name('Conversation').dependent(:nullify) }
it { is_expected.to have_many(:inbox_members).dependent(:destroy) }
it { is_expected.to have_many(:notification_settings).dependent(:destroy) }
it { is_expected.to have_many(:assigned_inboxes).through(:inbox_members) }
it { is_expected.to have_many(:messages) }
end
@@ -26,4 +27,13 @@ RSpec.describe User do
it { expect(user.pubsub_token).not_to eq(nil) }
it { expect(user.saved_changes.keys).not_to eq('pubsub_token') }
end
describe 'notification_settings' do
it 'gets created with the right default settings' do
expect(user.notification_settings).not_to eq(nil)
expect(user.notification_settings.first.conversation_creation?).to eq(false)
expect(user.notification_settings.first.conversation_assignment?).to eq(true)
end
end
end