Sha256: 8ae21397350ded93ae931cc5d8df316da811ba4674c29715ffd0809c085291f1

Contents?: true

Size: 1.68 KB

Versions: 5

Compression:

Stored size: 1.68 KB

Contents

require 'spec_helper'

describe Grape::Exceptions::Base do
  describe '#compose_message' do
    subject { described_class.new.send(:compose_message, key, attributes) }

    let(:key) { :invalid_formatter }
    let(:attributes) { { klass: String, to_format: 'xml' } }

    after do
      I18n.available_locales = %i[en]
      I18n.default_locale = :en
    end

    context 'when I18n enforces available locales' do
      before { I18n.enforce_available_locales = true }

      context 'when the fallback locale is available' do
        before do
          I18n.available_locales = %i[de en]
          I18n.default_locale = :de
        end

        it 'returns the translated message' do
          expect(subject).to eq('cannot convert String to xml')
        end
      end

      context 'when the fallback locale is not available' do
        before do
          I18n.available_locales = %i[de jp]
          I18n.default_locale = :de
        end

        it 'returns the translation string' do
          expect(subject).to eq("grape.errors.messages.#{key}")
        end
      end
    end

    context 'when I18n does not enforce available locales' do
      before { I18n.enforce_available_locales = false }

      context 'when the fallback locale is available' do
        before { I18n.available_locales = %i[de en] }

        it 'returns the translated message' do
          expect(subject).to eq('cannot convert String to xml')
        end
      end

      context 'when the fallback locale is not available' do
        before { I18n.available_locales = %i[de jp] }

        it 'returns the translated message' do
          expect(subject).to eq('cannot convert String to xml')
        end
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
grape-1.2.4 spec/grape/exceptions/base_spec.rb
grape-1.2.3 spec/grape/exceptions/base_spec.rb
grape-1.2.2 spec/grape/exceptions/base_spec.rb
grape-1.2.1 spec/grape/exceptions/base_spec.rb
grape-1.2.0 spec/grape/exceptions/base_spec.rb