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
- 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>
69 lines
2.6 KiB
Ruby
69 lines
2.6 KiB
Ruby
require 'rails_helper'
|
|
|
|
RSpec.describe MessageContentPresenter do
|
|
let(:conversation) { create(:conversation) }
|
|
let(:message) { create(:message, conversation: conversation, content_type: content_type, content: content) }
|
|
let(:presenter) { described_class.new(message) }
|
|
|
|
describe '#outgoing_content' do
|
|
context 'when message is not input_csat' do
|
|
let(:content_type) { 'text' }
|
|
let(:content) { 'Regular message' }
|
|
|
|
it 'returns content transformed for channel (HTML for WebWidget)' do
|
|
expect(presenter.outgoing_content).to eq("<p>Regular message</p>\n")
|
|
end
|
|
end
|
|
|
|
context 'when message is input_csat and inbox is web widget' do
|
|
let(:content_type) { 'input_csat' }
|
|
let(:content) { 'Rate your experience' }
|
|
|
|
before do
|
|
allow(message.inbox).to receive(:web_widget?).and_return(true)
|
|
end
|
|
|
|
it 'returns content without survey URL (HTML for WebWidget)' do
|
|
expect(presenter.outgoing_content).to eq("<p>Rate your experience</p>\n")
|
|
end
|
|
end
|
|
|
|
context 'when message is input_csat and inbox is not web widget' do
|
|
let(:content_type) { 'input_csat' }
|
|
let(:content) { 'Rate your experience' }
|
|
|
|
before do
|
|
allow(message.inbox).to receive(:web_widget?).and_return(false)
|
|
end
|
|
|
|
it 'returns I18n default message when no CSAT config and dynamically generates survey URL (HTML format)' do
|
|
with_modified_env 'FRONTEND_URL' => 'https://app.chatwoot.com' do
|
|
expected_url = "https://app.chatwoot.com/survey/responses/#{conversation.uuid}"
|
|
expect(presenter.outgoing_content).to include(expected_url)
|
|
expect(presenter.outgoing_content).to include('<p>')
|
|
end
|
|
end
|
|
|
|
it 'returns CSAT config message when config exists and dynamically generates survey URL (HTML format)' do
|
|
with_modified_env 'FRONTEND_URL' => 'https://app.chatwoot.com' do
|
|
allow(message.inbox).to receive(:csat_config).and_return({ 'message' => 'Custom CSAT message' })
|
|
expected_url = "https://app.chatwoot.com/survey/responses/#{conversation.uuid}"
|
|
expected_content = "<p>Custom CSAT message #{expected_url}</p>\n"
|
|
expect(presenter.outgoing_content).to eq(expected_content)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
describe 'delegation' do
|
|
let(:content_type) { 'text' }
|
|
let(:content) { 'Test message' }
|
|
|
|
it 'delegates model methods to the wrapped message' do
|
|
expect(presenter.content).to eq('Test message')
|
|
expect(presenter.content_type).to eq('text')
|
|
expect(presenter.conversation).to eq(conversation)
|
|
end
|
|
end
|
|
end
|