discourse/plugins/discourse-ai/spec/jobs/scheduled/post_localization_backfill_spec.rb
Penar Musaraj 90baea1ea7
FEATURE: Switch from opt-in to opt-out for categories in AI translations (#40169)
This PR changes Discourse AI translations from an opt-in category model
to an opt-out model: instead of translating only selected
`ai_translation_target_categories`, it introduces
`ai_translation_excluded_categories`, updates the admin UI copy and save
flow, changes topic/post/category candidate selection and detection jobs
to translate all non-excluded categories by default, and adds a
migration that converts existing target-category settings into the
equivalent excluded-category list for existing sites.

It also updates all related specs.

---------

Co-authored-by: discourse-patch-triage[bot] <272280883+discourse-patch-triage[bot]@users.noreply.github.com>
2026-05-26 14:51:04 -04:00

72 lines
2.2 KiB
Ruby
Vendored

# frozen_string_literal: true
describe Jobs::PostLocalizationBackfill do
fab!(:post) { Fabricate(:post, locale: "es") }
before do
enable_current_plugin
assign_fake_provider_to(:ai_default_llm_model)
SiteSetting.ai_translation_backfill_hourly_rate = 100
SiteSetting.ai_translation_backfill_max_age_days = 100
SiteSetting.content_localization_supported_locales = "en"
SiteSetting.ai_translation_enabled = true
SiteSetting.ai_translation_excluded_categories = ""
end
it "does not enqueue post translation when translator disabled" do
SiteSetting.discourse_ai_enabled = false
described_class.new.execute({})
expect_not_enqueued_with(job: :localize_posts)
end
it "does not enqueue post translation when experimental translation disabled" do
SiteSetting.ai_translation_enabled = false
described_class.new.execute({})
expect_not_enqueued_with(job: :localize_posts)
end
it "does not enqueue post translation if backfill languages are not set" do
SiteSetting.content_localization_supported_locales = ""
described_class.new.execute({})
expect_not_enqueued_with(job: :localize_posts)
end
it "does not enqueue post translation if backfill limit is set to 0" do
SiteSetting.ai_translation_enabled = true
SiteSetting.ai_translation_backfill_hourly_rate = 0
described_class.new.execute({})
expect_not_enqueued_with(job: :localize_posts)
end
it "does not enqueue when all posts are fully translated" do
Fabricate(:post_localization, post: post, locale: "en")
described_class.new.execute({})
expect_not_enqueued_with(job: :localize_posts)
end
it "enqueues post translation with pairs" do
described_class.new.execute({})
expect_job_enqueued(job: :localize_posts, args: { pairs: [[post.id, "en"]] })
end
it "distributes pairs across parallel jobs" do
SiteSetting.ai_translation_backfill_parallel_jobs = 2
post_2 = Fabricate(:post, locale: "es", topic: post.topic)
described_class.new.execute({})
expect_job_enqueued(job: :localize_posts, args: { pairs: [[post_2.id, "en"]] })
expect_job_enqueued(job: :localize_posts, args: { pairs: [[post.id, "en"]] })
end
end