discourse-chat-integration/spec/requests/public_controller_spec.rb

33 lines
682 B
Ruby
Raw Normal View History

# frozen_string_literal: true
require 'rails_helper'
describe 'Public Controller', type: :request do
2017-08-01 15:53:39 -04:00
before do
SiteSetting.chat_integration_enabled = true
end
describe 'loading a transcript' do
2017-08-01 15:53:39 -04:00
it 'should be able to load a transcript' do
key = DiscourseChatIntegration::Helper.save_transcript("Some content here")
get "/chat-transcript/#{key}.json"
2018-06-07 20:57:43 -04:00
expect(response.status).to eq(200)
expect(response.body).to eq('{"content":"Some content here"}')
end
it 'should 404 for non-existant transcript' do
key = 'abcdefghijk'
get "/chat-transcript/#{key}.json"
2018-06-07 20:57:43 -04:00
expect(response.status).to eq(404)
end
2017-08-01 15:53:39 -04:00
end
end