Feature: Availability Statuses (#874)
Co-authored-by: Pranav Raj S <pranav@thoughtwoot.com>
This commit is contained in:
@@ -1,15 +1,15 @@
|
||||
require 'rails_helper'
|
||||
|
||||
RSpec.describe RoomChannel, type: :channel do
|
||||
let!(:user) { create(:user) }
|
||||
let!(:contact) { create(:contact) }
|
||||
|
||||
before do
|
||||
stub_connection
|
||||
end
|
||||
|
||||
it 'subscribes to a stream when pubsub_token is provided' do
|
||||
subscribe(pubsub_token: user.uid)
|
||||
subscribe(pubsub_token: contact.pubsub_token)
|
||||
expect(subscription).to be_confirmed
|
||||
expect(subscription).to have_stream_for(user.uid)
|
||||
expect(subscription).to have_stream_for(contact.pubsub_token)
|
||||
end
|
||||
end
|
||||
|
||||
@@ -77,6 +77,16 @@ RSpec.describe 'Profile API', type: :request do
|
||||
agent.reload
|
||||
expect(agent.avatar.attached?).to eq(true)
|
||||
end
|
||||
|
||||
it 'updates the availability status' do
|
||||
put '/api/v1/profile',
|
||||
params: { profile: { availability: 'offline' } },
|
||||
headers: agent.create_new_auth_token,
|
||||
as: :json
|
||||
|
||||
expect(response).to have_http_status(:success)
|
||||
expect(::OnlineStatusTracker.get_status(account.id, agent.id)).to eq('offline')
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user