mirror of
https://github.com/mastodon/mastodon.git
synced 2025-09-05 17:31:12 +00:00
75 lines
2.9 KiB
Ruby
75 lines
2.9 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
RSpec.describe Rule do
|
|
describe 'scopes' do
|
|
describe 'ordered' do
|
|
let(:deleted_rule) { Fabricate(:rule, deleted_at: 10.days.ago) }
|
|
let(:first_rule) { Fabricate(:rule, deleted_at: nil, priority: 1) }
|
|
let(:last_rule) { Fabricate(:rule, deleted_at: nil, priority: 10) }
|
|
|
|
it 'finds the correct records' do
|
|
results = described_class.ordered
|
|
|
|
expect(results).to eq([first_rule, last_rule])
|
|
end
|
|
end
|
|
end
|
|
|
|
describe '#move!' do
|
|
let!(:first_rule) { Fabricate(:rule, text: 'foo') }
|
|
let!(:second_rule) { Fabricate(:rule, text: 'bar') }
|
|
let!(:third_rule) { Fabricate(:rule, text: 'baz') }
|
|
|
|
it 'moves the rules as expected' do
|
|
expect { first_rule.move!(+1) }
|
|
.to change { described_class.ordered.pluck(:text) }.from(%w(foo bar baz)).to(%w(bar foo baz))
|
|
|
|
expect { first_rule.move!(-1) }
|
|
.to change { described_class.ordered.pluck(:text) }.from(%w(bar foo baz)).to(%w(foo bar baz))
|
|
|
|
expect { third_rule.move!(-1) }
|
|
.to change { described_class.ordered.pluck(:text) }.from(%w(foo bar baz)).to(%w(foo baz bar))
|
|
|
|
expect { second_rule.move!(-1) }
|
|
.to change { described_class.ordered.pluck(:text) }.from(%w(foo baz bar)).to(%w(foo bar baz))
|
|
end
|
|
end
|
|
|
|
describe '#translation_for' do
|
|
let!(:rule) { Fabricate(:rule, text: 'This is a rule', hint: 'This is an explanation of the rule') }
|
|
let!(:translation) { Fabricate(:rule_translation, rule: rule, text: 'Ceci est une règle', hint: 'Ceci est une explication de la règle', language: 'fr') }
|
|
|
|
it 'returns the expected translation, including fallbacks' do
|
|
expect(rule.translation_for(:en)).to have_attributes(text: rule.text, hint: rule.hint)
|
|
expect(rule.translation_for(:fr)).to have_attributes(text: translation.text, hint: translation.hint)
|
|
expect(rule.translation_for(:'fr-CA')).to have_attributes(text: translation.text, hint: translation.hint)
|
|
end
|
|
end
|
|
|
|
describe '#untranslated_languages' do
|
|
subject { rule.untranslated_languages }
|
|
|
|
let(:rule) { Fabricate :rule }
|
|
|
|
context 'when there are no translations' do
|
|
it { is_expected.to be_an(Array).and(be_empty) }
|
|
end
|
|
|
|
context 'when there are translations' do
|
|
let(:linked_to_rule_translation) { Fabricate :rule_translation, language: 'es', rule: }
|
|
let!(:missing_translation) { Fabricate :rule_translation, language: 'fr' }
|
|
let!(:discarded_rule_translation) { Fabricate :rule_translation, language: 'gb', rule: discarded_rule }
|
|
let(:discarded_rule) { Fabricate :rule, deleted_at: 5.days.ago }
|
|
|
|
it 'returns language strings of missing translations' do
|
|
expect(subject)
|
|
.to include(missing_translation.language)
|
|
.and not_include(linked_to_rule_translation.language)
|
|
.and not_include(discarded_rule_translation.language)
|
|
end
|
|
end
|
|
end
|
|
end
|