Files
nairobi/spec/lib/remote_translations/caller_spec.rb
Javi Martín ffc50246c2 Apply explict RSpec/DescribedClass rubocop rule
We settled on using this style in commit 4cbe81a1, but didn't add the
rule enforcing this style and we didn't apply it to existing code.
2019-09-23 16:51:00 +02:00

215 lines
7.3 KiB
Ruby

require "rails_helper"
describe RemoteTranslations::Caller do
before do
RemoteTranslation.skip_callback(:create, :after, :enqueue_remote_translation)
end
after do
RemoteTranslation.set_callback(:create, :after, :enqueue_remote_translation)
end
describe "#call" do
let(:client) { RemoteTranslations::Microsoft::Client }
context "Debates" do
let(:debate) { create(:debate) }
let(:remote_translation) { create(:remote_translation,
remote_translatable: debate, locale: :es) }
let(:caller) { RemoteTranslations::Caller.new(remote_translation) }
it "returns the resource with new translation persisted" do
response = ["Título traducido", "Descripción traducida"]
expect_any_instance_of(client).to receive(:call).and_return(response)
caller.call
expect(debate.translations.count).to eq(2)
end
it "when new translation locale is distinct to default_locale skip length validations" do
response = ["TT", "Descripción traducida"]
expect_any_instance_of(client).to receive(:call).and_return(response)
caller.call
expect(remote_translation.error_message).to eq nil
expect(debate.translations.count).to eq(2)
expect(debate.valid?).to eq true
end
it "when new translation locale is distinct to default_locale not skip presence validations" do
response = ["", "Descripción traducida"]
expect_any_instance_of(client).to receive(:call).and_return(response)
caller.call
expect(remote_translation.error_message).to include("can't be blank")
expect(debate.translations.count).to eq(1)
expect(debate.valid?).to eq false
end
it "destroy remote translation instance" do
response = ["Título traducido", "Descripción traducida"]
expect_any_instance_of(client).to receive(:call).and_return(response)
caller.call
expect(RemoteTranslation.count).to eq(0)
end
end
context "Proposals" do
let!(:proposal) { create(:proposal) }
let(:remote_translation) { create(:remote_translation,
remote_translatable: proposal, locale: :es) }
let(:caller) { RemoteTranslations::Caller.new(remote_translation) }
it "returns the resource with new translation persisted" do
response = ["Título traducido", "Descripción traducida", "Pregunta traducida",
"Resumen traducido", nil]
expect_any_instance_of(client).to receive(:call).and_return(response)
caller.call
expect(proposal.translations.count).to eq(2)
end
it "when new translation locale is distinct to default_locale skip lenght validations" do
response = ["TT", "Descripción traducida", "Pregunta traducida", "Resumen traducido", nil]
expect_any_instance_of(client).to receive(:call).and_return(response)
caller.call
expect(remote_translation.error_message).to eq nil
expect(proposal.translations.count).to eq(2)
expect(proposal.valid?).to eq true
end
it "when new translation locale is distinct to default_locale do not skip presence validations" do
response = ["", "Descripción traducida", "Pregunta traducida", "Resumen traducido", nil]
expect_any_instance_of(client).to receive(:call).and_return(response)
caller.call
expect(remote_translation.error_message).to include("can't be blank")
expect(proposal.translations.count).to eq(1)
expect(proposal.valid?).to eq false
end
it "destroy remote translation instance" do
response = ["Título traducido", "Descripción traducida", "Pregunta traducida",
"Resumen traducido", nil]
expect_any_instance_of(client).to receive(:call).and_return(response)
caller.call
expect(RemoteTranslation.count).to eq(0)
end
end
context "Budget Investments" do
let(:budget_investment) { create(:budget_investment) }
let(:remote_translation) { create(:remote_translation,
remote_translatable: budget_investment,
locale: :es) }
let(:caller) { RemoteTranslations::Caller.new(remote_translation) }
it "returns the resource with new translation persisted" do
response = ["Título traducido", "Descripción traducida"]
expect_any_instance_of(client).to receive(:call).and_return(response)
caller.call
expect(budget_investment.translations.count).to eq(2)
end
it "when new translation locale is distinct to default_locale skip lenght validations" do
response = ["TT", "Descripción traducida"]
expect_any_instance_of(client).to receive(:call).and_return(response)
caller.call
expect(remote_translation.error_message).to eq nil
expect(budget_investment.translations.count).to eq(2)
expect(budget_investment.valid?).to eq true
end
it "when new translation locale is distinct to default_locale not skip presence validations" do
response = ["", "Descripción traducida"]
expect_any_instance_of(client).to receive(:call).and_return(response)
caller.call
expect(remote_translation.error_message).to include("can't be blank")
expect(budget_investment.translations.count).to eq(1)
expect(budget_investment.valid?).to eq false
end
it "destroy remote translation instance" do
response = ["Título traducido", "Descripción traducida"]
expect_any_instance_of(client).to receive(:call).and_return(response)
caller.call
expect(RemoteTranslation.count).to eq(0)
end
end
context "Comments" do
let(:comment) { create(:comment) }
let(:remote_translation) { create(:remote_translation,
remote_translatable: comment, locale: :es) }
let(:caller) { RemoteTranslations::Caller.new(remote_translation) }
it "returns the resource with new translation persisted" do
response = ["Body traducido"]
expect_any_instance_of(client).to receive(:call).and_return(response)
caller.call
expect(comment.translations.count).to eq(2)
end
it "when new translation locale is distinct to default_locale skip lenght validations" do
response = ["BT"]
expect_any_instance_of(client).to receive(:call).and_return(response)
caller.call
expect(remote_translation.error_message).to eq nil
expect(comment.translations.count).to eq(2)
expect(comment.valid?).to eq true
end
it "when new translation locale is distinct to default_locale not skip presence validations" do
response = [""]
expect_any_instance_of(client).to receive(:call).and_return(response)
caller.call
expect(remote_translation.error_message).to include("can't be blank")
expect(comment.translations.count).to eq(1)
expect(comment.valid?).to eq false
end
it "destroy remote translation instance" do
response = ["Body traducido"]
expect_any_instance_of(client).to receive(:call).and_return(response)
caller.call
expect(RemoteTranslation.count).to eq(0)
end
end
end
end