# Pull Request Template ## Description Fixes: https://linear.app/chatwoot/issue/CW-7167/label-suggestions-bad-ux ## Type of change Please delete options that are not relevant. - [x] Bug fix (non-breaking change which fixes an issue) ## How Has This Been Tested? Please describe the tests that you ran to verify your changes. Provide instructions so we can reproduce. Please also list any relevant details for your test configuration. ## Checklist: - [ ] My code follows the style guidelines of this project - [ ] I have performed a self-review of my code - [ ] I have commented on my code, particularly in hard-to-understand areas - [ ] I have made corresponding changes to the documentation - [ ] My changes generate no new warnings - [ ] I have added tests that prove my fix is effective or that my feature works - [ ] New and existing unit tests pass locally with my changes - [ ] Any dependent changes have been merged and published in downstream modules
48 lines
1.8 KiB
Ruby
48 lines
1.8 KiB
Ruby
require 'rails_helper'
|
|
|
|
RSpec.describe Captain::CsatUtilityAnalysisService do
|
|
let(:account) { create(:account) }
|
|
let(:service) { described_class.new(account: account, message: 'Test message', language: 'en', baseline: {}) }
|
|
|
|
before do
|
|
create(:installation_config, name: 'CAPTAIN_OPEN_AI_API_KEY', value: 'test-key')
|
|
allow(Integrations::Openai::KeyValidator).to receive(:valid?).and_return(true)
|
|
end
|
|
|
|
describe '#perform' do
|
|
before do
|
|
allow(account).to receive(:feature_enabled?).and_call_original
|
|
allow(account).to receive(:feature_enabled?).with('captain_tasks').and_return(true)
|
|
allow(service).to receive(:make_api_call).and_return({
|
|
message: '{"classification":"LIKELY_UTILITY","optimized_message":"Utility-safe message"}'
|
|
})
|
|
end
|
|
|
|
it 'returns parsed payload and preserves raw message for usage metering' do
|
|
result = service.perform
|
|
|
|
expect(result[:classification]).to eq('LIKELY_UTILITY')
|
|
expect(result[:optimized_message]).to eq('Utility-safe message')
|
|
expect(result[:message]).to eq('{"classification":"LIKELY_UTILITY","optimized_message":"Utility-safe message"}')
|
|
end
|
|
end
|
|
|
|
describe '#api_key' do
|
|
context 'when account has an OpenAI hook key' do
|
|
before do
|
|
create(:integrations_hook, :openai, account: account, settings: { 'api_key' => 'customer-own-key' })
|
|
end
|
|
|
|
it 'uses the account hook key' do
|
|
expect(service.send(:api_key)).to eq('customer-own-key')
|
|
end
|
|
end
|
|
|
|
context 'when account does not have an OpenAI hook key' do
|
|
it 'uses the system key' do
|
|
expect(service.send(:api_key)).to eq('test-key')
|
|
end
|
|
end
|
|
end
|
|
end
|