2023-05-20 03:45:54 -04:00
|
|
|
#frozen_string_literal: true
|
|
|
|
|
2024-01-04 08:44:07 -05:00
|
|
|
RSpec.describe DiscourseAi::AiBot::Tools::Google do
|
2023-10-23 02:00:58 -04:00
|
|
|
let(:bot_user) { User.find(DiscourseAi::AiBot::EntryPoint::GPT3_5_TURBO_ID) }
|
2024-01-29 14:04:25 -05:00
|
|
|
let(:llm) { DiscourseAi::Completions::Llm.proxy("open_ai:gpt-3.5-turbo") }
|
2024-01-04 08:44:07 -05:00
|
|
|
let(:progress_blk) { Proc.new {} }
|
2024-05-07 07:55:46 -04:00
|
|
|
let(:search) { described_class.new({ query: "some search term" }, bot_user: bot_user, llm: llm) }
|
2023-10-23 02:00:58 -04:00
|
|
|
|
|
|
|
before { SiteSetting.ai_bot_enabled = true }
|
2023-05-20 03:45:54 -04:00
|
|
|
|
|
|
|
describe "#process" do
|
2023-08-14 02:30:12 -04:00
|
|
|
it "will not explode if there are no results" do
|
|
|
|
SiteSetting.ai_google_custom_search_api_key = "abc"
|
|
|
|
SiteSetting.ai_google_custom_search_cx = "cx"
|
|
|
|
|
|
|
|
json_text = { searchInformation: { totalResults: "0" } }.to_json
|
|
|
|
|
|
|
|
stub_request(
|
|
|
|
:get,
|
|
|
|
"https://www.googleapis.com/customsearch/v1?cx=cx&key=abc&num=10&q=some%20search%20term",
|
|
|
|
).to_return(status: 200, body: json_text, headers: {})
|
|
|
|
|
2024-05-07 07:55:46 -04:00
|
|
|
info = search.invoke(&progress_blk).to_json
|
2023-08-14 02:30:12 -04:00
|
|
|
|
2024-01-04 08:44:07 -05:00
|
|
|
expect(search.results_count).to eq(0)
|
2023-08-14 02:30:12 -04:00
|
|
|
expect(info).to_not include("oops")
|
|
|
|
end
|
|
|
|
|
2023-05-20 03:45:54 -04:00
|
|
|
it "can generate correct info" do
|
|
|
|
SiteSetting.ai_google_custom_search_api_key = "abc"
|
|
|
|
SiteSetting.ai_google_custom_search_cx = "cx"
|
|
|
|
|
|
|
|
json_text = {
|
|
|
|
searchInformation: {
|
2023-10-18 23:44:59 -04:00
|
|
|
totalResults: "2",
|
2023-05-20 03:45:54 -04:00
|
|
|
},
|
|
|
|
items: [
|
|
|
|
{
|
|
|
|
title: "title1",
|
|
|
|
link: "link1",
|
|
|
|
snippet: "snippet1",
|
|
|
|
displayLink: "displayLink1",
|
|
|
|
formattedUrl: "formattedUrl1",
|
2023-08-08 01:41:57 -04:00
|
|
|
oops: "do no include me ... oops",
|
2023-05-20 03:45:54 -04:00
|
|
|
},
|
2023-10-18 23:44:59 -04:00
|
|
|
{
|
|
|
|
title: "title2",
|
|
|
|
link: "link2",
|
|
|
|
displayLink: "displayLink1",
|
|
|
|
formattedUrl: "formattedUrl1",
|
|
|
|
oops: "do no include me ... oops",
|
|
|
|
},
|
2023-05-20 03:45:54 -04:00
|
|
|
],
|
|
|
|
}.to_json
|
|
|
|
|
|
|
|
stub_request(
|
|
|
|
:get,
|
|
|
|
"https://www.googleapis.com/customsearch/v1?cx=cx&key=abc&num=10&q=some%20search%20term",
|
|
|
|
).to_return(status: 200, body: json_text, headers: {})
|
|
|
|
|
2024-05-07 07:55:46 -04:00
|
|
|
info = search.invoke(&progress_blk).to_json
|
2023-05-20 03:45:54 -04:00
|
|
|
|
2024-01-04 08:44:07 -05:00
|
|
|
expect(search.results_count).to eq(2)
|
2023-05-20 03:45:54 -04:00
|
|
|
expect(info).to include("title1")
|
|
|
|
expect(info).to include("snippet1")
|
2023-08-08 01:41:57 -04:00
|
|
|
expect(info).to include("some+search+term")
|
2023-10-18 23:44:59 -04:00
|
|
|
expect(info).to include("title2")
|
2023-08-08 01:41:57 -04:00
|
|
|
expect(info).to_not include("oops")
|
2023-05-20 03:45:54 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|