43 lines
1.4 KiB
Ruby
43 lines
1.4 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
RSpec.describe DiscourseAi::AiBot::Commands::SettingContextCommand do
|
|
let(:bot_user) { User.find(DiscourseAi::AiBot::EntryPoint::GPT3_5_TURBO_ID) }
|
|
let(:command) { described_class.new(bot_user: bot_user, args: nil) }
|
|
|
|
def has_rg?
|
|
if defined?(@has_rg)
|
|
@has_rg
|
|
else
|
|
@has_rg |= system("which rg")
|
|
end
|
|
end
|
|
|
|
describe "#execute" do
|
|
skip("rg is needed for these tests") if !has_rg?
|
|
it "returns the context for core setting" do
|
|
result = command.process(setting_name: "moderators_view_emails")
|
|
|
|
expect(result[:setting_name]).to eq("moderators_view_emails")
|
|
|
|
expect(result[:context]).to include("site_settings.yml")
|
|
expect(result[:context]).to include("moderators_view_emails")
|
|
end
|
|
|
|
skip("rg is needed for these tests") if !has_rg?
|
|
it "returns the context for plugin setting" do
|
|
result = command.process(setting_name: "ai_bot_enabled")
|
|
|
|
expect(result[:setting_name]).to eq("ai_bot_enabled")
|
|
expect(result[:context]).to include("ai_bot_enabled:")
|
|
end
|
|
|
|
context "when the setting does not exist" do
|
|
skip("rg is needed for these tests") if !has_rg?
|
|
it "returns an error message" do
|
|
result = command.process(setting_name: "this_setting_does_not_exist")
|
|
expect(result[:context]).to eq("This setting does not exist")
|
|
end
|
|
end
|
|
end
|
|
end
|