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
|
2024-07-30 12:44:57 -04:00
|
|
|
fab!(:llm_model)
|
|
|
|
let(:bot_user) { DiscourseAi::AiBot::EntryPoint.find_user_from_model(llm_model.name) }
|
|
|
|
let(:llm) { DiscourseAi::Completions::Llm.proxy("custom:#{llm_model.id}") }
|
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
|
|
|
|
2024-10-23 01:55:10 -04:00
|
|
|
before do
|
|
|
|
SiteSetting.ai_bot_enabled = true
|
|
|
|
SiteSetting.ai_google_custom_search_api_key = "abc"
|
|
|
|
SiteSetting.ai_google_custom_search_cx = "cx"
|
|
|
|
end
|
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
|
|
|
|
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
|
|
|
|
|
2024-10-23 01:55:10 -04:00
|
|
|
it "supports base_query" do
|
|
|
|
base_query = "site:discourse.org"
|
|
|
|
|
|
|
|
search =
|
|
|
|
described_class.new(
|
|
|
|
{ query: "some search term" },
|
|
|
|
bot_user: bot_user,
|
|
|
|
llm: llm,
|
|
|
|
persona_options: {
|
|
|
|
"base_query" => base_query,
|
|
|
|
},
|
|
|
|
)
|
|
|
|
|
|
|
|
json_text = { searchInformation: { totalResults: "0" } }.to_json
|
|
|
|
|
|
|
|
stub_request(
|
|
|
|
:get,
|
|
|
|
"https://www.googleapis.com/customsearch/v1?cx=cx&key=abc&num=10&q=site:discourse.org%20some%20search%20term",
|
|
|
|
).to_return(status: 200, body: json_text, headers: {})
|
2023-05-20 03:45:54 -04:00
|
|
|
|
2024-10-23 01:55:10 -04:00
|
|
|
search.invoke(&progress_blk)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "can generate correct info" do
|
2023-05-20 03:45:54 -04:00
|
|
|
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
|