2023-03-15 16:02:20 -04:00
|
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
|
|
require_relative "../../support/openai_completions_inference_stubs"
|
|
|
|
|
|
|
|
|
|
RSpec.describe "AI Composer helper", type: :system, js: true do
|
|
|
|
|
fab!(:user) { Fabricate(:admin) }
|
|
|
|
|
|
|
|
|
|
before do
|
|
|
|
|
Group.find_by(id: Group::AUTO_GROUPS[:admins]).add(user)
|
|
|
|
|
SiteSetting.composer_ai_helper_enabled = true
|
|
|
|
|
sign_in(user)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
let(:composer) { PageObjects::Components::Composer.new }
|
2023-08-23 13:35:40 -04:00
|
|
|
|
let(:ai_helper_context_menu) { PageObjects::Components::AIHelperContextMenu.new }
|
2023-03-15 16:02:20 -04:00
|
|
|
|
let(:ai_helper_modal) { PageObjects::Modals::AiHelper.new }
|
2023-08-24 20:49:24 -04:00
|
|
|
|
let(:diff_modal) { PageObjects::Modals::DiffModal.new }
|
2023-09-01 20:10:58 -04:00
|
|
|
|
let(:ai_suggestion_dropdown) { PageObjects::Components::AISuggestionDropdown.new }
|
|
|
|
|
fab!(:category) { Fabricate(:category) }
|
2023-09-05 12:56:12 -04:00
|
|
|
|
fab!(:category_2) { Fabricate(:category) }
|
2023-09-01 20:10:58 -04:00
|
|
|
|
fab!(:video) { Fabricate(:tag) }
|
|
|
|
|
fab!(:music) { Fabricate(:tag) }
|
|
|
|
|
fab!(:cloud) { Fabricate(:tag) }
|
|
|
|
|
fab!(:feedback) { Fabricate(:tag) }
|
|
|
|
|
fab!(:review) { Fabricate(:tag) }
|
2023-03-15 16:02:20 -04:00
|
|
|
|
|
|
|
|
|
context "when using the translation mode" do
|
2023-03-22 15:00:28 -04:00
|
|
|
|
let(:mode) { OpenAiCompletionsInferenceStubs::TRANSLATE }
|
2023-03-15 16:02:20 -04:00
|
|
|
|
|
|
|
|
|
before { OpenAiCompletionsInferenceStubs.stub_prompt(mode) }
|
|
|
|
|
|
|
|
|
|
it "replaces the composed message with AI generated content" do
|
|
|
|
|
visit("/latest")
|
|
|
|
|
page.find("#create-topic").click
|
|
|
|
|
|
|
|
|
|
composer.fill_content(OpenAiCompletionsInferenceStubs.spanish_text)
|
|
|
|
|
page.find(".composer-ai-helper").click
|
|
|
|
|
|
|
|
|
|
expect(ai_helper_modal).to be_visible
|
|
|
|
|
|
2023-04-10 10:04:42 -04:00
|
|
|
|
ai_helper_modal.select_helper_model(OpenAiCompletionsInferenceStubs.text_mode_to_id(mode))
|
2023-03-15 16:02:20 -04:00
|
|
|
|
ai_helper_modal.save_changes
|
|
|
|
|
|
|
|
|
|
expect(composer.composer_input.value).to eq(
|
|
|
|
|
OpenAiCompletionsInferenceStubs.translated_response.strip,
|
|
|
|
|
)
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context "when using the proofreading mode" do
|
2023-03-22 15:00:28 -04:00
|
|
|
|
let(:mode) { OpenAiCompletionsInferenceStubs::PROOFREAD }
|
2023-03-15 16:02:20 -04:00
|
|
|
|
|
|
|
|
|
before { OpenAiCompletionsInferenceStubs.stub_prompt(mode) }
|
|
|
|
|
|
|
|
|
|
it "replaces the composed message with AI generated content" do
|
|
|
|
|
visit("/latest")
|
|
|
|
|
page.find("#create-topic").click
|
|
|
|
|
|
|
|
|
|
composer.fill_content(OpenAiCompletionsInferenceStubs.translated_response)
|
|
|
|
|
page.find(".composer-ai-helper").click
|
|
|
|
|
|
|
|
|
|
expect(ai_helper_modal).to be_visible
|
|
|
|
|
|
2023-04-10 10:04:42 -04:00
|
|
|
|
ai_helper_modal.select_helper_model(OpenAiCompletionsInferenceStubs.text_mode_to_id(mode))
|
2023-03-15 16:02:20 -04:00
|
|
|
|
ai_helper_modal.save_changes
|
|
|
|
|
|
|
|
|
|
expect(composer.composer_input.value).to eq(
|
|
|
|
|
OpenAiCompletionsInferenceStubs.proofread_response.strip,
|
|
|
|
|
)
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context "when selecting an AI generated title" do
|
2023-03-22 15:00:28 -04:00
|
|
|
|
let(:mode) { OpenAiCompletionsInferenceStubs::GENERATE_TITLES }
|
2023-03-15 16:02:20 -04:00
|
|
|
|
|
|
|
|
|
before { OpenAiCompletionsInferenceStubs.stub_prompt(mode) }
|
|
|
|
|
|
|
|
|
|
it "replaces the topic title" do
|
|
|
|
|
visit("/latest")
|
|
|
|
|
page.find("#create-topic").click
|
|
|
|
|
|
|
|
|
|
composer.fill_content(OpenAiCompletionsInferenceStubs.translated_response)
|
|
|
|
|
page.find(".composer-ai-helper").click
|
|
|
|
|
|
|
|
|
|
expect(ai_helper_modal).to be_visible
|
|
|
|
|
|
2023-04-10 10:04:42 -04:00
|
|
|
|
ai_helper_modal.select_helper_model(OpenAiCompletionsInferenceStubs.text_mode_to_id(mode))
|
2023-03-15 16:02:20 -04:00
|
|
|
|
ai_helper_modal.select_title_suggestion(2)
|
|
|
|
|
ai_helper_modal.save_changes
|
|
|
|
|
|
|
|
|
|
expected_title = "The Quiet Piece that Moves Literature: A Gaucho's Story"
|
|
|
|
|
|
|
|
|
|
expect(find("#reply-title").value).to eq(expected_title)
|
|
|
|
|
end
|
|
|
|
|
end
|
2023-08-23 13:35:40 -04:00
|
|
|
|
|
|
|
|
|
def trigger_context_menu(content)
|
|
|
|
|
visit("/latest")
|
|
|
|
|
page.find("#create-topic").click
|
|
|
|
|
composer.fill_content(content)
|
|
|
|
|
page.execute_script("document.querySelector('.d-editor-input')?.select();")
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context "when triggering AI with context menu in composer" do
|
|
|
|
|
it "shows the context menu when selecting a passage of text in the composer" do
|
|
|
|
|
trigger_context_menu(OpenAiCompletionsInferenceStubs.translated_response)
|
|
|
|
|
expect(ai_helper_context_menu).to have_context_menu
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
it "shows context menu in 'trigger' state when first showing" do
|
|
|
|
|
trigger_context_menu(OpenAiCompletionsInferenceStubs.translated_response)
|
|
|
|
|
expect(ai_helper_context_menu).to be_showing_triggers
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
it "shows prompt options in context menu when AI button is clicked" do
|
|
|
|
|
trigger_context_menu(OpenAiCompletionsInferenceStubs.translated_response)
|
|
|
|
|
ai_helper_context_menu.click_ai_button
|
|
|
|
|
expect(ai_helper_context_menu).to be_showing_options
|
|
|
|
|
end
|
|
|
|
|
|
2023-08-28 18:08:51 -04:00
|
|
|
|
it "closes the context menu when clicking outside" do
|
|
|
|
|
trigger_context_menu(OpenAiCompletionsInferenceStubs.translated_response)
|
|
|
|
|
find(".d-editor-preview").click
|
|
|
|
|
expect(ai_helper_context_menu).to have_no_context_menu
|
|
|
|
|
end
|
|
|
|
|
|
2023-08-23 13:35:40 -04:00
|
|
|
|
context "when using translation mode" do
|
|
|
|
|
let(:mode) { OpenAiCompletionsInferenceStubs::TRANSLATE }
|
|
|
|
|
before { OpenAiCompletionsInferenceStubs.stub_prompt(mode) }
|
|
|
|
|
|
|
|
|
|
it "replaces the composed message with AI generated content" do
|
|
|
|
|
trigger_context_menu(OpenAiCompletionsInferenceStubs.spanish_text)
|
|
|
|
|
ai_helper_context_menu.click_ai_button
|
|
|
|
|
ai_helper_context_menu.select_helper_model(
|
|
|
|
|
OpenAiCompletionsInferenceStubs.text_mode_to_id(mode),
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
wait_for do
|
|
|
|
|
composer.composer_input.value == OpenAiCompletionsInferenceStubs.translated_response.strip
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
expect(composer.composer_input.value).to eq(
|
|
|
|
|
OpenAiCompletionsInferenceStubs.translated_response.strip,
|
|
|
|
|
)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
it "shows reset options after results are complete" do
|
|
|
|
|
trigger_context_menu(OpenAiCompletionsInferenceStubs.spanish_text)
|
|
|
|
|
ai_helper_context_menu.click_ai_button
|
|
|
|
|
ai_helper_context_menu.select_helper_model(
|
|
|
|
|
OpenAiCompletionsInferenceStubs.text_mode_to_id(mode),
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
wait_for do
|
|
|
|
|
composer.composer_input.value == OpenAiCompletionsInferenceStubs.translated_response.strip
|
|
|
|
|
end
|
|
|
|
|
|
2023-08-24 20:49:24 -04:00
|
|
|
|
ai_helper_context_menu.click_confirm_button
|
2023-08-23 13:35:40 -04:00
|
|
|
|
expect(ai_helper_context_menu).to be_showing_resets
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
it "reverts results when Undo button is clicked" do
|
|
|
|
|
trigger_context_menu(OpenAiCompletionsInferenceStubs.spanish_text)
|
|
|
|
|
ai_helper_context_menu.click_ai_button
|
|
|
|
|
ai_helper_context_menu.select_helper_model(
|
|
|
|
|
OpenAiCompletionsInferenceStubs.text_mode_to_id(mode),
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
wait_for do
|
|
|
|
|
composer.composer_input.value == OpenAiCompletionsInferenceStubs.translated_response.strip
|
|
|
|
|
end
|
|
|
|
|
|
2023-08-24 20:49:24 -04:00
|
|
|
|
ai_helper_context_menu.click_confirm_button
|
2023-08-23 13:35:40 -04:00
|
|
|
|
ai_helper_context_menu.click_undo_button
|
|
|
|
|
expect(composer.composer_input.value).to eq(OpenAiCompletionsInferenceStubs.spanish_text)
|
|
|
|
|
end
|
2023-08-23 18:35:53 -04:00
|
|
|
|
|
2023-08-24 20:49:24 -04:00
|
|
|
|
it "reverts results when revert button is clicked" do
|
|
|
|
|
trigger_context_menu(OpenAiCompletionsInferenceStubs.spanish_text)
|
|
|
|
|
ai_helper_context_menu.click_ai_button
|
|
|
|
|
ai_helper_context_menu.select_helper_model(
|
|
|
|
|
OpenAiCompletionsInferenceStubs.text_mode_to_id(mode),
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
wait_for do
|
|
|
|
|
composer.composer_input.value == OpenAiCompletionsInferenceStubs.translated_response.strip
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
ai_helper_context_menu.click_revert_button
|
|
|
|
|
expect(composer.composer_input.value).to eq(OpenAiCompletionsInferenceStubs.spanish_text)
|
|
|
|
|
end
|
|
|
|
|
|
2023-08-23 18:35:53 -04:00
|
|
|
|
it "reverts results when Ctrl/Cmd + Z is pressed on the keyboard" do
|
|
|
|
|
trigger_context_menu(OpenAiCompletionsInferenceStubs.spanish_text)
|
|
|
|
|
ai_helper_context_menu.click_ai_button
|
|
|
|
|
ai_helper_context_menu.select_helper_model(
|
|
|
|
|
OpenAiCompletionsInferenceStubs.text_mode_to_id(mode),
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
wait_for do
|
|
|
|
|
composer.composer_input.value == OpenAiCompletionsInferenceStubs.translated_response.strip
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
ai_helper_context_menu.press_undo_keys
|
|
|
|
|
expect(composer.composer_input.value).to eq(OpenAiCompletionsInferenceStubs.spanish_text)
|
|
|
|
|
end
|
|
|
|
|
|
2023-08-24 20:49:24 -04:00
|
|
|
|
it "confirms the results when confirm button is pressed" do
|
|
|
|
|
trigger_context_menu(OpenAiCompletionsInferenceStubs.spanish_text)
|
|
|
|
|
ai_helper_context_menu.click_ai_button
|
|
|
|
|
ai_helper_context_menu.select_helper_model(
|
|
|
|
|
OpenAiCompletionsInferenceStubs.text_mode_to_id(mode),
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
wait_for do
|
|
|
|
|
composer.composer_input.value == OpenAiCompletionsInferenceStubs.translated_response.strip
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
ai_helper_context_menu.click_confirm_button
|
|
|
|
|
expect(composer.composer_input.value).to eq(
|
|
|
|
|
OpenAiCompletionsInferenceStubs.translated_response.strip,
|
|
|
|
|
)
|
|
|
|
|
end
|
|
|
|
|
|
2023-08-23 18:35:53 -04:00
|
|
|
|
it "hides the context menu when pressing Escape on the keyboard" do
|
|
|
|
|
trigger_context_menu(OpenAiCompletionsInferenceStubs.spanish_text)
|
|
|
|
|
ai_helper_context_menu.click_ai_button
|
|
|
|
|
ai_helper_context_menu.press_escape_key
|
|
|
|
|
expect(ai_helper_context_menu).to have_no_context_menu
|
|
|
|
|
end
|
2023-08-24 20:49:24 -04:00
|
|
|
|
|
|
|
|
|
it "shows the changes in a modal when view changes button is pressed" do
|
|
|
|
|
trigger_context_menu(OpenAiCompletionsInferenceStubs.spanish_text)
|
|
|
|
|
ai_helper_context_menu.click_ai_button
|
|
|
|
|
ai_helper_context_menu.select_helper_model(
|
|
|
|
|
OpenAiCompletionsInferenceStubs.text_mode_to_id(mode),
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
wait_for do
|
|
|
|
|
composer.composer_input.value == OpenAiCompletionsInferenceStubs.translated_response.strip
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
ai_helper_context_menu.click_view_changes_button
|
|
|
|
|
expect(diff_modal).to be_visible
|
|
|
|
|
expect(diff_modal.old_value).to eq(
|
|
|
|
|
OpenAiCompletionsInferenceStubs.spanish_text.gsub(/[[:space:]]+/, " ").strip,
|
|
|
|
|
)
|
|
|
|
|
expect(diff_modal.new_value).to eq(
|
|
|
|
|
OpenAiCompletionsInferenceStubs
|
|
|
|
|
.translated_response
|
|
|
|
|
.gsub(/[[:space:]]+/, " ")
|
|
|
|
|
.gsub(/[‘’]/, "'")
|
|
|
|
|
.gsub(/[“”]/, '"')
|
|
|
|
|
.strip,
|
|
|
|
|
)
|
|
|
|
|
diff_modal.confirm_changes
|
|
|
|
|
expect(ai_helper_context_menu).to be_showing_resets
|
|
|
|
|
end
|
2023-08-28 18:08:51 -04:00
|
|
|
|
|
|
|
|
|
it "should not close the context menu when in review state" do
|
|
|
|
|
trigger_context_menu(OpenAiCompletionsInferenceStubs.spanish_text)
|
|
|
|
|
ai_helper_context_menu.click_ai_button
|
|
|
|
|
ai_helper_context_menu.select_helper_model(
|
|
|
|
|
OpenAiCompletionsInferenceStubs.text_mode_to_id(mode),
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
wait_for do
|
|
|
|
|
composer.composer_input.value == OpenAiCompletionsInferenceStubs.translated_response.strip
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
find(".d-editor-preview").click
|
|
|
|
|
expect(ai_helper_context_menu).to have_context_menu
|
|
|
|
|
end
|
2023-08-23 13:35:40 -04:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context "when using the proofreading mode" do
|
|
|
|
|
let(:mode) { OpenAiCompletionsInferenceStubs::PROOFREAD }
|
|
|
|
|
before { OpenAiCompletionsInferenceStubs.stub_prompt(mode) }
|
|
|
|
|
|
|
|
|
|
it "replaces the composed message with AI generated content" do
|
|
|
|
|
trigger_context_menu(OpenAiCompletionsInferenceStubs.translated_response)
|
|
|
|
|
ai_helper_context_menu.click_ai_button
|
|
|
|
|
ai_helper_context_menu.select_helper_model(
|
|
|
|
|
OpenAiCompletionsInferenceStubs.text_mode_to_id(mode),
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
wait_for do
|
|
|
|
|
composer.composer_input.value == OpenAiCompletionsInferenceStubs.proofread_response.strip
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
expect(composer.composer_input.value).to eq(
|
|
|
|
|
OpenAiCompletionsInferenceStubs.proofread_response.strip,
|
|
|
|
|
)
|
|
|
|
|
end
|
|
|
|
|
end
|
2023-08-29 12:45:53 -04:00
|
|
|
|
end
|
2023-08-23 13:35:40 -04:00
|
|
|
|
|
2023-08-29 12:45:53 -04:00
|
|
|
|
context "when suggesting titles with AI title suggester" do
|
|
|
|
|
let(:mode) { OpenAiCompletionsInferenceStubs::GENERATE_TITLES }
|
|
|
|
|
before { OpenAiCompletionsInferenceStubs.stub_prompt(mode) }
|
2023-08-23 13:35:40 -04:00
|
|
|
|
|
2023-08-29 12:45:53 -04:00
|
|
|
|
it "opens a menu with title suggestions" do
|
|
|
|
|
visit("/latest")
|
|
|
|
|
page.find("#create-topic").click
|
|
|
|
|
composer.fill_content(OpenAiCompletionsInferenceStubs.translated_response)
|
2023-09-01 20:10:58 -04:00
|
|
|
|
ai_suggestion_dropdown.click_suggest_titles_button
|
2023-08-23 13:35:40 -04:00
|
|
|
|
|
2023-09-01 20:10:58 -04:00
|
|
|
|
wait_for { ai_suggestion_dropdown.has_dropdown? }
|
2023-08-23 13:35:40 -04:00
|
|
|
|
|
2023-09-01 20:10:58 -04:00
|
|
|
|
expect(ai_suggestion_dropdown).to have_dropdown
|
2023-08-29 12:45:53 -04:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
it "replaces the topic title with the selected title" do
|
|
|
|
|
visit("/latest")
|
|
|
|
|
page.find("#create-topic").click
|
|
|
|
|
composer.fill_content(OpenAiCompletionsInferenceStubs.translated_response)
|
2023-09-01 20:10:58 -04:00
|
|
|
|
ai_suggestion_dropdown.click_suggest_titles_button
|
2023-08-29 12:45:53 -04:00
|
|
|
|
|
2023-09-01 20:10:58 -04:00
|
|
|
|
wait_for { ai_suggestion_dropdown.has_dropdown? }
|
2023-08-29 12:45:53 -04:00
|
|
|
|
|
2023-09-05 12:56:12 -04:00
|
|
|
|
ai_suggestion_dropdown.select_suggestion_by_value(2)
|
2023-08-29 12:45:53 -04:00
|
|
|
|
expected_title = "The Quiet Piece that Moves Literature: A Gaucho's Story"
|
|
|
|
|
|
|
|
|
|
expect(find("#reply-title").value).to eq(expected_title)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
it "closes the menu when clicking outside" do
|
|
|
|
|
visit("/latest")
|
|
|
|
|
page.find("#create-topic").click
|
|
|
|
|
composer.fill_content(OpenAiCompletionsInferenceStubs.translated_response)
|
2023-09-01 20:10:58 -04:00
|
|
|
|
ai_suggestion_dropdown.click_suggest_titles_button
|
2023-08-29 12:45:53 -04:00
|
|
|
|
|
2023-09-01 20:10:58 -04:00
|
|
|
|
wait_for { ai_suggestion_dropdown.has_dropdown? }
|
2023-08-29 12:45:53 -04:00
|
|
|
|
|
|
|
|
|
find(".d-editor-preview").click
|
|
|
|
|
|
2023-09-01 20:10:58 -04:00
|
|
|
|
expect(ai_suggestion_dropdown).to have_no_dropdown
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context "when suggesting the category with AI category suggester" do
|
|
|
|
|
before { SiteSetting.ai_embeddings_enabled = true }
|
|
|
|
|
|
|
|
|
|
it "updates the category with the suggested category" do
|
2023-09-05 21:33:43 -04:00
|
|
|
|
skip("broken on CI") if ENV["CI"]
|
|
|
|
|
|
2023-09-01 20:10:58 -04:00
|
|
|
|
response =
|
|
|
|
|
Category
|
|
|
|
|
.take(3)
|
|
|
|
|
.pluck(:slug)
|
|
|
|
|
.map { |s| { name: s, score: rand(0.0...45.0) } }
|
|
|
|
|
.sort { |h| h[:score] }
|
|
|
|
|
DiscourseAi::AiHelper::SemanticCategorizer.any_instance.stubs(:categories).returns(response)
|
|
|
|
|
visit("/latest")
|
|
|
|
|
page.find("#create-topic").click
|
|
|
|
|
composer.fill_content(OpenAiCompletionsInferenceStubs.translated_response)
|
|
|
|
|
ai_suggestion_dropdown.click_suggest_category_button
|
|
|
|
|
wait_for { ai_suggestion_dropdown.has_dropdown? }
|
|
|
|
|
|
2023-09-05 12:56:12 -04:00
|
|
|
|
suggestion = "amazing-category-1"
|
|
|
|
|
ai_suggestion_dropdown.select_suggestion_by_name("amazing-category-1")
|
2023-09-01 20:10:58 -04:00
|
|
|
|
category_selector = page.find(".category-chooser summary")
|
|
|
|
|
|
|
|
|
|
expect(category_selector["data-name"].downcase.gsub(" ", "-")).to eq(suggestion)
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context "when suggesting the tags with AI tag suggester" do
|
|
|
|
|
before { SiteSetting.ai_embeddings_enabled = true }
|
|
|
|
|
|
|
|
|
|
it "updates the tag with the suggested tag" do
|
|
|
|
|
response =
|
|
|
|
|
Tag
|
|
|
|
|
.take(5)
|
|
|
|
|
.pluck(:name)
|
|
|
|
|
.map { |s| { name: s, score: rand(0.0...45.0) } }
|
|
|
|
|
.sort { |h| h[:score] }
|
|
|
|
|
DiscourseAi::AiHelper::SemanticCategorizer.any_instance.stubs(:tags).returns(response)
|
|
|
|
|
|
|
|
|
|
visit("/latest")
|
|
|
|
|
page.find("#create-topic").click
|
|
|
|
|
composer.fill_content(OpenAiCompletionsInferenceStubs.translated_response)
|
|
|
|
|
|
|
|
|
|
ai_suggestion_dropdown.click_suggest_tags_button
|
|
|
|
|
|
|
|
|
|
wait_for { ai_suggestion_dropdown.has_dropdown? }
|
|
|
|
|
|
|
|
|
|
suggestion = ai_suggestion_dropdown.suggestion_name(0)
|
2023-09-05 12:56:12 -04:00
|
|
|
|
ai_suggestion_dropdown.select_suggestion_by_value(0)
|
2023-09-01 20:10:58 -04:00
|
|
|
|
tag_selector = page.find(".mini-tag-chooser summary")
|
|
|
|
|
|
|
|
|
|
expect(tag_selector["data-name"]).to eq(suggestion)
|
2023-08-23 13:35:40 -04:00
|
|
|
|
end
|
|
|
|
|
end
|
2023-03-15 16:02:20 -04:00
|
|
|
|
end
|