45 lines
990 B
Ruby
45 lines
990 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
RSpec.describe 'GET /staff/telegram_chats' do
|
|
before do
|
|
sign_in current_account.user if current_account&.user
|
|
|
|
create_list :telegram_chat, 5
|
|
|
|
get '/staff/telegram_chats'
|
|
end
|
|
|
|
context 'when no account is authenticated' do
|
|
let(:current_account) { nil }
|
|
|
|
specify do
|
|
expect(response).to have_http_status :unauthorized
|
|
end
|
|
end
|
|
|
|
context 'when guest account is authenticated' do
|
|
let(:current_account) { create :guest_account }
|
|
|
|
specify do
|
|
expect(response).to have_http_status :unauthorized
|
|
end
|
|
end
|
|
|
|
context 'when usual account is authenticated' do
|
|
let(:current_account) { create :usual_account }
|
|
|
|
specify do
|
|
expect(response).to have_http_status :unauthorized
|
|
end
|
|
end
|
|
|
|
context 'when superuser account is authenticated' do
|
|
let(:current_account) { create :superuser_account }
|
|
|
|
specify do
|
|
expect(response).to have_http_status :ok
|
|
end
|
|
end
|
|
end
|