25 lines
651 B
Ruby
25 lines
651 B
Ruby
# frozen_string_literal: true
|
|
|
|
RSpec.describe "Public Controller", type: :request do
|
|
before { SiteSetting.chat_integration_enabled = true }
|
|
|
|
describe "loading a transcript" do
|
|
it "should be able to load a transcript" do
|
|
key = DiscourseChatIntegration::Helper.save_transcript("Some content here")
|
|
|
|
get "/chat-transcript/#{key}.json"
|
|
|
|
expect(response.status).to eq(200)
|
|
|
|
expect(response.body).to eq('{"content":"Some content here"}')
|
|
end
|
|
|
|
it "should 404 for non-existent transcript" do
|
|
key = "abcdefghijk"
|
|
get "/chat-transcript/#{key}.json"
|
|
|
|
expect(response.status).to eq(404)
|
|
end
|
|
end
|
|
end
|