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

27 lines
669 B
Ruby

# frozen_string_literal: true
require "rails_helper"
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-existant transcript" do
key = "abcdefghijk"
get "/chat-transcript/#{key}.json"
expect(response.status).to eq(404)
end
end
end