mirror of
https://github.com/discourse/discourse.git
synced 2026-08-07 13:19:19 +08:00
Related: https://meta.discourse.org/t/request-for-a-date-picker-in-ai-translate-settings/405828 The backfill translation setting was "max age days". This resulted in a running date, which meant the older topics couldn't get updated if the date keeps running from today.
52 lines
1.8 KiB
Ruby
Vendored
52 lines
1.8 KiB
Ruby
Vendored
# frozen_string_literal: true
|
|
|
|
describe Jobs::TopicLocalizationBackfill do
|
|
fab!(:topic) { Fabricate(:topic, 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_start_date = 100.days.ago.utc.to_date.iso8601
|
|
SiteSetting.content_localization_supported_locales = "en"
|
|
SiteSetting.ai_translation_enabled = true
|
|
SiteSetting.ai_translation_category_scope = "all"
|
|
SiteSetting.ai_translation_categories = ""
|
|
end
|
|
|
|
it "does not enqueue topic translation when translator disabled" do
|
|
SiteSetting.discourse_ai_enabled = false
|
|
|
|
expect_not_enqueued_with(job: :localize_topics) { described_class.new.execute({}) }
|
|
end
|
|
|
|
it "does not enqueue topic translation when ai_translation_enabled disabled" do
|
|
SiteSetting.ai_translation_enabled = false
|
|
|
|
expect_not_enqueued_with(job: :localize_topics) { described_class.new.execute({}) }
|
|
end
|
|
|
|
it "does not enqueue topic translation if backfill languages are not set" do
|
|
SiteSetting.content_localization_supported_locales = ""
|
|
|
|
expect_not_enqueued_with(job: :localize_topics) { described_class.new.execute({}) }
|
|
end
|
|
|
|
it "does not enqueue topic translation if backfill limit is set to 0" do
|
|
SiteSetting.ai_translation_backfill_hourly_rate = 0
|
|
|
|
expect_not_enqueued_with(job: :localize_topics) { described_class.new.execute({}) }
|
|
end
|
|
|
|
it "does not enqueue when all topics are fully translated" do
|
|
Fabricate(:topic_localization, topic: topic, locale: "en")
|
|
|
|
expect_not_enqueued_with(job: :localize_topics) { described_class.new.execute({}) }
|
|
end
|
|
|
|
it "enqueues topic translation with pairs" do
|
|
described_class.new.execute({})
|
|
|
|
expect_job_enqueued(job: :localize_topics, args: { pairs: [[topic.id, "en"]] })
|
|
end
|
|
end
|