about summary refs log tree commit diff
path: root/spec/controllers/concerns/localized_spec.rb
blob: c917ce85e7d17c4d5cc77da005d5cefdd2bd96c2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
# frozen_string_literal: true

require 'rails_helper'

describe ApplicationController, type: :controller do
  controller do
    include Localized

    def success
      head 200
    end
  end

  before do
    routes.draw { get 'success' => 'anonymous#success' }
  end

  shared_examples 'default locale' do
    context 'when DEFAULT_LOCALE environment variable is set' do
      around do |example|
        ClimateControl.modify 'DEFAULT_LOCALE' => 'ca', &example.method(:run)
        I18n.locale = I18n.default_locale
      end

      it 'sets language specified by ENV if preferred' do
        request.headers['Accept-Language'] = 'ca, fa'
        get 'success'
        expect(I18n.locale).to eq :ca
      end

      it 'sets available and preferred language if language specified by ENV is not preferred' do
        request.headers['Accept-Language'] = 'ca-ES, fa'
        get 'success'
        expect(I18n.locale).to eq :fa
      end

      it 'sets language specified by ENV if it is compatible and none of available languages are preferred' do
        request.headers['Accept-Language'] = 'ca-ES, fa-IR'
        get 'success'
        expect(I18n.locale).to eq :ca
      end

      it 'sets available and compatible langauge if language specified by ENV is not compatible none of available languages are preferred' do
        request.headers['Accept-Language'] = 'fa-IR'
        get 'success'
        expect(I18n.locale).to eq :fa
      end

      it 'sets language specified by ENV if none of available languages are compatible' do
        request.headers['Accept-Language'] = ''
        get 'success'
        expect(I18n.locale).to eq :ca
      end
    end

    context 'when DEFAULT_LOCALE environment variable is not set' do
      it 'sets default locale if none of available languages are compatible' do
        request.headers['Accept-Language'] = ''
        get 'success'
        expect(I18n.locale).to eq :en
      end
    end
  end

  context 'user with valid locale has signed in' do
    it "sets user's locale" do
      user = Fabricate(:user, locale: :ca)

      sign_in(user)
      get 'success'

      expect(I18n.locale).to eq :ca
    end
  end

  context 'user with invalid locale has signed in' do
    before do
      user = Fabricate.build(:user, locale: :invalid)
      user.save!(validate: false)
      sign_in(user)
    end

    include_examples 'default locale'
  end

  context 'user has not signed in' do
    include_examples 'default locale'
  end
end