Files
assistant-storefront/spec/services/telegram/send_attachments_service_spec.rb
Liang XJ 092fb2e083
Some checks failed
Lock Threads / action (push) Has been cancelled
Mark stale issues and pull requests / stale (push) Has been cancelled
Publish Chatwoot EE docker images / build (linux/amd64, ubuntu-latest) (push) Has been cancelled
Publish Chatwoot EE docker images / build (linux/arm64, ubuntu-22.04-arm) (push) Has been cancelled
Publish Chatwoot EE docker images / merge (push) Has been cancelled
Publish Chatwoot CE docker images / build (linux/amd64, ubuntu-latest) (push) Has been cancelled
Publish Chatwoot CE docker images / build (linux/arm64, ubuntu-22.04-arm) (push) Has been cancelled
Publish Chatwoot CE docker images / merge (push) Has been cancelled
Run Chatwoot CE spec / lint-backend (push) Has been cancelled
Run Chatwoot CE spec / lint-frontend (push) Has been cancelled
Run Chatwoot CE spec / frontend-tests (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (0, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (1, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (10, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (11, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (12, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (13, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (14, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (15, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (2, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (3, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (4, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (5, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (6, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (7, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (8, 16) (push) Has been cancelled
Run Chatwoot CE spec / backend-tests (9, 16) (push) Has been cancelled
Run Linux nightly installer / nightly (push) Has been cancelled
Initial commit: Add logistics and order_detail message types
- Add Logistics component with progress tracking
- Add OrderDetail component for order information
- Support data-driven steps and actions
- Add blue color scale to widget SCSS
- Fix node overflow and progress bar rendering issues
- Add English translations for dashboard components

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-01-26 11:16:56 +08:00

131 lines
5.4 KiB
Ruby

require 'rails_helper'
RSpec.describe Telegram::SendAttachmentsService do
describe '#perform' do
let(:channel) { create(:channel_telegram) }
let(:message) { build(:message, conversation: create(:conversation, inbox: channel.inbox)) }
let(:service) { described_class.new(message: message) }
let(:telegram_api_url) { channel.telegram_api_url }
before do
allow(channel).to receive(:chat_id).and_return('chat123')
stub_request(:post, "#{telegram_api_url}/sendMediaGroup")
.to_return(status: 200, body: { ok: true, result: [{ message_id: 'media' }] }.to_json, headers: { 'Content-Type' => 'application/json' })
stub_request(:post, "#{telegram_api_url}/sendDocument")
.to_return(status: 200, body: { ok: true, result: { message_id: 'document' } }.to_json, headers: { 'Content-Type' => 'application/json' })
end
it 'sends all types of attachments in seperate groups and returns the last successful message ID from the batch' do
attach_files(message)
result = service.perform
expect(result).to eq('document')
# videos and images are sent in a media group
# audio is sent in another group
expect(a_request(:post, "#{telegram_api_url}/sendMediaGroup")).to have_been_made.times(2)
expect(a_request(:post, "#{telegram_api_url}/sendDocument")).to have_been_made.once
end
context 'when all attachments are documents' do
before do
2.times { attach_file_to_message(message, 'file', 'sample.pdf', 'application/pdf') }
message.save!
end
it 'sends documents individually and returns the message ID of the first successful document' do
result = service.perform
expect(result).to eq('document')
expect(a_request(:post, "#{telegram_api_url}/sendDocument")).to have_been_made.times(2)
end
end
context 'when this is business chat' do
before { allow(channel).to receive(:business_connection_id).and_return('eooW3KF5WB5HxTD7T826') }
it 'sends all types of attachments in seperate groups and returns the last successful message ID from the batch' do
attach_files(message)
service.perform
expect(a_request(:post, "#{telegram_api_url}/sendMediaGroup")
.with { |req| req.body =~ /business_connection_id.+eooW3KF5WB5HxTD7T826/m })
.to have_been_made.times(2)
expect(a_request(:post, "#{telegram_api_url}/sendDocument")
.with { |req| req.body =~ /business_connection_id.+eooW3KF5WB5HxTD7T826/m })
.to have_been_made.once
end
end
context 'when all attachments are photo and video' do
before do
2.times { attach_file_to_message(message, 'image', 'sample.png', 'image/png') }
attach_file_to_message(message, 'video', 'sample.mp4', 'video/mp4')
message.save!
end
it 'sends in a single media group and returns the message ID' do
result = service.perform
expect(result).to eq('media')
expect(a_request(:post, "#{telegram_api_url}/sendMediaGroup")).to have_been_made.once
end
end
context 'when all attachments are audio' do
before do
2.times { attach_file_to_message(message, 'audio', 'sample.mp3', 'audio/mpeg') }
message.save!
end
it 'sends audio messages in single media group and returns the message ID' do
result = service.perform
expect(result).to eq('media')
expect(a_request(:post, "#{telegram_api_url}/sendMediaGroup")).to have_been_made.once
end
end
context 'when all attachments are photos, videos, and audio' do
before do
attach_file_to_message(message, 'image', 'sample.png', 'image/png')
attach_file_to_message(message, 'video', 'sample.mp4', 'video/mp4')
attach_file_to_message(message, 'audio', 'sample.mp3', 'audio/mpeg')
message.save!
end
it 'sends photos and videos in a media group and audio in a separate group' do
result = service.perform
expect(result).to eq('media')
expect(a_request(:post, "#{telegram_api_url}/sendMediaGroup")).to have_been_made.times(2)
end
end
context 'when an attachment fails to send' do
before do
stub_request(:post, "#{telegram_api_url}/sendDocument")
.to_return(status: 500, body: { ok: false,
description: 'Internal server error' }.to_json, headers: { 'Content-Type' => 'application/json' })
end
it 'logs an error, stops processing, and returns nil' do
attach_files(message)
expect(Rails.logger).to receive(:error).at_least(:once)
result = service.perform
expect(result).to be_nil
expect(a_request(:post, "#{telegram_api_url}/sendDocument")).to have_been_made.once
end
end
def attach_files(message)
attach_file_to_message(message, 'file', 'sample.pdf', 'application/pdf')
attach_file_to_message(message, 'image', 'sample.png', 'image/png')
attach_file_to_message(message, 'video', 'sample.mp4', 'video/mp4')
attach_file_to_message(message, 'audio', 'sample.mp3', 'audio/mpeg')
message.save!
end
def attach_file_to_message(message, type, filename, content_type)
attachment = message.attachments.new(account_id: message.account_id, file_type: type)
attachment.file.attach(io: Rails.root.join("spec/assets/#{filename}").open, filename: filename, content_type: content_type)
end
end
end